v1

latestOpenAPI 3.0.02026-08-067074272.5 KB
Dashboard

Update a specific dashboard's name

Updates a dashboard. This does not change a dashboard's phone number. If you want a new number with another dashboard's contacts, you will have to create a new dashboard with a POST and add the contacts with a bulk export/import.

put/dashboards/{dashboard_id}

Path parameters

dashboard_idinteger required
Example:121

Id of dashboard

Request body

namestring

Name of the dashboard.

Example request

{
  "name": "John Doe's Line"
}

Response

Info on the specified dashboard.

idinteger

The dashboard identifier. This will be used with all API calls at dashboard level.

namestring

Name of the dashboard.

phonestring

Texting number associated with this dashboard.

timeZoneIdstring

The Time Zone of this dashboard. Used in Autoresponders and handling scheduling around time changes

Example response

{
  "id": 121,
  "name": "Marketing",
  "phone": "15551234567",
  "timeZoneId": "Eastern Standard Time"
}