Dropbox Sign/templateList

仅预览 · 原因见下方

Dropbox SignDropbox Sign 电子签名 API

GET/template/list

列表模板

返回您可以访问的模板的列表。 请查看我们的[搜索指南](/api/reference/search/),了解有关查询模板的更多信息。

通过完整的 Dropbox Sign v3 API 管理账户、签名请求、模板、团队、批量发送、文件下载、传真和事件回调;Hub 仅提供文档与本地 SDK/CLI。

请求

operationId
templateList
服务器
https://api.hellosign.com/v3
认证
api_key, oauth2

请求参数

account_id

querystring

要为其返回模板的账户。必须是团队成员。使用 `all` 表示所有团队成员。默认为您的账户。

example-account-id

page

queryinteger

返回模板列表的页码。默认为 `1`。

1

page_size

queryinteger

每页要返回的对象数。必须在 `1` 和 `100` 之间。默认为 `20`。

20

query

querystring

包含用于过滤模板对象的搜索词和/或字段的字符串。

响应

200

TemplateListResponseapplication/json

成功响应

字段: templateslist_infowarnings

4XX

ErrorResponseapplication/json

操作失败

字段: error

{
  "templates": [
    {
      "template_id": "example-template-id",
      "title": "Example document",
      "message": "Example message",
      "updated_at": 0,
      "is_embedded": false,
      "is_creator": false,
      "can_edit": false,
      "is_locked": false
    }
  ],
  "list_info": {
    "num_pages": 0,
    "num_results": 0,
    "page": 0,
    "page_size": 0
  },
  "warnings": [
    {
      "warning_name": "Example Name"
    }
  ]
}