resume task
POST
https://api.wexa.ai/task/{id}/resume
Last modified:2025-04-25 11:46:59
Resume a Specific Task
task_id
. Resuming a task reactivates its execution, allowing it to continue from where it was paused.Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.wexa.ai/task//resume' \
--header 'x-api-key: {{x-api-key}}' \
--header 'Content-Type: application/json' \
--data-raw '{}'
Response Response Example
{
"_id": "6807161f1a9ea363140a265a",
"projectID": "67fdea40aac77be632954f13",
"created_at": 1745294879.456473,
"updated_at": 1745294879.456476,
"status": "ready",
"created_by": "67fdea40aac77be632954f0e",
"execution_ids": [
"e2c4ace2-abe6-4086-bbf2-82bba48a5055"
],
"execution_nodes": [
{
"execution_id": "e2c4ace2-abe6-4086-bbf2-82bba48a5055",
"_id": "6807161f1a9ea363140a2659",
"execution_type": "execution",
"children": []
}
],
"name": "content creator testing"
}
Request
Path Params
id
string
required
Header Params
x-api-key
string
required
Example:
{{x-api-key}}
Body Params application/json
Responses
Modified at 2025-04-25 11:46:59