Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 9 Current »

The speed dial module enables VUP users to set up and call contacts as speed dial entries. A speed dial entry is a shortcut using a number from the phone dial pad assigned to a particular telephone number.

Authorization 

The method requires authorization using basic authentication. Please use the sip login and password.

If notepad++ is used to generate basic authentication token for tests, please use option “Base64 Encode with padding”.

Example:

user:password in base 64 format --> dXNlcjpwYXNzd29yZA==

/GetList

  • Description: Gets the list of

  • Url: /VUP/api/SpeedDials/GetList

  • HTTP method: GET

 REQUEST
curl --location 'https://xxxxxxxx/vup/api/SpeedDials/GetList' \
--header 'Accept: application/json, text/plain, */*' \
--header 'Authorization: Basic dXNlcjpwYXNzd29yZA==' 
 RESPONSE
{
    "recordsTotal": 0,
    "recordsFiltered": 0,
    "data": []
}

/Save

  • Description: Save the speed dial rule

  • Url: /VUP/api/SpeedDials/GetList

  • HTTP method: POST

 REQUEST
curl --location 'https://xxxxxxxxxx/vup/api/SpeedDials/save' \
--header 'Accept: application/json, text/plain, */*' \
--header 'Authorization: Basic dXNlcjpwYXNzd29yZA==' \
--header 'Content-Type: application/json' \
--data '{
    "telephoneNumber": "48666666667",
    "speedDial": "3",
    "nickname": "Peterr"
}'
 RESPONSE
{}

/Remove

  • Description: Remove particular the speed dial rule

  • Url: /VUP/api/SpeedDials/Remove

  • HTTP method: POST

 REQUEST
curl --location 'https://xxxxxxxxxxxxxx/vup/api/SpeedDials/Remove' \
--header 'Accept: application/json, text/plain, */*' \
--header 'Authorization: Basic dXNlcjpwYXNzd29yZA==' \
--header 'Content-Type: application/json' \
--data '{
            "id": 14
        }'
 RESPONSE
{}

  • No labels