🔵[GET] Creation Date

Fetch all tasks by creation between two given dates.

Base URL:

{YOUR-DOMAIN}/upload/ost_wbs/

[ Header ] Authentication

Field
Type
Mandatory

apikey

string

✔️

[ Body ] parameters

Option
Type
Mandatory

query

string

✔️

condition

string

✔️

sort

string

✔️

ticket_id

int

✔️

start_date

string

✔️

end_date

string

✔️

Body request example:

{
"query":"tasks",
"condition":"all",
"sort": "creationDate",
"parameters":{
    "ticket_id": 23,
    "start_date":"1990-01-01 00:00:00",
    "end_date":"2022-06-27 23:59:59"
    }
}

Status Code

{
    "status": "Success",
    "time": 0.002454042434692383,
    "data": {
        "total": 3,
        "tasks": [
            {
                "task_id": "18",
                "title": "Titulo 1",
                "description": "<p>Titulo 1</p>",
                "created": "2022-06-27 22:10:12"
            },
            {
                "task_id": "19",
                "title": "Titulo 2",
                "description": "<p>Titulo 2<br /></p>",
                "created": "2022-06-27 22:10:23"
            },
            {
                "task_id": "20",
                "title": "Titulo 3",
                "description": "<p>Titulo 3</p>",
                "created": "2022-06-27 22:10:54"
            }
        ]
    }
}

Last updated