-
Notifications
You must be signed in to change notification settings - Fork 0
Description
**All the data should be sent using POST method, please insert the JSON data into
using the following key: "key_data" **
Example:
request.setAttribute("key_data", JSON);
Command "Create recording request"
Title :: Create recording request
Description :: Creates a new recording on server
Params keys:: (string)key_name - recording name
JSON Tag :: command_create_recording
JSON Key :: key_command
Example:
{
"key_command": "command_create_recording",
"name": "Amazing Recording"
}
Command "Create recording response"
Title :: Create recording response
Description :: Response of creating new recording on server
Return keys:: (int)key_recording_id - Unique recording ID, (string)key_name
JSON Tag :: command_create_recording
JSON Key :: key_command
Example:
{
"key_command": "command_create_recording",
"key_recording_id": "12345",
"key_name": "Amazing Recording"
}