Skip to main content
PUT
/
custom-attributes
/
clients
/
{id}
/
values
/
_bulk
Update custom attribute values for a client
curl --request PUT \
  --url https://api.gospott.com/custom-attributes/clients/{id}/values/_bulk \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "attributes": [
    {
      "attributeDefinitionId": "<string>",
      "value": {
        "text": "<string>"
      }
    }
  ]
}
'
{
  "status": 0,
  "message": "At least one attribute is required",
  "requestId": "<string>",
  "statusCode": 400,
  "error": "Bad Request"
}

Documentation Index

Fetch the complete documentation index at: https://api-docs.spott.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

API key for authentication. Get your API key from Settings → API Keys in your Spott dashboard.

Path Parameters

id
string
required

Body

application/json
attributes
object[]
required

Response

Custom attribute values updated successfully