financial/transactions/getInfo

Find a transaction based on its ID.

POST
https://api.elvanto.com/v1/financial/transactions/getInfo.{json|xml|php}

Parameters

Name Type Description
id Required string The ID of the Financial Transaction.
Expected request JSON HTTP POST
{
    "id": "dc3c1b5c-24ad-4226-9d29-da458c19700b"
}
Expected response JSON XML PHP
{
    "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"
    }
}
Error responses

Please see our response status codes documentation for details of potential error responses for any API request.

  • 400: No Transaction ID provided. No Transaction ID was sent along side the request body.
  • 404: No Transaction found. A transaction was not found.