VB6 / Bond APIs / simulate settlement
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.
' {
' "transaction_id": "",
' "amount": "4.99"
' }
Dim json As New ChilkatJsonObject
success = json.UpdateString("transaction_id","")
success = json.UpdateString("amount","4.99")
http.SetRequestHeader "Content-Type","application/json"
http.SetRequestHeader "Authorization","{{authorization}}"
http.SetRequestHeader "Identity","{{identity}}"
Dim resp As ChilkatHttpResponse
Set resp = http.PostJson3("https://{{environment}}.bond.tech/api/v0/simulate/settlement","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 "Content-Type: application/json"
-H "Authorization: {{authorization}}"
-H "Identity: {{identity}}"
-d '{
"transaction_id": "",
"amount": "4.99"
}'
https://{{environment}}.bond.tech/api/v0/simulate/settlement
Postman Collection Item JSON
{
"name": "simulate settlement",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var jsonData = pm.response.json();",
"pm.collectionVariables.set(\"transaction_id\", jsonData.transaction_id)"
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"type": "text",
"value": "application/json"
},
{
"key": "Authorization",
"type": "text",
"value": "{{authorization}}"
},
{
"key": "Identity",
"type": "text",
"value": "{{identity}}"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"transaction_id\": \"\",\n \"amount\": \"4.99\"\n}"
},
"url": {
"raw": "https://{{environment}}.bond.tech/api/v0/simulate/settlement",
"protocol": "https",
"host": [
"{{environment}}",
"bond",
"tech"
],
"path": [
"api",
"v0",
"simulate",
"settlement"
]
},
"description": "Add Card financial Core"
},
"response": [
{
"name": "simulate settlement",
"originalRequest": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
},
{
"key": "Authorization",
"type": "text",
"value": "{{authorization}}"
},
{
"key": "Identity",
"type": "text",
"value": "{{identity}}"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"transaction_id\": \"\",\n \"amount\": \"4.99\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "https://sandbox.prod2.prod.bond.tech/api/v0/simulate",
"protocol": "https",
"host": [
"sandbox",
"prod2",
"prod",
"bond",
"tech"
],
"path": [
"api",
"v0",
"simulate"
]
}
},
"_postman_previewlanguage": "json",
"header": null,
"cookie": [
],
"body": "{\n \"rewards\": null,\n \"transaction_type\": \"POS Purchase\",\n \"transaction_time\": \"2021-08-03 16:45:55\",\n \"customer_id\": \"b06d5406-7b65-4921-8806-bad23dd88bad\",\n \"merchant_state\": \"WA\",\n \"bond_brand_id\": \"00000000-0000-0000-0000-000000000000\",\n \"payment_rail\": \"card\",\n \"transaction_id\": \"6600347602\",\n \"origin_timestamp\": \"2021-08-03 16:45:55\",\n \"merchant_zip_code\": \"98109\",\n \"merchant_name\": \"Amazon.Com Amzn.Com/Billwausa Usa\",\n \"new_balance\": \"919.01\",\n \"merchant_city\": \"Amzn.com/bill\",\n \"account_id\": \"0bebf64a-a74b-42f4-9af9-8e5ac7b07cf4\",\n \"amount\": \"-4.99\",\n \"date_updated\": \"2021-08-03 16:45:55.447672+00:00\",\n \"original_transaction_id\": null,\n \"exchange_rate\": null,\n \"transaction_state\": \"pending\",\n \"merchant_address\": null,\n \"amount_in_cents\": \"-499\",\n \"merchant_id\": null,\n \"prior_balance\": \"919.01\",\n \"fee\": null,\n \"cardholder_presence_indicator\": null,\n \"card_id\": \"39ea1302-9228-4a70-a370-ebb527827aca\",\n \"merchant_country\": null,\n \"rewards_rate\": null,\n \"transaction_response_code\": null,\n \"acquiring_institution_identification_code\": null,\n \"raw_statement_descriptor\": \"Amazon.com Amzn.com/billWAUSA USA\",\n \"currency_code\": \"USD\",\n \"settled_date\": \"2021-08-03 16:45:55\",\n \"mcc\": \"Bakeries\",\n \"uuid\": \"145e0a6b-beff-4b68-9fcc-05bef2c9b6dd\",\n \"date_created\": \"2021-08-03 16:45:55.447665+00:00\"\n}"
}
]
}