Get User ID
Retrieve the authenticated user's ID.
Endpoint: /api/user/id Method: GET Description: Returns the ID number of the authenticated user.
/api/user/id
GET
Response:
{ "user_id": 12345 }
Get User Name
Retrieve the authenticated user's name.
Endpoint: /api/user/name Method: GET Description: Returns the name of the authenticated user.
/api/user/name
{ "name": "John Doe" }
Get User Email
Retrieve the authenticated user's email.
Endpoint: /api/user/email Method: GET Description: Returns the email of the authenticated user.
/api/user/email
Last updated 1 year ago
{ "email": "[email protected]" }