Starting a recording session
The first step in using our high-level API is to initiate a recording session, which can be done by making a POST request to /recordings
endpoint. Here's an example of the request and response:
Start a recording session
Request
POST /recordings HTTP/1.1
Host: api.casperaki.com
Response
{
"recordingSessionId": integer
}
If your API is designed for a single user, you can set the userId to a constant value.
Remember to note down the returned recordingSessionId, as it will be required for future requests to access and manage your recording session.