Chilkat Online Tools

delphiDll / Reloadly API / Order

Back to Collection Items

var
http: HCkHttp;
success: Boolean;
json: HCkJsonObject;
resp: HCkHttpResponse;

begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

http := CkHttp_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.

// {
//   "productId": 120,
//   "countryCode": "US",
//   "quantity": 1,
//   "unitPrice": 1,
//   "customIdentifier": "obucks10",
//   "senderName": "John Doe",
//   "recipientEmail": "anyone@email.com",
//   "recipientPhoneDetails": {
//     "countryCode": "ES",
//     "phoneNumber": "657829900"
//   }
// }

json := CkJsonObject_Create();
CkJsonObject_UpdateInt(json,'productId',120);
CkJsonObject_UpdateString(json,'countryCode','US');
CkJsonObject_UpdateInt(json,'quantity',1);
CkJsonObject_UpdateInt(json,'unitPrice',1);
CkJsonObject_UpdateString(json,'customIdentifier','obucks10');
CkJsonObject_UpdateString(json,'senderName','John Doe');
CkJsonObject_UpdateString(json,'recipientEmail','anyone@email.com');
CkJsonObject_UpdateString(json,'recipientPhoneDetails.countryCode','ES');
CkJsonObject_UpdateString(json,'recipientPhoneDetails.phoneNumber','657829900');

CkHttp_SetRequestHeader(http,'Content-Type','application/json');
// Adds the "Authorization: Bearer YOUR_ACCESS_TOKEN_HERE" header.
CkHttp_putAuthToken(http,'YOUR_ACCESS_TOKEN_HERE');
CkHttp_SetRequestHeader(http,'Accept','application/com.reloadly.giftcards-v1+json');

resp := CkHttp_PostJson3(http,'https://giftcards.reloadly.com/orders','application/json',json);
if (CkHttp_getLastMethodSuccess(http) = False) then
  begin
    Memo1.Lines.Add(CkHttp__lastErrorText(http));
    Exit;
  end;

Memo1.Lines.Add(IntToStr(CkHttpResponse_getStatusCode(resp)));
Memo1.Lines.Add(CkHttpResponse__bodyStr(resp));
CkHttpResponse_Dispose(resp);

CkHttp_Dispose(http);
CkJsonObject_Dispose(json);

Curl Command

curl -X POST
	-H "Authorization: Bearer YOUR_ACCESS_TOKEN_HERE"
	-H "Accept: application/com.reloadly.giftcards-v1+json"
	-H "Content-Type: application/json"
	-d '{
    "productId": 120,
    "countryCode": "US",
    "quantity": 1,
    "unitPrice": 1,
    "customIdentifier": "obucks10",
    "senderName": "John Doe",
    "recipientEmail": "anyone@email.com",
     "recipientPhoneDetails": {
        "countryCode": "ES",
        "phoneNumber": "657829900"
    }
}'
https://giftcards.reloadly.com/orders

Postman Collection Item JSON

{
  "name": "Order",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer YOUR_ACCESS_TOKEN_HERE",
        "type": "text"
      },
      {
        "key": "Accept",
        "value": "application/com.reloadly.giftcards-v1+json",
        "type": "text"
      },
      {
        "key": "Content-Type",
        "value": "application/json",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n    \"productId\": 120,\r\n    \"countryCode\": \"US\",\r\n    \"quantity\": 1,\r\n    \"unitPrice\": 1,\r\n    \"customIdentifier\": \"obucks10\",\r\n    \"senderName\": \"John Doe\",\r\n    \"recipientEmail\": \"anyone@email.com\",\r\n     \"recipientPhoneDetails\": {\r\n        \"countryCode\": \"ES\",\r\n        \"phoneNumber\": \"657829900\"\r\n    }\r\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "https://giftcards.reloadly.com/orders",
      "protocol": "https",
      "host": [
        "giftcards",
        "reloadly",
        "com"
      ],
      "path": [
        "orders"
      ]
    }
  },
  "response": [
  ]
}