cURL
curl --request GET \ --url https://api.replyke.com/api/v6/:projectId/users/:userId
{ "id": "<string>", "projectId": "<string>", "foreignId": "<string>", "name": "<string>", "username": "<string>", "avatar": "<string>", "bio": "<string>", "birthdate": "<string>", "reputation": 123, "location": { "type": "<string>", "coordinates": [ 123 ] }, "metadata": {}, "createdAt": "<string>", "updatedAt": "<string>" }
Retrieve details of a specific user by their ID
Show properties
Missing or Invalid User ID - 400 Bad Request
{ "error": "Missing or invalid userId in request parameters", "code": "user/invalid-user-id" }
User Not Found - 404 Not Found
{ "error": "User not found", "code": "user/not-found" }
Server Error - 500 Internal Server Error
{ "error": "Internal server error", "code": "user/server-error", "details": "<Error message>" }