GET
/
api
/
v2
/
auth
/
accounts
curl --request GET \
  --url https://actions.zapier.com/api/v2/auth/accounts/ \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": 123,
      "name": "<string>",
      "logo_url": "<string>",
      "owner": {
        "name": "<string>",
        "email": "<string>"
      }
    }
  ]
}

Each user can have multiple Zapier accounts. This endpoint returns a list of all the accounts that the user has access to.

When interacting with the AI Actions API, you will need to provide a specific account ID to most endpoints.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

200 - application/json
results
object[]
required