curl --request PATCH \
--url http://127.0.0.1:3000/api/template/{templateId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"description": "<string>",
"categoryId": "<string>",
"cover": {
"token": "xxxxxxxxxxx",
"size": 1024,
"url": "/bucket/xxxxx",
"path": "/table/xxxxxx",
"mimetype": "video/mp4",
"name": "<string>",
"id": "<string>",
"width": 100,
"height": 100
},
"isPublished": true,
"isSystem": true,
"baseId": "<string>",
"markdownDescription": "<string>"
}
'