unicodeC / New FreshBooks / Update Checkout Link Payment Gateway
Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkJsonObjectW json;
HCkHttpResponseW resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "has_credit_card": true,
// "gateway_name": "stripe",
// "entity_type": "checkout_link",
// "entity_id": "9e963fcaf173401db907649f43ba77a4"
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateBool(json,L"has_credit_card",TRUE);
CkJsonObjectW_UpdateString(json,L"gateway_name",L"stripe");
CkJsonObjectW_UpdateString(json,L"entity_type",L"checkout_link");
CkJsonObjectW_UpdateString(json,L"entity_id",L"9e963fcaf173401db907649f43ba77a4");
CkHttpW_SetRequestHeader(http,L"Authorization",L"Bearer");
resp = CkHttpW_PostJson3(http,L"https://api.freshbooks.com/payments/account/{{accountid}}/checkout_link/{{checkoutlinkid}}/payment_options",L"application/json",json);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
}
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-H "Authorization: Bearer "
-d '{"has_credit_card":true,"gateway_name":"stripe","entity_type":"checkout_link","entity_id":"9e963fcaf173401db907649f43ba77a4"}'
https://api.freshbooks.com/payments/account/{{accountid}}/checkout_link/{{checkoutlinkid}}/payment_options
Postman Collection Item JSON
{
"name": "Update Checkout Link Payment Gateway",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "Bearer ",
"type": "text",
"disabled": true
}
],
"body": {
"mode": "raw",
"raw": "{\"has_credit_card\":true,\"gateway_name\":\"stripe\",\"entity_type\":\"checkout_link\",\"entity_id\":\"9e963fcaf173401db907649f43ba77a4\"}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "https://api.freshbooks.com/payments/account/{{accountid}}/checkout_link/{{checkoutlinkid}}/payment_options",
"protocol": "https",
"host": [
"api",
"freshbooks",
"com"
],
"path": [
"payments",
"account",
"{{accountid}}",
"checkout_link",
"{{checkoutlinkid}}",
"payment_options"
]
}
},
"response": [
]
}