get schedules
GET
https://api.wexa.ai/schedules/coworker/{coworker_id}
Last modified:2025-04-25 12:24:36
Retrieve Coworker Schedule by ID
coworker_id
. This allows you to view the planned execution times and frequencies of the coworker's tasks, enabling better planning and coordination of automation workflows.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.wexa.ai/schedules/coworker/?limit=15&page_no=1&projectID=67fdea40aac77be632954f13&coworker_id=68067c49c517ff5238533ccf' \
--header 'x-api-key: {{x-api-key}}'
Response Response Example
{
"data": [
{
"conclusion": null,
"count": 0,
"coworker_id": "68067c49c517ff5238533ccf",
"created_at": 1745303037.958168,
"created_by": "67fdea40aac77be632954f0e",
"frequency": null,
"goal": {
"display_template": "[{\"type\":\"paragraph\",\"children\":[{\"text\":\"say about abdul kalam\"}]}]",
"template": "say about abdul kalam"
},
"_id": "680735fdff5c4953f01709b8",
"last_coworker_execution_id": null,
"last_record_id": null,
"limit": null,
"projectID": "67fdea40aac77be632954f13",
"schedule": 1745303243.331,
"status": "active",
"table": null,
"type": "once",
"updated_at": null,
"task_id": "680735fdff5c4953f01709b6"
},
{
"conclusion": "Execution Completed",
"count": 1,
"coworker_id": "68067c49c517ff5238533ccf",
"created_at": 1745294470.290392,
"created_by": "67fdea40aac77be632954f0e",
"frequency": null,
"goal": {
"display_template": "[{\"type\":\"paragraph\",\"children\":[{\"text\":\"describe about abdul kalam\"}]}]",
"template": "describe about abdul kalam"
},
"_id": "680714861a9ea363140a2655",
"last_coworker_execution_id": "798a946e-3320-4a88-93dd-47437d803c31",
"last_record_id": null,
"limit": null,
"projectID": "67fdea40aac77be632954f13",
"schedule": 1745294740.342,
"status": "inactive",
"table": null,
"type": "once",
"updated_at": null,
"task_id": "680714851a9ea363140a2653"
}
],
"total_count": 2
}
Request
Path Params
coworker_id
string
required
Query Params
limit
string
required
Example:
15
page_no
string
required
Example:
1
projectID
string
required
Example:
67fdea40aac77be632954f13
coworker_id
string
required
Example:
68067c49c517ff5238533ccf
api.wexa.ai/schedules/coworker
string
optional
Header Params
x-api-key
string
required
Example:
{{x-api-key}}
Responses
Modified at 2025-04-25 12:24:36