Request Status of All Widgets

get
https://{organization_id}.scheduler-rt.getmindful.com
/api/organization/{widget_id}/widget_status

Successful request

data
array[CallObjectAllWidgets]
name
string

The name of the Widget in Scheduler

public_name
string

Typically a more descriptive name given to the Widget in Scheduler. If no public_name was set, this defaults to the name value.

description
string

The Widget's description as it was configured in Scheduler

unique_id
string

The Widget's unique identifier, which is used to build the GET requests (points to that specific Widget) and used when submitting callback requests

offer_asap
string

Confirms whether or not the widget offers ASAP callbacks

offer_scheduled
string

Confirms whether or not the widget offers scheduled callbacks

ewt
string

Estimated time, in seconds, before the callback is launched

api_message
string

The API message as configured in the Template. This message represents the current state of the Widget.

Response Example
1
{
2
"data": [
3
{
4
"name": "string",
5
"public_name": "string",
6
"description": "string",
7
"unique_id": "string",
8
"offer_asap": "string",
9
"offer_scheduled": "string",
10
"ewt": "string",
11
"api_message": "string"
12
}
13
]
14
}