cURL
curl --request PUT \ --url https://api.prod.getdex.com/v1/groups/{groupId} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "group": { "name": "<string>", "emoji": "<string>", "description": "<string>", "parent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "parent": "<unknown>" } } '
{ "error": true, "data": { "group": { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "name": "<string>", "color": "<string>", "parent_group_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "created_at": "<string>", "updated_at": "<string>" } } }
Update a groupβs name or other properties by its ID. Only the fields included in the request body are modified.
Use your Dex API key (e.g. dex_abc123...) as the Bearer token.
Show child attributes
Successful response
Was this page helpful?