取得合約提醒
GET - /api/v1/task/expiredRemind/{instanceId}
參數
| Name | Parameter | Type | Required/Optional | Description |
|---|---|---|---|---|
instanceId | path | string | Required | 任務 Instance Id |
key | query | string | Required | 公司 API Key |
回傳
{
"body": {
"data": [
{
"uuid": "string",
"periodType": "string",
"periodValue": 1,
"emailSubject": "string",
"emailMessage": "string",
"cc": [
{
"email": "string",
"name": "string"
}
]
}
],
"expiredDate": "2024-03-26T08:11:57.141Z",
"total": 0
},
"errorCode": 0,
"message": "string"
}- uuid - 合約提醒 UUID
- periodType -
提醒時間類型DAY-{periodValue}天前MONTH-{periodValue}月前
- periodValue -
提醒時間數值 - emailSubject - 提醒 Email 標題
- emailMessage - 提醒 Email 內容
- cc (陣列) - 副本收件人
- email - 副本收件人 email
- name - 副本收件人名稱
- expiredDate - 合約到期日
errorCode 錯誤代碼
請參考 錯誤碼和錯誤訊息 頁面
Table of Contents