Get User Details

This API retrieves user details for a specified time range. It supports filtering by userId, email, and signUpOriginUrl.

Get the details of the user.

GET {API_URL}/client/userDetail

Auth required: YES

Please pass your API key as the username and API secret as the password as Basic Auth to access the endpoint

Query Parameters

Name
Type

from

ISODateString

to

ISODateString

email

emailId of the user

signUpOriginUrl

The URL from where the user has come.

{
        "id": "679773d12166d6d15437edc9",
        "name": "one too test the long text of user name with dots in string thank you",
        "email": "sujithn@mpp.co.in",
        "address": {
            "name": "",
            "apartment": "",
            "area": "",
            "pincode": "",
            "landmark": "",
            "city": "",
            "state": "",
            "country": ""
        },
        "countryCode": "+91",
        "gender": "MALE",
        "dateOfBirth": "2025-01-27T00:00:00.000Z",
        "isPhoneVerified": false,
        "isEmailVerified": true,
        "hasPassword": true,
        "accessMethod": {
            "otp": true,
            "password": true
        },
        "createdAt": "2025-01-27T11:53:53.909Z",
        "signUpOriginUrl": "https://epbeta.mathrubhumi.com/IOS",
        "passwordConfig": {
            "minLength": 8,
            "alphaNumeric": true,
            "specialChar": true,
            "MixCase": false
        }
    }

Last updated