查询文件 URL
可通过以下请求查询已创建的签名事件的链接。
查询签名事件 URL
Request
ENDPOINT
/batch_group/batch_group_key/urlMÉTODO
GETPath Params
| 字段 | 描述 |
|---|---|
batch_group_key | 签名事件的唯一标识键。 |
Response Body
{
"all_files_url": "https://google.com",
"expiration_datetime": "2024-05-01T01:00:00.000Z"
"batches":[
{
"document_batch_key": "121",
"documents": [
{
"document_key": "222",
"original_file_url": "https://google2.com",
"signed_file_url": "https://google3.com",
"file_url": "https://google4.com"
}
]
}
]
}
Body Params
| 字段 | 类型 | 描述 |
|---|---|---|
batch_group_key | string | 签名事件的唯一标识键。 |
all_files_url | string | 包含原始 PDF 和 p7s 的 ZIP 文件 URL。 |
batches | string | 不同类型文件的列表。 |
document_batch_key | string | 文件批次的唯一标识键。 |
documents | Array | 文件对象列表。 |
document_key | string | 文件的唯一标识键。 |
original_file_url | string | 原始文件的 URL。 |
signed_file_url | string | 带签名页的文件 URL。 |
file_url | string | p7s 文件的 URL。 |
expiration_datetime | string | URL 过期的日期和时间。 |
查询文件 URL
Request
ENDPOINT
/document/document_key/urlMÉTODO
GETPath Params
| 字段 | 描述 |
||----------------|--------------------------------------------|
| document_key | 文件的唯一标识键 |
Response Body
{
"document_key": "222",
"original_file_url": "https://google2.com",
"signed_file_url": "https://google3.com",
"file_url": "https://google4.com",
"expiration_datetime": "2024-05-01T01:00:00.000Z"
}
Body Params
| 字段 | 类型 | 描述 |
|---|---|---|
document_key | string | 文件的唯一标识键。 |
original_file_url | string | 原始文件的 URL。 |
signed_file_url | string | 带签名页的文件 URL。 |
file_url | string | p7s 文件的 URL。 |
expiration_datetime | string | URL 过期的日期和时间。 |
查询 ZIP 文件 URL
Request
ENDPOINT
/certifier/zip_file/zip_file_key/urlMÉTODO
GETPath Params
| 字段 | 描述 |
||----------------|--------------------------------------------|
| zip_file_key | ZIP 文件的标识键。 |
Response Body
{
"zip_file_key": "222",
"signed_url": "https://google3.com",
"expiration_datetime": "2024-05-01T01:00:00.000Z"
}
Body Params
| 字段 |
|---|