Search Allocations
POST/transactions/allocations/search
Searches transaction allocations by filter criteria
Body ParametersJSON
Returns
Search Allocations
curl https://api.us-west-2.fragment.dev/transactions/allocations/search \
-H 'Content-Type: application/json' \
-d '{
"filter": {
"invoice_id": {
"any": [
"inv_abc123"
]
}
}
}'{
"data": [
{
"id": "alloc_abc123",
"amount": "1000",
"invoice_id": "inv_abc123",
"posted": "2026-02-12T00:00:00.000Z",
"transaction": {
"id": "txn_dHhuX2ZyYWdfMDAx",
"external_id": "bank_txn_123"
},
"type": "invoice_payin",
"user": {
"id": "user_abc123",
"external_id": "user-ext-001"
}
}
]
}Returns Examples
{
"data": [
{
"id": "alloc_abc123",
"amount": "1000",
"invoice_id": "inv_abc123",
"posted": "2026-02-12T00:00:00.000Z",
"transaction": {
"id": "txn_dHhuX2ZyYWdfMDAx",
"external_id": "bank_txn_123"
},
"type": "invoice_payin",
"user": {
"id": "user_abc123",
"external_id": "user-ext-001"
}
}
]
}