Speed dial 8

List speed dial 8

get

List speed dial 8.

Authorizations
Responses
200
OK
application/json
get
GET /api/user/speed_dial_8 HTTP/1.1
Host: hostname:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "items": [
    {
      "id": "NzAwNTUxOTA5NzczMTQ4MTYw",
      "code": "text",
      "phone_number": "text",
      "description": "text"
    }
  ]
}

Add new speed dial 8

post

Create new speed dial 8.

Authorizations
Body
codestring · min: 1 · max: 1Required

The speed dial 8 dialing code.
Available code range from 2 to 9.

phone_numberstringRequired

The phone number that you want to call.

descriptionstring · max: 1024Optional

The description of speed dial.

Responses
201
Created
application/json
post
POST /api/user/speed_dial_8 HTTP/1.1
Host: hostname:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 58

{
  "code": "text",
  "phone_number": "text",
  "description": "text"
}
{
  "id": "NzAwNTUxOTA5NzczMTQ4MTYw"
}

Retrieve details of speed dial 8

get

Retrieve details of speed dial 8 by it's ID.

Authorizations
Path parameters
idall ofRequired

The unique ID of speed dial.

stringOptional

The unique ID of the resource.

Example: NzAwNTUxOTA5NzczMTQ4MTYw
Responses
200
OK
application/json
get
GET /api/user/speed_dial_8/{id} HTTP/1.1
Host: hostname:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "id": "NzAwNTUxOTA5NzczMTQ4MTYw",
  "code": "text",
  "phone_number": "text",
  "description": "text"
}

Update speed dial 8

post

Update speed dial 8.

Authorizations
Path parameters
idall ofRequired

The unique ID of speed dial.

stringOptional

The unique ID of the resource.

Example: NzAwNTUxOTA5NzczMTQ4MTYw
Body
codestring · min: 1 · max: 1Optional

The speed dial 8 dialing code.
Available code range from 2 to 9.

phone_numberstringOptional

The phone number that you want to call.

descriptionstring · max: 1024Optional

The description of speed dial.

Responses
200
OK
post
POST /api/user/speed_dial_8/{id} HTTP/1.1
Host: hostname:8887
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 58

{
  "code": "text",
  "phone_number": "text",
  "description": "text"
}

No content