Skip to main content
GET
/
v1
/
workspaces
/
{workspace_id}
/
zombies
/
{zombie_id}
/
integration-grants
List integration grants for a zombie
curl --request GET \
  --url https://api.usezombie.com/v1/workspaces/{workspace_id}/zombies/{zombie_id}/integration-grants \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "grant_id": "<string>",
      "service": "<string>",
      "status": "pending",
      "requested_at": 123,
      "approved_at": 123,
      "revoked_at": 123,
      "reason": "<string>"
    }
  ],
  "total": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.usezombie.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Obtain a token via the CLI auth flow (POST /v1/auth/sessions) or GitHub OAuth

Path Parameters

workspace_id
string<uuid>
required

UUIDv7 of the workspace.

zombie_id
string<uuid>
required

UUIDv7 of the zombie.

Response

OK

items
object[]
required
total
integer
required

Count of items in this response (not total across pages).