Transactions
Searches transaction allocations.
post/transactions/allocations/search
Request body
Example request
{
"filter": {
"invoice_id": {
"any": [
"inv_abc123"
]
}
}
}Response
Success
Example response
{
"data": [
{
"invoice_id": "inv_abc123",
"amount": "1000",
"type": "invoice_payin",
"user": {
"id": "user_abc123",
"external_id": "user_ext_001"
},
"id": "alloc_abc123",
"posted": "2024-01-13T00:00:00Z",
"transaction": {
"id": "txn_dHhuX2ZyYWdfMDAx",
"external_id": "bank_txn_123"
}
}
]
}