const response = await fetch('/api/v1/entity-access/actions/mark-processed', {
method: 'POST',
headers: {
"Authorization": "Bearer jwt",
"Content-Type": "application/json"
},
body: JSON.stringify({
"entries": [
{
"entityName": "person",
"entityUuid": "82b431f0-f401-4afd-b6db-9d1d751232d9",
"processedAt": "2023-05-01T00:00:00.000Z"
}
]
}),
});
const data = await response.json();