跳到主要内容

查询文件 URL

可通过以下请求查询已创建的签名事件的链接。

查询签名事件 URL

Request

ENDPOINT
/batch_group/batch_group_key/url
MÉTODO
GET

Path 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_keystring签名事件的唯一标识键。
all_files_urlstring包含原始 PDF 和 p7s 的 ZIP 文件 URL。
batchesstring不同类型文件的列表。
document_batch_keystring文件批次的唯一标识键。
documentsArray文件对象列表。
document_keystring文件的唯一标识键。
original_file_urlstring原始文件的 URL。
signed_file_urlstring带签名页的文件 URL。
file_urlstringp7s 文件的 URL。
expiration_datetimestringURL 过期的日期和时间。

查询文件 URL

Request

ENDPOINT
/document/document_key/url
MÉTODO
GET

Path 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_keystring文件的唯一标识键。
original_file_urlstring原始文件的 URL。
signed_file_urlstring带签名页的文件 URL。
file_urlstringp7s 文件的 URL。
expiration_datetimestringURL 过期的日期和时间。

查询 ZIP 文件 URL

Request

ENDPOINT
/certifier/zip_file/zip_file_key/url
MÉTODO
GET

Path 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

字段类型描述
zip_file_keystringZIP 文件的标识键。
expiration_datetimedateURL 过期的日期和时间。
signed_urlstringZIP 文件的链接。