Box Developerドキュメント
最新バージョン

Delete Box Doc Gen template

delete
https://api.box.com/2.0
/docgen_templates/:template_id

Unmarks file as Box Doc Gen template

リクエスト

bearer [ACCESS_TOKEN]
application/json

リクエストヘッダー

stringヘッダー内必須

Version header

次の値に固定: 2025.0

パスパラメータ

stringパス内必須
123

ID of the file which will no longer be marked as a Box Doc Gen template.

レスポンス

none

Returns an empty response when a file is no longer marked as a Box Doc Gen template.

クライアントエラーが原因で、サーバーはリクエストを処理できないか、処理しません。

The client does not have access rights to the content or resource requested.

テンプレートが見つからない場合、または関連付けられたテンプレートへのアクセス権限がユーザーに与えられていない場合に返されます。

The user has sent too many requests in a given amount of time.

An unexpected condition was encountered on the server.

delete
Delete Box Doc Gen template
このドキュメント内で一部のAPIを試せるようになりました。
ログイン

リクエストの例

cURL
curl -L -X DELETE 'https://api.box.com/2.0/docgen_templates/12345678' \
     -H 'box-version: 2025.0' \
     -H 'Authorization: Bearer <ACCESS_TOKEN>'
TypeScript Gen
await client.docgenTemplate.deleteDocgenTemplateByIdV2025R0(
  createdDocgenTemplate.file!.id,
);
Python Gen
client.docgen_template.delete_docgen_template_by_id_v2025_r0(
    created_docgen_template.file.id
)
.NET Gen
await client.DocgenTemplate.DeleteDocgenTemplateByIdV2025R0Async(templateId: NullableUtils.Unwrap(createdDocgenTemplate.File).Id);