User Detail - Updates current user preferences

Updates the preferences of the current user based on the provided User Preferences object.

patch
Authorizations
Query parameters
versionstringOptional

The requested API version

Default: 1.0
Header parameters
embedfast-user-idstringOptional

Optional User Id

Body
defaultTenantstring · uuid | nullableOptional

A public property of type nullable Guid (a unique identifier) that has both a getter and a setter method, which allows for getting and setting the value of the themeId property.

Responses
404
Not Found: User details not found, the URL is invalid, or the resource has been deleted.
patch
PATCH /users/me/preferences HTTP/1.1
Host: 
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 254

{
  "defaultTenant": "123e4567-e89b-12d3-a456-426614174000",
  "theme": [
    {
      "themeId": "123e4567-e89b-12d3-a456-426614174000",
      "tenantId": "123e4567-e89b-12d3-a456-426614174000"
    }
  ],
  "favorite": {
    "tenantId": "123e4567-e89b-12d3-a456-426614174000",
    "favoriteReport": "text"
  }
}
{
  "errorMessage": "Not found",
  "statusCode": 404
}

Last updated