Update an existing template

Modify the properties of an existing template by providing its unique ID and updated details.

PATCH

Parameters

Path Parameters

TemplateId
REQUIRED
Unique identifier of the template

Body

application/json
Object
Factory
Actions
Array of actions that can be performed on the template.
Public_access
Public access configuration for the template
Face_id
When_modified
Timestamp of when the object was last modified
Status codeDescription
200Successfully created resource with its unique identifier
400Bad request error - the request contains invalid parameters or malformed data
500Internal server error - an unexpected error occurred on the server
cURL
curl -L -X PATCH \
"https://blockv-labs.io/templates/{templateId}" \
-H 'Accept: application/json'
Response
{
"id": "string"
}
json
{
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"description": "Unique identifier of the created resource"
}
}
}