curl --request PUT \
--url https://api.blaxel.ai/v0/service_accounts/{clientId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"description": "<string>",
"name": "<string>"
}'
{
"client_id": "<string>",
"created_at": "<string>",
"description": "<string>",
"name": "<string>",
"updated_at": "<string>"
}
Updates a service account.
curl --request PUT \
--url https://api.blaxel.ai/v0/service_accounts/{clientId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"description": "<string>",
"name": "<string>"
}'
{
"client_id": "<string>",
"created_at": "<string>",
"description": "<string>",
"name": "<string>",
"updated_at": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Client ID
successful operation
The response is of type object
.
Was this page helpful?