Skip to main content

Relationship API

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

MethodHTTP requestDescription
relationshipsSpecificRelationshipSnapshotGET /relationship/{relationship}/relationship/{relationship} [GET]

relationshipsSpecificRelationshipSnapshot​

Relationship relationshipsSpecificRelationshipSnapshot()

This will return a single relationship object.

Example​

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

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

const body: Pieces.RelationshipsSpecificRelationshipSnapshotRequest = {
// string | this is a specific relationship uuid.
relationship: relationship_example,
};

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

Parameters​

NameTypeDescriptionNotes
relationship[string]this is a specific relationship uuid.defaults to undefined

Return type​

Relationship

HTTP request headers​

  • Content-Type: Not defined
  • Accept: application/json

HTTP response details​

Status codeDescriptionResponse headers
200OK-