Skip to main content
PUT
/
api
/
ContactIndividual
/
{contactIndividualId}
/
Collection
/
{customCollectionId}
Update Collection for an Individual
curl --request PUT \
  --url https://api.virtuoussoftware.com/api/ContactIndividual/{contactIndividualId}/Collection/{customCollectionId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "fields": [
    {
      "name": "<string>",
      "value": "<string>"
    },
    {
      "name": "<string>",
      "value": "<string>"
    }
  ]
}
'
{
  "customCollectionId": "<integer>",
  "customCollectionName": "<string>",
  "collectionInstanceId": "<integer>",
  "fields": [
    {
      "name": "<string>",
      "value": "<string>"
    },
    {
      "name": "<string>",
      "value": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

contactIndividualId
string
required
customCollectionId
string
required

Body

application/json
fields
object[]

Response

OK

customCollectionId
string
customCollectionName
string
collectionInstanceId
string
fields
object[]
Last modified on June 5, 2026