Getting Started
How to
- GETAuthenticationDeprecated
- GETZapier account listDeprecated
- Stored Vs. Stateless ActionsDeprecated
- 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
Check User Auth
Test that the API and auth are working.
GET
/
api
/
v2
/
auth
/
check
/
Copy
Ask AI
curl --request GET \
--url https://actions.zapier.com/api/v2/auth/check/ \
--header 'x-api-key: <api-key>'
Copy
Ask AI
{
"success": true,
"email": "<string>",
"name": "<string>",
"user_id": 123,
"is_staff": true
}
Authorizations
Response
200 - application/json
OK
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://actions.zapier.com/api/v2/auth/check/ \
--header 'x-api-key: <api-key>'
Copy
Ask AI
{
"success": true,
"email": "<string>",
"name": "<string>",
"user_id": 123,
"is_staff": true
}
Assistant
Responses are generated using AI and may contain mistakes.