PUT
/
customfield
/
{customfieldId}
Update Custom Field
curl --request PUT \
  --url https://api.sendx.io/api/v1/rest/customfield/{customfieldId} \
  --header 'Content-Type: application/json' \
  --header 'X-Team-ApiKey: <api-key>' \
  --data '{
  "name": "Updated Field",
  "type": "number",
  "shown": false,
  "isShareable": true,
  "description": "An updated custom field description"
}'
{
  "id": "encrypted-id-123",
  "name": "Updated Field",
  "type": "number",
  "description": "An updated custom field description"
}

Authorizations

X-Team-ApiKey
string
header
required

Path Parameters

customfieldId
string
required

The CustomFieldId you want to update.

Example:

"encrypted_id_123"

Body

application/json

Response

200
application/json

Custom Field updated successfully.

The response is of type object.