RocketKOR

Retrieve a Transaction Batch

Retrieve details for a transaction batch file. Details for the individual transactions in the batch are not returned.

Endpoint

GET /v1/transaction-batches/{batchId}

Authorization Header

Authorization: Bearer <access_token>

Path Parameters

batchId

string (UUID)

Unique ID for the transaction batch in the RocketKOR system.

Request Body

None

Returns

Returns details for the transaction batch file. For details, see the Transaction Batch Quick Info object.

SAMPLE RESPONSE

				
					{
  "id": "65078464-2dd1-496a-8a07-7dfd9e36b0a0",
  "businessAccountId": "77051b4b-4c5f-4f65-af6d-87a8b61f73a6",
  "metadata": {
    "myPaymentId": "100000333",
    "invoiceNumber": "123232333",
    "authorizedBy": "user@email.com"
  },
  "transactionType": "SEND",
  "solution": "push-to-card",
  "description": "This is a batch",
  "currency": "USD",
  "transactionCount": 5000,
  "totalAmount": 52450.26,
  "status": "PENDING",
  "createdAt": "2023-02-06T01:02:45.943Z",
  "createdBy": {
    "id": "4bd3aff1-cf97-4480-96f4-cfe3656500a3",
    "type": "EMPLOYEE"
  }
}