Skip to main content
PUT
/
workspaces
/
{workspaceId}
/
associations
Create Record Associations for workspace
curl --request PUT \
  --url https://api.example.com/workspaces/{workspaceId}/associations \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "record1Id": 1,
    "record2Id": 1,
    "objectAssociationId": 1
  }
]
'
{}

Path Parameters

workspaceId
string
required

Unique system identifier for SDRecords

Body

application/json
Required array length: 1 - 30 elements
record1Id
integer
required

First record to be associated

Required range: x >= 0
record2Id
integer
required

Second record to be associated

Required range: x >= 0
objectAssociationId
integer
required

Type of association

Required range: x >= 0

Response

No content

The response is of type No Properties · object.