Architel Alpha
  1. Document Verification
Architel Alpha
  • 🐶 Walk through Apidog
  • Sample APIs
    • Find pet by ID
      GET
    • Add a new pet to the store
      POST
    • Update an existing pet
      PUT
    • Deletes a pet
      DELETE
    • Finds Pets by status
      GET
  • Document Verification
    • Verify Centrelink
      POST
  1. Document Verification

Verify Centrelink

Developing
POST
/document/centrelink

Request

Body Params application/json
birth_date
required
Any of
year
integer  | null 
required
>= 1753<= 2024
month
integer 
required
>= 1<= 12
day
integer 
required
>= 1<= 31
Example
{
    "birth_date": {
        "year": 0,
        "day": 28
    }
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/document/centrelink' \
--header 'Content-Type: application/json' \
--data-raw '{
    "birth_date": {
        "year": 0,
        "day": 28
    }
}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{}
Modified at 2024-12-26 06:40:05
Previous
Finds Pets by status
Built with