Description
This method returns a list of all recordings by their recordName.
Recording Naming Convention
A recording name should have the format of organizationName.recordingName. The organizationName is not mandatory; however adding some type of nameSpace prepended to the recordingName is advised.
Examples:
- Acme.TransactionHeader
- ComCo.UserRecording
- CableTron.AR
Runtime Method Signature
Use this method signature when directly accessing the GenRocket binary runtime.
recordingLoad(String recordingName)
REST/Socket Payload Request
Use this API JSON request payload when making an API call to the GenRocket REST or Socket Engine.
{
"interfaceType": "Manual",
"methodName": "recordings",
"parameters": {
}
}REST/Socket Payload Successful Payload Response
The API JSON response payload for this method will be empty.
{
"responseType": "OK",
"data": [
{
"recordingName": ""
},
{
"recordingName": ""
},
{
"recordingName": ""
}
]
}