GDPR Register
A GDPR Request API can be submitted via HTTP POST to the following endpoint.
POST
api.appvirality.com/gdpr1_0/opengdpr_requestsapplication/jsonInput 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 Params | Description |
|---|---|
| subject_request_id | UUID v4 string. This must be generated by the controller at the time of request submission to a Processor. |
| subject_request_type | Request type will be “erasure” always. |
| submitted_time | RFC 3339 date string representing the time of the original request by the data subject. Note that all timestamps are sent in UTC |
| subject_identities | Array of Identity Objects covering the type, value and format of the user ID |
| ~ identity_type | You can provide “email” or “userkey” or “useridinstore” as identity_type |
| ~ identity_value | string value representing the identity. |
| ~ identity_format | Identify 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 Params | Description |
|---|---|
| controller_id | API key of the application |
| expected_completion_time | RFC 3339 date string representing the time when the Processor expects to fulfill the request. |
| received_time | RFC 3339 date string representing the time when the Processor received the request. |
| encoded_request | Base64 encoding of the entire body of the request. |
| subject_request_id | UUID v4 string from the originating request. |
