curl --request GET \
--url https://test.onlinecheckwriter.com/api/v3/checks \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"meta": {
"total": 21325,
"currentPage": 1,
"perPage": 10
},
"checks": [
{
"checkId": "kWx8eP3l60GK2Xz",
"serialNumber": "2",
"amount": 12,
"amountInWord": "twelve",
"date": "2024-11-18",
"status": 0,
"memo": null,
"accountNumber": null,
"invoiceNumber": null,
"referenceId": null,
"bankAccount": {
"bankAccountId": "6gYVewBOP7Gdx7b",
"name": "test"
},
"payee": {
"payeeId": "1ZoVelyDaQj8pwb",
"name": "test new"
},
"checkStatus": {
"status": 0,
"description": "New"
},
"checkStatements": [
{
"status": "created",
"date": "2024-11-18",
"time": "04:15 pm"
}
]
},
{
"checkId": "zRNXG0J7PljLxyB",
"serialNumber": "345354353855",
"amount": 12,
"amountInWord": "twelve",
"date": "2024-11-16",
"status": 0,
"memo": null,
"accountNumber": null,
"invoiceNumber": null,
"referenceId": null,
"bankAccount": {
"bankAccountId": "xZqXGK2y0b4RzVv",
"name": "werwer"
},
"payee": {
"payeeId": "pzo54xE7BaGaXmL",
"name": "Test Name 2"
},
"checkStatus": {
"status": 0,
"description": "New"
},
"checkStatements": [
{
"status": "created",
"date": "2024-11-16",
"time": "11:19 am"
}
]
}
]
}
}List all check records with optional filters like status, term, and reference ID.
curl --request GET \
--url https://test.onlinecheckwriter.com/api/v3/checks \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"meta": {
"total": 21325,
"currentPage": 1,
"perPage": 10
},
"checks": [
{
"checkId": "kWx8eP3l60GK2Xz",
"serialNumber": "2",
"amount": 12,
"amountInWord": "twelve",
"date": "2024-11-18",
"status": 0,
"memo": null,
"accountNumber": null,
"invoiceNumber": null,
"referenceId": null,
"bankAccount": {
"bankAccountId": "6gYVewBOP7Gdx7b",
"name": "test"
},
"payee": {
"payeeId": "1ZoVelyDaQj8pwb",
"name": "test new"
},
"checkStatus": {
"status": 0,
"description": "New"
},
"checkStatements": [
{
"status": "created",
"date": "2024-11-18",
"time": "04:15 pm"
}
]
},
{
"checkId": "zRNXG0J7PljLxyB",
"serialNumber": "345354353855",
"amount": 12,
"amountInWord": "twelve",
"date": "2024-11-16",
"status": 0,
"memo": null,
"accountNumber": null,
"invoiceNumber": null,
"referenceId": null,
"bankAccount": {
"bankAccountId": "xZqXGK2y0b4RzVv",
"name": "werwer"
},
"payee": {
"payeeId": "pzo54xE7BaGaXmL",
"name": "Test Name 2"
},
"checkStatus": {
"status": 0,
"description": "New"
},
"checkStatements": [
{
"status": "created",
"date": "2024-11-16",
"time": "11:19 am"
}
]
}
]
}
}