Skip to main content
GET
/
verifications
List all verifications
curl --request GET \
  --url https://api.staging-2tid4c.ezyshield.com.au/verification/v1/verifications \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "type": "verifications",
      "attributes": {
        "status": "created",
        "attribution_id": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z",
        "confirmation_url": "<string>"
      }
    }
  ],
  "links": {
    "first": "<string>",
    "last": "<string>",
    "prev": "<string>",
    "next": "<string>"
  },
  "meta": {
    "current_page": 2,
    "from": 2,
    "last_page": 2,
    "links": [
      {
        "url": "<string>",
        "label": "<string>",
        "active": true
      }
    ],
    "path": "<string>",
    "per_page": 1,
    "to": 2,
    "total": 1
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page[size]
integer
default:10

The number of results that will be returned per page.

page[number]
integer

The page number to start the pagination from.

filter[status]
enum<string>

The current status of the verification.

Available options:
created,
pending,
verified,
rejected,
failed,
cancelled,
expired,
error
filter[attribution_id]
string

The attribution ID.

Response

Paginated set of VerificationResource

data
VerificationResource · object[]
required
meta
object
required