Skip to main content
PATCH
/
properties
/
{propertyDefinitionId}
Update property definition
curl --request PATCH \
  --url https://api.getarbol.com/v1/properties/{propertyDefinitionId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "identifier": "<string>",
  "valueType": "STRING",
  "options": [
    "<string>"
  ],
  "prompt": "<string>",
  "defaultValue": "<string>",
  "agentIds": [
    "<string>"
  ]
}
'
{
  "error": {
    "code": "<string>",
    "message": "<string>",
    "details": {}
  },
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

Use your API key from the Arbol dashboard. Go to Settings > API Keys to generate one.

Path Parameters

propertyDefinitionId
string
required

Body

application/json
identifier
string
valueType
enum<string>
Available options:
STRING,
NUMBER,
BOOLEAN
options
string[]
prompt
string
defaultValue
string
agentIds
string[]

Response

Updated