GET
/
me
curl --request GET \
  --url https://api.truecall.com/me \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "data": {
    "team": {
      "name": "<string>",
      "owner": {
        "first_name": "<string>",
        "last_name": "<string>",
        "email": "<string>"
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Me response
status
enum<string>
Available options:
success,
error
Example:

"success"

data
object