Skip to main content
PUT
/
v2
/
templates
/
{templateId}
Update Template
curl --request PUT \
  --url http://localhost:3000/api/v2/templates/{templateId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "category": "<string>",
  "tags": [
    "<string>"
  ],
  "description": "<string>",
  "isPublic": true,
  "icon": "<string>"
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

templateId
string
required

Body

application/json
name
string
required
category
string
tags
string[]
description
string
isPublic
boolean
icon
string

Response

Template updated successfully

I