🔵[GET] Specific by Email

Fetch all info from a specific user using the Email.

Base URL:

{YOUR-DOMAIN}/upload/ost_wbs/

[ Header ] Authentication

FieldTypeMandatory

apikey

string

✔️

[ Body ] parameters

OptionTypeMandatory

query

string

✔️

condition

string

✔️

sort

string

✔️

email

string

✔️

Body request example:

{
"query":"user",
"condition":"specific",
"sort":"email",
"parameters":{
    "email":"EmailToSearch@gmail.com"
    }
}
{
    "status": "Success",
    "time": 0.030923128128051758,
    "data": {
        "total": 1,
        "users": [
            {
                "user_id": "5",
                "name": "Person Name",
                "created": "2022-08-11 22:12:29"
            }
        ]
    }
}

Last updated