VB6 / Bond APIs / migrate external account
Back to Collection Items
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As New ChilkatHttp
Dim success As Long
' Use this online tool to generate code from sample JSON: Generate Code to Create JSON
' The following JSON is sent in the request body.
' {
' "account_number": "",
' "routing_number": "",
' "account_type": "",
' "bank_name": ""
' }
Dim json As New ChilkatJsonObject
success = json.UpdateString("account_number","")
success = json.UpdateString("routing_number","")
success = json.UpdateString("account_type","")
success = json.UpdateString("bank_name","")
http.SetRequestHeader "Identity","{{identity}}"
http.SetRequestHeader "Authorization","{{authorization}}"
Dim resp As ChilkatHttpResponse
Set resp = http.PostJson3("https://{{environment}}.bond.tech/api/v0/accounts/:account_id/migrate_account/plaid","application/json",json)
If (http.LastMethodSuccess = 0) Then
Debug.Print http.LastErrorText
Exit Sub
End If
Debug.Print resp.StatusCode
Debug.Print resp.BodyStr
Curl Command
curl -X POST
-H "Identity: {{identity}}"
-H "Authorization: {{authorization}}"
-d '{
"account_number": "",
"routing_number": "",
"account_type": "",
"bank_name": ""
}'
https://{{environment}}.bond.tech/api/v0/accounts/:account_id/migrate_account/plaid
Postman Collection Item JSON
{
"name": "migrate external account",
"request": {
"method": "POST",
"header": [
{
"key": "Identity",
"value": "{{identity}}",
"type": "text"
},
{
"key": "Authorization",
"value": "{{authorization}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"account_number\": \"\",\n \"routing_number\": \"\",\n \"account_type\": \"\",\n \"bank_name\": \"\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "https://{{environment}}.bond.tech/api/v0/accounts/:account_id/migrate_account/plaid",
"protocol": "https",
"host": [
"{{environment}}",
"bond",
"tech"
],
"path": [
"api",
"v0",
"accounts",
":account_id",
"migrate_account",
"plaid"
],
"variable": [
{
"key": "account_id",
"value": ""
}
]
}
},
"response": [
{
"name": "example",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Identity",
"value": "{{identity}}",
"type": "text"
},
{
"key": "Authorization",
"value": "{{authorization}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"account_number\": \"1234567890\",\n \"routing_number\": \"102101645\",\n \"account_type\": \"checking\",\n \"bank_name\": \"Bank of America\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "https://sandbox.bond.tech/api/v0/accounts/account_id/external_accounts/plaid",
"protocol": "https",
"host": [
"sandbox",
"bond",
"tech"
],
"path": [
"api",
"v0",
"accounts",
"account_id",
"external_accounts",
"plaid"
]
}
},
"_postman_previewlanguage": "json",
"header": null,
"cookie": [
],
"body": "{\n \"linked_account_id\": \"1a130d45-3dc3-4c58-b0d8-9784aae0d009\",\n \"access_token\": \"access-sandbox-035d67aa-5d6b-4014-98af-e09b7335ea31\",\n \"status\": \"active\",\n \"account_type\": \"checking\",\n \"account_category\": \"depository\"\n}"
}
]
}