Exercise of user rights
Users have the right to access their data and erase it. All of these operations can be manually, or be automatized with your centralized systems via API.
Retrieve all data related to a user
You can retrieve all data related to a user point via the Navigator Interface (see Monitoring), or via the different user point APIs (see the pages of section "User points")
Delete all data related to a user
In order to delete a user point and all documents related (identifiers, user activities, user profiles etc.), you can use one of the following APIs (depending on the identifier you are using):
Via a user point identifier
Delete a user point by id
DELETE
https://api.mediarithmics.com/v1/datamarts/:datamartId/user_points/:userPointId
Path Parameters
datamartId
integer
The ID of the datamart
userPointId
integer
The ID of the user point to delete
Via an email hash
Delete a user point by email hash
DELETE
https://api.mediarithmics.com/v1/datamarts/:datamartId/user_points/email_hash=:emailHash
Path Parameters
datamartId
integer
The ID of the datamart
emailHash
string
The email hash of the datamart
Via a user account identifier
Delete a user point by account id
DELETE
https://api.mediarithmics.com/v1/datamarts/:datamartId/user_points/compartment_id=:compartmentId,user_account_id=:user_accountId
Path Parameters
datamartId
integer
The ID of the datamart
compartmentId
integer
The compartment id of the user account
user_accountId
integer
The ID of the user account
Via a user agent
Delete a user point by user agent id
DELETE
https://api.mediarithmics.com/v1/datamarts/:datamartId/user_points/user_agent_id=:userAgentId
Path Parameters
datamartId
integer
The ID of the datamart
userAgentId
string
The ID of the user agent, like vec:xxx
Last updated