cURL
curl --request PUT \ --url https://api.prod.getdex.com/v1/custom-fields/{customFieldId} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "custom_field": { "name": "<string>", "field_type": "input", "categories": [ { "category": "<string>" } ] } } '
{ "error": true, "data": { "custom_field": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "name": "<string>", "field_type": "<string>", "categories": [ { "category": "<string>" } ], "created_at": "<string>", "updated_at": "<string>" } } }
Update a custom field definition by its ID. You can modify the field name or other properties.
Use your Dex API key (e.g. dex_abc123...) as the Bearer token.
Show child attributes
Successful response
Was this page helpful?