GET
/
api
/
v2
/
apps
/
{app}
/
actions
curl --request GET \
  --url https://actions.zapier.com/api/v2/apps/{app}/actions/ \
  --header 'x-api-key: <api-key>'
{
  "results": [
    {
      "app": "<string>",
      "action": "<string>",
      "type": "read",
      "display_name": "<string>",
      "description": "<string>",
      "search_relevancy_score": 123,
      "app_info": {
        "app": "<string>",
        "name": "<string>",
        "logo_url": "<string>",
        "auth_type": "<string>",
        "actions": {}
      },
      "app_needs_auth": true
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

app
string
required

The application to list actions for.

Query Parameters

query
string | null

Query for actions to search for. If this is not provided, all actions for the app will be returned.

filter_action_type
enum<string>[]

Filter actions by type. This should be a comma-separated list of action types.

This can be:

  • write: Actions that have side effects (such as sending an email or updating a spreadsheet)
  • search: Actions that return results (such as searching for a contact or getting a list of emails)
Available options:
read,
write,
search,
read_bulk

Response

200 - application/json
OK
results
object[]
required