Chilkat Online Tools

PureBasic / Afterpay Online US API v2 / Capture Payment

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"

Procedure ChilkatExample()

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

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

    CkHttp::setCkBasicAuth(http, 1)
    CkHttp::setCkLogin(http, "100100248")
    CkHttp::setCkPassword(http, "117f3fe5a01a0e400f3e4782baf8ffa43a9d21e9217a15f50d545bc72480d081ecaecc1d6a42ac7a785b7437232bd4cf62dbee679b78a75a3892547059018f9b")

    ; Use this online tool to generate code from sample JSON: Generate Code to Create JSON

    ; The following JSON is sent in the request body.

    ; {
    ;   "requestId": "merchant-generated-request-guid",
    ;   "merchantReference": "merchant-order-number",
    ;   "amount": {
    ;     "amount": "37.00",
    ;     "currency": "USD"
    ;   }
    ; }

    json.i = CkJsonObject::ckCreate()
    If json.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateString(json,"requestId","merchant-generated-request-guid")
    CkJsonObject::ckUpdateString(json,"merchantReference","merchant-order-number")
    CkJsonObject::ckUpdateString(json,"amount.amount","37.00")
    CkJsonObject::ckUpdateString(json,"amount.currency","USD")

    CkHttp::ckSetRequestHeader(http,"Content-Type","application/json")
    CkHttp::ckSetRequestHeader(http,"Accept","application/json")

    resp.i = CkHttp::ckPostJson3(http,"https://api.us-sandbox.afterpay.com/v2/payments/{{id}}/capture","application/json",json)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        ProcedureReturn
    EndIf

    Debug Str(CkHttpResponse::ckStatusCode(resp))
    Debug CkHttpResponse::ckBodyStr(resp)
    CkHttpResponse::ckDispose(resp)



    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(json)


    ProcedureReturn
EndProcedure

Curl Command

curl -X POST
	-u '100100248:117f3fe5a01a0e400f3e4782baf8ffa43a9d21e9217a15f50d545bc72480d081ecaecc1d6a42ac7a785b7437232bd4cf62dbee679b78a75a3892547059018f9b'
	-H "Accept: application/json"
	-H "Content-Type: application/json"
	-d '{
         "requestId": "merchant-generated-request-guid",
         "merchantReference": "merchant-order-number",
         "amount" : {
             "amount" : "37.00",
             "currency" : "USD"
         }
     }'
https://api.us-sandbox.afterpay.com/v2/payments/{{id}}/capture

Postman Collection Item JSON

{
  "name": "Capture Payment",
  "event": [
    {
      "listen": "test",
      "script": {
        "id": "ce54d0ec-48f7-43ed-af8e-165c898c6d39",
        "exec": [
          ""
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      },
      {
        "key": "Content-Type",
        "value": "application/json",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n         \"requestId\": \"merchant-generated-request-guid\",\n         \"merchantReference\": \"merchant-order-number\",\n         \"amount\" : {\n             \"amount\" : \"37.00\",\n             \"currency\" : \"USD\"\n         }\n     }"
    },
    "url": {
      "raw": "https://api.us-sandbox.afterpay.com/v2/payments/{{id}}/capture",
      "protocol": "https",
      "host": [
        "api",
        "us-sandbox",
        "afterpay",
        "com"
      ],
      "path": [
        "v2",
        "payments",
        "{{id}}",
        "capture"
      ]
    },
    "description": "This resource performs a capture against an authorisation. Multiple captures can be performed against an authorisation, provided that the sum of captures does not exceed the authorised amount. Once the total amount authorised is captured, the payment state will be updated to “CAPTURED” and no further capture requests will succeed.\n\nThe resource is idempotent if a unique requestId is provided."
  },
  "response": [
  ]
}