IVR List

After you design your IVR, you can use the ivr to make call to your customer. Remember, you can add dynamic content in your ivr design. In order to use ivr you have to see what ivr that available in your account, the ivr list will show you ivr name, ivr id, and variable (data you must provide when you make a call).

HTTP Method : GET

Endpoint URL : https://call.ocatelkom.co.id/api/v1/ivr-list

Response List (Array)

PropertyType

ivr_id

String (it will use when you make a call)

ivr_name

String

required_variable

Array (string) (if you add dynamic content when you design your ivr then the variable must be provided in your call request)

created_at

ISO DATE

deleted_at

ISO DATE

[
    {
        "ivr_id": "xxxxf03d61fae4001267xxxx",
        "ivr_name": "Testing Call Recording",
        "required_variable":[],
        "created_at": "2020-03-01T03:22:58.073Z",
        "deleted_at": "2020-03-01T03:22:58.073Z",
    },
    {
        "ivr_id": "xxxxghyuikae4001267xxxx",
        "ivr_name": "IVR Resti",
        "required_variable":[
                "name",
                "nomor_inet"
        ],
        "created_at": "2020-03-01T03:22:58.073Z",
        "deleted_at": "2020-03-01T03:22:58.073Z",
    },
]

Last updated