v1

latestOpenAPI 3.0.02026-07-2466275257.1 KB
user

Retrieve current user detail

Use this endpoint to retrieve the details of the user currently logged into the Epsilon Retail Media platform. The request relies on authentication, so no additional query parameters are needed. The endpoint returns detailed information about the user, including their user ID, email address, first name, and last name. It also provides details about any team invites that the user has not yet accepted, such as the email address of the sender, the team ID, and the team name associated with the invite.

get/v2/current-user-detail

Response

The details of the user currently logged into the Epsilon Retail Media platform.

Example response

{
  "user": {
    "id": "user-456",
    "email": "user@epsilon.com",
    "namespace": "namespace-1",
    "firstName": "Harry",
    "lastName": "Paul",
    "logoId": "52g31f9d-7b50-4519-a9b9-e5f8cf4ha321",
    "teamIds": [
      "team_001",
      "team_002"
    ]
  }
}