POST
/
executions
/
getRecording
curl --request POST \
  --url https://api.kaizenautomation.com/executions/getRecording \
  --header 'Content-Type: application/json' \
  --data '{
  "executionId": "<string>"
}'
{
  "recording": [
    {
      "type": 123,
      "data": "<any>",
      "timestamp": 123,
      "delay": 123
    }
  ]
}

Body

application/json
executionId
string
required

ID of the execution to retrieve

Response

200
application/json
Recording retrieved successfully

Execution recording data

recording
object[] | null
required

Recording information for the execution using the rrweb session format. See: https://github.com/rrweb-io/rrweb/blob/98e71cd0d23628cd1fbdbe47664a65748084c4a4/packages/types/src/index.ts#L169