Skip to main content
GET
/
me
Get current user + partner brand
curl --request GET \
  --url http://localhost:4000/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "email": "<string>",
  "displayName": "<string>",
  "partner": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "slug": "<string>",
    "displayName": "<string>",
    "logoPath": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer JWT signed by your app, with iss matching the issuer registered on the partner record. Verified against your JWKS URL or static public key.

Response

Default Response

id
string<uuid>

Internal voucher-platform user UUID.

email
null | string
displayName
null | string
partner
object

Brand block for the partner that owns this user. Null for internal/preview users.