API → Service Accounts → Create a new service account for your org
This endpoint requires authentication by an org admin. It creates a new service account for the organization.
Parameters
Name
Type
Req.
An optional label for the service account.
Returns
- 201 Created
successful creation
Name
Type
Req.
body
objectoptionalA service account.
These are used to authenticate orgs with Bearer authentication.
This works just like an API token, but it is tied to an organization versus an individual user.
Object Properties
The date and time the API token was created.
The unique identifier for the API token. A UUID usually v4 or v7
If the token is valid. We never delete API tokens, but we can mark them as invalid. We save them for ever to preserve the history of the API token.
An optional label for the API token.
The ID of the organization that owns the API token. A UUID usually v4 or v7
The API token itself. An auth token. A uuid with a prefix of svc-
The date and time the API token was last updated.
$ curl -X POST "https://api.zoo.dev/org/service-accounts" \
--header "Authorization: Bearer $TOKEN"
{
"created_at": "2025-04-03T11:34:50.422Z",
"id": "23869821-1079-438e-9aff-9241d3f6a91e",
"is_valid": false,
"label": "rRBprb6JDR43Tfz8smL",
"org_id": "a41af37b-bf5f-4f26-8129-b50459331a3c",
"token": "vtKJsXJ",
"updated_at": "2025-04-03T11:34:50.422Z"
}