Skip to main content
PUT
/
api
/
Contact
/
{contactId}
/
Collection
/
{collectionInstanceId}
cURL
curl --request PUT \
  --url https://api.example.com/api/Contact/{contactId}/Collection/{collectionInstanceId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json-patch+json' \
  --data '
{
  "fields": [
    {
      "name": "<string>",
      "value": "<string>"
    }
  ]
}
'
{
  "customCollectionId": 123,
  "customCollectionName": "<string>",
  "collectionInstanceId": 123,
  "fields": [
    {
      "name": "<string>",
      "value": "<string>"
    }
  ]
}

Path Parameters

contactId
integer<int32>
required
collectionInstanceId
integer<int32>
required

Body

fields
object[] | null

Response

OK

customCollectionId
integer<int32>
customCollectionName
string | null
collectionInstanceId
integer<int32>
fields
object[] | null
Last modified on June 5, 2026