Get Drawdown Balance Information
Introduction
The 'drawDownAccountBalance API facilitates pulling the current balance of a of a Financial Account.
| Method | API Service | Endpoint | Type |
|---|---|---|---|
| GET | rewardsOrderProcessing | drawDownAccountBalance→ Explore | Synchronous |
URI: `https://api.certification.blackhawknetwork.com/rewardsOrderProcessing/v1/drawDownAccountBalance
Retrieving Drawdown Account Balance
Request Header
To send the request for shipping information we need to send the following information in the request header:
| Parameter | Description | Type | Required | Default Value |
|---|---|---|---|---|
| merchantId | The Merchant ID (MID) is a string identifier, provided to you by your account manager that varies based on the product type. | String | Yes | None |
| requestId | A unique identifier for each order provided by you (the caller). The requestId value must be unique for each request and can have a maximum of 50 characters. | String | Yes | None |
In our example we will be sending the following values:
Content-Type: application/json
merchantId: 20200009887
requestId: 2019-11-05T13:47:01-0600The method to retrieve the Drawdown Account Balance is by financial_account_ID
Retrieving Drawdown Balance by Financial Account ID
To retrieve the order information by the financial account ID we need to send the following query parameters:
| Parameter | Description | Type | Required |
|---|---|---|---|
| requestId | The requestId returned from the order API call. | String | Yes |
| financial_account_ID | The Financial Account ID of the drawdown account for the client suborg | String | Yes |
Responses
Success Response
If the order is found an HTTP status code of 200 will be returned with a JSON object containing the following information:
| Parameter | Description | Type | Required | Allowed Values |
|---|---|---|---|---|
| financial_account_id | The FAID passed in the request | String | No | |
| balance | Current Balance of the FAID passed in the request | String | No | |
| balance as of | Date and time stamp of the balance inquiry request | String | No | |
| currency | The currency of the FAID passed in the request (ex. USD, CAD, EUR, GBP, AUD | String | No |
{
"current": "https://api.certification.blackhawknetwork.com/rewardsOrderProcessing/v1/drawDownAccountBalance",
"totalCount": 1,
"currentResults": [ {
"financial_account_id": 53890,
"balance": 154902.31,
"balance_as_of": "2026-04-22T14:54:40.497-04:00",
"currency": "USD"
}]
}Error Response
If the financial_account_ID is not found for the request passed then an HTTP status code of 400 will be returned.
Updated 9 days ago
