Skip to main content
GET
/
api
/
sys
/
legalcontentaudits
/
{id}
Get one LegalContentAudit
curl --request GET \
  --url https://spaces.nexudus.com/api/sys/legalcontentaudits/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "BusinessId": 123,
  "BusinessName": "<string>",
  "Name": "<string>",
  "Content": "<string>",
  "Author": "<string>",
  "TariffUniqueId": "<string>",
  "LegalContentType": 123,
  "Id": 123,
  "UniqueId": "<string>",
  "CreatedOn": "<string>",
  "UpdatedOn": "<string>",
  "UpdatedBy": "<string>",
  "IsNew": true,
  "SystemId": "<string>"
}
A LegalContentAudit records when a customer has accepted or acknowledged legal content such as terms and conditions, privacy policies, or cookie policies.

Authentication

This endpoint requires OAuth2 authentication. Include a valid bearer token in the Authorization header. The authenticated user must be a full unrestricted administrator or have the LegalContentAudit-Read role.

Path Parameters

id
integer
required
The Id of the LegalContentAudit record to retrieve.

Code Examples

curl -X GET \
  "https://spaces.nexudus.com/api/sys/legalcontentaudits/87654321" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response

200

BusinessId
integer
ID of the business linked to this record.
BusinessName
string
Display name of the linked business (read-only).
Name
string
Display name of the linked (read-only).
Content
string
The content value for this legal content audit.
Author
string
The author value for this legal content audit.
TariffUniqueId
string
ID of the tariff unique associated with this record.
The legal content type value for this legal content audit. See eLegalContentType enum values: 1 = GeneralTerms, 2 = VisitorTerms, 3 = CheckoutTerms, 4 = PrivacyPolicy, 5 = CookiesPolicy, 6 = TariffTerms.
Id
integer
Unique record identifier.
UniqueId
string
UUID of the record.
CreatedOn
string
Date and time the record was created (ISO 8601).
UpdatedOn
string
Date and time the record was last updated (ISO 8601).
UpdatedBy
string
Email of the user who last updated this record.
IsNew
boolean
Whether the record was recently created.
SystemId
string
External system identifier.
Example Response
{
  "BusinessId": 0,
  "BusinessName": null,
  "Name": "",
  "Content": null,
  "Author": "",
  "TariffUniqueId": null,
  "LegalContentType": 0,
  "Id": 87654321,
  "UpdatedOn": "2025-01-15T10:30:00Z",
  "CreatedOn": "2025-01-10T08:00:00Z",
  "UniqueId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "UpdatedBy": "admin@example.com",
  "IsNew": false,
  "SystemId": null,
  "ToStringText": "LegalContentAudit Example",
  "LocalizationDetails": null,
  "CustomFields": null
}