Step 4 - Retrieve Transaction History Details

Overview

After successfully completing a Transaction History Job, you can now retrieve a list of the most recent transactions that have been associated from a bank account.

Retrieve Identity Details

HTTP Request

Sandbox - GET https://api.sandbox.aerosync.com/v2/accounts/{{connectionId}}/transactions?job_id={{job_id}}

Production - GET https://api.aerosync.com/v2/accounts/{{connectionId}}/transactions?job_id={{job_id}}

Request Parameters

ParameterRequired?TypeDescription
connectionIdYesStringAerosync-specific connectionId received from the SDK onSuccess

Request and Response

GET https://api.sandbox.aerosync.com/v2/accounts/fdd3007a951b436c81e46ffe2483ea3a/transactions?job_id=owd3007a951bjedc81e46ffe2483ej2n
Authorization: Bearer {{token}}

{
    "status": "success",
    "statusCode": 200,
    "transactions": [
        {
            "id": "TRN-2fd333a1-89d3-47eb-9e2a-75498dc796c7",
            "type": "CREDIT",
            "date": "2025-01-30T12:00:00Z",
            "amount": 39.76,
            "currency": "USD",
            "description": "Dennis Restaurant",
            "category": "Food and Dining",
          	"subcategory": "Fast Food"
		}
	]
}