Skip to content

Move render to folder

Move an existing render into a folder.

Sample Request

Here’s a sample request to move a render to a folder:

ENDPOINT
PUT /v1/folder/{folderId}/render/{renderId}
REQUEST
fetch(`https://api.templated.io/v1/folder/${folderId}/render/${renderId}`, {
method: 'PUT',
headers: {
'Authorization': `Bearer ${API_KEY}`
}
})

Path Parameters

folderId string REQUIRED
The ID of the folder where you want to move the render.

renderId string REQUIRED
The ID of the render you want to move.

Response

A successful request returns an empty response with a 200 OK status code.