GET
/
api
/
v2
/
apps
/
{app}
/
auths
/
curl --request GET \
  --url https://actions.zapier.com/api/v2/apps/{app}/auths/ \
  --header 'x-api-key: <api-key>'
{
  "last_refresh_seconds_ago": 123,
  "results": [
    {
      "date": "<string>",
      "groups": [
        {
          "id": "<string>",
          "name": "<string>",
          "photo_url": "<string>",
          "member_count": 123
        }
      ],
      "id": 123,
      "account_id": 123,
      "customuser_id": 123,
      "lastchanged": "<string>",
      "is_invite_only": true,
      "is_private": true,
      "is_stale": true,
      "members": [
        "<any>"
      ],
      "selected_api": "<string>",
      "shared_with_all": true,
      "title": "<string>",
      "url": "<string>",
      "is_shared": true,
      "permissions": {
        "delete": true,
        "edit": true,
        "reconnect": true,
        "share": true,
        "test": true,
        "transfer": true,
        "use": true
      },
      "label": "<string>"
    }
  ],
  "message": "<string>"
}

Authorizations

x-api-key
string
header
required

Path Parameters

app
string
required

The app to get authentications for.

Query Parameters

account_id
integer

The Zapier account ID to get authentications for.

only_owned
boolean
default:false

If this is true, only authentications that are owned by the authenticated user will be returned.

If this is false, then authentications that are shared with the user will also be returned.

Response

200 - application/json

OK

The response is of type object.