Find a transaction based on its ID.
POSThttps://api.elvanto.com/v1/financial/transactions/getInfo.{json|xml|php}
Name | Type | Description |
---|---|---|
id Required | string | The ID of the Financial Transaction. |
{
"id": "dc3c1b5c-24ad-4226-9d29-da458c19700b"
}
id=dc3c1b5c-24ad-4226-9d29-da458c19700b
{
"generated_in": "0.018",
"status": "ok",
"transaction": {
"id": "3b6339b6-d893-49a1-a2ef-ef4304b7044c",
"person_id": "aee5f2d5-0333-11e5-bd65-06e37142e2e1",
"person_first_name": "Evelyn",
"person_last_name": "Cantu",
"person_email": "evelyn@cantu-email.com",
"transaction_date": "2024-07-25",
"transaction_datetime": "2024-07-25T20:44:00+00:00",
"transaction_method": "Cash",
"check_number": "",
"batch": {
"id": "6df121c3-49c9-4754-8754-c395360242fd",
"number": "15",
"name": "Sunday Batch: 2023-01-01"
},
"transaction_total": "360.00",
"amounts": {
"amount": [
{
"id": "6a4c9d48-6e0f-4a76-993b-b369a9895c9b",
"category": {
"id": "b07130e3-0c26-4455-a1b0-b0ca8af5bac3",
"name": "Missions / Thailand Orphanage"
},
"total": "360.00",
"tax_deductible": 0,
"memo": "",
"external_notes": ""
}
]
},
"created_by_id": "",
"created_by_first_name": null,
"created_by_last_name": null,
"created_at": "2024-07-25T20:44:00+00:00",
"updated_by_id": "",
"updated_by_first_name": null,
"updated_by_last_name": null,
"updated_at": "2024-07-26T01:30:25+00:00"
}
}
<?xml version="1.0" encoding="UTF-8"?> <rsp generated_in="0.018" status="ok"> <transaction code="404"> <transaction id="637d1690-7630-4516-aa23-aab5e2c085f2" person_id="f01f8cff-f7b6-4474-94c5-30d7b161a2d1" transaction_total="1"> <person_first_name>Evelyn</person_first_name> <person_last_name>Smith</person_last_name> <person_email>evelyn@smith-email.com</person_email> <transaction_date>2024-07-25</transaction_date> <transaction_datetime>2024-07-25T20:44:00+00:00</transaction_datetime> <transaction_method>Check</transaction_method> <check_number>12345678</check_number> <batch id="2b065952-07a9-4a48-8777-c66d23be020f" number="152"> <name>Sunday 25th August</name> </batch> <transaction_total>125</transaction_total> <amounts> <amount id="cc9d5644-5dcc-4865-8d3a-604de40a9c64" total="100" tax_deductible="1"> <category id="f01f8cff-f7b6-4474-94c5-30d7b161a2d1"> <name>Category Name</name> </category> <memo>Optional memo goes here.</memo> <external_notes>Optional External Notes go here.</external_notes> </amount> <amount id="a9bb23ce-b37c-4edf-8271-2913050faba9" total="25" tax_deductible="0"> <category id="a491a41a-ad34-4845-b783-392cf0a409e7"> <name>Category Name</name> </category> <memo>Optional memo goes here.</memo> <external_notes>Optional External Notes go here.</external_notes> </amount> </amounts> <created_by_id></created_by_id> <created_by_first_name></created_by_first_name> <created_by_last_name></created_by_last_name> <created_at>2024-07-25T20:44:00+00:00</created_at> <updated_by_id></updated_by_id> <updated_by_first_name></updated_by_first_name> <updated_by_last_name></updated_by_last_name> <updated_at>2024-07-26T01:30:25+00:00</updated_at> </transaction> </transaction> </rsp>
stdClass Object
(
[generated_in] => 0.018
[status] => ok
[transaction] => stdClass Object
(
[id] => 3b6339b6-d893-49a1-a2ef-ef4304b7044c
[person_id] => aee5f2d5-0333-11e5-bd65-06e37142e2e1
[person_first_name] => Evelyn
[person_last_name] => Cantu
[person_email] => evelyn@cantu-email.com
[transaction_date] => 2024-07-25
[transaction_datetime] => 2024-07-25T20:44:00+00:00
[transaction_method] => Cash
[check_number] =>
[batch] => stdClass Object
(
[id] => 6df121c3-49c9-4754-8754-c395360242fd
[number] => 15
[name] => Sunday Batch: 2023-01-01
)
[transaction_total] => 360.00
[amounts] => stdClass Object
(
[amount] => stdClass Object
(
[0] => stdClass Object
(
[id] => 6a4c9d48-6e0f-4a76-993b-b369a9895c9b
[category] => stdClass Object
(
[id] => b07130e3-0c26-4455-a1b0-b0ca8af5bac3
[name] => Missions / Thailand Orphanage
)
[total] => 360.00
[tax_deductible] => 0
[memo] =>
[external_notes] =>
)
)
)
[created_by_id] =>
[created_by_first_name] =>
[created_by_last_name] =>
[created_at] => 2024-07-25T20:44:00+00:00
[updated_by_id] =>
[updated_by_first_name] =>
[updated_by_last_name] =>
[updated_at] => 2024-07-26T01:30:25+00:00
)
)
Please see our response status codes documentation for details of potential error responses for any API request.