> ## Documentation Index
> Fetch the complete documentation index at: https://ppio.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# 删除模板

## 请求头

<ParamField header="Content-Type" type="string" required={true}>
  枚举值：application/json。
</ParamField>

<ParamField header="Authorization" type="string" required={true}>
  Bearer 身份验证格式，例如：Bearer \{\{API 密钥}}。
</ParamField>

## 请求体

<ParamField body="templateId" type="string" required={true}>
  模板 ID。长度：\[1-255]。
</ParamField>

## 响应参数

<ResponseField name="templateId" type="string" required={true}>
  模板 ID。
</ResponseField>

## 示例

### 请求示例

```bash theme={null}
curl --location --request POST 'https://api.ppio.com/gpu-instance/openapi/v1/template/delete' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {{API 密钥}}' \
--data-raw '{
  "templateId": "101036"
}'
```

### 响应示例

```json theme={null}
{
  "templateId": "101036"
}
```
