Android / Broker API / Bank Relationship
Back to Collection Items
// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;
import android.app.Activity;
import com.chilkatsoft.*;
import android.widget.TextView;
import android.os.Bundle;
public class SimpleActivity extends Activity {
private static final String TAG = "Chilkat";
// Called when the activity is first created.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http = new CkHttp();
boolean success;
http.put_BasicAuth(true);
http.put_Login("{{api_key}}");
http.put_Password("{{api_secret}}");
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "name": "Test Bank XYZ",
// "bank_code_type": "ABA",
// "bank_code": "123456789",
// "account_number": "123456789abc"
// }
CkJsonObject json = new CkJsonObject();
json.UpdateString("name","Test Bank XYZ");
json.UpdateString("bank_code_type","ABA");
json.UpdateString("bank_code","123456789");
json.UpdateString("account_number","123456789abc");
CkHttpResponse resp = http.PostJson3("https://domain.com/v1/accounts/:account_id/recipient_banks","application/json",json);
if (http.get_LastMethodSuccess() == false) {
Log.i(TAG, http.lastErrorText());
return;
}
Log.i(TAG, String.valueOf(resp.get_StatusCode()));
Log.i(TAG, resp.bodyStr());
}
static {
System.loadLibrary("chilkat");
// Note: If the incorrect library name is passed to System.loadLibrary,
// then you will see the following error message at application startup:
//"The application <your-application-name> has stopped unexpectedly. Please try again."
}
}
Curl Command
curl -X POST
-u '{{api_key}}:{{api_secret}}'
-d '{
"name": "Test Bank XYZ",
"bank_code_type": "ABA",
"bank_code": "123456789",
"account_number": "123456789abc"
}'
https://domain.com/v1/accounts/:account_id/recipient_banks
Postman Collection Item JSON
{
"name": "Bank Relationship",
"request": {
"method": "POST",
"header": [
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"Test Bank XYZ\",\n \"bank_code_type\": \"ABA\",\n \"bank_code\": \"123456789\",\n \"account_number\": \"123456789abc\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HOST}}/v1/accounts/:account_id/recipient_banks",
"host": [
"{{HOST}}"
],
"path": [
"v1",
"accounts",
":account_id",
"recipient_banks"
],
"variable": [
{
"key": "account_id",
"value": null
}
]
},
"description": "| Parameter | Type | Requirement | Notes |\n| -----------------|---------------------|-------------|:-----------------:|\n| `name` | string | Required | Name of recipient bank |\n| `bank_code_type` | enum.IdentifierType | Required | `ABA`(Domestic) or `BIC`(International) |\n| `bank_code` | string | Required | 9-Digit ABA RTN (Routing Number or BIC |\n| `country` | string | Required | Only for international banks |\n| `state_province` | string | Required | Only for international banks |\n| `postal_code` | string | Required | Only for international banks |\n| `city` | string | Required | Only for international banks |\n| street_address | string | Required | Only for international banks |\n| account_number | string | Required | |"
},
"response": [
]
}