Swift3 / Bond APIs / activate a physical card [w/optional fields]
Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "cvv": "XXX",
// "expiry_date": "MMYYYY"
// }
let json = CkoJsonObject()!
json.update("cvv", value: "XXX")
json.update("expiry_date", value: "MMYYYY")
http.setRequestHeader("Content-Type", value: "application/json")
http.setRequestHeader("Authorization", value: "{{authorization}}")
http.setRequestHeader("Identity", value: "{{identity}}")
let sbRequestBody = CkoStringBuilder()!
json.emitSb(sbRequestBody)
var resp: CkoHttpResponse? = http.pTextSb("PATCH", url: "https://{{environment}}.bond.tech/api/v0/cards/:card_id/activate_physical_card", textData: sbRequestBody, charset: "utf-8", contentType: "application/json", md5: false, gzip: false)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
Curl Command
curl -X PATCH
-H "Content-Type: application/json"
-H "Authorization: {{authorization}}"
-H "Identity: {{identity}}"
-d '{
"cvv": "XXX",
"expiry_date": "MMYYYY"
}'
https://{{environment}}.bond.tech/api/v0/cards/:card_id/activate_physical_card
Postman Collection Item JSON
{
"name": "activate a physical card [w/optional fields]",
"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
}
],
"body": {
"mode": "raw",
"raw": "{\n \"cvv\": \"XXX\",\n \"expiry_date\": \"MMYYYY\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"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 a physical card [w/optional fields]",
"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
}
],
"body": {
"mode": "raw",
"raw": "{\n \"cvv\": \"XXX\",\n \"expiry_date\": \"MMYYYY\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"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}"
}
]
}