curl --request PATCH \
--url https://api.gputrader.io/v1/templates/custom/{templateId} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"name": "<string>",
"description": "<string>",
"environmentVariables": [
[
"<string>"
]
],
"content": "<string>",
"isBasicAuthEnabled": true,
"isSSHEnabled": true,
"insecure": true
}'
"<string>"
Update an existing custom template configuration
curl --request PATCH \
--url https://api.gputrader.io/v1/templates/custom/{templateId} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"name": "<string>",
"description": "<string>",
"environmentVariables": [
[
"<string>"
]
],
"content": "<string>",
"isBasicAuthEnabled": true,
"isSSHEnabled": true,
"insecure": true
}'
"<string>"
Template ID
Template successfully updated
The response is of type string
.