Remove Class Recording
Method : POST
Base URL : https://api.braincert.com
API Endpoint : /v2/removeclassrecording?apikey=YOUR_API_KEY_HERE
All requests are POST and sent to https://api.braincert.com/v2/removeclassrecording?apikey=YOUR_API_KEY_HERE You will retrieve results assuming you have added your appKey, and require parameter.
Request parameters
| Parameter | Type | Description | Example | 
| id | required | Class recording id | 10 | 
| format | optional | Response data format | xml for XML response, default JSON response | 
Response XML Example
https://api.braincert.com/v2/removeclassrecording?apikey=WbMlO5sAx1fmV&format=xmlSuccess Response
<xml>
<rsp status="ok">
  <method>removeclassrecording</method>
  <record_id>123</record_id>
</rsp>
Error Response
<rsp status="error">
   <errors> error </errors>
</rsp>
Response JSON Example
https://api.braincert.com/v2/removeclassrecording?apikey=WbMlO5sAx1fmVSuccess Response
[{
  "status":"OK",
  "method":"removeclassrecording",
  "record_id":"10"
}]
Error Response
[{
  "status":"error",
  "error":"Invalid API KEY"
}]