Skip to main content
PUT
/
custom-attributes
/
applications
/
values
/
_bulk
Bulk update application custom attribute values
curl --request PUT \
  --url https://api.gospott.com/custom-attributes/applications/values/_bulk \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "attributeDefinitionId": "<string>",
  "items": [
    {
      "id": "<string>",
      "value": {
        "viewType": "customText",
        "text": "<string>"
      }
    }
  ]
}
'
{
  "status": 0,
  "message": "<string>",
  "requestId": "<string>"
}

Authorizations

x-api-key
string
header
required

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

Body

application/json
attributeDefinitionId
string
required
Minimum string length: 1
items
object[]
required
Required array length: 1 - 1000 elements

Response

Application custom attribute values updated successfully