API
Me

4. Me

Me endpoint returns basic data about the current use user

query {
    me {
      id
      email
      phone
      kycStatus
      firstName
      lastName
      referralCode
      birthDate
      isProfileCompleted
      address {
        street
        city
        country
        postalCode
        extra
      }
    }
  }

Authorization: Bearer ACCESS_TOKEN

Response:

{
  "data": {
    "me": {
      "id": "3",
      "blocked": false,
      "phone": "+48666387019",
      "kycStatus": "PENDING",
      "address": {
        "city": "krak",
        "country": "pola",
        "street": "francesco",
        "postalCode": "1311",
        "extra": "te"
      }
    }
  }
}