Organization
Update an organization
Updates information for an organization.
patch/organization/{id}
Path parameters
idstring required
The ID of the organization to update.
Query parameters
metadata_includestring
Comma-separated list of metadata properties to include in the response. Available values [schemas, tags].
Request body
Example request
{
"name": "Crypto Inc.",
"status": "active"
}Response
An object representing the organization.
Example response
{
"id": 9823413412,
"name": "Crypto Inc.",
"slug": "crypto-inc",
"status": "active",
"metadata": {
"key": "value"
}
}