POST
/
v2
/
actions
/
{action_id}
/
outputs
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": "example_QVaAreV1",
    "inputs": {
      "someparam": "somevalue"
    }
  }
}'
{
  "data": [
    [
      {
        "id": "commit__message",
        "sample": "Git 2.0",
        "title": "Commit Message",
        "type": "output_field"
      }
    ],
    [
      {
        "id": "parents[]sha",
        "sample": "4a28f169ad29ba452e0e7bea2583914c10c58322",
        "title": "Parents Sha",
        "type": "output_field"
      }
    ],
    [
      {
        "id": "parents[]url",
        "sample": "https://github.com/git/git/commit/4a28f169ad29ba452e0e7bea2583914c10c58322",
        "title": "Parents Url",
        "type": "output_field"
      }
    ]
  ],
  "meta": {
    "count": 3,
    "limit": null,
    "offset": null
  },
  "links": {
    "next": null,
    "prev": null
  }
}

Authorizations

Authorization
string
header
required

See our OAuth2 authentication documentation

Path Parameters

action_id
string
required

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

Body

data
object
required

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

Response

200 - application/json

Base Response definition to be used in other Response Serializers.

Be sure to include the data field after using this class

data
object[]
required

The links object returned in paginated response bodies.

meta
object
required

The meta object returned in paginated response bodies.