Skip to main content
GET
/
api
/
v2
/
auth
/
check
/
Check User Auth
curl --request GET \
  --url https://actions.zapier.com/api/v2/auth/check/ \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "email": "<string>",
  "name": "<string>",
  "user_id": 123,
  "is_staff": true
}

Authorizations

x-api-key
string
header
required

Response

200 - application/json

OK

success
boolean
required

True if the user is authenticated.

email
string
required

The email of the user.

name
string
required

The name of the user.

user_id
integer | null

The Zapier user ID of the user.

is_staff
boolean | null

Whether the user is a staff member.

I