Update a recording
PATCHhttps://api.rinkel.com/v1/recordings/:id
Update a recording
Request
Path Parameters
id stringrequired
The ID of the recording to update
- application/json
Body
namestring
Name of the recording
Example:
Recording 1
descriptionstring
Description of the recording
Example:
This is a recording
Responses
- 204
- 400
- 401
- 404
- 500
Successfully updated the recording
Bad request
- application/json
- Schema
- Example (auto)
Schema
errors object[]
{
"errors": [
{
"code": "ERROR_CODE",
"message": "An error occurred while calling the endpoint",
"detail": "View more info at developers.rinkel.com"
}
]
}
Unauthorized
The recording was not found
Internal Server Error
Authorization: x-rinkel-api-key
name: x-rinkel-api-keytype: apiKeyin: header
- curl
- nodejs
- php
- python
- ruby
- java
- CURL
curl -L -X PATCH 'https://api.rinkel.com/v1/recordings/:id' \
-H 'Content-Type: application/json' \
-H 'x-rinkel-api-key: <x-rinkel-api-key>' \
-d '{
"name": "Recording 1",
"description": "This is a recording"
}'
ResponseClear