Chilkat Online Tools

C / APPIA API / EDIT PAYMENT LINK DETAILS

Back to Collection Items

#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkStringBuilder.h>
#include <C_CkHttpResponse.h>

void ChilkatSample(void)
    {
    HCkHttp http;
    BOOL success;
    HCkJsonObject json;
    HCkStringBuilder sbRequestBody;
    HCkHttpResponse resp;

    // 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.

    // {
    //   "id": 1,
    //   "link_name": "Facebook Training",
    //   "amount": 200,
    //   "description": "Running a facebook marketing training",
    //   "pin": 1234
    // }

    json = CkJsonObject_Create();
    CkJsonObject_UpdateInt(json,"id",1);
    CkJsonObject_UpdateString(json,"link_name","Facebook Training");
    CkJsonObject_UpdateInt(json,"amount",200);
    CkJsonObject_UpdateString(json,"description","Running a facebook marketing training");
    CkJsonObject_UpdateInt(json,"pin",1234);

    // Adds the "Authorization: Bearer {{auth}}" header.
    CkHttp_putAuthToken(http,"{{auth}}");
    CkHttp_SetRequestHeader(http,"Content-Type","application/json");

    sbRequestBody = CkStringBuilder_Create();
    CkJsonObject_EmitSb(json,sbRequestBody);

    resp = CkHttp_PTextSb(http,"PUT","https://domain.com/plink/",sbRequestBody,"utf-8","application/json",FALSE,FALSE);
    if (CkHttp_getLastMethodSuccess(http) == FALSE) {
        printf("%s\n",CkHttp_lastErrorText(http));
        CkHttp_Dispose(http);
        CkJsonObject_Dispose(json);
        CkStringBuilder_Dispose(sbRequestBody);
        return;
    }

    printf("%d\n",CkHttpResponse_getStatusCode(resp));
    printf("%s\n",CkHttpResponse_bodyStr(resp));
    CkHttpResponse_Dispose(resp);


    CkHttp_Dispose(http);
    CkJsonObject_Dispose(json);
    CkStringBuilder_Dispose(sbRequestBody);

    }

Curl Command

curl -X PUT
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-H "Authorization: Bearer {{auth}}"
	-d '{
          "id": 1,
          "link_name": "Facebook Training",
            "amount": 200,
            "description": "Running a facebook marketing training",
            "pin": 1234
}'
https://domain.com/plink/

Postman Collection Item JSON

{
  "name": "EDIT PAYMENT LINK DETAILS",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{auth}}",
          "type": "string"
        }
      ]
    },
    "method": "PUT",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Authorization",
        "value": "Bearer {{auth}}"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n          \"id\": 1,\r\n          \"link_name\": \"Facebook Training\",\r\n            \"amount\": 200,\r\n            \"description\": \"Running a facebook marketing training\",\r\n            \"pin\": 1234\r\n}"
    },
    "url": {
      "raw": "{{url}}/plink/",
      "host": [
        "{{url}}"
      ],
      "path": [
        "plink",
        ""
      ]
    }
  },
  "response": [
  ]
}