Skip to main content
POST
/
v2
/
actions
/
{action_id}
/
outputs
Get Output Fields
curl --request POST \
  --url https://api.zapier.com/v2/actions/{action_id}/outputs \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": {
    "authentication": "<string>",
    "inputs": {},
    "limit": 10,
    "offset": 0,
    "fetch_live_samples": false
  }
}
'
{
  "links": {
    "next": "<string>",
    "prev": "<string>"
  },
  "meta": {
    "count": 1,
    "limit": 2,
    "offset": 0
  },
  "data": [
    {
      "type": "<string>",
      "id": "<string>",
      "title": "<string>",
      "sample": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

See our OAuth2 authentication documentation here: https://docs.zapier.com/powered-by-zapier/api-reference/authentication

Path Parameters

action_id
string
required

An Action ID, as provided by the /actions endpoint.

Body

application/json
data
object
required

The common data object that includes inputs and an authentication id.

Response

A successful response containing Output Field data

The links object returned in paginated response bodies.

meta
object
required

The meta object returned in paginated response bodies.

data
object[]
required

A list of the Output Fields matching the given request