Unify and manage your data

Unmark Entity as Favorite (for Current User)

Reset the isFavorite flag on this entity for the current user.

Reset the isFavorite flag on this entity for the current user.

Request

PUT {TenantURL}/{entityURI1}/_unmarkFavorite
Table 1. Parameters
ParameterRequiredDetails
HeadersAuthorizationYesInformation about authentication access token in format "Bearer <accessToken>" (for more information see Authentication API ).

Response

Returns an entity in updated state (with
isFavorite
flag set to false).

Request

PUT {TenantURL}/entities/031WTej/_unmarkFavorite
Headers: Authorization: Bearer {your-access-token}

Response

{
    "index": 0,
    "object": {
        "URI": "entities/031WTej",
        "type": "configuration/entityTypes/Individual",
        "createdBy": "admin",
        "createdTime": 1363953910550,
        "updatedBy": "admin",
        "updatedTime": 1363954004898,
        "startDate": 170802000000,
        "roles": ["configuration/roles/Client"],
        "isFavorite": false,
        "attributes": {}    },
    "successful": true
}