Retrieve User Information
Information about a user can be retrieved with a GET
request to /api/users/{userId}
.
//retrieving user information
GET /api/users/88a28076-18e8-4275-b39c-eaacc240d406 HTTP/1.1
Host: user.gini.net
Authorization: BEARER 74c1e7fe-e464-451f-a6eb-8f0998c46ff6
Accept: application/json
Response
Key | Description |
---|---|
| Unique User ID. |
| The user's email address. |
//Response
{
"id":"88a28076-18e8-4275-b39c-eaacc240d406",
"email":"some_user@example.com"
}