Skip to main content

Update a recording

PATCH 

https://api.rinkel.com/v1/recordings/:id

Update a recording

Request

Path Parameters

    id stringrequired

    The ID of the recording to update

Body

    namestring

    Name of the recording

    Example: Recording 1
    descriptionstring

    Description of the recording

    Example: This is a recording

Responses

Successfully updated the recording

Authorization: x-rinkel-api-key

name: x-rinkel-api-keytype: apiKeyin: header
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"
}'
Request Collapse all
Base URL
https://api.rinkel.com/v1
Auth
Parameters
— pathrequired
Body
{
  "name": "Recording 1",
  "description": "This is a recording"
}
ResponseClear

Click the Send API Request button above and see the response here!