events_system_tasks_run_create
POST/api/v3//events/system_tasks/:uuid/run/
Run task
Request
Path Parameters
uuid uuidrequired
A UUID string identifying this System Task.
Responses
- 204
- 400
- 403
- 404
- 500
Task retried successfully
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
Task not found
Failed to retry task
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X POST '/api/v3/events/system_tasks/:uuid/run/' \
-H 'Authorization: Bearer <TOKEN>'