GET
/
users
/
{user_id}
curl --request GET \
  --url https://grm-api.vercel.app/users/{user_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "status": "<string>"
}

Returns a user by ID from the system. This endpoint requires authentication via a bearer token. The response includes all user details such as Name, Email, State, Gender, District, Mobile, and status.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

user_id
string
required

ID of user to fetch

Response

200
application/json

User response

The response is of type object.