Skip to content

A GDPR Request API can be submitted via HTTP POST to the following endpoint.


POSTapi.appvirality.com/gdpr1_0/opengdpr_requestsapplication/json

Input i.e. Request

{
"subject_request_id": "a7551968-d5d16-44b2-9831-815ac901717298",
"subject_request_type": "erasure",
"submitted_time": "2018-05-23T06:00:00Z",
"subject_identities": [
{
"identity_type": "email",
"identity_value": "testcam@stag.growthscore.io",
"identity_format": "raw"
}
]
}

Input Params

Input ParamsDescription
subject_request_idUUID v4 string. This must be generated by the controller at the time of request submission to a Processor.
subject_request_typeRequest type will be “erasure” always.
submitted_timeRFC 3339 date string representing the time of the original request by the data subject. Note that all timestamps are sent in UTC
subject_identitiesArray of Identity Objects covering the type, value and format of the user ID
~ identity_typeYou can provide “email” or “userkey” or “useridinstore” as identity_type
~ identity_valuestring value representing the identity.
~ identity_formatIdentify format will always be “raw”.

Response

{
"controller_id": "004d37de619e41888eb7a4f800715468",
"expected_completion_time": "2018-05-24T07:45:24Z",
"received_time": "2018-05-23T07:45:24Z",
"encoded_request": "eyJzdWJqZWN0X3JlcXVlc3RfaWQiOiJhNzU1MTk2OC1kNWQxNi00NGIyLTk4MzEtODE1YWM5MDE3MTE3Mjk4Iiwic3ViamVjdF9yZXF1ZXN0X3R5cGUiOiJlcmFzdXJlIiwic3VibWl0dGVkX3RpbWUiOiIyMDE4LTA1LTIzVDA2OjAwOjAwWiIsInN1YmplY3RfaWRlbnRpdGllcyI6W3siaWRlbnRpdHlfdmFsdWUiOiJ0ZXN0Y2FtQHN0YWcuZ3Jvd3Roc2NvcmUuaW8iLCJpZGVudGl0eV90eXBlIjoiZW1haWwiLCJpZGVudGl0eV9mb3JtYXQiOiJyYXcifV19",
"subject_request_id": "a7551968-d5d16-44b2-9831-815ac9017117298"
}

Response Params

Output ParamsDescription
controller_idAPI key of the application
expected_completion_timeRFC 3339 date string representing the time when the Processor expects to fulfill the request.
received_timeRFC 3339 date string representing the time when the Processor received the request.
encoded_requestBase64 encoding of the entire body of the request.
subject_request_idUUID v4 string from the originating request.