Download OpenAPI specification:Download
API system for task execution, outsourced; no need to configure crontab, our system will send you asynchronous queued requests
token | uuid Auth Token, developers give you. |
taskGroup | string Name of tasker, developers give you. |
status | boolean Enum: true false True if it is active |
target | string URL target to execute task |
time | integer The default milliseconds you want the task to take to execute. |
{- "token": "2eVk6GQkcwMdziuqxT1obworcCf3woLCjUgB1ayB4QY0Us0YldWCvU8w4lsV2cyt",
- "taskGroup": "taskDemo",
- "status": false,
- "time": "12312"
}
{- "success": true,
- "message": "Task added successfully",
- "task": {
- "id": 123456789,
- "status": true,
- "time": 1000
}
}
token | uuid Auth Token, developers give you. |
taskGroup | string Name of tasker, developers give you. |
status | boolean or null Enum: true false True if it is active |
target | string or null URL target to execute task |
time | integer or null The default milliseconds you want the task to take to execute. |
{- "token": "2eVk6GQkcwMdziuqxT1obworcCf3woLCjUgB1ayB4QY0Us0YldWCvU8w4lsV2cyt",
- "taskGroup": "taskDemo",
- "id": "123456789",
- "status": true,
- "time": "123123"
}
{- "message": "Task edited successfully"
}
token | uuid Auth Token, developers give you. |
taskGroup | string Name of tasker, developers give you. |
id | integer Send the id to delete |
{- "token": "2eVk6GQkcwMdziuqxT1obworcCf3woLCjUgB1ayB4QY0Us0YldWCvU8w4lsV2cyt",
- "taskGroup": "taskDemo",
- "id": "123456789"
}
{- "message": "Task deleted successfully"
}
token | uuid Auth Token, developers give you. |
taskGroup | string Name of tasker, developers give you. |
{- "token": "2eVk6GQkcwMdziuqxT1obworcCf3woLCjUgB1ayB4QY0Us0YldWCvU8w4lsV2cyt",
- "taskGroup": "taskDemo"
}
{- "success": true,
- "tasks": {
- "name": "taskDemo",
- "token": "2eVk6GQkcwMdziuqxT1obworcCf3woLCjUgB1ayB4QY0Us0YldWCvU8w4lsV2cyt",
- "tasks": {
- "id": 1,
- "status": true,
- "time": 1000
}
}
}