Call rebound strategies

Call rebound strategies define alternative media to use when an outbound call to a contact fails.

Fields

class CallReboundStrategy
created_at: datetime

The call rebound strategy’s creation date and time.

description: string

The call rebound strategy’s description.

id: integer

The call rebound strategy’s unique ID.

name: string

The call rebound strategy’s name.

team: integer

The call rebound strategy’s team.

API

GET /j/call_rebound_strategies

Retrieves the list of call rebound strategies.

Example request:

GET /j/call_rebound_strategies HTTP/1.1
Authorization: Bearer 0a1b2c3d4e5f

Example response:

HTTP/1.1 200 OK
Content-Type: application/json

[
   {
      "created_at": "2016-11-04T19:11:34.985Z",
      "description": "Some description",
      "id": 1,
      "name": "First rebound strategy",
      "team": 1
   },
   {
      "created_at": "2016-11-04T19:13:46.246Z",
      "description": "Other description",
      "id": 2,
      "name": "Second rebound strategy",
      "team": 1
   }
]
Request Headers:
Query Parameters:
  • team (integer) – An optional team ID.

Response JSON Array of Objects:
  • created_at (datetime) – The call rebound strategy’s creation date and time.

  • description (string) – The call rebound strategy’s description.

  • id (integer) – The call rebound strategy’s unique ID.

  • name (string) – The call rebound strategy’s name.

  • team (integer) – The call rebound strategy’s team.

Status Codes:
  • 200 OK – no error

  • 400 Bad Request – for instance a required field is missing

  • 403 Forbidden – you tried to access a forbidden resource, check you provided a valid OAuth token