VB6 / Bond APIs / activate physical card
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
http.SetRequestHeader "Content-Type","application/json"
http.SetRequestHeader "Authorization","{{authorization}}"
http.SetRequestHeader "Identity","{{identity}}"
Dim resp As ChilkatHttpResponse
Set resp = http.QuickRequest("PATCH","https://{{environment}}.bond.tech/api/v0/cards/:card_id/activate_physical_card")
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 PATCH
-H "Content-Type: application/json"
-H "Authorization: {{authorization}}"
-H "Identity: {{identity}}"
https://{{environment}}.bond.tech/api/v0/cards/:card_id/activate_physical_card
Postman Collection Item JSON
{
"name": "activate physical card",
"request": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"type": "text",
"value": "application/json",
"disabled": true
},
{
"key": "Authorization",
"type": "text",
"value": "{{authorization}}"
},
{
"key": "Identity",
"type": "text",
"value": "{{identity}}"
},
{
"key": "",
"value": "",
"type": "text",
"disabled": true
}
],
"url": {
"raw": "https://{{environment}}.bond.tech/api/v0/cards/:card_id/activate_physical_card",
"protocol": "https",
"host": [
"{{environment}}",
"bond",
"tech"
],
"path": [
"api",
"v0",
"cards",
":card_id",
"activate_physical_card"
],
"variable": [
{
"key": "card_id",
"value": "{{card_id}}"
}
]
},
"description": "Add Card financial Core"
},
"response": [
{
"name": "activate physical card",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"type": "text",
"value": "application/json",
"disabled": true
},
{
"key": "Authorization",
"type": "text",
"value": "{{authorization}}"
},
{
"key": "Identity",
"type": "text",
"value": "{{identity}}"
},
{
"key": "",
"value": "",
"type": "text",
"disabled": true
}
],
"url": {
"raw": "https://{{environment}}.bond.tech/api/v0/cards/:card_id/activate_physical_card",
"protocol": "https",
"host": [
"{{environment}}",
"bond",
"tech"
],
"path": [
"api",
"v0",
"cards",
":card_id",
"activate_physical_card"
],
"variable": [
{
"key": "card_id",
"value": null
}
]
}
},
"_postman_previewlanguage": "json",
"header": null,
"cookie": [
],
"body": "{\n\"card_id\":\"2742ff6a-7455-4066-8b45-ae12d3acca34\",\n\"last_four\":\"6169\",\n\"status\":\"Active\"\n}"
}
]
}