DataFlex / Bond APIs / create webhook
Back to Collection Items
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoHttp
Boolean iSuccess
Variant vJson
Handle hoJson
Variant vResp
Handle hoResp
String sTemp1
Integer iTemp1
Boolean bTemp1
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
End
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "events": [
// "account.history.ready",
// "card.created",
// "card.status.active",
// "card.status.closed",
// "card.status.fraud",
// "card.status.inactive",
// "card.status.lost",
// "card.status.reissue",
// "card.status.stolen",
// "card.wallet.add",
// "card.wallet.add_failure",
// "kyb.verification.approved",
// "kyb.verification.error",
// "kyb.verification.initiated",
// "kyb.verification.rejected",
// "kyb.verification.warning",
// "kyc.verification.document_required",
// "kyc.verification.error",
// "kyc.verification.failure",
// "kyc.verification.kba",
// "kyc.verification.success",
// "kyc.verification.timeout",
// "kyc.verification.under_review",
// "transactions"
// ],
// "callback_url": "",
// "description": ""
// }
Get Create (RefClass(cComChilkatJsonObject)) To hoJson
If (Not(IsComObjectCreated(hoJson))) Begin
Send CreateComObject of hoJson
End
Get ComUpdateString Of hoJson "events[0]" "account.history.ready" To iSuccess
Get ComUpdateString Of hoJson "events[1]" "card.created" To iSuccess
Get ComUpdateString Of hoJson "events[2]" "card.status.active" To iSuccess
Get ComUpdateString Of hoJson "events[3]" "card.status.closed" To iSuccess
Get ComUpdateString Of hoJson "events[4]" "card.status.fraud" To iSuccess
Get ComUpdateString Of hoJson "events[5]" "card.status.inactive" To iSuccess
Get ComUpdateString Of hoJson "events[6]" "card.status.lost" To iSuccess
Get ComUpdateString Of hoJson "events[7]" "card.status.reissue" To iSuccess
Get ComUpdateString Of hoJson "events[8]" "card.status.stolen" To iSuccess
Get ComUpdateString Of hoJson "events[9]" "card.wallet.add" To iSuccess
Get ComUpdateString Of hoJson "events[10]" "card.wallet.add_failure" To iSuccess
Get ComUpdateString Of hoJson "events[11]" "kyb.verification.approved" To iSuccess
Get ComUpdateString Of hoJson "events[12]" "kyb.verification.error" To iSuccess
Get ComUpdateString Of hoJson "events[13]" "kyb.verification.initiated" To iSuccess
Get ComUpdateString Of hoJson "events[14]" "kyb.verification.rejected" To iSuccess
Get ComUpdateString Of hoJson "events[15]" "kyb.verification.warning" To iSuccess
Get ComUpdateString Of hoJson "events[16]" "kyc.verification.document_required" To iSuccess
Get ComUpdateString Of hoJson "events[17]" "kyc.verification.error" To iSuccess
Get ComUpdateString Of hoJson "events[18]" "kyc.verification.failure" To iSuccess
Get ComUpdateString Of hoJson "events[19]" "kyc.verification.kba" To iSuccess
Get ComUpdateString Of hoJson "events[20]" "kyc.verification.success" To iSuccess
Get ComUpdateString Of hoJson "events[21]" "kyc.verification.timeout" To iSuccess
Get ComUpdateString Of hoJson "events[22]" "kyc.verification.under_review" To iSuccess
Get ComUpdateString Of hoJson "events[23]" "transactions" To iSuccess
Get ComUpdateString Of hoJson "callback_url" "" To iSuccess
Get ComUpdateString Of hoJson "description" "" To iSuccess
Send ComSetRequestHeader To hoHttp "Identity" "{{identity}}"
Send ComSetRequestHeader To hoHttp "Authorization" "{{authorization}}"
Get pvComObject of hoJson to vJson
Get ComPostJson3 Of hoHttp "https://{{environment}}.bond.tech/api/v0/webhooks" "application/json" vJson To vResp
If (IsComObject(vResp)) Begin
Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
Set pvComObject Of hoResp To vResp
End
Get ComLastMethodSuccess Of hoHttp To bTemp1
If (bTemp1 = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Get ComStatusCode Of hoResp To iTemp1
Showln iTemp1
Get ComBodyStr Of hoResp To sTemp1
Showln sTemp1
Send Destroy of hoResp
End_Procedure
Curl Command
curl -X POST
-H "Identity: {{identity}}"
-H "Authorization: {{authorization}}"
-d '{
"events": [
"account.history.ready",
"card.created",
"card.status.active",
"card.status.closed",
"card.status.fraud",
"card.status.inactive",
"card.status.lost",
"card.status.reissue",
"card.status.stolen",
"card.wallet.add",
"card.wallet.add_failure",
"kyb.verification.approved",
"kyb.verification.error",
"kyb.verification.initiated",
"kyb.verification.rejected",
"kyb.verification.warning",
"kyc.verification.document_required",
"kyc.verification.error",
"kyc.verification.failure",
"kyc.verification.kba",
"kyc.verification.success",
"kyc.verification.timeout",
"kyc.verification.under_review",
"transactions"
],
"callback_url": "",
"description": ""
}'
https://{{environment}}.bond.tech/api/v0/webhooks
Postman Collection Item JSON
{
"name": "create webhook",
"request": {
"method": "POST",
"header": [
{
"key": "Identity",
"value": "{{identity}}",
"type": "text"
},
{
"key": "Authorization",
"value": "{{authorization}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"events\": [\n \"account.history.ready\",\n \"card.created\",\n \"card.status.active\",\n \"card.status.closed\",\n \"card.status.fraud\",\n \"card.status.inactive\",\n \"card.status.lost\",\n \"card.status.reissue\",\n \"card.status.stolen\",\n \"card.wallet.add\",\n \"card.wallet.add_failure\",\n \"kyb.verification.approved\",\n \"kyb.verification.error\",\n \"kyb.verification.initiated\",\n \"kyb.verification.rejected\",\n \"kyb.verification.warning\",\n \"kyc.verification.document_required\",\n \"kyc.verification.error\",\n \"kyc.verification.failure\",\n \"kyc.verification.kba\",\n \"kyc.verification.success\",\n \"kyc.verification.timeout\",\n \"kyc.verification.under_review\",\n \"transactions\"\n\n ],\n \"callback_url\": \"\",\n \"description\": \"\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "https://{{environment}}.bond.tech/api/v0/webhooks",
"protocol": "https",
"host": [
"{{environment}}",
"bond",
"tech"
],
"path": [
"api",
"v0",
"webhooks"
]
}
},
"response": [
{
"name": "create webhook example",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Identity",
"value": "{{identity}}",
"type": "text"
},
{
"key": "Authorization",
"value": "{{authorization}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"events\": [\n \"kyc.verification.success\",\n \"kyc.verification.failure\",\n \"kyc.verification.error\",\n \"kyc.verification.timeout\",\n \"kyc.verification.kba\"\n ],\n \"callback_url\": \"http://bond.tech\",\n \"description\": \"Event listener NA\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "https://{{environment}}.bond.tech/api/v0/webhooks",
"protocol": "https",
"host": [
"{{environment}}",
"bond",
"tech"
],
"path": [
"api",
"v0",
"webhooks"
]
}
},
"_postman_previewlanguage": "json",
"header": null,
"cookie": [
],
"body": "{\n \"date_created\": \"2020-11-17T11:13:06.568119\",\n \"webhook_id\": \"522e9ec7-b17d-4d92-8270-c2e1741dd6e0\",\n \"callback_url\": \"https://hostname.com/webhook/route\",\n \"description\": \"KYC state changes.\",\n \"events\": [\n \"kyc.verification.success\",\n \"kyc.verification.failure\",\n \"kyc.verification.kba\",\n \"kyc.verification.error\",\n \"kyc.verification.timeout\"\n ],\n \"status\": \"enabled\",\n \"secret\": \"whsec_XqTEJtniwuEhp0A1c1cTJNsmpR/qgOfB\"\n}"
}
]
}