PUT
/v1/admin/orgs/{org_id}
curl \
--request PUT 'http://api.example.com/v1/admin/orgs/{org_id}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"status":"ACTIVE","api_clients":["string"]}'
Request examples
{
"status": "ACTIVE",
"api_clients": [
"string"
]
}
Response examples (200)
{
"org_id": "string",
"status": "ACTIVE",
"api_clients": [
"string"
],
"created_at": "2026-05-04T09:42:00Z",
"updated_at": "2026-05-04T09:42:00Z"
}
Response examples (422)
{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"ctx": {}
}
]
}