Pagination
List operations paginate their responses with 100 items per page.
To access a specific page of data use the page
query parameter as follows:
curl \
--request GET \
--url https://sandbox-api.withabound.com/<<apiVersion_v4>>/tin-verifications?page=3 \
--header 'Authorization: Bearer <<apiKey>>' \
--header 'Content-Type: application/json'
[
{
"id": "tinVerificationId_sample41SD71AV8f",
"createdAt": "2023-01-01T00:00:00.000Z",
"status": "MATCH",
"name": "Ada Lovelace",
"tin": "*******00",
"tinType": "INDIVIDUAL",
"tinFingerprint": "tinFingerprint_samplehy2BWO6JJG"
},
{
"id": "tinVerificationId_sampleRE82BW9e52",
"createdAt": "2023-01-01T00:00:00.000Z",
"status": "MATCH",
"name": "Hooli",
"tin": "*******11",
"tinType": "BUSINESS",
"tinFingerprint": "tinFingerprint_sample8Kj3d8UiY8"
},
//...98 more items
]
You will know you've hit the last page with a list operations returns less than 100 records.
Updated about 1 month ago