Retrieve Batch Transaction

Retrieve is a request that gets details about a submitted batch transaction, such as the callback URL, and the details of each transaction within the batch.

📘

Note

The retrieve batch call will not have an up-to-date status of each ACH transaction (approved or declined by the bank). For this information, you use IPNs or do a retrieve on a per-transaction basis.

Try it in the API Explorer

Request Content

Enter the batchId into the web service URL, in the format:
services/2/batch-transactions/{batchId}

For example:
services/2/batch-transactions/567890

Response Details

If successful, the response HTTP status code is 200 OK.
The response contains the retrieved batchTransaction resource (see batchTransaction) with the request properties plus these additions:
     transactionCount: number of transactions within the batch
     transactionId: ID for each transaction in the batch
     processingInfo: processing status for the entire batch and for each transaction in the batch


Examples

Request Example

curl -v -X GET https://sandbox.bluesnap.com/services/2/batch-transactions/567892 \
-H 'Content-Type: application/json' \
-H 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ='

Response Example

HTTP/ 1.1 200 OK

{
   "batch-transaction": {
      "batch-id": "567892",
      "callback-url": "http://example.com/batch_callback",
      "transaction-count": "3",
      "card-transaction": {
         "card-transaction-type": "AUTH_CAPTURE",
         "merchant-transaction-id": "566",
         "transaction-id": "1029337513",
         "recurring-transaction": "ECOMMERCE",
         "soft-descriptor": "DescTest txn1",
         "amount": "11",
         "currency": "USD",
         "card-holder-info": {
            "first-name": "test first name",
            "last-name": "test last name"
         },
         "credit-card": {
            "card-last-four-digits": "1881",
            "card-type": "VISA",
            "expiration-month": "7",
            "expiration-year": "2023"
         },
         "transaction-meta-data": "",
         "processing-info": {
            "processing-status": "SUCCESS",
            "authorization-code": "654321"
         }
      },
      "alt-transaction": [
         {
            "transaction-id": "1029337515",
            "soft-descriptor": "ABC COMPANY",
            "amount": "100",
            "currency": "USD",
            "payer-info": {
               "first-name": "John",
               "last-name": "Doe",
               "zip": "12345",
               "phone": "1234567890"
            },
            "vaulted-shopper-id": "26818793",
            "ecp-transaction": {
               "account-number": "4099999992",
               "routing-number": "011075150",
               "account-type": "CONSUMER_CHECKING",
               "public-account-number": "99992",
               "public-routing-number": "75150"
            },
            "processing-info": {
               "processing-status": "PENDING"
            }
         },
         {
            "transaction-id": "1029337517",
            "soft-descriptor": "SepaPapi",
            "amount": "20",
            "currency": "EUR",
            "payer-info": {
               "first-name": "John",
               "last-name": "Doe",
               "country": "it",
               "state": "ca",
               "address": "blue lane 21",
               "city": "london",
               "zip": "45353434",
               "phone": "23123133213"
            },
            "vaulted-shopper-id": "26818795",
            "sepa-direct-debit-transaction": {
               "bic": "PBNKDEFFXXX",
               "iban-first-four": "DE09",
               "iban-last-four": "7891",
               "mandate-id": "Mys229845",
               "mandate-date": "09-Mar-20",
               "pre-notification-text": "The amount of 20.00 EUR will be collected using SEPA Direct Debit with Mandate Mys229845 from your bank account IBAN DE09XXXXXX7891 in the next few days. Please ensure sufficient funds in your account."
            },
            "processing-info": {
               "processing-status": "PENDING"
            }
         }
      ],
      "processing-info": {
         "processing-status": "COMPLETED"
      },
      "_xmlns": "http://ws.plimus.com"
   }
}

Example Description

Above is an example request. Note that no JSON content is required in the request body. All relevant info is included in the request URL. You simply need to include the batch ID in the request URL. The batch ID is the unique ID sent in the the batchId property in the Create Batch Transaction request.


Back to Top

API Explorer (for request based on Transaction ID)

To test out a call, enter an existing batch ID (e.g 567890) in the batchId field. This will automatically insert the ID into the request URL. Leave the Body Content field empty.

Language
Authorization
:
Click Try It! to start a request and see the response here!