Getting started
Core resources
Other

Release notes

Page last updated: 05/08/2026

August 2026

Verify with SEEK Pass

  • Decrease bulk status ID limit: Due to maximum query size restrictions, the bulk status endpoint now accepts a maximum of 30 request IDs per query (previously 50) to reduce the likelihood of hitting this query size limit during normal operation. Depending on the length of your IDs, you may still encounter a 403 Forbidden response using 30 or less IDs if the entire query string is over 2048 bytes - if this happens, please reduce the number of request IDs and try again.
  • New status values: The verification status endpoint will be updated with additional statuses. revoked when the credential is no longer available and unshared when the user has either disabled sharing or has yet to provide consent to share new data.There is a transition period where the API will continue to return `canceled` status for revoked and unshared requests. The new statuses will be used on or after 4th September 2026.
  • New webhook events: Webhooks will be sent when request is revoked, unshared, or shared with updated data.

June 2026

Add to SEEK Pass

  • New revocation endpoint: partners can revoke in-progress and verified requests. Requires the revoke.credential OAuth scope. See documentation.

May 2026

Add to SEEK Pass

  • New credential type added: Universal credential
  • Redirect URI added to status endpoints. See documentation.
  • [Breaking] - Attempting to create a new request using an existing ID while that request is not finalised will no longer be accepted. API consumers should fetch the status of existing requests before attempting to call these endpoints and re-use the existing request's redirect URI if required.There is a transition period where the API will operate in a backwards-compatible mode to enable consumers to update, which will be disabled on or after 12th July 2026.

April 2026

Add to SEEK Pass

Verify with SEEK Pass

  • Webhook event payload updated: WebhooksOld format:
    {
      "event_id": "5c4ac58b-5cf9-40a0-b60a-28c0137663ed",
      "request_id": "7cbc7e51-82f5-43ec-8d63-b7cdf1170425",
      "type": "verification",
      "status": "verification_completed",
      "created_at": "2025-04-15T02:14:01.307391Z"
    }
    New format:
    {
      "event_id": "5c4ac58b-5cf9-40a0-b60a-28c0137663ed",
      "request_id": "7cbc7e51-82f5-43ec-8d63-b7cdf1170425",
      "type": "vwsp_request.verified",
      "created_at": "2025-04-15T02:14:01.307391Z"
    }