VerityVerity
API Reference

List unreviewed policy changes

Returns policy changes from the last 30 days that have not been acknowledged by the authenticated organization. Supports cursor-based pagination.

Requires Professional plan or higher.

GET
/compliance/unreviewed

Authorization

bearerAuth
AuthorizationBearer <token>

API keys are prefixed with vrt_live_ for production or vrt_test_ for testing. Example: vrt_live_abc123xyz

In: header

Query Parameters

change_type?string

Filter by change type (e.g., codes_changed, criteria_changed)

cursor?string

Pagination cursor from previous response

limit?integer
Default50
Range1 <= value <= 100

Response Body

application/json

application/json

curl -X GET "https://verity.backworkai.com/api/v1/compliance/unreviewed"
{
  "success": true,
  "data": [
    {
      "diff_id": 0,
      "policy_id": "string",
      "policy_title": "string",
      "policy_type": "string",
      "payer_name": "string",
      "change_type": "string",
      "change_summary": "string",
      "changed_at": "2019-08-24T14:15:22Z"
    }
  ],
  "meta": {
    "pagination": {
      "cursor": "string",
      "has_more": true,
      "limit": 0
    }
  }
}
{
  "success": false,
  "error": {
    "code": "VALIDATION_ERROR",
    "message": "Invalid query parameters",
    "hint": "Check the 'code' parameter format",
    "details": {}
  },
  "meta": {
    "request_id": "req_abc123"
  }
}

Last updated on