Get Account.

GET /api/user

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data object
      Hide data attributes Show data attributes object
      • id string
      • type string
      • attributes object
        Hide attributes attributes Show attributes attributes object
        • name string
        • email string
  • 403 application/json
    Hide response attribute Show response attribute object
    • message string
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."
}