v1

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

Get List of Privacy Notice Versions

Use this API to retrieve a list of versions for a specific privacy notice.

get/v2/privacynotices/{privacyNoticeId}/versions

Path parameters

privacyNoticeIdstring uuid required

ID of the privacy notice. The value can be obtained using Get List of Privacy Notices API.

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 Notice Version

namestring

Name of the Notice Version

status'ACTIVE' | 'DRAFT' | 'RETIRED' | 'INACTIVE'
versioninteger

Version number of the Notice Version

publishedDatestring date-time

Published Date of Notice Version

publishedBystring uuid

Publisher of the Notice Version

Example response

[
  {
    "id": "625ba071-61b0-485f-81a0-a2245777b432",
    "name": "General Privacy Act",
    "status": "ACTIVE",
    "version": 1,
    "publishedDate": "2020-05-14T00:00:48.62",
    "publishedBy": "625ba071-61b0-485f-81a0-a2245777b435",
    "languages": [
      {
        "guid": "625ba071-61b0-485f-81a0-a2245777b432",
        "languageCode": "en-us",
        "defaultLanguage": true
      }
    ]
  }
]