The OneTrust Integration source is in beta. Its features and documentation are subject to change. For information on using beta-labelled sources, see the sources overview.
The following tutorial walks you through the steps to create a source connection and a dataflow to bring both historic and scheduled consent data from OneTrust Integration to Adobe Experience Platform using the Flow Service API.
The OneTrust Integration source connector and documentation were created by the OneTrust Integration team. For any inquiries or update requests, please contact the OneTrust team directly.
Before you can connect OneTrust Integration to Platform, you must first retrieve your access token. For detailed instructions on finding your access token, see the OneTrust Integration OAuth 2 guide.
The access token does not refresh automatically after it expires because system-to-system refresh tokens are not supported by OneTrust. Therefore, it is necessary to make sure that your access token is updated in the connection before it expires. The maximum configurable lifespan for an access token is one year. To learn more about updating your access token, see the OneTrust document on managing your OAuth 2.0 client credentials.
The OneTrust Integration API specifications are being shared with Adobe for data ingestion.
The following tutorial walks you through the steps to create a OneTrust Integration source connection and create a dataflow to bring OneTrust Integration data to Platform using the Flow Service API.
A base connection retains information between your source and Platform, including your source’s authentication credentials, the current state of the connection, and your unique base connection ID. The base connection ID allows you to explore and navigate files from within your source and identify the specific items that you want to ingest, including information regarding their data types and formats.
To create a base connection ID, make a POST request to the /connections
endpoint while providing your OneTrust Integration authentication credentials as part of the request body.
API format
POST /connections
Request
The following request creates a base connection for OneTrust Integration :
curl -X POST \
'https://platform.adobe.io/data/foundation/flowservice/connections' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}' \
-H 'Content-Type: application/json' \
-d '{
"name": "ONETRUST base connection",
"description": "ONETRUST base connection to authenticate to Platform",
"connectionSpec": {
"id": "cf16d886-c627-4872-9936-fb08d6cba8cc",
"version": "1.0"
},
"auth": {
"specName": "OAuth2 Refresh Code",
"params": {
"accessToken": "{ACCESS_TOKEN}"
}
}
}'
Property | Description |
---|---|
name |
The name of your base connection. Ensure that the name of your base connection is descriptive as you can use this to look up information on your base connection. |
description |
An optional value that you can include to provide more information on your base connection. |
connectionSpec.id |
The connection specification ID of your source. This ID can be retrieved after your source is registered and approved through the Flow Service API. |
auth.specName |
The authentication type that you are using to authenticate your source to Platform. |
auth.params. |
Contains the credentials required to authenticate your source, including the access token to connect to the API. |
auth.params.accessToken |
The access token that corresponds with your OneTrust Integration account. |
Response
A successful response returns the newly created base connection, including its unique connection identifier (id
). This ID is required to explore your source’s file structure and contents in the next step.
{
"id": "622124ca-6d18-47f7-999c-66f599955309",
"etag": "\"2e026443-0000-0200-0000-621f1af80000\""
}
Using the base connection ID you generated in the previous step, you can explore files and directories by performing GET requests.
Use the following calls to find the path of the file you wish to bring into Platform:
API format
GET /connections/{BASE_CONNECTION_ID}/explore?objectType=rest&object={OBJECT}&fileType={FILE_TYPE}&preview={PREVIEW}
When performing GET requests to explore your source’s file structure and contents, you must include the query parameters that are listed in the table below:
Parameter | Description |
---|---|
{BASE_CONNECTION_ID} |
The base connection ID generated in the previous step. |
objectType=rest |
The type of object that you wish to explore. Currently, this value is always set to rest . |
{OBJECT} |
This parameter is required only when viewing a specific directory. Its value represents the path of the directory you wish to explore. |
fileType=json |
The file type of the file you want to bring to Platform. Currently, json is the only supported file type. |
{PREVIEW} |
A boolean value that defines whether the contents of the connection supports preview. |
Request
curl -X GET \
'https://platform.adobe.io/data/foundation/flowservice/connections/622124ca-6d18-47f7-999c-66f599955309/explore?objectType=rest&object=json&fileType=json&preview=true' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}'
Response
A successful response returns the structure of the queried file.
The JSON response payload below is hidden for brevity. Select Click me to see the response payload.
{
"format": "hierarchical",
"schema": {
"type": "object",
"properties": {
"number": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"size": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"numberOfElements": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"last": {
"type": "boolean"
},
"pageable": {
"type": "object",
"properties": {
"paged": {
"type": "boolean"
},
"pageNumber": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"offset": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"tokenId": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"limit": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"pageSize": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"unpaged": {
"type": "boolean"
},
"sort": {
"type": "object",
"properties": {
"unsorted": {
"type": "boolean"
},
"sorted": {
"type": "boolean"
},
"empty": {
"type": "boolean"
}
}
}
}
},
"sort": {
"type": "object",
"properties": {
"unsorted": {
"type": "boolean"
},
"sorted": {
"type": "boolean"
},
"empty": {
"type": "boolean"
}
}
},
"content": {
"type": "object",
"properties": {
"LastUpdatedDate": {
"type": "string"
},
"Identifier": {
"type": "string"
},
"Language": {
"type": "string"
},
"TestDataSubject": {
"type": "boolean"
},
"CreatedDate": {
"type": "string"
},
"DataElements": {
"type": "array",
"items": {
"type": "object",
"properties": {}
}
},
"Id": {
"type": "string"
},
"Purposes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Status": {
"type": "string"
},
"LastTransactionDate": {
"type": "string"
},
"CustomPreferences": {
"type": "array",
"items": {
"type": "object",
"properties": {}
}
},
"LastUpdatedDate": {},
"ExpiryDate": {},
"Topics": {
"type": "array",
"items": {
"type": "object",
"properties": {
"IsConsented": {
"type": "boolean"
},
"Id": {
"type": "string"
},
"Name": {
"type": "string"
}
}
}
},
"TotalTransactionCount": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"LastReceiptId": {},
"ConsentDate": {
"type": "string"
},
"LastInteractionDate": {},
"Name": {
"type": "string"
},
"FirstTransactionDate": {
"type": "string"
},
"LastTransactionCollectionPointId": {
"type": "string"
},
"LastTransactionCollectionPointVersion": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"Version": {
"type": "integer",
"minimum": -9007199254740992,
"maximum": 9007199254740991
},
"attributes": {
"type": "object",
"properties": {}
},
"Id": {
"type": "string"
},
"PurposeNote": {},
"WithdrawalDate": {
"type": "string"
}
}
}
}
}
},
"first": {
"type": "boolean"
},
"empty": {
"type": "boolean"
}
}
},
"data": [
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "de1ab4d2-6ccf-42bd-b363-2d8cac60c88c",
"Language": "en-us",
"Identifier": "gkumar@onetrust.com",
"LastUpdatedDate": "2019-06-05T12:02:07Z",
"CreatedDate": "2018-05-02T03:14:28Z",
"Purposes": [
{
"Id": "9edf57bb-0449-4c15-98e4-8641522e5ff4",
"Name": "Purpose_UAT",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-05-02T03:14:27Z",
"LastTransactionDate": "2019-05-29T11:08:26Z",
"WithdrawalDate": "2019-05-29T11:05:30Z",
"ConsentDate": "2018-05-02T03:14:27Z",
"TotalTransactionCount": 5,
"Topics": [
{
"Id": "d6e3d675-3d6f-4f4e-a157-bd93829ee632",
"Name": "Topic_UAT",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "735c85c8-c69c-44bc-8bad-ec0e806090bd",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "814c073a-95f1-4fc9-8263-1ec62225c5e9",
"Name": "Multi Pur_UAT",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-05-02T03:17:33Z",
"LastTransactionDate": "2018-05-02T03:19:49Z",
"ConsentDate": "2018-05-02T03:17:33Z",
"TotalTransactionCount": 4,
"LastTransactionCollectionPointId": "9a5b7375-bc13-47e8-8a58-1ca7d9c06c8e",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "4d52dcc4-82bf-44bf-ac49-854eba6ff8f3",
"Name": "Eloqua_UAT",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-05-02T03:26:36Z",
"LastTransactionDate": "2019-03-07T03:23:25Z",
"ConsentDate": "2018-05-02T03:26:36Z",
"TotalTransactionCount": 3,
"Topics": [
{
"Id": "690ad782-6280-4ea4-b62a-1514c39fc838",
"Name": "Eloqua_topic",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "f8886377-e4b1-45e4-b1c0-d7dacb744db8",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "723300e3-96cb-4da4-abdd-4913c05be215",
"Name": "Purpose 1",
"Version": 2,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-02-27T06:29:48Z",
"LastTransactionDate": "2019-02-28T12:00:45Z",
"ConsentDate": "2019-02-27T06:29:48Z",
"ExpiryDate": "2019-02-28T12:00:45Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "3dbfb978-10f9-44a9-9669-d699674edd9d",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "NO_CONSENT",
"FirstTransactionDate": "2019-03-07T03:21:58Z",
"LastTransactionDate": "2019-05-29T03:56:37Z",
"TotalTransactionCount": 6,
"LastTransactionCollectionPointId": "cea42a12-5de4-421a-b429-092e8d523948",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "a36f98d0-c662-4f61-a2a1-8bdab69e3c3a",
"Name": "Pur 1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-07T03:23:25Z",
"LastTransactionDate": "2019-03-07T03:23:27Z",
"ConsentDate": "2019-03-07T03:23:25Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "f8886377-e4b1-45e4-b1c0-d7dacb744db8",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "41ebdf32-068b-4239-89ac-42e20262c5a9",
"Name": "Send Notifications about Changes to Preferences",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-07T03:24:11Z",
"LastTransactionDate": "2019-03-07T03:27:29Z",
"ConsentDate": "2019-03-07T03:24:11Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "c29a99a9-de4d-4367-973b-95b0217d0640",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "759d8b24-e4c0-4107-86e2-3a408db13e6b",
"Name": "GJ Purpose 07",
"Version": 2,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2019-03-07T03:27:29Z",
"LastTransactionDate": "2019-05-29T11:09:03Z",
"WithdrawalDate": "2019-05-29T11:09:03Z",
"ConsentDate": "2019-03-07T03:27:29Z",
"TotalTransactionCount": 18,
"LastTransactionCollectionPointId": "cea42a12-5de4-421a-b429-092e8d523948",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "a57ee9da-b494-49e2-b562-6dfa31f190df",
"Name": "kbpurpose2",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2019-03-28T03:23:44Z",
"LastTransactionDate": "2019-03-28T03:24:29Z",
"WithdrawalDate": "2019-03-28T03:24:29Z",
"ConsentDate": "2019-03-28T03:23:44Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "c29a99a9-de4d-4367-973b-95b0217d0640",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "a1ccd810-94a0-4b58-946b-6705eae15c5b",
"Name": "Purpose01 v2",
"Version": 2,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-05-29T04:05:42Z",
"LastTransactionDate": "2019-06-05T12:02:06Z",
"WithdrawalDate": "2019-05-29T11:09:12Z",
"ConsentDate": "2019-05-29T04:05:42Z",
"ExpiryDate": "2019-06-05T12:02:06Z",
"TotalTransactionCount": 8,
"Topics": [
{
"Id": "af7bf604-2058-4089-985c-c84083e3e3e3",
"Name": "New_Topic",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "735c85c8-c69c-44bc-8bad-ec0e806090bd",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "a313353a-e13b-4554-be08-22cf4a78a31c",
"Name": "Purpose_1804 v2",
"Version": 2,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-05-29T04:05:42Z",
"LastTransactionDate": "2019-05-29T11:09:30Z",
"WithdrawalDate": "2019-05-29T11:05:30Z",
"ConsentDate": "2019-05-29T04:05:42Z",
"TotalTransactionCount": 4,
"CustomPreferences": [
{
"Id": "4935d35a-7216-480d-9da9-1aef0e078b89",
"Name": "Custom_S",
"Options": [
{
"Id": "8acc2f9f-37f8-4ace-a513-fae6b7dd0aa9",
"Name": "Option2",
"IsConsented": true
}
]
}
],
"LastTransactionCollectionPointId": "735c85c8-c69c-44bc-8bad-ec0e806090bd",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "e2c7dbd5-9110-4407-baf4-1bb153f2adfb",
"Identifier": "kburt@onetrust.com",
"LastUpdatedDate": "2018-05-21T20:50:47Z",
"CreatedDate": "2018-05-21T20:50:47Z",
"Purposes": [
{
"Id": "9edf57bb-0449-4c15-98e4-8641522e5ff4",
"Name": "Purpose_UAT",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2018-05-21T20:50:47Z",
"LastTransactionDate": "2018-05-21T21:43:36Z",
"WithdrawalDate": "2018-05-21T21:43:36Z",
"ConsentDate": "2018-05-21T00:00:00Z",
"TotalTransactionCount": 3,
"LastTransactionCollectionPointId": "83cf0858-031e-47ac-800d-c34e8bcaa99b",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2018-05-21T21:38:54Z",
"LastTransactionDate": "2018-05-21T21:43:37Z",
"WithdrawalDate": "2018-05-21T21:43:37Z",
"ConsentDate": "2018-05-21T21:38:54Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "83cf0858-031e-47ac-800d-c34e8bcaa99b",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "a705e32e-2b00-40d8-a1f9-a6be831b8e37",
"Name": "kbpurpose3",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2018-05-21T21:39:23Z",
"LastTransactionDate": "2018-05-21T21:43:37Z",
"WithdrawalDate": "2018-05-21T21:43:37Z",
"ConsentDate": "2018-05-21T21:39:23Z",
"TotalTransactionCount": 3,
"LastTransactionCollectionPointId": "83cf0858-031e-47ac-800d-c34e8bcaa99b",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "a93143f5-9a33-4e24-9021-bd6ff7ad817c",
"Name": "kbpurpose4",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2018-05-21T21:39:23Z",
"LastTransactionDate": "2018-05-21T21:43:37Z",
"WithdrawalDate": "2018-05-21T21:43:37Z",
"ConsentDate": "2018-05-21T21:39:23Z",
"TotalTransactionCount": 3,
"LastTransactionCollectionPointId": "83cf0858-031e-47ac-800d-c34e8bcaa99b",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "814c073a-95f1-4fc9-8263-1ec62225c5e9",
"Name": "Multi Pur_UAT",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2018-05-21T21:41:36Z",
"LastTransactionDate": "2018-05-21T21:43:36Z",
"WithdrawalDate": "2018-05-21T21:43:36Z",
"ConsentDate": "2018-05-21T21:41:36Z",
"TotalTransactionCount": 3,
"LastTransactionCollectionPointId": "83cf0858-031e-47ac-800d-c34e8bcaa99b",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "60c60a52-02ee-479c-a045-75dea16552e5",
"Language": "en-US",
"Identifier": "consentot@gmail.com",
"LastUpdatedDate": "2021-04-23T08:26:22Z",
"CreatedDate": "2018-08-16T06:02:20Z",
"DataElements": [
{
"Name": "Address",
"Value": "Add",
"Linked": false
},
{
"Name": "City",
"Value": "City",
"Linked": false
}
],
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"LastReceiptId": "4b30b903-01d7-4f74-b100-91832e1ff1aa",
"Name": "kbpurpose1",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2018-08-16T06:02:19Z",
"LastTransactionDate": "2021-04-23T08:26:20Z",
"WithdrawalDate": "2021-04-23T08:26:20Z",
"ConsentDate": "2018-08-16T06:02:19Z",
"TotalTransactionCount": 7,
"LastTransactionCollectionPointId": "00000000-0000-0000-0000-000000000000",
"LastTransactionCollectionPointVersion": 1,
"LastUpdatedDate": "2021-04-23T08:26:20Z",
"LastInteractionDate": "2021-04-23T08:26:20Z"
},
{
"Id": "2c7d3663-e1c5-4d82-bce4-a777e83cfda0",
"Name": "Purpose_123 v2",
"Version": 2,
"Status": "NO_CONSENT",
"FirstTransactionDate": "2018-11-09T04:51:41Z",
"LastTransactionDate": "2018-11-09T04:51:41Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "ff05cf0f-31ce-412c-9beb-cb1b7313f5c8",
"LastTransactionCollectionPointVersion": 3
},
{
"Id": "a1ccd810-94a0-4b58-946b-6705eae15c5b",
"Name": "Purpose01 v2",
"Version": 2,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2019-04-18T03:29:33Z",
"LastTransactionDate": "2019-04-18T03:30:00Z",
"WithdrawalDate": "2019-04-18T03:30:00Z",
"ConsentDate": "2019-04-18T03:29:33Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "735c85c8-c69c-44bc-8bad-ec0e806090bd",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "a313353a-e13b-4554-be08-22cf4a78a31c",
"Name": "Purpose_1804 v2",
"Version": 2,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2019-04-18T03:29:33Z",
"LastTransactionDate": "2019-04-18T03:53:57Z",
"WithdrawalDate": "2019-04-18T03:53:57Z",
"ConsentDate": "2019-04-18T03:29:33Z",
"TotalTransactionCount": 5,
"LastTransactionCollectionPointId": "b9ed1377-c66d-40d3-a36c-aabc4a5db45b",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "07c5b97a-5b53-4cd1-8f15-a979950ce0af",
"Name": "Purpose-1 v2",
"Version": 2,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-04-18T03:31:30Z",
"LastTransactionDate": "2019-04-18T03:32:21Z",
"ConsentDate": "2019-04-18T03:31:30Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "b9ed1377-c66d-40d3-a36c-aabc4a5db45b",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "d5541c9c-5827-4030-9d77-3458e26e455d",
"Name": "Purpose_3107",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-07-31T04:15:53Z",
"LastTransactionDate": "2019-07-31T04:15:53Z",
"ConsentDate": "2019-07-31T04:15:53Z",
"TotalTransactionCount": 1,
"CustomPreferences": [
{
"Id": "50e57d7a-3f1c-48d2-a358-fb8de7b71ea8",
"Name": "Custom_checkboxes",
"Options": [
{
"Id": "c1801683-cb43-472c-8581-4779b33dce0c",
"Name": "Option1",
"IsConsented": true
}
]
}
],
"LastTransactionCollectionPointId": "1adf523e-d2f7-41c2-a4d9-1bc26502099b",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "c8fdae1a-9247-4a00-b042-4de69f3980d2",
"Name": "5.0Purp",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-11-25T06:12:20Z",
"LastTransactionDate": "2019-11-25T06:12:20Z",
"ConsentDate": "2019-11-25T06:12:20Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "56120ac3-fa07-44bc-b724-c33b532f63d7",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "1d04d38f-758e-4898-b884-bb6e818eb9cb",
"LastReceiptId": "b8cd0f83-f2ec-47b4-b14a-2c55c9c810b5",
"Name": "Purpose_0903",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2021-03-09T08:36:05Z",
"LastTransactionDate": "2021-03-09T08:36:28Z",
"ConsentDate": "2021-03-09T08:36:28Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "686a3b21-ca3a-41f5-861b-082b2d20cef3",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "f5733675-308a-41b0-9be5-aca3f2a4db44",
"LastReceiptId": "00aadfac-7d81-406d-8bb4-5acb6033ece2",
"Name": "1012kpurpose1 - V1 Name",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2021-03-09T08:37:24Z",
"LastTransactionDate": "2021-03-10T12:00:57Z",
"ConsentDate": "2021-03-09T08:37:24Z",
"ExpiryDate": "2021-03-10T12:00:57Z",
"TotalTransactionCount": 2,
"Topics": [
{
"Id": "1877891d-5f40-412d-8da0-16d1bf0f499b",
"Name": "1012ktopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "4577b750-3c0a-4ead-b5b3-1fc03403cde7",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "41ebdf32-068b-4239-89ac-42e20262c5a9",
"LastReceiptId": "00d13ba7-2488-4129-9d50-9e3c06ba0139",
"Name": "Send Notifications about Changes to Preferences",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2021-03-09T08:37:37Z",
"LastTransactionDate": "2021-03-09T08:37:42Z",
"WithdrawalDate": "2021-03-09T08:37:37Z",
"ConsentDate": "2021-03-09T08:37:42Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "4577b750-3c0a-4ead-b5b3-1fc03403cde7",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "f33fd6f6-61c5-4ba1-9b79-805a5cdb82dd",
"Identifier": "ot1shwetha@gmail.com",
"LastUpdatedDate": "2019-04-05T11:36:19Z",
"CreatedDate": "2018-08-16T06:14:10Z",
"Purposes": [
{
"Id": "48c7374d-5d35-4268-b378-2f6d9d414822",
"Name": "nrfix",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-08-16T06:14:09Z",
"LastTransactionDate": "2018-08-16T06:14:09Z",
"ConsentDate": "2018-08-16T06:14:09Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "a3617404-b820-4552-8cc0-aeaac1e13f18",
"Name": "kbtopic1",
"IsConsented": true
},
{
"Id": "74cff719-9739-4e75-865b-a0ec787c1f08",
"Name": "kbtopic2",
"IsConsented": true
},
{
"Id": "dc9095ea-9ac7-4b6c-a8a4-2d97bf3f5417",
"Name": "GJ topic 1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "4061933d-7b58-4098-93c5-0d05fa177bf0",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "814c073a-95f1-4fc9-8263-1ec62225c5e9",
"Name": "Multi Pur_UAT",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-08-16T06:16:34Z",
"LastTransactionDate": "2018-08-16T06:16:34Z",
"ConsentDate": "2018-08-16T06:16:34Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "f81b2b28-47d1-4807-a139-dd94080c95a8",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "a57ee9da-b494-49e2-b562-6dfa31f190df",
"Name": "kbpurpose2",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2018-08-16T06:16:34Z",
"LastTransactionDate": "2018-08-16T06:17:05Z",
"WithdrawalDate": "2018-08-16T06:17:05Z",
"ConsentDate": "2018-08-16T06:16:34Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "f81b2b28-47d1-4807-a139-dd94080c95a8",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-08-16T06:20:43Z",
"LastTransactionDate": "2019-04-05T11:36:21Z",
"ConsentDate": "2018-08-16T06:20:43Z",
"TotalTransactionCount": 3,
"Topics": [
{
"Id": "38add7c6-ef9c-4b6d-8f3c-147c70124484",
"Name": "kbtopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "ac3bea9e-c509-4442-9cd5-569150abf4fb",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "a705e32e-2b00-40d8-a1f9-a6be831b8e37",
"Name": "kbpurpose3",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-08-16T06:20:43Z",
"LastTransactionDate": "2018-08-16T06:21:08Z",
"ConsentDate": "2018-08-16T06:20:43Z",
"ExpiryDate": "2018-08-16T06:21:08Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "5f3d59df-8966-46d1-9465-36eeb6424d56",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "a93143f5-9a33-4e24-9021-bd6ff7ad817c",
"Name": "kbpurpose4",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-08-16T06:20:43Z",
"LastTransactionDate": "2018-08-16T06:21:08Z",
"ConsentDate": "2018-08-16T06:20:43Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "5f3d59df-8966-46d1-9465-36eeb6424d56",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "2c7d3663-e1c5-4d82-bce4-a777e83cfda0",
"Name": "Purpose_123 v2",
"Version": 2,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T04:51:50Z",
"LastTransactionDate": "2018-11-09T04:51:50Z",
"ConsentDate": "2018-11-09T04:51:50Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "df17e795-6c63-48d8-8301-42ea30728fad",
"Name": "topic123",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "ff05cf0f-31ce-412c-9beb-cb1b7313f5c8",
"LastTransactionCollectionPointVersion": 2
},
{
"Id": "7a08dc31-8e5a-4d92-ab93-5af6528af046",
"Name": "govi47p",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2019-03-28T03:14:19Z",
"LastTransactionDate": "2019-03-28T03:16:44Z",
"WithdrawalDate": "2019-03-28T03:16:44Z",
"ConsentDate": "2019-03-28T03:14:19Z",
"TotalTransactionCount": 4,
"LastTransactionCollectionPointId": "50883b50-50c2-4539-8b25-6eba2631d97e",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "2881f1cd-6c60-41e7-8b8c-0899a612bfae",
"Identifier": "DS1@gmail.com",
"LastUpdatedDate": "2018-08-16T06:19:32Z",
"CreatedDate": "2018-08-16T06:19:32Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "PENDING",
"FirstTransactionDate": "2018-08-16T06:19:32Z",
"LastTransactionDate": "2018-08-16T06:19:32Z",
"ConsentDate": "2018-08-16T06:19:32Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "fb397993-4bc0-403e-b3be-d962089ea821",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "052b48cf-61d6-42d6-9b4a-901fa9019e5f",
"Identifier": "DS2@gmail.com",
"LastUpdatedDate": "2018-08-16T06:19:33Z",
"CreatedDate": "2018-08-16T06:19:33Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "PENDING",
"FirstTransactionDate": "2018-08-16T06:19:33Z",
"LastTransactionDate": "2018-08-16T06:19:33Z",
"ConsentDate": "2018-08-16T06:19:33Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "fb397993-4bc0-403e-b3be-d962089ea821",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "163c94c1-6774-4a10-be43-ac25a250ec77",
"Identifier": "DS3@gmail.com",
"LastUpdatedDate": "2018-08-16T06:19:33Z",
"CreatedDate": "2018-08-16T06:19:33Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "PENDING",
"FirstTransactionDate": "2018-08-16T06:19:33Z",
"LastTransactionDate": "2018-08-16T06:19:33Z",
"ConsentDate": "2018-08-16T06:19:33Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "fb397993-4bc0-403e-b3be-d962089ea821",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "22bfd53e-1325-4e90-b118-b94b534e7b16",
"Identifier": "DS4@gmail.com",
"LastUpdatedDate": "2018-08-16T06:19:34Z",
"CreatedDate": "2018-08-16T06:19:34Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "PENDING",
"FirstTransactionDate": "2018-08-16T06:19:34Z",
"LastTransactionDate": "2018-08-16T06:19:34Z",
"ConsentDate": "2018-08-16T06:19:34Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "fb397993-4bc0-403e-b3be-d962089ea821",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "1fa817a0-caf1-43da-ae89-6e2249876c63",
"Identifier": "DS5@gmail.com",
"LastUpdatedDate": "2018-08-16T06:19:35Z",
"CreatedDate": "2018-08-16T06:19:35Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "PENDING",
"FirstTransactionDate": "2018-08-16T06:19:35Z",
"LastTransactionDate": "2018-08-16T06:19:35Z",
"ConsentDate": "2018-08-16T06:19:35Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "fb397993-4bc0-403e-b3be-d962089ea821",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "260270ad-c056-43c6-a5ef-0e0a4962107d",
"Identifier": "DS6@gmail.com",
"LastUpdatedDate": "2018-08-16T06:19:35Z",
"CreatedDate": "2018-08-16T06:19:35Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "PENDING",
"FirstTransactionDate": "2018-08-16T06:19:35Z",
"LastTransactionDate": "2018-08-16T06:19:35Z",
"ConsentDate": "2018-08-16T06:19:35Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "fb397993-4bc0-403e-b3be-d962089ea821",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "a28ef470-70d9-4c0d-b84f-678563a24795",
"Identifier": "DS7@gmail.com",
"LastUpdatedDate": "2018-08-16T06:19:36Z",
"CreatedDate": "2018-08-16T06:19:36Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "PENDING",
"FirstTransactionDate": "2018-08-16T06:19:36Z",
"LastTransactionDate": "2018-08-16T06:19:36Z",
"ConsentDate": "2018-08-16T06:19:36Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "fb397993-4bc0-403e-b3be-d962089ea821",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "1940412f-b5f6-4799-b7a7-2e7cbcc25371",
"Identifier": "DS8@gmail.com",
"LastUpdatedDate": "2018-08-16T06:19:36Z",
"CreatedDate": "2018-08-16T06:19:36Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "PENDING",
"FirstTransactionDate": "2018-08-16T06:19:36Z",
"LastTransactionDate": "2018-08-16T06:19:36Z",
"ConsentDate": "2018-08-16T06:19:36Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "fb397993-4bc0-403e-b3be-d962089ea821",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "ae6bdfdc-8468-4574-affa-e5ae3f2033cd",
"Identifier": "DS9@gmail.com",
"LastUpdatedDate": "2018-08-16T06:19:37Z",
"CreatedDate": "2018-08-16T06:19:37Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "PENDING",
"FirstTransactionDate": "2018-08-16T06:19:37Z",
"LastTransactionDate": "2018-08-16T06:19:37Z",
"ConsentDate": "2018-08-16T06:19:37Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "fb397993-4bc0-403e-b3be-d962089ea821",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "3c049614-e7a2-452f-8895-5611ba1a9726",
"Identifier": "Gjupdatebulk",
"LastUpdatedDate": "2018-08-16T06:54:54Z",
"CreatedDate": "2018-08-16T06:54:05Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2018-08-16T06:54:05Z",
"LastTransactionDate": "2018-08-16T06:54:54Z",
"WithdrawalDate": "2018-08-16T06:54:54Z",
"ConsentDate": "2018-08-16T06:54:05Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "d2dce55a-6a1f-4d44-82bd-931fdce43652",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "4cf01b2c-943f-41e8-b4b8-15c5a3e2fafc",
"Identifier": "41b1dfb9-b64d-4a5e-8b06-3b1c3506a384",
"LastUpdatedDate": "2019-09-22T12:00:24Z",
"CreatedDate": "2018-09-27T03:12:45Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-09-27T03:12:45Z",
"LastTransactionDate": "2019-09-22T12:00:24Z",
"ConsentDate": "2018-09-27T03:12:45Z",
"ExpiryDate": "2019-09-22T12:00:24Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "a3eaebb2-fffa-4d97-a23a-19d4cd8f0cb4",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "3a9ca675-da64-48c4-a8e4-a63afbf16774",
"Identifier": "pikachu@otprivacy.com",
"LastUpdatedDate": "2018-10-12T18:03:48Z",
"CreatedDate": "2018-10-12T18:03:48Z",
"Purposes": [
{
"Id": "f5733675-308a-41b0-9be5-aca3f2a4db44",
"Name": "1012kpurpose1 - V1 Name",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-10-12T18:03:47Z",
"LastTransactionDate": "2018-10-12T18:03:47Z",
"ConsentDate": "2018-10-12T18:03:47Z",
"ExpiryDate": "2018-10-12T18:03:47Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "1877891d-5f40-412d-8da0-16d1bf0f499b",
"Name": "1012ktopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "4f6c04e0-94eb-4cd9-a4cb-7cb0e84f7f74",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "7c123112-6e37-40a3-8f7f-dbe6a7f7d17d",
"Identifier": "squirtle@otprivacy.com",
"LastUpdatedDate": "2018-10-12T18:05:02Z",
"CreatedDate": "2018-10-12T18:05:02Z",
"Purposes": [
{
"Id": "f5733675-308a-41b0-9be5-aca3f2a4db44",
"Name": "1012kpurpose1 - V1 Name",
"Version": 1,
"Status": "PENDING",
"FirstTransactionDate": "2018-10-12T18:05:02Z",
"LastTransactionDate": "2018-10-12T18:05:02Z",
"ConsentDate": "2018-10-12T18:05:02Z",
"ExpiryDate": "2018-10-13T18:05:02Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "1877891d-5f40-412d-8da0-16d1bf0f499b",
"Name": "1012ktopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "f67ea136-377b-47dd-bccf-a08ed40ffaeb",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "23bde54b-ee7c-46c8-ac7c-93ee858dc269",
"Identifier": "charmander@otprivacy.com",
"LastUpdatedDate": "2018-10-12T18:05:50Z",
"CreatedDate": "2018-10-12T18:05:50Z",
"Purposes": [
{
"Id": "f5733675-308a-41b0-9be5-aca3f2a4db44",
"Name": "1012kpurpose1 - V1 Name",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-10-12T18:05:50Z",
"LastTransactionDate": "2018-10-12T18:05:50Z",
"ConsentDate": "2018-10-12T18:05:50Z",
"ExpiryDate": "2018-10-12T18:05:50Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "1877891d-5f40-412d-8da0-16d1bf0f499b",
"Name": "1012ktopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "4f6c04e0-94eb-4cd9-a4cb-7cb0e84f7f74",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "67b42d36-47ab-44a9-b5a3-1280fdf998ca",
"Identifier": "bulbasaur@otprivacy.com",
"LastUpdatedDate": "2018-10-12T18:06:24Z",
"CreatedDate": "2018-10-12T18:06:24Z",
"Purposes": [
{
"Id": "f5733675-308a-41b0-9be5-aca3f2a4db44",
"Name": "1012kpurpose1 - V1 Name",
"Version": 1,
"Status": "PENDING",
"FirstTransactionDate": "2018-10-12T18:06:23Z",
"LastTransactionDate": "2018-10-12T18:06:23Z",
"ConsentDate": "2018-10-12T18:06:23Z",
"ExpiryDate": "2018-10-13T18:06:23Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "1877891d-5f40-412d-8da0-16d1bf0f499b",
"Name": "1012ktopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "f67ea136-377b-47dd-bccf-a08ed40ffaeb",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "aa3a8e69-1ff2-4241-a514-19fa4552830e",
"Identifier": "neemaot18+uat09@gmail.com",
"LastUpdatedDate": "2018-11-09T04:46:42Z",
"CreatedDate": "2018-11-09T04:46:42Z",
"Purposes": [
{
"Id": "f5733675-308a-41b0-9be5-aca3f2a4db44",
"Name": "1012kpurpose1 - V1 Name",
"Version": 1,
"Status": "PENDING",
"FirstTransactionDate": "2018-11-09T04:46:41Z",
"LastTransactionDate": "2018-11-09T04:46:41Z",
"ConsentDate": "2018-11-09T04:46:41Z",
"ExpiryDate": "2018-11-10T04:46:41Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "1877891d-5f40-412d-8da0-16d1bf0f499b",
"Name": "1012ktopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "f67ea136-377b-47dd-bccf-a08ed40ffaeb",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "ee0d727f-5aea-4002-b28f-b1cf003c7504",
"Identifier": "arjunhcot@gmail.com",
"LastUpdatedDate": "2018-11-09T04:53:42Z",
"CreatedDate": "2018-11-09T04:48:19Z",
"Purposes": [
{
"Id": "7b70ca4e-8224-45b3-9924-1b5214b56ab7",
"Name": "test12",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T04:48:18Z",
"LastTransactionDate": "2018-11-09T04:48:18Z",
"ConsentDate": "2018-11-09T04:48:18Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "e27052e2-15cc-47a6-9241-900bbfbfda20",
"Name": "!!!tp",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "05b58f5f-5042-465e-859c-9f2c8c24a11e",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "f5733675-308a-41b0-9be5-aca3f2a4db44",
"Name": "1012kpurpose1 - V1 Name",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2018-11-09T04:50:29Z",
"LastTransactionDate": "2018-11-09T04:53:41Z",
"WithdrawalDate": "2018-11-09T04:53:41Z",
"ConsentDate": "2018-11-09T04:50:29Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "1c632058-c1bd-45e7-8313-edb895dd6458",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "d4c72c01-efbb-4a5f-9f0f-02f5aca08188",
"Identifier": "58d0df0d-d3a2-4f05-bd59-b0bcc10566a5",
"LastUpdatedDate": "2019-11-04T12:00:53Z",
"CreatedDate": "2018-11-09T04:49:18Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-11-09T04:49:17Z",
"LastTransactionDate": "2019-11-04T12:00:53Z",
"ConsentDate": "2018-11-09T04:49:17Z",
"ExpiryDate": "2019-11-04T12:00:53Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "b336290f-94d2-4915-b5d6-a47e8fc8c183",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "9c472568-5f94-4a80-9164-80f0fabf7db0",
"Identifier": "demouserot321@gmail.com",
"LastUpdatedDate": "2018-11-09T11:20:27Z",
"CreatedDate": "2018-11-09T04:51:59Z",
"Purposes": [
{
"Id": "2c7d3663-e1c5-4d82-bce4-a777e83cfda0",
"Name": "Purpose_123 v2",
"Version": 2,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T04:51:59Z",
"LastTransactionDate": "2018-11-09T04:51:59Z",
"ConsentDate": "2018-11-09T04:51:59Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "df17e795-6c63-48d8-8301-42ea30728fad",
"Name": "topic123",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "ff05cf0f-31ce-412c-9beb-cb1b7313f5c8",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "e36ff8aa-dbf8-4996-a7f1-cc4b966de362",
"Name": "sdk1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T04:59:54Z",
"LastTransactionDate": "2018-11-09T11:20:26Z",
"ConsentDate": "2018-11-09T04:59:54Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "620f54ce-394f-4c6a-9e5e-8a51d7760a7f",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "917941cb-5dd4-4108-a9c5-0fa831a9a529",
"Name": "sdk2",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T04:59:54Z",
"LastTransactionDate": "2018-11-09T11:20:26Z",
"ConsentDate": "2018-11-09T04:59:54Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "620f54ce-394f-4c6a-9e5e-8a51d7760a7f",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "e1bb45d1-525b-43e0-861c-8986a938eb0d",
"Identifier": "neemaot18+doiuat@gmail.com",
"LastUpdatedDate": "2018-11-09T05:01:55Z",
"CreatedDate": "2018-11-09T04:57:30Z",
"Purposes": [
{
"Id": "f5733675-308a-41b0-9be5-aca3f2a4db44",
"Name": "1012kpurpose1 - V1 Name",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2018-11-09T04:57:30Z",
"LastTransactionDate": "2018-11-09T05:01:55Z",
"WithdrawalDate": "2018-11-09T05:01:55Z",
"ConsentDate": "2018-11-09T04:57:30Z",
"TotalTransactionCount": 3,
"LastTransactionCollectionPointId": "b66aeb51-0959-493b-89d5-446692ebffbc",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "f2c6208b-69cf-4cb4-9214-5c22d88aa35e",
"Identifier": "neemaot18+notgiven@gmail.com",
"LastUpdatedDate": "2018-11-09T05:02:57Z",
"CreatedDate": "2018-11-09T05:02:57Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T05:02:57Z",
"LastTransactionDate": "2018-11-09T05:02:57Z",
"ConsentDate": "2018-11-09T05:02:57Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "38add7c6-ef9c-4b6d-8f3c-147c70124484",
"Name": "kbtopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "7c128fb9-9d78-44c0-9ea0-f2fe0566991c",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "f5733675-308a-41b0-9be5-aca3f2a4db44",
"Name": "1012kpurpose1 - V1 Name",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-11-09T05:02:57Z",
"LastTransactionDate": "2018-11-09T05:02:57Z",
"ConsentDate": "2018-11-09T05:02:57Z",
"ExpiryDate": "2018-11-09T05:02:57Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "1877891d-5f40-412d-8da0-16d1bf0f499b",
"Name": "1012ktopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "7c128fb9-9d78-44c0-9ea0-f2fe0566991c",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "ddb932f7-c2ba-4219-a5e2-1ea7dfdf5945",
"Identifier": "neemaot18+newNG@gmail.com",
"LastUpdatedDate": "2018-11-09T05:03:13Z",
"CreatedDate": "2018-11-09T05:03:13Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T05:03:12Z",
"LastTransactionDate": "2018-11-09T05:03:12Z",
"ConsentDate": "2018-11-09T05:03:12Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "7c128fb9-9d78-44c0-9ea0-f2fe0566991c",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "0027099c-b1f6-4d3e-8041-0c72aaf57158",
"Identifier": "neemaot18+new@gmail.com",
"LastUpdatedDate": "2018-11-09T05:04:12Z",
"CreatedDate": "2018-11-09T05:04:12Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T05:04:12Z",
"LastTransactionDate": "2018-11-09T05:04:12Z",
"ConsentDate": "2018-11-09T05:04:12Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "7c128fb9-9d78-44c0-9ea0-f2fe0566991c",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "f5733675-308a-41b0-9be5-aca3f2a4db44",
"Name": "1012kpurpose1 - V1 Name",
"Version": 1,
"Status": "NO_CONSENT",
"FirstTransactionDate": "2018-11-09T05:04:12Z",
"LastTransactionDate": "2018-11-09T05:04:12Z",
"ExpiryDate": "2018-11-10T05:04:12Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "7c128fb9-9d78-44c0-9ea0-f2fe0566991c",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "6cfa965c-0006-4da5-b92d-704e7919015f",
"Identifier": "test@onetrust.com",
"LastUpdatedDate": "2018-11-09T05:20:34Z",
"CreatedDate": "2018-11-09T05:13:21Z",
"Purposes": [
{
"Id": "e36ff8aa-dbf8-4996-a7f1-cc4b966de362",
"Name": "sdk1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T05:13:20Z",
"LastTransactionDate": "2018-11-09T05:19:42Z",
"ConsentDate": "2018-11-09T05:13:20Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "952a2511-90dd-46cd-acad-cc24836ba8a6",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "917941cb-5dd4-4108-a9c5-0fa831a9a529",
"Name": "sdk2",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T05:13:20Z",
"LastTransactionDate": "2018-11-09T05:19:42Z",
"ConsentDate": "2018-11-09T05:13:20Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "952a2511-90dd-46cd-acad-cc24836ba8a6",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T05:20:33Z",
"LastTransactionDate": "2018-11-09T05:20:33Z",
"ConsentDate": "2018-11-09T05:20:33Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "ff05cf0f-31ce-412c-9beb-cb1b7313f5c8",
"LastTransactionCollectionPointVersion": 4
},
{
"Id": "2c7d3663-e1c5-4d82-bce4-a777e83cfda0",
"Name": "Purpose_123 v2",
"Version": 4,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T05:20:33Z",
"LastTransactionDate": "2018-11-09T05:20:33Z",
"ConsentDate": "2018-11-09T05:20:33Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "df17e795-6c63-48d8-8301-42ea30728fad",
"Name": "topic123",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "ff05cf0f-31ce-412c-9beb-cb1b7313f5c8",
"LastTransactionCollectionPointVersion": 4
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "6023bc50-5199-4283-884d-78b879b330bc",
"Identifier": "Test",
"LastUpdatedDate": "2018-11-09T05:16:50Z",
"CreatedDate": "2018-11-09T05:16:50Z",
"Purposes": [
{
"Id": "7b70ca4e-8224-45b3-9924-1b5214b56ab7",
"Name": "test12",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T05:16:50Z",
"LastTransactionDate": "2018-11-09T05:16:50Z",
"ConsentDate": "2018-11-09T05:16:50Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "e27052e2-15cc-47a6-9241-900bbfbfda20",
"Name": "!!!tp",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "05b58f5f-5042-465e-859c-9f2c8c24a11e",
"LastTransactionCollectionPointVersion": 2
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "597e45c2-cc62-438a-8741-3aa66b7580a1",
"Identifier": "test@oonetrust.com",
"LastUpdatedDate": "2018-11-09T05:18:26Z",
"CreatedDate": "2018-11-09T05:18:26Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T05:18:25Z",
"LastTransactionDate": "2018-11-09T05:18:25Z",
"ConsentDate": "2018-11-09T05:18:25Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "38add7c6-ef9c-4b6d-8f3c-147c70124484",
"Name": "kbtopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "7c128fb9-9d78-44c0-9ea0-f2fe0566991c",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "f5733675-308a-41b0-9be5-aca3f2a4db44",
"Name": "1012kpurpose1 - V1 Name",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-11-09T05:18:25Z",
"LastTransactionDate": "2018-11-09T05:18:25Z",
"ConsentDate": "2018-11-09T05:18:25Z",
"ExpiryDate": "2018-11-09T05:18:25Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "1877891d-5f40-412d-8da0-16d1bf0f499b",
"Name": "1012ktopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "7c128fb9-9d78-44c0-9ea0-f2fe0566991c",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "444c4b81-1efe-4b64-a897-bc856dab2789",
"Identifier": "neemaot18+testhostedsdk@gmail.com",
"LastUpdatedDate": "2018-11-09T05:21:27Z",
"CreatedDate": "2018-11-09T05:21:27Z",
"Purposes": [
{
"Id": "7b70ca4e-8224-45b3-9924-1b5214b56ab7",
"Name": "test12",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T05:21:26Z",
"LastTransactionDate": "2018-11-09T05:21:26Z",
"ConsentDate": "2018-11-09T05:21:26Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "05b58f5f-5042-465e-859c-9f2c8c24a11e",
"LastTransactionCollectionPointVersion": 2
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "ffe055e9-5a52-4852-94f5-5b75d975b133",
"Identifier": "new@gmail.com",
"LastUpdatedDate": "2018-11-09T05:25:33Z",
"CreatedDate": "2018-11-09T05:25:32Z",
"Purposes": [
{
"Id": "7b70ca4e-8224-45b3-9924-1b5214b56ab7",
"Name": "test12",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T05:25:31Z",
"LastTransactionDate": "2018-11-09T05:25:32Z",
"ConsentDate": "2018-11-09T05:25:31Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "05b58f5f-5042-465e-859c-9f2c8c24a11e",
"LastTransactionCollectionPointVersion": 2
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "f9ddeb61-c2d2-450b-b80b-3211300a0a3a",
"Identifier": "03c4cb82-2a15-41b4-b57e-a2342b69b23d",
"LastUpdatedDate": "2019-11-04T12:00:53Z",
"CreatedDate": "2018-11-09T06:35:42Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-11-09T06:35:41Z",
"LastTransactionDate": "2019-11-04T12:00:53Z",
"ConsentDate": "2018-11-09T06:35:41Z",
"ExpiryDate": "2019-11-04T12:00:53Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "9acaccde-989f-4c86-8e74-fc6177c4463d",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "eeefd995-c4c4-4768-914e-eb6041b50158",
"Identifier": "ae0c6df1-242a-48a2-888d-bb901a5e507b",
"LastUpdatedDate": "2019-11-04T12:00:53Z",
"CreatedDate": "2018-11-09T06:51:36Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-11-09T06:51:36Z",
"LastTransactionDate": "2019-11-04T12:00:53Z",
"ConsentDate": "2018-11-09T06:51:36Z",
"ExpiryDate": "2019-11-04T12:00:53Z",
"TotalTransactionCount": 3,
"LastTransactionCollectionPointId": "1cdecdf6-e93a-493f-b118-e5b9b5c4b099",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "e7012470-65c3-4d24-abca-372b467b4ca3",
"Identifier": "1c7abd21-5791-4c50-8ccc-9c266c9955c3",
"LastUpdatedDate": "2019-11-04T12:00:53Z",
"CreatedDate": "2018-11-09T06:53:36Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-11-09T06:53:35Z",
"LastTransactionDate": "2019-11-04T12:00:53Z",
"ConsentDate": "2018-11-09T06:53:35Z",
"ExpiryDate": "2019-11-04T12:00:53Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "1cdecdf6-e93a-493f-b118-e5b9b5c4b099",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "6674ff48-5898-4258-984f-95d75b88ec54",
"Identifier": "062399f4-3b87-4353-9529-00aefa19f0b7",
"LastUpdatedDate": "2019-11-04T12:00:54Z",
"CreatedDate": "2018-11-09T06:55:49Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-11-09T06:55:49Z",
"LastTransactionDate": "2019-11-04T12:00:53Z",
"ConsentDate": "2018-11-09T06:55:49Z",
"ExpiryDate": "2019-11-04T12:00:53Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "1cdecdf6-e93a-493f-b118-e5b9b5c4b099",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "ac3f17ab-7f84-4a09-89b0-6a00891685ca",
"Identifier": "99d6a1d7-bde7-4cf7-a4a4-1aa4a2b46f31",
"LastUpdatedDate": "2019-11-04T12:00:54Z",
"CreatedDate": "2018-11-09T07:09:46Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-11-09T07:09:45Z",
"LastTransactionDate": "2019-11-04T12:00:53Z",
"ConsentDate": "2018-11-09T07:09:45Z",
"ExpiryDate": "2019-11-04T12:00:53Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "1cdecdf6-e93a-493f-b118-e5b9b5c4b099",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "56d46e64-b06c-491e-ab47-07fc04562bfe",
"Identifier": "757e1a97-ee75-495d-a3ce-1ed606989ea1",
"LastUpdatedDate": "2019-11-04T12:00:54Z",
"CreatedDate": "2018-11-09T07:12:09Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-11-09T07:12:08Z",
"LastTransactionDate": "2019-11-04T12:00:53Z",
"ConsentDate": "2018-11-09T07:12:08Z",
"ExpiryDate": "2019-11-04T12:00:53Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "1cdecdf6-e93a-493f-b118-e5b9b5c4b099",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "76291a34-1da3-4f03-adb7-652f0d937cc5",
"Identifier": "a67d6ede-666a-4984-94f3-565efe6b7b10",
"LastUpdatedDate": "2019-11-04T12:00:54Z",
"CreatedDate": "2018-11-09T07:12:37Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-11-09T07:12:37Z",
"LastTransactionDate": "2019-11-04T12:00:53Z",
"ConsentDate": "2018-11-09T07:12:37Z",
"ExpiryDate": "2019-11-04T12:00:53Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "1cdecdf6-e93a-493f-b118-e5b9b5c4b099",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "40b90404-d9b3-4f5e-ba99-bd711f87d788",
"Identifier": "neemaot18+test5678@gmail.com",
"LastUpdatedDate": "2018-11-09T09:14:55Z",
"CreatedDate": "2018-11-09T09:14:55Z",
"Purposes": [
{
"Id": "e36ff8aa-dbf8-4996-a7f1-cc4b966de362",
"Name": "sdk1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T09:14:55Z",
"LastTransactionDate": "2018-11-09T09:14:55Z",
"ConsentDate": "2018-11-09T09:14:55Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "01f93325-3a98-49e9-b187-8fc61ec6e72e",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "917941cb-5dd4-4108-a9c5-0fa831a9a529",
"Name": "sdk2",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T09:14:55Z",
"LastTransactionDate": "2018-11-09T09:14:55Z",
"ConsentDate": "2018-11-09T09:14:55Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "01f93325-3a98-49e9-b187-8fc61ec6e72e",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "ce8bb24b-7dcb-4670-a8b4-1ed293df0b23",
"Identifier": "heyuserone@gmail.com",
"LastUpdatedDate": "2019-07-31T04:04:38Z",
"CreatedDate": "2018-11-09T11:27:03Z",
"Purposes": [
{
"Id": "e36ff8aa-dbf8-4996-a7f1-cc4b966de362",
"Name": "sdk1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2018-11-09T11:27:02Z",
"LastTransactionDate": "2018-11-09T11:27:02Z",
"ConsentDate": "2018-11-09T11:27:02Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "620f54ce-394f-4c6a-9e5e-8a51d7760a7f",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "3d68b3c4-cd9f-4ec2-8be1-5379542127f9",
"Name": "Purpose_1007 v1",
"Version": 2,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-07-31T04:04:38Z",
"LastTransactionDate": "2019-07-31T04:04:38Z",
"ConsentDate": "2019-07-31T04:04:38Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "5b6ce10f-852f-4e7b-a664-9ccd3267d394",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "d82e5cea-6765-4625-8fff-109b4c0a1cd1",
"Identifier": "df52f785-d452-4845-bed4-b48b2a2dfd06",
"LastUpdatedDate": "2019-12-05T12:00:43Z",
"CreatedDate": "2018-12-10T03:00:19Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-12-10T03:00:17Z",
"LastTransactionDate": "2019-12-05T12:00:42Z",
"ConsentDate": "2018-12-10T03:00:17Z",
"ExpiryDate": "2019-12-05T12:00:42Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "23e3bd22-6902-4e88-b505-9438d2ff57f8",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "88b0d9df-45ca-47a9-b770-9d6516ae5c9b",
"Identifier": "9fff549d-1224-4b1e-b441-d861d3363f60",
"LastUpdatedDate": "2019-12-05T12:00:43Z",
"CreatedDate": "2018-12-10T03:02:30Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-12-10T03:02:28Z",
"LastTransactionDate": "2019-12-05T12:00:42Z",
"ConsentDate": "2018-12-10T03:02:28Z",
"ExpiryDate": "2019-12-05T12:00:42Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "23e3bd22-6902-4e88-b505-9438d2ff57f8",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "c69f42cf-f99e-4b6b-aa69-e53ebdf6e467",
"Identifier": "b7b8d234-7b52-41f7-9965-d2225cdab872",
"LastUpdatedDate": "2019-12-05T12:00:43Z",
"CreatedDate": "2018-12-10T03:08:33Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-12-10T03:08:32Z",
"LastTransactionDate": "2019-12-05T12:00:42Z",
"ConsentDate": "2018-12-10T03:08:32Z",
"ExpiryDate": "2019-12-05T12:00:42Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "23e3bd22-6902-4e88-b505-9438d2ff57f8",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "2e0678eb-072f-4424-87ab-b75dba1c88f9",
"Identifier": "c647b7b1-58b5-4e39-8e8a-3ff0911d0dd9",
"LastUpdatedDate": "2019-12-05T12:00:43Z",
"CreatedDate": "2018-12-10T03:14:36Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-12-10T03:14:36Z",
"LastTransactionDate": "2019-12-05T12:00:42Z",
"ConsentDate": "2018-12-10T03:14:36Z",
"ExpiryDate": "2019-12-05T12:00:42Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "6a17a06e-9133-4f9a-9e6a-0727ca844da5",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "5f2e7816-69c3-428d-9e60-d6dc6fe007ea",
"Identifier": "d8d3d654-6a90-4526-9ed0-da3161be1926",
"LastUpdatedDate": "2019-12-05T12:00:43Z",
"CreatedDate": "2018-12-10T03:14:44Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-12-10T03:14:43Z",
"LastTransactionDate": "2019-12-05T12:00:42Z",
"ConsentDate": "2018-12-10T03:14:43Z",
"ExpiryDate": "2019-12-05T12:00:42Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "6a17a06e-9133-4f9a-9e6a-0727ca844da5",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "1a72c1b5-4d28-409e-900c-a0b792dbf409",
"Identifier": "ec3b4f5f-1bab-47d7-8259-6cc97e4e09e8",
"LastUpdatedDate": "2019-12-05T12:00:43Z",
"CreatedDate": "2018-12-10T03:14:59Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-12-10T03:14:59Z",
"LastTransactionDate": "2019-12-05T12:00:42Z",
"ConsentDate": "2018-12-10T03:14:59Z",
"ExpiryDate": "2019-12-05T12:00:42Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "b336290f-94d2-4915-b5d6-a47e8fc8c183",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "4e382461-bc33-4dbf-aadd-b0549a9b6af7",
"Identifier": "8b5cce28-df38-44e4-882e-59d8cff0c22c",
"LastUpdatedDate": "2019-12-05T12:00:43Z",
"CreatedDate": "2018-12-10T03:17:07Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2018-12-10T03:17:07Z",
"LastTransactionDate": "2019-12-05T12:00:42Z",
"ConsentDate": "2018-12-10T03:17:07Z",
"ExpiryDate": "2019-12-05T12:00:42Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "6a17a06e-9133-4f9a-9e6a-0727ca844da5",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "725a2c16-63cd-4b05-8625-8dbc3b252a2f",
"Identifier": "ssayyed0401@onetrust.com",
"LastUpdatedDate": "2019-01-04T06:49:01Z",
"CreatedDate": "2019-01-04T06:41:01Z",
"Purposes": [
{
"Id": "a705e32e-2b00-40d8-a1f9-a6be831b8e37",
"Name": "kbpurpose3",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-01-04T06:41:00Z",
"LastTransactionDate": "2019-01-04T06:49:01Z",
"ConsentDate": "2019-01-04T06:41:00Z",
"ExpiryDate": "2019-01-04T06:49:01Z",
"TotalTransactionCount": 4,
"Topics": [
{
"Id": "a81822bc-0bfb-4eec-bdf4-e26aefd67ea7",
"Name": "kbtopic3",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "6b034294-a267-41cb-b96f-95a762573ead",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "4cb65836-ef0a-4e91-bf31-ba35ba558312",
"Identifier": "ssayyed0402@onetrust.com",
"LastUpdatedDate": "2019-01-04T06:51:39Z",
"CreatedDate": "2019-01-04T06:51:39Z",
"Purposes": [
{
"Id": "a705e32e-2b00-40d8-a1f9-a6be831b8e37",
"Name": "kbpurpose3",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-01-04T06:51:38Z",
"LastTransactionDate": "2019-01-04T06:51:38Z",
"ConsentDate": "2019-01-04T06:51:38Z",
"ExpiryDate": "2019-01-04T06:51:38Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "a81822bc-0bfb-4eec-bdf4-e26aefd67ea7",
"Name": "kbtopic3",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "6b034294-a267-41cb-b96f-95a762573ead",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "fad7aafa-d8b9-4178-b88f-ed3ef6cdc188",
"Identifier": "f42fc88e-f503-4237-981f-ef9cf2281671",
"LastUpdatedDate": "2019-12-30T12:00:29Z",
"CreatedDate": "2019-01-04T07:24:40Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-01-04T07:24:39Z",
"LastTransactionDate": "2019-12-30T12:00:28Z",
"ConsentDate": "2019-01-04T07:24:39Z",
"ExpiryDate": "2019-12-30T12:00:28Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "b336290f-94d2-4915-b5d6-a47e8fc8c183",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "df251ca0-65c7-4fc5-be4f-12e4b6846fc3",
"Identifier": "7db58a52-ac09-4f25-9f54-be112131479f",
"LastUpdatedDate": "2019-12-30T12:00:29Z",
"CreatedDate": "2019-01-04T07:26:04Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-01-04T07:26:04Z",
"LastTransactionDate": "2019-12-30T12:00:28Z",
"ConsentDate": "2019-01-04T07:26:04Z",
"ExpiryDate": "2019-12-30T12:00:28Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "b336290f-94d2-4915-b5d6-a47e8fc8c183",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "aca3e560-cb1e-4466-ad03-674367deb23c",
"Identifier": "a20a6672-0d71-47d6-bb01-1181487ad1ea",
"LastUpdatedDate": "2019-12-30T12:00:29Z",
"CreatedDate": "2019-01-04T07:30:50Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-01-04T07:30:49Z",
"LastTransactionDate": "2019-12-30T12:00:28Z",
"ConsentDate": "2019-01-04T07:30:49Z",
"ExpiryDate": "2019-12-30T12:00:28Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "b336290f-94d2-4915-b5d6-a47e8fc8c183",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "e50c5cb4-3c15-488d-b19e-41ffb4401228",
"Identifier": "govaswuat@onet.com",
"LastUpdatedDate": "2019-01-04T12:57:25Z",
"CreatedDate": "2019-01-04T12:57:25Z",
"Purposes": [
{
"Id": "a705e32e-2b00-40d8-a1f9-a6be831b8e37",
"Name": "kbpurpose3",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-01-04T12:57:24Z",
"LastTransactionDate": "2019-01-04T12:57:24Z",
"ConsentDate": "2019-01-04T12:57:24Z",
"ExpiryDate": "2019-01-04T12:57:24Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "a81822bc-0bfb-4eec-bdf4-e26aefd67ea7",
"Name": "kbtopic3",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "a466a07b-118b-4a98-869b-49f224eac8e8",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "d1e3586e-9161-4a3b-9912-961956de65f8",
"Identifier": "dcbae393-2b72-430b-ae63-58f43736893e",
"LastUpdatedDate": "2020-01-20T12:00:25Z",
"CreatedDate": "2019-01-25T03:40:25Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-01-25T03:40:19Z",
"LastTransactionDate": "2020-01-20T12:00:23Z",
"ConsentDate": "2019-01-25T03:40:19Z",
"ExpiryDate": "2020-01-20T12:00:23Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "a7664ab2-d1a5-462c-a933-2bcf31b3143d",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "de3d90fa-75b8-4d12-afd1-d552faee65b5",
"Identifier": "slazar@onetrust.com",
"LastUpdatedDate": "2019-02-07T17:48:46Z",
"CreatedDate": "2019-02-07T17:44:41Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-02-07T17:44:45Z",
"LastTransactionDate": "2019-02-07T17:48:54Z",
"ConsentDate": "2019-02-07T17:44:45Z",
"TotalTransactionCount": 2,
"Topics": [
{
"Id": "38add7c6-ef9c-4b6d-8f3c-147c70124484",
"Name": "kbtopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "d28ba3e3-0a9f-48e5-9dbb-28eb256b7bdb",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "18b12ec2-3cf3-456d-a1d1-745a88d2393f",
"Identifier": "0a30b5f4-01dd-45fb-9c04-fc4ac75a09a3",
"LastUpdatedDate": "2020-02-03T12:00:30Z",
"CreatedDate": "2019-02-08T02:54:15Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-02-08T02:54:19Z",
"LastTransactionDate": "2020-02-03T12:00:28Z",
"ConsentDate": "2019-02-08T02:54:19Z",
"ExpiryDate": "2020-02-03T12:00:28Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "e8332de9-f921-457e-b485-c4d72d663fd4",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "35f7827d-97ad-4ec4-826b-f2d0f33e6458",
"Identifier": "3189c513-f54a-49f7-a03d-60dac19beb05",
"LastUpdatedDate": "2019-02-14T03:29:01Z",
"CreatedDate": "2019-02-14T03:28:27Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-02-14T03:28:20Z",
"LastTransactionDate": "2019-02-14T03:28:44Z",
"ConsentDate": "2019-02-14T03:28:20Z",
"ExpiryDate": "2020-02-09T03:28:44Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "d1f82242-e3dc-4918-9cb0-b1c4d1a57d9e",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "15cc286e-3c6f-4c11-8cb6-99b973acedee",
"Identifier": "e9668c20-cab2-41aa-a532-c58bf0d9043f",
"LastUpdatedDate": "2019-02-14T03:30:46Z",
"CreatedDate": "2019-02-14T03:30:46Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-02-14T03:31:00Z",
"LastTransactionDate": "2019-02-14T03:31:00Z",
"ConsentDate": "2019-02-14T03:31:00Z",
"ExpiryDate": "2020-02-09T03:31:00Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "d1f82242-e3dc-4918-9cb0-b1c4d1a57d9e",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "655a95ef-75d6-44c3-a6da-23174d47d144",
"Identifier": "c6d07198-08b7-419b-9416-e296bb1efd35",
"LastUpdatedDate": "2019-02-19T03:04:15Z",
"CreatedDate": "2019-02-19T03:04:15Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-02-19T03:04:13Z",
"LastTransactionDate": "2019-02-19T03:04:13Z",
"ConsentDate": "2019-02-19T03:04:13Z",
"ExpiryDate": "2020-02-14T03:04:13Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "d1f82242-e3dc-4918-9cb0-b1c4d1a57d9e",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "cdcd2f02-5ac6-452b-a1a0-65216d74e585",
"Identifier": "8e740289-ab90-49ad-86e6-fa7b60daacd3",
"LastUpdatedDate": "2019-02-19T03:06:21Z",
"CreatedDate": "2019-02-19T03:06:21Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-02-19T03:06:21Z",
"LastTransactionDate": "2019-02-19T03:06:21Z",
"ConsentDate": "2019-02-19T03:06:21Z",
"ExpiryDate": "2020-02-14T03:06:21Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "d1f82242-e3dc-4918-9cb0-b1c4d1a57d9e",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "219c8fa5-c9c4-4231-9422-d81e573d2ae1",
"Language": "en-us",
"Identifier": "consentot1@gmail.com",
"LastUpdatedDate": "2020-07-29T11:38:04Z",
"CreatedDate": "2019-02-27T06:08:18Z",
"Purposes": [
{
"Id": "723300e3-96cb-4da4-abdd-4913c05be215",
"Name": "Purpose 1",
"Version": 2,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2019-02-27T06:08:18Z",
"LastTransactionDate": "2019-02-27T06:17:04Z",
"WithdrawalDate": "2019-02-27T06:17:04Z",
"ConsentDate": "2019-02-27T06:08:18Z",
"TotalTransactionCount": 3,
"LastTransactionCollectionPointId": "3110507d-4516-4c2e-b6b4-50161c5aaacc",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "41ebdf32-068b-4239-89ac-42e20262c5a9",
"LastReceiptId": "e9667aae-67d9-4383-b343-27681d5f71f9",
"Name": "Send Notifications about Changes to Preferences",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-02-27T06:10:08Z",
"LastTransactionDate": "2020-07-29T11:38:03Z",
"ConsentDate": "2019-02-27T06:10:08Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "894247c4-fc5b-4b45-a7ce-628178c79587",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "759d8b24-e4c0-4107-86e2-3a408db13e6b",
"Name": "GJ Purpose 07",
"Version": 2,
"Status": "PENDING",
"FirstTransactionDate": "2019-03-28T03:15:48Z",
"LastTransactionDate": "2019-03-28T03:15:48Z",
"ConsentDate": "2019-03-28T03:15:48Z",
"ExpiryDate": "2019-03-30T03:15:48Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "afcd5703-1247-4f5b-b0da-8d75e2986165",
"Name": "Eloqua_topic",
"IsConsented": true
},
{
"Id": "1a774b37-9733-4594-8656-fc5b799001ad",
"Name": "1012ktopic1",
"IsConsented": true
}
],
"CustomPreferences": [
{
"Id": "6a4d4c03-0b4e-445c-8033-4f84210d91f7",
"Name": "Gj Preference ",
"Options": [
{
"Id": "a40b233c-2c5c-496c-a100-4f46a4104810",
"Name": "Option 2",
"IsConsented": true
},
{
"Id": "cda3a2af-d6f4-4af4-9d5c-325e3d121c80",
"Name": "Option 1",
"IsConsented": true
}
]
}
],
"LastTransactionCollectionPointId": "87ba854e-713b-4b88-8dee-3c537830c275",
"LastTransactionCollectionPointVersion": 3
},
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "NO_CONSENT",
"FirstTransactionDate": "2019-03-28T03:15:48Z",
"LastTransactionDate": "2019-03-28T03:15:48Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "87ba854e-713b-4b88-8dee-3c537830c275",
"LastTransactionCollectionPointVersion": 3
},
{
"Id": "7a08dc31-8e5a-4d92-ab93-5af6528af046",
"Name": "govi47p",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-04-05T11:40:18Z",
"LastTransactionDate": "2019-04-05T11:40:18Z",
"ConsentDate": "2019-04-05T11:40:18Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "3cedc4f1-40ae-4ffc-b55b-f75c252f0b4f",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "a313353a-e13b-4554-be08-22cf4a78a31c",
"Name": "Purpose_1804 v2",
"Version": 2,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-04-18T03:45:30Z",
"LastTransactionDate": "2019-05-08T03:00:08Z",
"ConsentDate": "2019-04-18T03:45:30Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "8e79794e-639f-4170-b695-44a5be165d07",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "c8fdae1a-9247-4a00-b042-4de69f3980d2",
"LastReceiptId": "e9667aae-67d9-4383-b343-27681d5f71f9",
"Name": "5.0Purp",
"Version": 2,
"Status": "ACTIVE",
"FirstTransactionDate": "2020-07-29T11:38:03Z",
"LastTransactionDate": "2020-07-29T11:38:03Z",
"ConsentDate": "2020-07-29T11:38:03Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "e161b920-4b38-4adf-8ec0-a146aef96793",
"Name": "5.0Topic1",
"IsConsented": true
},
{
"Id": "ecac9d4d-f193-4696-bf64-714e91b0f583",
"Name": "5.0Topic2",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "894247c4-fc5b-4b45-a7ce-628178c79587",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "6b056ad0-a1f5-4af3-ab65-eb749455a6de",
"LastReceiptId": "e9667aae-67d9-4383-b343-27681d5f71f9",
"Name": "Analytics",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2020-07-29T11:38:03Z",
"LastTransactionDate": "2020-07-29T11:38:03Z",
"ConsentDate": "2020-07-29T11:38:03Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "894247c4-fc5b-4b45-a7ce-628178c79587",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "f7f1ce4a-919e-47b2-8445-80a4404b4499",
"Identifier": "Ds1",
"LastUpdatedDate": "2019-03-07T03:36:11Z",
"CreatedDate": "2019-02-27T14:03:35Z",
"Purposes": [
{
"Id": "723300e3-96cb-4da4-abdd-4913c05be215",
"Name": "Purpose 1",
"Version": 2,
"Status": "PENDING",
"FirstTransactionDate": "2019-02-27T14:03:35Z",
"LastTransactionDate": "2019-02-27T14:03:35Z",
"ConsentDate": "2019-02-27T14:03:35Z",
"ExpiryDate": "2019-02-28T14:03:35Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "3110507d-4516-4c2e-b6b4-50161c5aaacc",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "759d8b24-e4c0-4107-86e2-3a408db13e6b",
"Name": "GJ Purpose 07",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2019-03-07T03:35:27Z",
"LastTransactionDate": "2019-03-07T03:36:01Z",
"WithdrawalDate": "2019-03-07T03:36:01Z",
"ConsentDate": "2019-03-07T03:35:27Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "f8886377-e4b1-45e4-b1c0-d7dacb744db8",
"LastTransactionCollectionPointVersion": 3
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "888f56db-77e2-431b-a4ea-453106852567",
"Language": "en-us",
"Identifier": "cmaddala@onetrust.com",
"LastUpdatedDate": "2020-06-28T00:00:35Z",
"CreatedDate": "2019-03-05T19:50:19Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-05T19:50:19Z",
"LastTransactionDate": "2019-03-05T19:53:57Z",
"ConsentDate": "2019-03-05T19:50:19Z",
"TotalTransactionCount": 2,
"Topics": [
{
"Id": "38add7c6-ef9c-4b6d-8f3c-147c70124484",
"Name": "kbtopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "d28ba3e3-0a9f-48e5-9dbb-28eb256b7bdb",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "f5733675-308a-41b0-9be5-aca3f2a4db44",
"Name": "1012kpurpose1 - V1 Name",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-03-05T19:53:57Z",
"LastTransactionDate": "2020-06-28T00:00:33Z",
"ConsentDate": "2019-03-05T19:53:57Z",
"ExpiryDate": "2020-06-28T00:00:33Z",
"TotalTransactionCount": 3,
"Topics": [
{
"Id": "1877891d-5f40-412d-8da0-16d1bf0f499b",
"Name": "1012ktopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "0b842f56-c02b-4747-9946-bc92ac67b7d6",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "be160f0a-f61e-406c-8dcd-acb3118ab3bd",
"Language": "en-us",
"Identifier": "dkumar@onetrust.com",
"LastUpdatedDate": "2020-08-20T00:01:07Z",
"CreatedDate": "2019-03-05T20:41:28Z",
"Purposes": [
{
"Id": "723300e3-96cb-4da4-abdd-4913c05be215",
"Name": "Purpose 1",
"Version": 2,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-03-05T20:41:11Z",
"LastTransactionDate": "2019-03-07T00:02:10Z",
"ConsentDate": "2019-03-05T20:41:11Z",
"ExpiryDate": "2019-03-07T00:02:10Z",
"TotalTransactionCount": 3,
"LastTransactionCollectionPointId": "3110507d-4516-4c2e-b6b4-50161c5aaacc",
"LastTransactionCollectionPointVersion": 2
},
{
"Id": "c8fdae1a-9247-4a00-b042-4de69f3980d2",
"LastReceiptId": "3dae1679-1702-4aa8-9e39-86e97cf0f018",
"Name": "5.0Purp",
"Version": 2,
"Status": "ACTIVE",
"FirstTransactionDate": "2020-05-14T13:49:05Z",
"LastTransactionDate": "2020-08-17T23:48:00Z",
"WithdrawalDate": "2020-06-05T09:56:15Z",
"ConsentDate": "2020-08-17T23:48:00Z",
"TotalTransactionCount": 9,
"Topics": [
{
"Id": "e161b920-4b38-4adf-8ec0-a146aef96793",
"Name": "5.0Topic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "f4d737b0-4b77-4063-aae9-2d34ccf1bca2",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "759d8b24-e4c0-4107-86e2-3a408db13e6b",
"LastReceiptId": "d756230f-c8d9-4889-8fda-9f32e50c1a2d",
"Name": "GJ Purpose 07",
"Version": 2,
"Status": "EXPIRED",
"FirstTransactionDate": "2020-05-14T13:49:05Z",
"LastTransactionDate": "2020-08-20T00:00:53Z",
"ConsentDate": "2020-08-17T23:48:00Z",
"ExpiryDate": "2020-08-20T00:00:53Z",
"TotalTransactionCount": 4,
"Topics": [
{
"Id": "afcd5703-1247-4f5b-b0da-8d75e2986165",
"Name": "Eloqua_topic",
"IsConsented": true
},
{
"Id": "1a774b37-9733-4594-8656-fc5b799001ad",
"Name": "1012ktopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "f4d737b0-4b77-4063-aae9-2d34ccf1bca2",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "3ecdc14c-04e2-4dd4-83f1-42f8c19fb93d",
"Name": "Test purp 06",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2020-05-14T19:30:35Z",
"LastTransactionDate": "2020-05-14T19:30:35Z",
"ConsentDate": "2020-05-14T19:30:35Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "867d9cdb-2e98-4eb2-a5ac-56daa2736b1f",
"Name": " Topic_1804",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "8b5157e4-c1ee-452c-9b5e-b692c26632f4",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "22e8673d-4d21-43c2-a370-2bf1eddf6bd4",
"Identifier": "b36bb8ca-355e-483d-81d6-5267a75a40e5",
"LastUpdatedDate": "2019-03-07T03:22:28Z",
"CreatedDate": "2019-03-07T03:22:28Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-07T03:22:11Z",
"LastTransactionDate": "2019-03-07T03:22:11Z",
"ConsentDate": "2019-03-07T03:22:11Z",
"ExpiryDate": "2020-03-01T03:22:11Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "e8332de9-f921-457e-b485-c4d72d663fd4",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "91412611-6630-4c1d-8a20-fa2bb35d878e",
"Identifier": "f1cb7796-9a43-488c-bd9b-216ef7442763",
"LastUpdatedDate": "2019-03-07T03:22:45Z",
"CreatedDate": "2019-03-07T03:22:45Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-07T03:22:56Z",
"LastTransactionDate": "2019-03-07T03:22:56Z",
"ConsentDate": "2019-03-07T03:22:56Z",
"ExpiryDate": "2020-03-01T03:22:56Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "53cae93a-6432-46bd-baa2-6c4b1b2f440a",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "72276d80-519c-4694-84aa-25d2ccdc5c59",
"Identifier": "DS2",
"LastUpdatedDate": "2019-03-07T03:36:23Z",
"CreatedDate": "2019-03-07T03:35:28Z",
"Purposes": [
{
"Id": "759d8b24-e4c0-4107-86e2-3a408db13e6b",
"Name": "GJ Purpose 07",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2019-03-07T03:35:28Z",
"LastTransactionDate": "2019-03-07T03:36:12Z",
"WithdrawalDate": "2019-03-07T03:36:12Z",
"ConsentDate": "2019-03-07T03:35:28Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "f8886377-e4b1-45e4-b1c0-d7dacb744db8",
"LastTransactionCollectionPointVersion": 3
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "eea09632-e4e0-46bb-ae6e-31b802af5fd0",
"Identifier": "gkumar@onertrust.com",
"LastUpdatedDate": "2019-03-07T03:50:38Z",
"CreatedDate": "2019-03-07T03:50:38Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-07T03:50:39Z",
"LastTransactionDate": "2019-03-07T03:50:39Z",
"ConsentDate": "2019-03-07T03:50:39Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "f8886377-e4b1-45e4-b1c0-d7dacb744db8",
"LastTransactionCollectionPointVersion": 4
},
{
"Id": "a36f98d0-c662-4f61-a2a1-8bdab69e3c3a",
"Name": "Pur 1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-07T03:50:39Z",
"LastTransactionDate": "2019-03-07T03:50:39Z",
"ConsentDate": "2019-03-07T03:50:39Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "f89c2b49-17e2-4bd3-bc07-5224811c9c52",
"Name": "kbtopic2",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "f8886377-e4b1-45e4-b1c0-d7dacb744db8",
"LastTransactionCollectionPointVersion": 4
},
{
"Id": "4d52dcc4-82bf-44bf-ac49-854eba6ff8f3",
"Name": "Eloqua_UAT",
"Version": 1,
"Status": "NO_CONSENT",
"FirstTransactionDate": "2019-03-07T03:50:39Z",
"LastTransactionDate": "2019-03-07T03:50:39Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "f8886377-e4b1-45e4-b1c0-d7dacb744db8",
"LastTransactionCollectionPointVersion": 4
},
{
"Id": "759d8b24-e4c0-4107-86e2-3a408db13e6b",
"Name": "GJ Purpose 07",
"Version": 1,
"Status": "NO_CONSENT",
"FirstTransactionDate": "2019-03-07T03:50:39Z",
"LastTransactionDate": "2019-03-07T03:50:39Z",
"ExpiryDate": "2019-03-09T03:50:39Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "f8886377-e4b1-45e4-b1c0-d7dacb744db8",
"LastTransactionCollectionPointVersion": 4
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "589ef1bb-0b9f-4004-81d5-63ccbe578c89",
"Identifier": "mbarron@onetrust.com",
"LastUpdatedDate": "2019-03-11T22:45:25Z",
"CreatedDate": "2019-03-11T22:42:44Z",
"Purposes": [
{
"Id": "f5733675-308a-41b0-9be5-aca3f2a4db44",
"Name": "1012kpurpose1 - V1 Name",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2019-03-11T22:42:45Z",
"LastTransactionDate": "2019-03-11T22:45:24Z",
"WithdrawalDate": "2019-03-11T22:45:24Z",
"ConsentDate": "2019-03-11T22:42:45Z",
"TotalTransactionCount": 3,
"LastTransactionCollectionPointId": "d28ba3e3-0a9f-48e5-9dbb-28eb256b7bdb",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-11T22:42:45Z",
"LastTransactionDate": "2019-03-11T22:43:12Z",
"ConsentDate": "2019-03-11T22:42:45Z",
"TotalTransactionCount": 2,
"Topics": [
{
"Id": "38add7c6-ef9c-4b6d-8f3c-147c70124484",
"Name": "kbtopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "d28ba3e3-0a9f-48e5-9dbb-28eb256b7bdb",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "8c52c62b-dd35-43f3-a0da-4bcef1b137e1",
"Identifier": "416a373f-f861-47ae-b288-d7ad49c82ccd",
"LastUpdatedDate": "2019-03-12T02:52:59Z",
"CreatedDate": "2019-03-12T02:52:59Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-12T02:52:51Z",
"LastTransactionDate": "2019-03-12T02:52:51Z",
"ConsentDate": "2019-03-12T02:52:51Z",
"ExpiryDate": "2020-03-06T02:52:51Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "53cae93a-6432-46bd-baa2-6c4b1b2f440a",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "5555c2bf-ba69-4425-ba80-326e9825fc87",
"Identifier": "13d6ae0e-daad-4390-be21-0b00bf2d47df",
"LastUpdatedDate": "2019-03-12T02:53:14Z",
"CreatedDate": "2019-03-12T02:53:14Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-12T02:53:29Z",
"LastTransactionDate": "2019-03-12T02:53:29Z",
"ConsentDate": "2019-03-12T02:53:29Z",
"ExpiryDate": "2020-03-06T02:53:29Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "53cae93a-6432-46bd-baa2-6c4b1b2f440a",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "311ad5ce-12fc-4354-8629-6f61bd1d842a",
"Identifier": "fac6a378-32cf-4d60-9991-b556e8e3fdda",
"LastUpdatedDate": "2019-03-12T09:57:25Z",
"CreatedDate": "2019-03-12T09:57:25Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-12T09:57:16Z",
"LastTransactionDate": "2019-03-12T09:57:16Z",
"ConsentDate": "2019-03-12T09:57:16Z",
"ExpiryDate": "2020-03-06T09:57:16Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "53cae93a-6432-46bd-baa2-6c4b1b2f440a",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "fc29bc8a-93a9-4240-bd12-453e259980fa",
"Identifier": "21e064a2-74be-4ddb-83f6-0c0dc39a72ac",
"LastUpdatedDate": "2019-03-12T09:57:43Z",
"CreatedDate": "2019-03-12T09:57:43Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-12T09:57:21Z",
"LastTransactionDate": "2019-03-12T09:57:21Z",
"ConsentDate": "2019-03-12T09:57:21Z",
"ExpiryDate": "2020-03-06T09:57:21Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "53cae93a-6432-46bd-baa2-6c4b1b2f440a",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "7402d64a-62ee-4a9c-bff8-86847ff5aa6f",
"Identifier": "rfr",
"LastUpdatedDate": "2019-03-28T03:11:07Z",
"CreatedDate": "2019-03-28T03:11:07Z",
"Purposes": [
{
"Id": "4d52dcc4-82bf-44bf-ac49-854eba6ff8f3",
"Name": "Eloqua_UAT",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-28T03:11:06Z",
"LastTransactionDate": "2019-03-28T03:11:06Z",
"ConsentDate": "2019-03-28T03:11:06Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "690ad782-6280-4ea4-b62a-1514c39fc838",
"Name": "Eloqua_topic",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "f8886377-e4b1-45e4-b1c0-d7dacb744db8",
"LastTransactionCollectionPointVersion": 4
},
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "NO_CONSENT",
"FirstTransactionDate": "2019-03-28T03:11:06Z",
"LastTransactionDate": "2019-03-28T03:11:06Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "f8886377-e4b1-45e4-b1c0-d7dacb744db8",
"LastTransactionCollectionPointVersion": 4
},
{
"Id": "a36f98d0-c662-4f61-a2a1-8bdab69e3c3a",
"Name": "Pur 1",
"Version": 1,
"Status": "NO_CONSENT",
"FirstTransactionDate": "2019-03-28T03:11:06Z",
"LastTransactionDate": "2019-03-28T03:11:06Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "f8886377-e4b1-45e4-b1c0-d7dacb744db8",
"LastTransactionCollectionPointVersion": 4
},
{
"Id": "759d8b24-e4c0-4107-86e2-3a408db13e6b",
"Name": "GJ Purpose 07",
"Version": 1,
"Status": "NO_CONSENT",
"FirstTransactionDate": "2019-03-28T03:11:06Z",
"LastTransactionDate": "2019-03-28T03:11:06Z",
"ExpiryDate": "2019-03-30T03:11:06Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "f8886377-e4b1-45e4-b1c0-d7dacb744db8",
"LastTransactionCollectionPointVersion": 4
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "68c0db4d-ed92-4244-8cde-2375dcc8cb17",
"Identifier": "govi47p",
"LastUpdatedDate": "2019-03-28T03:12:07Z",
"CreatedDate": "2019-03-28T03:12:07Z",
"Purposes": [
{
"Id": "7a08dc31-8e5a-4d92-ab93-5af6528af046",
"Name": "govi47p",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-28T03:12:01Z",
"LastTransactionDate": "2019-03-28T03:12:01Z",
"ConsentDate": "2019-03-28T03:12:01Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "3cedc4f1-40ae-4ffc-b55b-f75c252f0b4f",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "a10aacc9-fa28-4b32-93ff-6f685cea9bd5",
"Identifier": "097cecdc-a9ff-4cf8-a55b-f2a30b98687c",
"LastUpdatedDate": "2019-03-28T03:13:20Z",
"CreatedDate": "2019-03-28T03:13:20Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-28T03:13:15Z",
"LastTransactionDate": "2019-03-28T03:13:15Z",
"ConsentDate": "2019-03-28T03:13:15Z",
"ExpiryDate": "2020-03-22T03:13:15Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "67a31c06-67db-429b-829f-9a5010971fe0",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "d32aaa76-8eb8-4983-a55e-a5ba5c47b842",
"Identifier": "Gjexample@otprivacy.com",
"LastUpdatedDate": "2019-03-28T03:21:43Z",
"CreatedDate": "2019-03-28T03:21:43Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "PENDING",
"FirstTransactionDate": "2019-03-28T03:21:29Z",
"LastTransactionDate": "2019-03-28T03:21:29Z",
"ConsentDate": "2019-03-28T03:21:29Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "38add7c6-ef9c-4b6d-8f3c-147c70124484",
"Name": "kbtopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "87ba854e-713b-4b88-8dee-3c537830c275",
"LastTransactionCollectionPointVersion": 3
},
{
"Id": "759d8b24-e4c0-4107-86e2-3a408db13e6b",
"Name": "GJ Purpose 07",
"Version": 2,
"Status": "PENDING",
"FirstTransactionDate": "2019-03-28T03:21:29Z",
"LastTransactionDate": "2019-03-28T03:21:29Z",
"ConsentDate": "2019-03-28T03:21:29Z",
"ExpiryDate": "2019-03-30T03:21:29Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "afcd5703-1247-4f5b-b0da-8d75e2986165",
"Name": "Eloqua_topic",
"IsConsented": true
},
{
"Id": "1a774b37-9733-4594-8656-fc5b799001ad",
"Name": "1012ktopic1",
"IsConsented": true
}
],
"CustomPreferences": [
{
"Id": "6a4d4c03-0b4e-445c-8033-4f84210d91f7",
"Name": "Gj Preference ",
"Options": [
{
"Id": "cda3a2af-d6f4-4af4-9d5c-325e3d121c80",
"Name": "Option 1",
"IsConsented": true
},
{
"Id": "a40b233c-2c5c-496c-a100-4f46a4104810",
"Name": "Option 2",
"IsConsented": true
}
]
}
],
"LastTransactionCollectionPointId": "87ba854e-713b-4b88-8dee-3c537830c275",
"LastTransactionCollectionPointVersion": 3
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "c005a5e1-2ac3-4520-95f8-3ee97d07b7f0",
"Identifier": "govi477@gmail.com",
"LastUpdatedDate": "2019-03-28T03:22:02Z",
"CreatedDate": "2019-03-28T03:22:02Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-28T03:22:12Z",
"LastTransactionDate": "2019-03-28T03:22:12Z",
"ConsentDate": "2019-03-28T03:22:12Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "38add7c6-ef9c-4b6d-8f3c-147c70124484",
"Name": "kbtopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "ac3bea9e-c509-4442-9cd5-569150abf4fb",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "fc44ac74-f059-4c37-bd9b-68fe92f63aec",
"Identifier": "blnandini6@gmail.com",
"LastUpdatedDate": "2019-05-10T08:20:16Z",
"CreatedDate": "2019-03-28T03:23:38Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-28T03:23:48Z",
"LastTransactionDate": "2019-03-28T03:23:48Z",
"ConsentDate": "2019-03-28T03:23:48Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "38add7c6-ef9c-4b6d-8f3c-147c70124484",
"Name": "kbtopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "ac3bea9e-c509-4442-9cd5-569150abf4fb",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "7a08dc31-8e5a-4d92-ab93-5af6528af046",
"Name": "govi47p",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-28T04:19:33Z",
"LastTransactionDate": "2019-03-28T04:20:27Z",
"ConsentDate": "2019-03-28T04:19:33Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "3cedc4f1-40ae-4ffc-b55b-f75c252f0b4f",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "17b34a38-4fff-42e6-9653-d96b58514855",
"Name": "purpose-11",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-05-10T08:20:58Z",
"LastTransactionDate": "2019-05-10T08:20:58Z",
"ConsentDate": "2019-05-10T08:20:58Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "94550faa-4dec-4882-b800-4a468bd76114",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "d7176d34-a31b-4414-81e1-4ecee81c7f41",
"Identifier": "govi4757@gmail.com",
"LastUpdatedDate": "2019-03-28T03:24:03Z",
"CreatedDate": "2019-03-28T03:24:03Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-28T03:23:49Z",
"LastTransactionDate": "2019-03-28T03:23:49Z",
"ConsentDate": "2019-03-28T03:23:49Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "38add7c6-ef9c-4b6d-8f3c-147c70124484",
"Name": "kbtopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "ac3bea9e-c509-4442-9cd5-569150abf4fb",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "f5865a24-63ed-467d-a87a-ba9211553b7b",
"Identifier": "blnandini62803@gmail.com",
"LastUpdatedDate": "2019-03-28T04:02:32Z",
"CreatedDate": "2019-03-28T04:02:32Z",
"Purposes": [
{
"Id": "7a08dc31-8e5a-4d92-ab93-5af6528af046",
"Name": "govi47p",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-28T04:02:17Z",
"LastTransactionDate": "2019-03-28T04:02:17Z",
"ConsentDate": "2019-03-28T04:02:17Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "3cedc4f1-40ae-4ffc-b55b-f75c252f0b4f",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "7b63dccf-276d-4fb3-bc66-1ea9d01335b9",
"Identifier": "Nand2803@otprivacy.com",
"LastUpdatedDate": "2019-03-28T04:14:55Z",
"CreatedDate": "2019-03-28T04:14:55Z",
"DataElements": [
{
"Name": "FirstName",
"Value": "Nandini",
"Linked": false
},
{
"Name": "LastName",
"Value": "B L",
"Linked": false
}
],
"Purposes": [
{
"Id": "7a08dc31-8e5a-4d92-ab93-5af6528af046",
"Name": "govi47p",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-28T04:15:03Z",
"LastTransactionDate": "2019-03-28T04:15:03Z",
"ConsentDate": "2019-03-28T04:15:03Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "3cedc4f1-40ae-4ffc-b55b-f75c252f0b4f",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "b4966cb2-7d2c-4a09-81a1-4ea7a7aed94a",
"Identifier": "c75fdacb-5137-4982-bf4a-8fef1a9f44a7",
"LastUpdatedDate": "2019-03-29T06:55:56Z",
"CreatedDate": "2019-03-29T06:55:56Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-29T06:55:49Z",
"LastTransactionDate": "2019-03-29T06:55:49Z",
"ConsentDate": "2019-03-29T06:55:49Z",
"ExpiryDate": "2020-03-23T06:55:49Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "67a31c06-67db-429b-829f-9a5010971fe0",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "aaf3e43b-3bb2-4c09-b671-8aec4dfb8300",
"Identifier": "6846071c-b60e-4ffc-86f8-f4cdeebb2c0f",
"LastUpdatedDate": "2019-03-29T07:29:06Z",
"CreatedDate": "2019-03-29T07:29:06Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-03-29T07:28:51Z",
"LastTransactionDate": "2019-03-29T07:28:51Z",
"ConsentDate": "2019-03-29T07:28:51Z",
"ExpiryDate": "2020-03-23T07:28:51Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "67a31c06-67db-429b-829f-9a5010971fe0",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "fbfd5454-8b3f-4bc7-8e8b-6cea81807078",
"Identifier": "c3343b8b-b42b-472a-8a1c-2aafbf3206a6",
"LastUpdatedDate": "2019-04-01T03:03:11Z",
"CreatedDate": "2019-04-01T03:03:11Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-04-01T03:03:11Z",
"LastTransactionDate": "2019-04-01T03:03:11Z",
"ConsentDate": "2019-04-01T03:03:11Z",
"ExpiryDate": "2020-03-26T03:03:11Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "67a31c06-67db-429b-829f-9a5010971fe0",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "9e375667-0d78-4fdd-a2ee-9d693e9c59ee",
"Identifier": "8003e82d-c888-49a0-bf23-ced67d0dcd2b",
"LastUpdatedDate": "2019-04-01T03:07:35Z",
"CreatedDate": "2019-04-01T03:07:35Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-04-01T03:07:28Z",
"LastTransactionDate": "2019-04-01T03:07:28Z",
"ConsentDate": "2019-04-01T03:07:28Z",
"ExpiryDate": "2020-03-26T03:07:28Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "67a31c06-67db-429b-829f-9a5010971fe0",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "cb4c2dc5-724e-474f-8818-ba1bd4f3efb5",
"Language": "en-us",
"Identifier": "graj@onetrust.com",
"LastUpdatedDate": "2019-07-10T03:39:05Z",
"CreatedDate": "2019-04-05T11:30:54Z",
"Purposes": [
{
"Id": "4a5e6278-17f1-4283-beee-29f81cde2bd0",
"Name": "kbpurpose1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-04-05T11:30:46Z",
"LastTransactionDate": "2019-04-05T12:07:45Z",
"WithdrawalDate": "2019-04-05T12:06:57Z",
"ConsentDate": "2019-04-05T11:30:46Z",
"TotalTransactionCount": 14,
"LastTransactionCollectionPointId": "59da7125-74ef-4e96-97e2-676bc295c804",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "f5733675-308a-41b0-9be5-aca3f2a4db44",
"Name": "1012kpurpose1 - V1 Name",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-04-05T11:45:11Z",
"LastTransactionDate": "2019-04-06T12:00:11Z",
"WithdrawalDate": "2019-04-05T11:54:56Z",
"ConsentDate": "2019-04-05T11:45:11Z",
"ExpiryDate": "2019-04-06T12:00:11Z",
"TotalTransactionCount": 10,
"Topics": [
{
"Id": "1877891d-5f40-412d-8da0-16d1bf0f499b",
"Name": "1012ktopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "90cba08f-9cc9-4d51-b5f4-7b097bdd8739",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "759d8b24-e4c0-4107-86e2-3a408db13e6b",
"Name": "GJ Purpose 07",
"Version": 2,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-04-05T11:45:11Z",
"LastTransactionDate": "2019-04-07T12:00:20Z",
"WithdrawalDate": "2019-04-05T11:54:56Z",
"ConsentDate": "2019-04-05T11:45:11Z",
"ExpiryDate": "2019-04-07T12:00:20Z",
"TotalTransactionCount": 11,
"Topics": [
{
"Id": "afcd5703-1247-4f5b-b0da-8d75e2986165",
"Name": "Eloqua_topic",
"IsConsented": true
},
{
"Id": "1a774b37-9733-4594-8656-fc5b799001ad",
"Name": "1012ktopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "90cba08f-9cc9-4d51-b5f4-7b097bdd8739",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "7a08dc31-8e5a-4d92-ab93-5af6528af046",
"Name": "govi47p",
"Version": 2,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-04-05T11:45:11Z",
"LastTransactionDate": "2019-07-10T03:39:03Z",
"WithdrawalDate": "2019-05-08T06:06:07Z",
"ConsentDate": "2019-04-05T11:45:11Z",
"TotalTransactionCount": 25,
"LastTransactionCollectionPointId": "a157e758-2b88-4762-a012-da3211f9e489",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "a57ee9da-b494-49e2-b562-6dfa31f190df",
"Name": "kbpurpose2",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-04-05T12:00:30Z",
"LastTransactionDate": "2019-04-13T00:00:35Z",
"WithdrawalDate": "2019-04-05T12:06:57Z",
"ConsentDate": "2019-04-05T12:00:30Z",
"ExpiryDate": "2019-04-13T00:00:35Z",
"TotalTransactionCount": 6,
"Topics": [
{
"Id": "b0c0bf82-0d9b-4bda-8afb-25d514d090d0",
"Name": "kbtopic2",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "59da7125-74ef-4e96-97e2-676bc295c804",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "eb4c4ffe-72af-48bc-a3fe-d09af261cea1",
"Name": "Purpose12",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-05-29T03:54:27Z",
"LastTransactionDate": "2019-05-29T03:54:27Z",
"ConsentDate": "2019-05-29T03:54:27Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "94550faa-4dec-4882-b800-4a468bd76114",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "41ebdf32-068b-4239-89ac-42e20262c5a9",
"Name": "Send Notifications about Changes to Preferences",
"Version": 1,
"Status": "OPT_OUT",
"FirstTransactionDate": "2019-05-29T04:03:42Z",
"LastTransactionDate": "2019-05-29T04:03:42Z",
"ConsentDate": "2019-05-29T04:03:42Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "379e7adb-c178-4bc9-a9f1-fd9f73a3c4d6",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "7b70ca4e-8224-45b3-9924-1b5214b56ab7",
"Name": "test12",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-05-29T04:14:51Z",
"LastTransactionDate": "2019-05-29T04:14:51Z",
"ConsentDate": "2019-05-29T04:14:51Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "3f23b668-9c70-49aa-bad7-43ca218ecf5e",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "4d52dcc4-82bf-44bf-ac49-854eba6ff8f3",
"Name": "Eloqua_UAT",
"Version": 2,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-05-29T10:36:41Z",
"LastTransactionDate": "2019-05-29T10:36:41Z",
"ConsentDate": "2019-05-29T10:36:41Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "379e7adb-c178-4bc9-a9f1-fd9f73a3c4d6",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "48c7374d-5d35-4268-b378-2f6d9d414822",
"Name": "nrfix",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2019-05-29T10:35:53Z",
"LastTransactionDate": "2019-05-29T10:36:06Z",
"WithdrawalDate": "2019-05-29T10:36:06Z",
"ConsentDate": "2019-05-29T10:35:53Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "79c6c6ef-fba4-43f5-bc63-23f51e7f51ef",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "b612ec41-e461-449a-8404-42231d6b3771",
"Identifier": "ahc1@onetrust.com",
"LastUpdatedDate": "2019-04-05T11:44:37Z",
"CreatedDate": "2019-04-05T11:44:37Z",
"Purposes": [
{
"Id": "7a08dc31-8e5a-4d92-ab93-5af6528af046",
"Name": "govi47p",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-04-05T11:44:39Z",
"LastTransactionDate": "2019-04-05T11:44:39Z",
"ConsentDate": "2019-04-05T11:44:39Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "3cedc4f1-40ae-4ffc-b55b-f75c252f0b4f",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "821e45a0-04cd-47b6-bdfd-2f1f80744491",
"Identifier": "consentot1+bvg@gmail.com",
"LastUpdatedDate": "2019-04-05T11:51:28Z",
"CreatedDate": "2019-04-05T11:51:28Z",
"Purposes": [
{
"Id": "07c5b97a-5b53-4cd1-8f15-a979950ce0af",
"Name": "Purpose-1",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-04-05T11:51:30Z",
"LastTransactionDate": "2019-04-05T11:51:30Z",
"ConsentDate": "2019-04-05T11:51:30Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "9609c884-9016-4eb4-b524-2b5f7826b546",
"Name": "Topic_UAT",
"IsConsented": true
}
],
"CustomPreferences": [
{
"Id": "803ea1a4-7179-4855-903a-b14cb87ee61d",
"Name": "custom-1",
"Options": [
{
"Id": "cfe18bf7-d889-4938-8a11-89ec4ee03577",
"Name": "Option3",
"IsConsented": true
},
{
"Id": "a23f1424-4b23-46ce-ada1-edb3cdb81470",
"Name": "Option2",
"IsConsented": true
}
]
}
],
"LastTransactionCollectionPointId": "4a96f54f-5854-4dd4-974f-e4b9326941d7",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "af7141f4-d0ae-4bd5-aec5-f48e671749e7",
"Name": "purpose-2",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-04-05T11:51:30Z",
"LastTransactionDate": "2019-04-05T11:51:30Z",
"ConsentDate": "2019-04-05T11:51:30Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "689bde48-658f-402d-a19c-b786ffc54d6d",
"Name": "topic123",
"IsConsented": true
}
],
"CustomPreferences": [
{
"Id": "18190085-078a-4f5f-a575-3999735e5abf",
"Name": "custom-2",
"Options": [
{
"Id": "01bc14e5-c2bf-480a-b5f1-25a5b81c8037",
"Name": "Option2",
"IsConsented": true
},
{
"Id": "2a036869-c289-4b8a-a75f-a496beb6066d",
"Name": "Option3",
"IsConsented": true
}
]
}
],
"LastTransactionCollectionPointId": "4a96f54f-5854-4dd4-974f-e4b9326941d7",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "5d3aaceb-3c22-45ed-acfa-a075272c1b54",
"Identifier": "example@otprivacy.com",
"LastUpdatedDate": "2019-04-18T03:41:16Z",
"CreatedDate": "2019-04-05T11:51:57Z",
"Purposes": [
{
"Id": "07c5b97a-5b53-4cd1-8f15-a979950ce0af",
"Name": "Purpose-1",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2019-04-05T11:51:49Z",
"LastTransactionDate": "2019-04-05T11:53:50Z",
"WithdrawalDate": "2019-04-05T11:53:50Z",
"ConsentDate": "2019-04-05T11:51:49Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "4a96f54f-5854-4dd4-974f-e4b9326941d7",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "af7141f4-d0ae-4bd5-aec5-f48e671749e7",
"Name": "purpose-2",
"Version": 1,
"Status": "WITHDRAWN",
"FirstTransactionDate": "2019-04-05T11:51:49Z",
"LastTransactionDate": "2019-04-05T11:55:12Z",
"WithdrawalDate": "2019-04-05T11:55:12Z",
"ConsentDate": "2019-04-05T11:51:49Z",
"TotalTransactionCount": 2,
"LastTransactionCollectionPointId": "4a96f54f-5854-4dd4-974f-e4b9326941d7",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "a313353a-e13b-4554-be08-22cf4a78a31c",
"Name": "Purpose_1804 v2",
"Version": 2,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-04-18T03:41:19Z",
"LastTransactionDate": "2019-04-18T03:41:19Z",
"ConsentDate": "2019-04-18T03:41:19Z",
"TotalTransactionCount": 1,
"CustomPreferences": [
{
"Id": "4935d35a-7216-480d-9da9-1aef0e078b89",
"Name": "Custom_S",
"Options": [
{
"Id": "65655511-d4b1-46ac-a47a-f4dfbb2cffa6",
"Name": "Option1",
"IsConsented": true
},
{
"Id": "8acc2f9f-37f8-4ace-a513-fae6b7dd0aa9",
"Name": "Option2",
"IsConsented": true
}
]
}
],
"LastTransactionCollectionPointId": "b9ed1377-c66d-40d3-a36c-aabc4a5db45b",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "f0ad0a63-8c03-402f-8db6-a92d71c3dc63",
"Identifier": "consentot1+hd@gmail.com",
"LastUpdatedDate": "2019-04-05T12:00:52Z",
"CreatedDate": "2019-04-05T12:00:52Z",
"Purposes": [
{
"Id": "07c5b97a-5b53-4cd1-8f15-a979950ce0af",
"Name": "Purpose-1 v2",
"Version": 2,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-04-05T12:00:45Z",
"LastTransactionDate": "2019-04-05T12:00:45Z",
"ConsentDate": "2019-04-05T12:00:45Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "9609c884-9016-4eb4-b524-2b5f7826b546",
"Name": "Topic_UAT",
"IsConsented": true
}
],
"CustomPreferences": [
{
"Id": "803ea1a4-7179-4855-903a-b14cb87ee61d",
"Name": "custom-1",
"Options": [
{
"Id": "cfe18bf7-d889-4938-8a11-89ec4ee03577",
"Name": "Option3",
"IsConsented": true
},
{
"Id": "a23f1424-4b23-46ce-ada1-edb3cdb81470",
"Name": "Option2",
"IsConsented": true
}
]
}
],
"LastTransactionCollectionPointId": "4a96f54f-5854-4dd4-974f-e4b9326941d7",
"LastTransactionCollectionPointVersion": 3
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "b9d79f27-08f4-4451-8bda-43dac5384665",
"Identifier": "consentot1+doi@gmail.com",
"LastUpdatedDate": "2019-04-05T12:03:56Z",
"CreatedDate": "2019-04-05T12:03:40Z",
"Purposes": [
{
"Id": "07c5b97a-5b53-4cd1-8f15-a979950ce0af",
"Name": "Purpose-1 v2",
"Version": 2,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-04-05T12:03:42Z",
"LastTransactionDate": "2019-04-05T12:03:55Z",
"ConsentDate": "2019-04-05T12:03:42Z",
"TotalTransactionCount": 2,
"Topics": [
{
"Id": "9609c884-9016-4eb4-b524-2b5f7826b546",
"Name": "Topic_UAT",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "4a96f54f-5854-4dd4-974f-e4b9326941d7",
"LastTransactionCollectionPointVersion": 4
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "17c5874a-3698-4985-92a5-a37268de7d81",
"Identifier": "consentot1+ack@gmail.com",
"LastUpdatedDate": "2019-04-05T12:06:31Z",
"CreatedDate": "2019-04-05T12:05:48Z",
"Purposes": [
{
"Id": "07c5b97a-5b53-4cd1-8f15-a979950ce0af",
"Name": "Purpose-1 v2",
"Version": 2,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-04-05T12:05:41Z",
"LastTransactionDate": "2019-04-05T12:06:31Z",
"ConsentDate": "2019-04-05T12:05:41Z",
"TotalTransactionCount": 2,
"Topics": [
{
"Id": "9609c884-9016-4eb4-b524-2b5f7826b546",
"Name": "Topic_UAT",
"IsConsented": true
}
],
"CustomPreferences": [
{
"Id": "803ea1a4-7179-4855-903a-b14cb87ee61d",
"Name": "custom-1",
"Options": [
{
"Id": "a23f1424-4b23-46ce-ada1-edb3cdb81470",
"Name": "Option2",
"IsConsented": true
}
]
}
],
"LastTransactionCollectionPointId": "75f1842a-b334-4c9a-b36c-6c95201eecc4",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "fe174def-a0b1-470f-a759-f29bc4af1cc6",
"Identifier": "consentot1+b@gmail.com",
"LastUpdatedDate": "2019-04-05T12:10:11Z",
"CreatedDate": "2019-04-05T12:09:07Z",
"Purposes": [
{
"Id": "07c5b97a-5b53-4cd1-8f15-a979950ce0af",
"Name": "Purpose-1 v2",
"Version": 2,
"Status": "NO_CONSENT",
"FirstTransactionDate": "2019-04-05T12:09:07Z",
"LastTransactionDate": "2019-04-05T12:10:11Z",
"WithdrawalDate": "2019-04-05T12:09:31Z",
"ConsentDate": "2019-04-05T12:09:07Z",
"TotalTransactionCount": 3,
"LastTransactionCollectionPointId": "4a96f54f-5854-4dd4-974f-e4b9326941d7",
"LastTransactionCollectionPointVersion": 4
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "58ed4dc9-7bbd-47ba-a11c-837a777b843f",
"Identifier": "consentot1+b1@gmail.com",
"LastUpdatedDate": "2019-04-05T12:11:11Z",
"CreatedDate": "2019-04-05T12:11:11Z",
"Purposes": [
{
"Id": "07c5b97a-5b53-4cd1-8f15-a979950ce0af",
"Name": "Purpose-1 v2",
"Version": 2,
"Status": "PENDING",
"FirstTransactionDate": "2019-04-05T12:11:11Z",
"LastTransactionDate": "2019-04-05T12:11:11Z",
"ConsentDate": "2019-04-05T12:11:11Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "4a96f54f-5854-4dd4-974f-e4b9326941d7",
"LastTransactionCollectionPointVersion": 5
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "a77f5fbf-7aa1-46e0-9618-3d138d3e1619",
"Identifier": "demouser1@gmail.com",
"LastUpdatedDate": "2019-04-10T09:28:10Z",
"CreatedDate": "2019-04-10T09:28:10Z",
"Purposes": [
{
"Id": "07c5b97a-5b53-4cd1-8f15-a979950ce0af",
"Name": "Purpose-1 v2",
"Version": 2,
"Status": "PENDING",
"FirstTransactionDate": "2019-04-10T09:28:00Z",
"LastTransactionDate": "2019-04-10T09:28:00Z",
"ConsentDate": "2019-04-10T09:28:00Z",
"TotalTransactionCount": 1,
"Topics": [
{
"Id": "9609c884-9016-4eb4-b524-2b5f7826b546",
"Name": "Topic_UAT",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "4a96f54f-5854-4dd4-974f-e4b9326941d7",
"LastTransactionCollectionPointVersion": 5
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "30039d13-9852-4e64-816a-443a63937e01",
"Identifier": "pooja2007k@gmail.com",
"LastUpdatedDate": "2019-04-18T03:21:56Z",
"CreatedDate": "2019-04-18T03:21:56Z",
"Purposes": [
{
"Id": "07c5b97a-5b53-4cd1-8f15-a979950ce0af",
"Name": "Purpose-1 v2",
"Version": 2,
"Status": "PENDING",
"FirstTransactionDate": "2019-04-18T03:22:21Z",
"LastTransactionDate": "2019-04-18T03:22:21Z",
"ConsentDate": "2019-04-18T03:22:21Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "4a96f54f-5854-4dd4-974f-e4b9326941d7",
"LastTransactionCollectionPointVersion": 5
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "ef07e08c-f0ca-4821-8fa7-1bf3a25e1338",
"Identifier": "ot1shwetdfgha@gmail.com",
"LastUpdatedDate": "2019-04-20T12:00:34Z",
"CreatedDate": "2019-04-18T03:23:38Z",
"Purposes": [
{
"Id": "f5733675-308a-41b0-9be5-aca3f2a4db44",
"Name": "1012kpurpose1 - V1 Name",
"Version": 1,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-04-18T03:24:02Z",
"LastTransactionDate": "2019-04-19T12:00:06Z",
"ConsentDate": "2019-04-18T03:24:02Z",
"ExpiryDate": "2019-04-19T12:00:06Z",
"TotalTransactionCount": 2,
"Topics": [
{
"Id": "1877891d-5f40-412d-8da0-16d1bf0f499b",
"Name": "1012ktopic1",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "7599b59b-4bbf-4d24-8e7e-85dce33e564f",
"LastTransactionCollectionPointVersion": 1
},
{
"Id": "759d8b24-e4c0-4107-86e2-3a408db13e6b",
"Name": "GJ Purpose 07",
"Version": 2,
"Status": "EXPIRED",
"FirstTransactionDate": "2019-04-18T03:24:02Z",
"LastTransactionDate": "2019-04-20T12:00:34Z",
"ConsentDate": "2019-04-18T03:24:02Z",
"ExpiryDate": "2019-04-20T12:00:34Z",
"TotalTransactionCount": 2,
"Topics": [
{
"Id": "1a774b37-9733-4594-8656-fc5b799001ad",
"Name": "1012ktopic1",
"IsConsented": true
},
{
"Id": "afcd5703-1247-4f5b-b0da-8d75e2986165",
"Name": "Eloqua_topic",
"IsConsented": true
}
],
"LastTransactionCollectionPointId": "7599b59b-4bbf-4d24-8e7e-85dce33e564f",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
},
{
"number": 0,
"size": 100,
"numberOfElements": 100,
"last": false,
"pageable": {
"limit": 100,
"offset": 0,
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"tokenId": 100,
"pageSize": 100,
"pageNumber": 0,
"unpaged": false,
"paged": true
},
"sort": {
"sorted": true,
"unsorted": false,
"empty": false
},
"content": {
"Id": "441c9c64-9069-4d09-b7ba-8dba06ef4dcd",
"Identifier": "f666589e-b737-4678-a8d2-ecb59cb7b457",
"LastUpdatedDate": "2019-04-18T03:24:28Z",
"CreatedDate": "2019-04-18T03:24:28Z",
"Purposes": [
{
"Id": "4f266f1a-c21a-4743-99c8-775c5edcd96c",
"Name": "Setting and Reading Cookies",
"Version": 1,
"Status": "ACTIVE",
"FirstTransactionDate": "2019-04-18T03:23:54Z",
"LastTransactionDate": "2019-04-18T03:23:54Z",
"ConsentDate": "2019-04-18T03:23:54Z",
"ExpiryDate": "2020-04-12T03:23:54Z",
"TotalTransactionCount": 1,
"LastTransactionCollectionPointId": "5042751b-b8f5-49d6-b824-7fa984f6d32f",
"LastTransactionCollectionPointVersion": 1
}
],
"TestDataSubject": false
},
"first": true,
"empty": false
}
]
}
You can create a source connection by making a POST request to the Flow Service API. A source connection consists of a connection ID, a path to the source data file, and a connection spec ID.
API format
POST /sourceConnections
Request
The following request creates a source connection for OneTrust Integration :
curl -X POST \
'https://platform.adobe.io/data/foundation/flowservice/sourceConnections' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}' \
-H 'Content-Type: application/json' \
-d '{
"name": "ONETRUST Source Connection",
"description": "ONETRUST Source Connection",
"baseConnectionId": "622124ca-6d18-47f7-999c-66f599955309",
"connectionSpec": {
"id": "cf16d886-c627-4872-9936-fb08d6cba8cc",
"version": "1.0"
},
"data": {
"format": "json"
},
"params": {}
}'
Property | Description |
---|---|
name |
The name of your source connection. Ensure that the name of your source connection is descriptive as you can use this to look up information on your source connection. |
description |
An optional value that you can include to provide more information on your source connection. |
baseConnectionId |
The base connection ID of OneTrust Integration. This ID was generated in an earlier step. |
connectionSpec.id |
The connection specification ID that corresponds to your source. |
data.format |
The format of the OneTrust Integration data that you want to ingest. Currently, the only supported data format is json . |
Response
A successful response returns the unique identifier (id
) of the newly created source connection. This ID is required in a later step to create a dataflow.
{
"id": "eb5833d3-230d-4700-80cc-bda396e7af8a",
"etag": "\"da04c07f-0000-0200-0000-621f1afc0000\""
}
In order for the source data to be used in Platform, a target schema must be created to structure the source data according to your needs. The target schema is then used to create a Platform dataset in which the source data is contained.
A target XDM schema can be created by performing a POST request to the Schema Registry API.
For detailed steps on how to create a target XDM schema, see the tutorial on creating a schema using the API.
A target dataset can be created by performing a POST request to the Catalog Service API, providing the ID of the target schema within the payload.
For detailed steps on how to create a target dataset, see the tutorial on creating a dataset using the API.
A target connection represents the connection to the destination where the ingested data is to be stored. To create a target connection, you must provide the fixed connection specification ID that corresponds to the Data Lake. This ID is: c604ff05-7f1a-43c0-8e18-33bf874cb11c
.
You now have the unique identifiers a target schema a target dataset and the connection spec ID to the Data Lake. Using these identifiers, you can create a target connection using the Flow Service API to specify the dataset that will contain the inbound source data.
API format
POST /targetConnections
Request
The following request creates a target connection for OneTrust Integration :
curl -X POST \
'https://platform.adobe.io/data/foundation/flowservice/targetConnections' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}' \
-H 'Content-Type: application/json' \
-d '{
"name": "ONETRUST Target Connection",
"description": "ONETRUST Target Connection",
"connectionSpec": {
"id": "c604ff05-7f1a-43c0-8e18-33bf874cb11c",
"version": "1.0"
},
"data": {
"format": "json"
},
"params": {
"dataSetId": "61f6ca3f33978c19486bb463"
}
}'
Property | Description |
---|---|
name |
The name of your target connection. Ensure that the name of your target connection is descriptive as you can use this to look up information on your target connection. |
description |
An optional value that you can include to provide more information on your target connection. |
connectionSpec.id |
The connection specification ID that corresponds to Data Lake. This fixed ID is: c604ff05-7f1a-43c0-8e18-33bf874cb11c . |
data.format |
The format of the OneTrust Integration data that you want to bring to Platform. |
params.dataSetId |
The target dataset ID retrieved in a previous step. |
Response
A successful response returns the new target connection’s unique identifier (id
). This ID is required in later steps.
{
"id": "495f761f-310a-4a7b-ae78-5b1152d74b38",
"etag": "\"410a7b0c-0000-0200-0000-621f1afd0000\""
}
In order for the source data to be ingested into a target dataset, it must first be mapped to the target schema that the target dataset adheres to. This is achieved by performing a POST request to Data Prep API with data mappings defined within the request payload.
API format
POST /conversion/mappingSets
Request
curl -X POST \
'https://platform.adobe.io/data/foundation/conversion/mappingSets' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}' \
-H 'Content-Type: application/json' \
-d '{
"version": 0,
"xdmSchema": "https://ns.adobe.com/{TENANT_ID}/schemas/cfc8cee182e546c1fb35071185524b465e06bf1acb74f30d",
"xdmVersion": "1.0",
"id": null,
"mappings": [{
"sourceType": "ATTRIBUTE",
"source": "content.Identifier",
"destination": "_id",
"name": "id",
"description": "Identifier field"
},
{
"sourceType": "ATTRIBUTE",
"source": "content.Identifier",
"destination": "_exchangesandboxbravo.Identifier"
},
{
"sourceType": "ATTRIBUTE",
"source": "content.Language",
"destination": "_exchangesandboxbravo.Language",
"description": "Language field"
},
{
"sourceType": "ATTRIBUTE",
"source": "content.CreatedDate",
"destination": "_exchangesandboxbravo.CreatedDate",
"description": "Created Date field"
},
{
"sourceType": "ATTRIBUTE",
"source": "content.LastUpdatedDate",
"destination": "_exchangesandboxbravo.LastUpdatedDate",
"description": "Created Date field"
},
{
"sourceType": "ATTRIBUTE",
"source": "content.DataElements",
"destination": "_exchangesandboxbravo.DataElements"
},
{
"sourceType": "ATTRIBUTE",
"source": "content.Purposes",
"destination": "_exchangesandboxbravo.Purposes"
}
]
}'
Property | Description |
---|---|
xdmSchema |
The ID of the target XDM schema generated in an earlier step. |
mappings.destinationXdmPath |
The destination XDM path where the source attribute is being mapped to. |
mappings.sourceAttribute |
The source attribute that needs to be mapped to a destination XDM path. |
Response
A successful response returns details of the newly created mapping including its unique identifier (id
). This value is required in a later step to create a dataflow.
{
"id": "a87f130e82f04d5188da01f087805c4b",
"version": 0,
"createdDate": 1646205694395,
"modifiedDate": 1646205694395,
"createdBy": "{CREATED_BY}",
"modifiedBy": "{MODIFIED_BY}"
}
The last step towards bringing data from OneTrust Integration to Platform is to create a dataflow. By now, you have the following required values prepared:
A dataflow is responsible for scheduling and collecting data from a source. You can create a dataflow by performing a POST request while providing the previously mentioned values within the payload.
To schedule an ingestion, you must first set the start time value to epoch time in seconds. Then, you must set the frequency value to one of the five options: once
, minute
, hour
, day
, or week
. The interval value designates the period between two consecutive ingestions however, creating a one-time ingestion does not require an interval to be set. For all other frequencies, the interval value must be set to equal or greater than 15
.
API format
POST /flows
Request
curl -X POST \
'https://platform.adobe.io/data/foundation/flowservice/flows' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}' \
-H 'Content-Type: application/json' \
-d '{
"name": "ONETRUST dataflow",
"description": "ONETRUST dataflow",
"flowSpec": {
"id": "6499120c-0b15-42dc-936e-847ea3c24d72",
"version": "1.0"
},
"sourceConnectionIds": [
"eb5833d3-230d-4700-80cc-bda396e7af8a"
],
"targetConnectionIds": [
"495f761f-310a-4a7b-ae78-5b1152d74b38"
],
"transformations": [
{
"name": "Mapping",
"params": {
"mappingId": "a87f130e82f04d5188da01f087805c4b",
"mappingVersion": 0
}
}
],
"scheduleParams": {
"startTime": "1625040887",
"frequency": "minute",
"interval": 15
}
}'
Property | Description |
---|---|
name |
The name of your dataflow. Ensure that the name of your dataflow is descriptive as you can use this to look up information on your dataflow. |
description |
An optional value that you can include to provide more information on your dataflow. |
flowSpec.id |
The flow specification ID required to create a dataflow. This fixed ID is: 6499120c-0b15-42dc-936e-847ea3c24d72 . |
flowSpec.version |
The corresponding version of the flow specification ID. This value defaults to 1.0 . |
sourceConnectionIds |
The source connection ID generated in an earlier step. |
targetConnectionIds |
The target connection ID generated in an earlier step. |
transformations |
This property contains the various transformations that are needed to be applied to your data. This property is required when bringing non-XDM-compliant data to Platform. |
transformations.name |
The name assigned to the transformation. |
transformations.params.mappingId |
The mapping ID generated in an earlier step. |
transformations.params.mappingVersion |
The corresponding version of the mapping ID. This value defaults to 0 . |
scheduleParams.startTime |
This property contains information on the ingestion scheduling of the dataflow. |
scheduleParams.frequency |
The frequency at which the dataflow will collect data. Acceptable values include: once , minute , hour , day , or week . |
scheduleParams.interval |
The interval designates the period between two consecutive flow runs. The interval’s value should be a non-zero integer. Interval is not required when frequency is set as once and should be greater than or equal to 15 for other frequency values. |
Response
A successful response returns the ID (id
) of the newly created dataflow. You can use this ID to monitor, update, or delete your dataflow.
{
"id": "70045189-42f0-493d-9b9e-be1045a9f4fa",
"etag": "\"1601e900-0000-0200-0000-621f1b080000\""
}
The following section provides information on the steps you can to monitor, update, and delete your dataflow.
Once your dataflow has been created, you can monitor the data that is being ingested through it to see information on flow runs, completion status, and errors. For complete API examples, read the guide on monitoring your sources dataflows using the API.
Update the details of your dataflow, such as its name and description, as well as its run schedule and associated mapping sets by making a PATCH request to the /flows
endpoint of Flow Service API, while providing the ID of your dataflow. When making a PATCH request, you must provide your dataflow’s unique etag
in the If-Match
header. For complete API examples, read the guide on updating sources dataflows using the API.
Update the name, description, and credentials of your source account by performing a PATCH request to the Flow Service API while providing your base connection ID as a query parameter. When making a PATCH request, you must provide your source account’s unique etag
in the If-Match
header. For complete API examples, read the guide on updating your source account using the API.
Delete your dataflow by performing a DELETE request to the Flow Service API while providing the ID of the dataflow you want to delete as part of the query parameter. For complete API examples, read the guide on deleting your dataflows using the API.
Delete your account by performing a DELETE request to the Flow Service API while providing the base connection ID of the account you want to delete. For complete API examples, read the guide on deleting your source account using the API.