Skip to main content
GET
/
me
Retrieves the current authenticated user's profile information including account details, portal associations, and portal information.
curl --request GET \
  --url https://api.example.com/me
{
  "account": {
    "id": 123,
    "name": "<string>",
    "email": "<string>",
    "phonenumber": "<string>",
    "memory": "<string>",
    "language": "<string>",
    "workingCity": "<string>",
    "createdAt": "2023-11-07T05:31:56Z"
  },
  "accountPortals": [
    {
      "emailDailySummary": true,
      "portalId": 123,
      "accountId": 123
    }
  ],
  "portal": [
    {
      "id": 123,
      "createdAt": "2023-11-07T05:31:56Z",
      "status": 1,
      "name": "<string>",
      "customerServicePhone": "<string>",
      "supplierPhone": "<string>",
      "provider": "<string>",
      "alfaECareCompanyCode": "<string>",
      "organisationId": 123
    }
  ]
}

Response

Successfully retrieved the user's profile information.

account
object
accountPortals
object[] | null
portal
object[] | null