GET
/
v2
/
users
/
me
About me
curl --request GET \
  --url https://rest.forestreet.com/v2/users/me \
  --header 'x-api-key: <api-key>'
{
  "sub": "<string>",
  "authenticationMethod": "token",
  "email": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "customAttributes": {
    "promoGroupName": "<string>",
    "isNewUser": true,
    "isTermsAgreed": true,
    "theme": "<string>",
    "ailsaPreferences": {
      "activeWidgets": [
        "<string>"
      ],
      "isWidgetsHidden": true,
      "tableShownColumns": [
        "<string>"
      ]
    }
  }
}

Authorizations

x-api-key
string
header
required

Pass a static API key for every request, provided by your customer support.

Response

200
application/json

Current user information

The response is of type object.