v1

latestOpenAPI 3.1.0Apache 2.02026-07-245981,1853.0 MB
Privacy Notice V2

Get List of Privacy Notices

Use this API to retrieve a list of all privacy notices. The response will include details for each privacy notice along with the corresponding privacy notice ID, created date, and last published date.

get/v2/privacynotices

Query parameters

pageinteger

Results page to be retrieved (0..N). Example- '?page=1

sizeinteger

Number of records per page (1..50). Example- '?size=30

Response

OK

idstring uuid

Unique Identifier identifying a Privacy Notice

createdDatestring date-time

The Date Privacy Notice was created on

lastPublishedDatestring date-time

The date Privacy Notice was published on

organizationIdstring uuid

Unique Identifier identifying a Organization of the Privacy Notice

responsibleUserIdstring uuid

Unique Identifier identifying a Responsible User of the Privacy Notice

numberOfVersionsinteger

Total number of version in Privacy Notice

Example response

[
  {
    "id": "625ba071-61b0-485f-81a0-a2245777b431",
    "createdDate": "2020-04-20T16:11:25.479",
    "lastPublishedDate": "2020-05-14T00:00:48.62",
    "organizationId": "625ba071-61b0-485f-81a0-a2245777b430",
    "responsibleUserId": "625ba071-61b0-485f-81a0-a2245777b435",
    "numberOfVersions": 2,
    "versions": [
      {
        "id": "625ba071-61b0-485f-81a0-a2245777b400",
        "publishedDate": "2020-05-14T00:00:48.62",
        "version": 1
      }
    ]
  }
]