Unicode C++
Unicode C++
Amazon Pay - Update Charge Permission
See more Amazon Pay Examples
Update the Charge Permission with your external order metadata or the recurringMetadata.Chilkat Unicode C++ Downloads
#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.h>
#include <CkPrivateKeyW.h>
#include <CkHttpResponseW.h>
void ChilkatSample(void)
{
bool success = false;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttpW http;
// Implements the following CURL command:
// curl "https://pay-api.amazon.com/:version/chargePermissions/:chargePermissionId" \
// -X PATCH
// -H "authorization:Px2e5oHhQZ88vVhc0DO%2FsShHj8MDDg%3DEXAMPLESIGNATURE"
// -H "x-amz-pay-date:20201012T235046Z"
// -d '{
// "merchantMetadata": {
// "merchantReferenceId": "32-41-323141-32",
// "merchantStoreName": "AmazonTestStoreFront",
// "noteToBuyer": "Some Note to buyer",
// "customInformation": ""
// }
// }'
// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code
// Use this online tool to generate code from sample JSON:
// Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "merchantMetadata": {
// "merchantReferenceId": "32-41-323141-32",
// "merchantStoreName": "AmazonTestStoreFront",
// "noteToBuyer": "Some Note to buyer",
// "customInformation": ""
// }
// }
CkJsonObjectW json;
json.UpdateString(L"merchantMetadata.merchantReferenceId",L"32-41-323141-32");
json.UpdateString(L"merchantMetadata.merchantStoreName",L"AmazonTestStoreFront");
json.UpdateString(L"merchantMetadata.noteToBuyer",L"Some Note to buyer");
json.UpdateString(L"merchantMetadata.customInformation",L"");
CkStringBuilderW sbRequestBody;
json.EmitSb(sbRequestBody);
// Load your Amazon Pay private key.
// There are many other ways to load private keys into the Chilkat private key object, such as from different formats,
// or from in-memory strings or bytes.
CkPrivateKeyW privKey;
success = privKey.LoadPemFile(L"C:/someDir/myAmazonPayPrivateKey.pem");
if (success == false) {
wprintf(L"%s\n",privKey.lastErrorText());
return;
}
// Provide your Amazon Pay private key and Public Key ID
// Use your public key ID here. It must be the one associated with the private key.
// Note: The SetAuthPrivateKey method was added in Chilkat v9.5.0.89
const wchar_t *publicKeyId = L"SANDBOX-AHEGSJCM3L2S637RBGABLAFW";
success = http.SetAuthPrivateKey(publicKeyId,privKey);
if (success == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
// Note: When the private key is provided as shown above, Chilkat will automatically add the required x-amz-pay-* headers to the HTTP request,
// and will also sign the request. Nothing more is needed.
// Chilkat automatically generates and adds the following headers:
//
// x-amz-pay-date
// x-amz-pay-host
// x-amz-pay-region
// Authorization
http.put_Accept(L"application/json");
success = http.SetUrlVar(L"chargePermissionId",L"P21-1111111-1111111");
// To use the live system, replace "sandbox" with "live" in the URL passed to HttpSb.
// Also, make sure to use the correct region: pay-api.amazon.com, pay-api.amazon.eu, or pay-api.amazon.jp
CkHttpResponseW resp;
success = http.HttpSb(L"PATCH",L"https://pay-api.amazon.eu/sandbox/v2/chargePermissions/{$chargePermissionId}",sbRequestBody,L"utf-8",L"application/json",resp);
if (success == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
CkStringBuilderW sbResponseBody;
resp.GetBodySb(sbResponseBody);
CkJsonObjectW jResp;
jResp.LoadSb(sbResponseBody);
jResp.put_EmitCompact(false);
// If the status code is not equal to 200, this will display error information.
wprintf(L"Response Body:\n");
wprintf(L"%s\n",jResp.emit());
int respStatusCode = resp.get_StatusCode();
wprintf(L"Response Status Code = %d\n",respStatusCode);
if (respStatusCode != 200) {
wprintf(L"Failed.\n");
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "chargePermissionId": "chargePermission-1",
// "chargePermissionReferenceId": null,
// "buyer": {
// "buyerId": "buyerId",
// "name": "name-1",
// "email": "name@amazon.com",
// "phoneNumber": "800-000-0000",
// "primeMembershipTypes": null
// },
// "releaseEnvironment": "Live",
// "shippingAddress": { // Null for PayOnly product type
// "name": "Work",
// "addressLine1": "440 Terry Ave",
// "addressLine2": "",
// "addressLine3": "",
// "city": "Seattle",
// "county": "King",
// "district": "Seattle",
// "stateOrRegion": "WA",
// "postalCode": "98121",
// "countryCode": "US",
// "phoneNumber": "800-000-0000"
// },
// "billingAddress": { // Only available in EU or for PayOnly product type
// "name": "Work",
// "addressLine1": "440 Terry Ave",
// "addressLine2": "",
// "addressLine3": "",
// "city": "Seattle",
// "county": "King",
// "district": "Seattle",
// "stateOrRegion": "WA",
// "postalCode": "98121",
// "countryCode": "US",
// "phoneNumber": "800-000-0000"
// },
// "paymentPreferences": [
// {
// "paymentDescriptor": null
// }],
// "statusDetails": {
// "state": "Chargeable",
// "reasons": null,
// "lastUpdatedTimestamp": "20190714T155300Z"
// },
// "creationTimestamp": "20190714T155300Z",
// "expirationTimestamp": "20190715T155300Z",
// "merchantMetadata": {
// "merchantReferenceId": "123-77-876",
// "merchantStoreName": "AmazonTestStoreFront",
// "noteToBuyer": "merchantNoteForBuyer",
// "customInformation": "This is custom information"
// },
// "platformId": "SPId",
// "limits": {
// "amountLimit": {
// "amount": "14.00",
// "currencyCode": "USD"
// },
// "amountBalance": {
// "amount": "14.00",
// "currencyCode": "USD"
// }
// },
// "presentmentCurrency": "USD"
// }
// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON
// Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
// See this example explaining how this memory should be used: const char * functions.
const wchar_t *paymentDescriptor = 0;
const wchar_t *chargePermissionId = jResp.stringOf(L"chargePermissionId");
const wchar_t *chargePermissionReferenceId = jResp.stringOf(L"chargePermissionReferenceId");
const wchar_t *buyerBuyerId = jResp.stringOf(L"buyer.buyerId");
const wchar_t *buyerName = jResp.stringOf(L"buyer.name");
const wchar_t *buyerEmail = jResp.stringOf(L"buyer.email");
const wchar_t *buyerPhoneNumber = jResp.stringOf(L"buyer.phoneNumber");
const wchar_t *buyerPrimeMembershipTypes = jResp.stringOf(L"buyer.primeMembershipTypes");
const wchar_t *releaseEnvironment = jResp.stringOf(L"releaseEnvironment");
const wchar_t *shippingAddressName = jResp.stringOf(L"shippingAddress.name");
const wchar_t *shippingAddressAddressLine1 = jResp.stringOf(L"shippingAddress.addressLine1");
const wchar_t *shippingAddressAddressLine2 = jResp.stringOf(L"shippingAddress.addressLine2");
const wchar_t *shippingAddressAddressLine3 = jResp.stringOf(L"shippingAddress.addressLine3");
const wchar_t *shippingAddressCity = jResp.stringOf(L"shippingAddress.city");
const wchar_t *shippingAddressCounty = jResp.stringOf(L"shippingAddress.county");
const wchar_t *shippingAddressDistrict = jResp.stringOf(L"shippingAddress.district");
const wchar_t *shippingAddressStateOrRegion = jResp.stringOf(L"shippingAddress.stateOrRegion");
const wchar_t *shippingAddressPostalCode = jResp.stringOf(L"shippingAddress.postalCode");
const wchar_t *shippingAddressCountryCode = jResp.stringOf(L"shippingAddress.countryCode");
const wchar_t *shippingAddressPhoneNumber = jResp.stringOf(L"shippingAddress.phoneNumber");
const wchar_t *billingAddressName = jResp.stringOf(L"billingAddress.name");
const wchar_t *billingAddressAddressLine1 = jResp.stringOf(L"billingAddress.addressLine1");
const wchar_t *billingAddressAddressLine2 = jResp.stringOf(L"billingAddress.addressLine2");
const wchar_t *billingAddressAddressLine3 = jResp.stringOf(L"billingAddress.addressLine3");
const wchar_t *billingAddressCity = jResp.stringOf(L"billingAddress.city");
const wchar_t *billingAddressCounty = jResp.stringOf(L"billingAddress.county");
const wchar_t *billingAddressDistrict = jResp.stringOf(L"billingAddress.district");
const wchar_t *billingAddressStateOrRegion = jResp.stringOf(L"billingAddress.stateOrRegion");
const wchar_t *billingAddressPostalCode = jResp.stringOf(L"billingAddress.postalCode");
const wchar_t *billingAddressCountryCode = jResp.stringOf(L"billingAddress.countryCode");
const wchar_t *billingAddressPhoneNumber = jResp.stringOf(L"billingAddress.phoneNumber");
const wchar_t *statusDetailsState = jResp.stringOf(L"statusDetails.state");
const wchar_t *statusDetailsReasons = jResp.stringOf(L"statusDetails.reasons");
const wchar_t *statusDetailsLastUpdatedTimestamp = jResp.stringOf(L"statusDetails.lastUpdatedTimestamp");
const wchar_t *creationTimestamp = jResp.stringOf(L"creationTimestamp");
const wchar_t *expirationTimestamp = jResp.stringOf(L"expirationTimestamp");
const wchar_t *merchantMetadataMerchantReferenceId = jResp.stringOf(L"merchantMetadata.merchantReferenceId");
const wchar_t *merchantMetadataMerchantStoreName = jResp.stringOf(L"merchantMetadata.merchantStoreName");
const wchar_t *merchantMetadataNoteToBuyer = jResp.stringOf(L"merchantMetadata.noteToBuyer");
const wchar_t *merchantMetadataCustomInformation = jResp.stringOf(L"merchantMetadata.customInformation");
const wchar_t *platformId = jResp.stringOf(L"platformId");
const wchar_t *limitsAmountLimitAmount = jResp.stringOf(L"limits.amountLimit.amount");
const wchar_t *limitsAmountLimitCurrencyCode = jResp.stringOf(L"limits.amountLimit.currencyCode");
const wchar_t *limitsAmountBalanceAmount = jResp.stringOf(L"limits.amountBalance.amount");
const wchar_t *limitsAmountBalanceCurrencyCode = jResp.stringOf(L"limits.amountBalance.currencyCode");
const wchar_t *presentmentCurrency = jResp.stringOf(L"presentmentCurrency");
int i = 0;
int count_i = jResp.SizeOfArray(L"paymentPreferences");
while (i < count_i) {
jResp.put_I(i);
paymentDescriptor = jResp.stringOf(L"paymentPreferences[i].paymentDescriptor");
i = i + 1;
}
}