What Is Query CC List API?
Query CC List API is used to query CC lists and currently only supports querying CC data within 90 days.
API Version
API Version | Update Time | Version Description |
V1 | 2025/07/22 | Original API |
API Calling
This API is used to query CC lists.
Request URL: https://api.jodoo.com/api/v1/workflow/cc/list
Request Frequency: 5 times/second
Request Method: POST
Request Parameters:
Parameter | Required | Type | Description |
username | Yes | String | It refers to the User No. in Contacts. |
skip | No | Number | Pagination parameter. The number of records to be skipped is 0 by default. |
limit | No | Number | Pagination parameter. The page size is ten by default and is 100 at most. |
read_status | No | String | Read or not. Three groups are there: "read", "unread", "all"(default). |
Sample Request:
{
"username":"jodoo",
"skip": 0,
"limit": 1,
"read_status": "all"
}
Response Parameter:
Parameter | Type | Description |
has_more | Boolean | Indicates whether there is more data available |
cc_list | Object[] | CC list (Only CC data within 90 days can be queried.) |
cc_list[].app_id | String | App ID |
cc_list[].form_id | String | Form ID |
cc_list[].task_id | String | CC ID |
cc_list[].instance_id | String | Instance ID, same as data_id |
cc_list[].form_title | String | Form name |
cc_list[].title | String | Task name |
cc_list[].flow_id | Number | Node ID |
cc_list[].flow_name | String | Node name |
cc_list[].url | String | Task access link |
cc_list[].assignee | Object | Task assignee information, same as member entity structure |
cc_list[].creator | Object | Task creator information, same as member entity structure |
cc_list[].create_time | Date | Start time for tasks |
cc_list[].status | Number | Status:
|
cc_list[].start_time | Date | Start time for notifications |
cc_list[].start_action | String | Create node action for tasks |
cc_list[].finish_time | Date | Mark read time, existing only when status = 1 |
Response Example:
{
"cc_list": [
{
"app_id": "67c1584ea70e38aa41a9b466",
"form_id": "67c1649dfee1fc583c98be20",
"task_id": "67c164a8fee1fc583c98be7f",
"instance_id": "67c164a8fee1fc583c98be59",
"form_title": "read all CC",
"title": "node 1",
"flow_id": 1,
"flow_name": "node 1",
"url": "https://www.jodoo.com/workflow/process_instance/67c164a8fee1fc583c98be59/task/67c164a8fee1fc583c98be7f",
"assignee": {
"username": "jodoo",
"name": "jodoo",
"departments": [
1,
3
],
"type": 0,
"status": 1,
"integrate_id": "jodoo"
},
"creator": {
"username": "jodoo",
"name": "jodoo",
"departments": [
1,
3
],
"type": 0,
"status": 1,
"integrate_id": "jodoo"
},
"create_time": "2025-02-28T07:24:24.321Z",
"status": 1,
"start_time": "2025-02-28T07:24:24.323Z",
"finish_time": "2025-02-28T07:24:27.608Z",
"start_action": "forward"
}
],
"has_more": true
}
I have finished reading. 🏆
👉I can't wait to SET THE API.
👉I need more HELP in Discord Forum.