v1

latestOpenAPI 3.1.1Proprietary2026-07-245895107.9 KB
Actions

Get an offline run

Get the status of an offline run. This will return the variables and their values.

get/actions/{sid}/runs/{runid}

Path parameters

sidstring required

Short ID

Example:callrsid

Resource SID (8 lowercase alphanumeric characters)

runidstring required
Example:api:9MNAB2H6

Run ID

Response

Run status

variablesActionsVariables required

Key/value object defining variables. Keys must start with a $ followed by a letter. Keys not matching the regex ^\$[a-zA-Z][a-zA-Z0-9_]{0,254}$ will be silently ignored. Values can be of any type.

Example response

{
  "variables": {
    "$customID": 42,
    "$target": "+15559820800",
    "$mylist": [
      "listItem1",
      "listItem2"
    ],
    "$myobject": {
      "key1": "value1",
      "key2": "value2"
    }
  }
}