取得公司任務列表
POST - /api/v1/task/list
參數
{
"apiKey": "string",
"currentStatus": "DONE",
"startDate": "2025-07-01T00:00:00.000Z",
"endDate": "2025-08-01T00:00:00.000Z"
}- apiKey - API 金鑰
- currentStatus - 當前任務簽署者狀態
PROCESSING- 進行中SENT- 已傳送SEND_FAIL- 傳送失敗OPEN- 已開啟DONE- 已完成REJECT- 已拒絕
- startDate - 查詢開始時間
- endDate - 查詢結束時間
回傳
{
"body": {
"data": [
{
"instanceId": "string",
"name": "string",
"initiatorAccount": "string",
"initiatorName": "string",
"startDate": "2025-07-01T00:00:00.000Z",
"endDate": "2025-07-01T00:00:00.000Z",
"result": true,
"isFace": false,
"needVideo": false,
"expiredDate": "2025-07-02T00:00:00.000Z",
"currentStatus": "DONE",
"cancel": false,
"assignee": "string"
}
],
"total": 0
},
"errorCode": 0,
"message": "string"
}- instanceId - 任務 Instance Id
- name - 任務名稱
- initiatorAccount - 發起人帳號
- initiatorName - 發起人名稱
- startDate - 任務開始時間
- endDate - 任務結束時間
- result - 任務是否成功
- isFace - 當前簽署人是否為現場簽
- needVideo - 當前簽署人是否需要聲明錄影
- expiredDate - 任務到期時間
- currentStatus - 當前任務簽署者狀態
PROCESSING- 進行中SENT- 已傳送SEND_FAIL- 傳送失敗OPEN- 已開啟DONE- 已完成REJECT- 已拒絕
- cancel - 是否取消
- assignee - 當前簽署人
errorCode 錯誤代碼
請參考 錯誤碼和錯誤訊息 頁面
Table of Contents