auth
Get Account List
Getting Started
How to
- GETAuthentication
- GETZapier account list
- Stored Vs. Stateless Actions
- Stored actions
- Stateless actions
- Gathering action information
API Reference
- system
- auth
- apps
- actions
- execution
- ai-actions
- utilities
Libraries
- TypeScript (Node.js, Deno)
- React Components
Development Resources
auth
Get Account List
Get a list of Zapier accounts for the current user.
GET
/
api
/
v2
/
auth
/
accounts
curl --request GET \
--url https://actions.zapier.com/api/v2/auth/accounts/ \
--header 'x-api-key: <api-key>'
{
"results": [
{
"id": 123,
"name": "<string>",
"logo_url": "<string>",
"owner": {
"name": "<string>",
"email": "<string>"
}
}
]
}
Authorizations
Response
200 - application/json
OK
curl --request GET \
--url https://actions.zapier.com/api/v2/auth/accounts/ \
--header 'x-api-key: <api-key>'
{
"results": [
{
"id": 123,
"name": "<string>",
"logo_url": "<string>",
"owner": {
"name": "<string>",
"email": "<string>"
}
}
]
}