GET
/
api
/
v1
/
actions
/
{id}
curl --request GET \
  --url https://cx-staging-three.fly.dev/api/v1/actions/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "workspace": "354736587945343",
  "name": "Order checking",
  "description": "checking  customer order status",
  "method": "GET",
  "url": "https://api.elemente.ai/order-phone-number?phone={phone}",
  "headers": [
    {
      "key": "X-Shopify-Access-Token",
      "value": "{{shopify-access-key}}"
    }
  ],
  "queryParams": [
    {
      "key": "phone",
      "value": "{phone}"
    }
  ],
  "inputVariables": [
    {
      "name": "phone",
      "description": "Phone number",
      "required": true,
      "dataType": "string"
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The id of the action

Response

200
application/json
The requested action
description
string | null
required

Order checking

Example:

"checking customer order status"

method
string | null
required

Order checking

Example:

"GET"

url
string | null
required

Order checking

Example:

"https://api.elemente.ai/order-phone-number?phone={phone}"

headers
string[] | null
required

Order checking

Example:
[
  {
    "key": "X-Shopify-Access-Token",
    "value": "{{shopify-access-key}}"
  }
]
queryParams
string[] | null
required

Order checking

Example:
[{ "key": "phone", "value": "{phone}" }]
inputVariables
string[] | null
required

Order checking

Example:
[
  {
    "name": "phone",
    "description": "Phone number",
    "required": true,
    "dataType": "string"
  }
]
workspace
string

workspace

Example:

"354736587945343"

name
string

Order checking

Example:

"Order checking"