Get User

To retreive the user information based on the user id you can use the below API.

info

{api-base-url} can be obtained from the MirrorFly console.

HTTP request#

curl -X GET "https://{api-base-url}/api/v1/users/{userId}"
-H "accept: */*"
-H "Authorization: AuthToken"

Request Params#

ParamDataTypeRequiredDescription
userIdStringYesUserid of the user which you need to retrieve the information. Request path variable

Responses#

If successful, this action returns a user resource in the response body.

{
"status": 200,
"data": {
"nickName": "Sampleuser",
"profileUrl": "",
"profileUrlThumb": "",
"emailId": "sampleuser@gmail.com",
"mobileNumber": "919876543210",
"username" : "99XXXXXX11",
"userId" : "99XXXXXX11",
},
"metaData: {
// metadata key/value if any set
},
"message": "Data retrieved successfully"
}

Error#

In the case of an error, an error object like below is returned.

When the token passed in Headers is not given or expired

{
"status": 401,
"message": "Token Expired"
}

In the case of a Bad Request, an error message is returned

{
"status": 400,
"message": "Error Message"
}