🔵[GET] Specific
Fetch all info from a specific task using the ID.
Base URL:
{YOUR-DOMAIN}/upload/ost_wbs/
[ Header ] Authentication
Field
Type
Mandatory
apikey
string
✔️
[ Body ] parameters
Option
Type
Mandatory
query
string
✔️
condition
string
✔️
id
int
✔️
Body request example:
{
"query":"tasks",
"condition":"specific",
"parameters":{
"id": 1
}
}
Status Code
{
"status": "Success",
"time": 0.0027658939361572266,
"data": {
"total": 1,
"tasks": [
{
"task_id": "1",
"title": "Titulo 1",
"description": "<p>Titulo 1</p>",
"created": "2022-06-27 22:10:12"
}
]
}
}
Last updated