Skip to main content

Anchor API

All URIs are relative to http://localhost:1000

MethodHTTP requestDescription
anchorAssociateWorkstreamSummaryPOST /anchor/{anchor}/workstream_summaries/associate/{workstream_summary}/anchor/{anchor}/workstream_summaries/associate/{workstream_summary} [POST]
anchorDisassociateWorkstreamSummaryPOST /anchor/{anchor}/workstream_summaries/disassociate/{workstream_summary}/anchor/{anchor}/workstream_summaries/disassociate/{workstream_summary} [POST]
anchorRenamePOST /anchor/{anchor}/rename/anchor/{anchor}/rename [POST]
anchorScoresIncrementPOST /anchor/{anchor}/scores/increment'/anchor/{anchor}/scores/increment' [POST]
anchorSpecificAnchorSnapshotGET /anchor/{anchor}/anchor/{anchor} [GET]
anchorUpdatePOST /anchor/update/anchor/update [POST]

anchorAssociateWorkstreamSummary​

anchorAssociateWorkstreamSummary()

This will associate a anchor with a workstream summary. This will do the same thing as the workstreamSummary equivalent.

Example​

import * as Pieces from '@pieces.app/pieces-os-client'

const configuration = Pieces.Configuration()
const apiInstance = new Pieces.AnchorApi(configuration)

const body: Pieces.AnchorAssociateWorkstreamSummaryRequest = {
// string | This is the specific uuid of an anchor.
anchor: anchor_example,
// string | This is a identifier that is used to identify a specific workstream_summary.
workstreamSummary: workstreamSummary_example,
};

apiInstance.anchorAssociateWorkstreamSummary(body).then((data: void (empty response body)) => {
console.log('API called successfully. Returned data: ' + data)
}).catch((error: unknown) => console.error(error))

Parameters​

NameTypeDescriptionNotes
anchor[string]This is the specific uuid of an anchor.defaults to undefined
workstreamSummary[string]This is a identifier that is used to identify a specific workstream_summary.defaults to undefined

Return type​

void (empty response body)

HTTP request headers​

  • Content-Type: Not defined
  • Accept: text/plain

HTTP response details​

Status codeDescriptionResponse headers
204No Content-
500Internal Server Error-

anchorDisassociateWorkstreamSummary​

anchorDisassociateWorkstreamSummary()

This will enable us to disassociate a anchor from a workstream summary. This will do the same thing as the workstreamSummary equivalent.

Example​

import * as Pieces from '@pieces.app/pieces-os-client'

const configuration = Pieces.Configuration()
const apiInstance = new Pieces.AnchorApi(configuration)

const body: Pieces.AnchorDisassociateWorkstreamSummaryRequest = {
// string | This is the specific uuid of an anchor.
anchor: anchor_example,
// string | This is a identifier that is used to identify a specific workstream_summary.
workstreamSummary: workstreamSummary_example,
};

apiInstance.anchorDisassociateWorkstreamSummary(body).then((data: void (empty response body)) => {
console.log('API called successfully. Returned data: ' + data)
}).catch((error: unknown) => console.error(error))

Parameters​

NameTypeDescriptionNotes
anchor[string]This is the specific uuid of an anchor.defaults to undefined
workstreamSummary[string]This is a identifier that is used to identify a specific workstream_summary.defaults to undefined

Return type​

void (empty response body)

HTTP request headers​

  • Content-Type: Not defined
  • Accept: text/plain

HTTP response details​

Status codeDescriptionResponse headers
204No Content-
500Internal Server Error-

anchorRename​

Anchor anchorRename()

This will rename a specific anchor.

Example​

import * as Pieces from '@pieces.app/pieces-os-client'

const configuration = Pieces.Configuration()
const apiInstance = new Pieces.AnchorApi(configuration)

const body: Pieces.AnchorRenameRequest = {
// string | This is the specific uuid of an anchor.
anchor: anchor_example,
// boolean | This is a boolean that will decided if we are want to return the transferable data (default) or not(performance enhancement) (optional)
transferables: true,
};

apiInstance.anchorRename(body).then((data: Anchor) => {
console.log('API called successfully. Returned data: ' + data)
}).catch((error: unknown) => console.error(error))

Parameters​

NameTypeDescriptionNotes
anchor[string]This is the specific uuid of an anchor.defaults to undefined
transferables[boolean]This is a boolean that will decided if we are want to return the transferable data (default) or not(performance enhancement)(optional) defaults to undefined

Return type​

Anchor

HTTP request headers​

  • Content-Type: Not defined
  • Accept: application/json, text/plain

HTTP response details​

Status codeDescriptionResponse headers
200OK-
500Internal Server Error-

anchorScoresIncrement​

anchorScoresIncrement()

This will take in a SeededScoreIncrement and will increment the material relative to the incoming body.

Example​

import * as Pieces from '@pieces.app/pieces-os-client'

const configuration = Pieces.Configuration()
const apiInstance = new Pieces.AnchorApi(configuration)

const body: Pieces.AnchorScoresIncrementRequest = {
// string | This is the specific uuid of an anchor.
anchor: anchor_example,
// SeededScoreIncrement (optional)
seededScoreIncrement: ,
};

apiInstance.anchorScoresIncrement(body).then((data: void (empty response body)) => {
console.log('API called successfully. Returned data: ' + data)
}).catch((error: unknown) => console.error(error))

Parameters​

NameTypeDescriptionNotes
seededScoreIncrementSeededScoreIncrement
anchor[string]This is the specific uuid of an anchor.defaults to undefined

Return type​

void (empty response body)

HTTP request headers​

  • Content-Type: application/json
  • Accept: text/plain

HTTP response details​

Status codeDescriptionResponse headers
204No Content-
500Internal Server Error-

anchorSpecificAnchorSnapshot​

Anchor anchorSpecificAnchorSnapshot()

This will get a snapshot of a single anchor.

Example​

import * as Pieces from '@pieces.app/pieces-os-client'

const configuration = Pieces.Configuration()
const apiInstance = new Pieces.AnchorApi(configuration)

const body: Pieces.AnchorSpecificAnchorSnapshotRequest = {
// string | This is the specific uuid of an anchor.
anchor: anchor_example,
// boolean | This is a boolean that will decided if we are want to return the transferable data (default) or not(performance enhancement) (optional)
transferables: true,
};

apiInstance.anchorSpecificAnchorSnapshot(body).then((data: Anchor) => {
console.log('API called successfully. Returned data: ' + data)
}).catch((error: unknown) => console.error(error))

Parameters​

NameTypeDescriptionNotes
anchor[string]This is the specific uuid of an anchor.defaults to undefined
transferables[boolean]This is a boolean that will decided if we are want to return the transferable data (default) or not(performance enhancement)(optional) defaults to undefined

Return type​

Anchor

HTTP request headers​

  • Content-Type: Not defined
  • Accept: application/json, text/plain

HTTP response details​

Status codeDescriptionResponse headers
200OK-
410Anchor not found.-

anchorUpdate​

Anchor anchorUpdate()

This will update a specific anchor.

Example​

import * as Pieces from '@pieces.app/pieces-os-client'

const configuration = Pieces.Configuration()
const apiInstance = new Pieces.AnchorApi(configuration)

const body: Pieces.AnchorUpdateRequest = {
// boolean | This is a boolean that will decided if we are want to return the transferable data (default) or not(performance enhancement) (optional)
transferables: true,
// Anchor (optional)
anchor: ,
};

apiInstance.anchorUpdate(body).then((data: Anchor) => {
console.log('API called successfully. Returned data: ' + data)
}).catch((error: unknown) => console.error(error))

Parameters​

NameTypeDescriptionNotes
anchorAnchor
transferables[boolean]This is a boolean that will decided if we are want to return the transferable data (default) or not(performance enhancement)(optional) defaults to undefined

Return type​

Anchor

HTTP request headers​

  • Content-Type: application/json
  • Accept: application/json, text/plain

HTTP response details​

Status codeDescriptionResponse headers
200OK-
500Internal Server Error-