🔵[GET] Specific by ID

Fetch all info from a specific user 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

✔️

sort

string

✔️

id

int

✔️

Body request example:

{
"query":"user",
"condition":"specific",
"sort":"id",
"parameters":{
    "id":2
    }
}
{
    "status": "Success",
    "time": 0.04409980773925781,
    "data": {
        "total": 1,
        "users": [
            {
                "user_id": "2",
                "name": "IT Operator",
                "created": "2022-06-15 11:32:53"
            }
        ]
    }
}

Last updated