Skip to main content
POST
/
verifications
Create a verification
curl --request POST \
  --url https://api.staging-2tid4c.ezyshield.com.au/verification/v1/verifications \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "account": {
    "bsb": "<string>",
    "number": "<string>",
    "name": "<string>"
  },
  "individual": {
    "name": "<string>",
    "verification_mode": "kyc",
    "mobile": "<string>",
    "confirmation_notification_method": [
      "sms"
    ],
    "portrait_image": "data:image/jpeg;base64,/9j/..."
  },
  "attribution_id": "<string>",
  "business": {
    "name": "<string>",
    "abn": "<string>"
  }
}
'
{
  "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>"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
account
object
required

Bank account details.

individual
object
required

Individual details.

attribution_id
string | null

Attribution identifier for grouping related verifications.

Maximum string length: 255
business
object

Business owning the bank account.

Response

VerificationResource

data
VerificationResource · object
required