API → Service AccountsCreate 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.

  • label

    string
    optional

    An optional label for the service account.

Returns

  • 201 Created

    successful creation

    Name

    Type

    Req.

    body

    object
    optional

    A 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
    • created_at

      string / ISO-8601
      optional

      The date and time the API token was created.

    • id

      string / UUID
      optional

      The unique identifier for the API token. A UUID usually v4 or v7

    • is_valid

      boolean
      optional

      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.

    • label

      string
      optional

      An optional label for the API token.

    • org_id

      string / UUID
      optional

      The ID of the organization that owns the API token. A UUID usually v4 or v7

    • token

      string
      optional

      The API token itself. An auth token. A uuid with a prefix of svc-

    • updated_at

      string / ISO-8601
      optional

      The date and time the API token was last updated.

post
/org/service-accounts
$ curl -X POST "https://api.zoo.dev/org/service-accounts" \
	--header "Authorization: Bearer $TOKEN"
201 Created
Response
{
  "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"
}