Method : POST | GET
Endpoint: {{ url('/') }}/info-user
Request Body : (JSON If POST)
| Parameter | Type | Required | Description | 
|---|---|---|---|
| api_key | string | Yes | API Key | 
| username | string | Yes | The username must not contain symbols | 
Example JSON Request
{
    "api_key": "123456789",
    "username": "magd"
}Example URL Request
{{ url('/') }}/info-user?api_key=1234567890&username=magdExample JSON Response
{
    "status":true,
    "info":{
        "id":1,
        "username":"magd",
        "email":"ttmttxx@xx.com",
        "email_verified_at":null,
        "api_key":"ORtg0LwKMZoadhXuwDYg40frCkfaul",
        "chunk_blast":0,
        "level":"admin",
        "status":"active",
        "limit_device":10,
        "active_subscription":"active",
        "subscription_expired":"2024-09-14 23:11:31",
        "created_at":"2024-08-15T16:11:31.000000Z",
        "updated_at":"2024-08-15T16:11:31.000000Z",
        "two_factor_enabled":0,
        "two_factor_secret":null,
        "recovery_codes":null
    }
}