Requests
Create a Request
POST https://api.didomi.io/dsar/requests?organization_id={{organization_id}}
{
"organization_user_id": "organization_user_id",
"user_right_id": "cpra_access_my_data",
"status": "verified",
"request_fields": [
{
"field_id": "email",
/**
* This value is required to send emails to the end-user
*/
"value": "[email protected]"
}
],
/**
* Fill in the user property in order to set user's information at its creation.
* If no user exists with the organization_user_id provided,
* Didomi will be creating this new user on your behalf
* with data provided in user property
*/
"user": {
"email": "[email protected]",
"metadata": {},
"id": "String",
"country": "String"
},
"source": {
"type": "DSAR",
"country": "String"
}
}Entity
Type
Mandatory
Description
Country
Property
Type
Mandatory
Description
Create a Request with approval workflow
Update a Request
Query a list of Requests
Last updated