/authentications endpoint:
This endpoint returns only owned Authentications. Shared Authentications are
excluded because Zap workflows can only be created using credentials that belong to the
current user.
This API is rate limited.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve Authentications for a specific App, scoped to those owned by the user.
/authentications endpoint:
// GET /authentications?app=81f613aa-c98a-4383-a5fc-195e68647217
{
"links": {
"next": null,
"prev": null
},
"meta": {
"count": 1,
"limit": 10,
"offset": 0
},
"data": [
{
"type": "authentication",
"id": "example_akLLd8kB",
"app": "81f613aa-c98a-4383-a5fc-195e68647217",
"is_expired": false,
"title": "Google Sheets some.user@mycompany.example"
}
]
}
limit and offset parameters to
paginate through results.Was this page helpful?