curl --request PUT \
--url https://api.example.com/api/v1/projects/{project_id}/templates/{template_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"Title": "<string>",
"Description": "<string>",
"Images": [
"<string>"
],
"Colors": [
"<string>"
]
}
'