Responses

  • 200 application/json
    Hide response attribute Show response attribute object
  • 403 application/json
    Hide response attribute Show response attribute object
GET /api/user
curl \
 -X GET https://checkmango.com/api/user \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": {
    "id": "1",
    "type": "users",
    "attributes": {
      "name": "London Schultz",
      "email": "[email protected]"
    }
  }
}
Response examples (403)
{
  "message": "Unauthenticated."
}