Summary
Re-attempt
Description
Re-attempt after n minutes
Route
POST /mop/reattempt
Roles
admin
engineering
support
apiwrite
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
job_id |
string |
yes |
- |
attemptID |
string |
yes |
- |
minutes |
number |
yes |
- |
attempts |
number |
yes |
- |
Copied to Clipboard
{
"job_id": "test",
"attemptID": "test1234",
"minutes": 1,
"attempts": 2
}
Copied to Clipboard
{
"type": "object",
"properties": {
"job_id": {
"title": "job_id",
"type": "string",
"examples": [
"test"
]
},
"attemptID": {
"title": "attemptID",
"type": "string",
"examples": [
"test1234"
]
},
"minutes": {
"title": "minutes",
"type": "integer",
"examples": [
1
]
},
"attempts": {
"title": "attempts",
"type": "integer",
"examples": [
2
]
}
},
"required": [
"job_id",
"attemptID",
"minutes",
"attempts"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
response |
string |
Response from attempt |
Copied to Clipboard
"Success"
Copied to Clipboard
{
"title": "response",
"type": "string",
"examples": [
"Success"
]
}