🔵[GET] Creation Date

Fetch all SLA by creation between two given dates.

Base URL:

{YOUR-DOMAIN}/upload/ost_wbs/

[ Header ] Authentication

FieldTypeMandatory

apikey

string

✔️

[ Body ] parameters

OptionTypeMandatory

query

string

✔️

condition

string

✔️

sort

string

✔️

start_date

string

✔️

end_date

string

✔️

Body request example:

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

Status Code

{
    "status": "Success",
    "time": 0.0018548965454101562,
    "data": {
        "total": 1,
        "sla": [
            {
                "sla_id": "1",
                "flags": "3",
                "grace_period": "18",
                "name": "Default SLA",
                "notes": "",
                "created": "2022-06-15 11:04:28"
            }
        ]
    }
}

Last updated