GET /{environment}/me

This route returns the ambassador information of the connected user. you can use different url prefixes according to the application you are using.

  • /manager/me
  • /platform/me
  • /widget/me

Path parameters

  • environment string Required

    Values are manager, platform, or widget.

Responses

  • 200 application/json

    Returns the ambassador

  • 403

    Forbidden - You don't have permission to access this route

GET /{environment}/me
curl \
 --request GET 'https://domain.tld/api/v2/{environment}/me' \
 --header "Authorization: Bearer $ACCESS_TOKEN"