Speed dial 100

List speed dial 100

get

List speed dial 100.

Authorizations
Responses
curl -L \
  --url 'https://HOSTNAME:8887/api/user/speed_dial_100' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "items": [
    {
      "id": "NzAwNTUxOTA5NzczMTQ4MTYw",
      "code": "text",
      "phone_number": "text",
      "description": "text"
    }
  ]
}

Add new speed dial 100

post

Create new speed dial 100.

Authorizations
Body
codestring · min: 2 · max: 2required

The speed dial 100 dialing code.
Available code range from 00 to 99.

phone_numberstringrequired

The phone number that you want to call.

descriptionstring · max: 1024optional

The description of speed dial.

Responses
curl -L \
  --request POST \
  --url 'https://HOSTNAME:8887/api/user/speed_dial_100' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  --header 'Content-Type: application/json' \
  --data '{
    "code": "text",
    "phone_number": "text",
    "description": "text"
  }'
{
  "id": "NzAwNTUxOTA5NzczMTQ4MTYw"
}

Retrieve details of speed dial 100

get

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

Authorizations
Path parameters
idall ofrequired

The unique ID of speed dial.

The unique ID of the resource.

Responses
curl -L \
  --url 'https://HOSTNAME:8887/api/user/speed_dial_100/{id}' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "id": "NzAwNTUxOTA5NzczMTQ4MTYw",
  "code": "text",
  "phone_number": "text",
  "description": "text"
}

Update speed dial 100

post

Update speed dial 100.

Authorizations
Path parameters
idall ofrequired

The unique ID of speed dial.

The unique ID of the resource.

Body
codestring · min: 2 · max: 2optional

The speed dial 100 dialing code.
Available code range from 00 to 99.

phone_numberstringoptional

The phone number that you want to call.

descriptionstring · max: 1024optional

The description of speed dial.

Responses
curl -L \
  --request POST \
  --url 'https://HOSTNAME:8887/api/user/speed_dial_100/{id}' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  --header 'Content-Type: application/json' \
  --data '{
    "code": "text",
    "phone_number": "text",
    "description": "text"
  }'

No body

Was this helpful?