Request Method: POST
Header Parameters
- Content-Type: application/json
- Accept: application/json
{
"auth_token": "you can find this in your Settings",
"confirmation": {
"text": "text of your request - this can be a text that user repeats or a question that he or she needs to answer",
"description": "description of this request, for internal user",
"action": "http://place-where-you-want-the-user-to-go-after.com"
}
}
Example Response
{
"recording_url":"http://videobl.com/r/3y",
"transaction_id":"tr1obMQBxu2fmAnn"
}
CURL example
curl -H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-X POST http://videobl.com/requests \
-d '{"auth_token": "AUTH_TOKEN", "request": {"text": "some confirmation text", "description":"created via curl","action":"http://somereturnurl.com/test"}}'