Parameters

account
dictionary
active
boolean
PATCH/v1/accounts/{{account_id}}
curl https://api.tradly.app/v1/accounts/{{account_id}} \
  -H "Authorization: Bearer YOUR_PUBLISHABLE_OR_SECRET_KEY" \
  -H "Content-Type: application/json" \
  -X PATCH \
  -d '{
  "account": {
    "active": true
  }
}'
RESPONSE
{
  "status": true,
  "data": {
    "account": {
      "id": 1,
      "active": true
    }
  }
}