Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
EXEC sp_OASetProperty @http, 'BasicAuth', 1
EXEC sp_OASetProperty @http, 'Login', '100100248'
EXEC sp_OASetProperty @http, 'Password', '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"
-- }
-- }
DECLARE @json int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'requestId', 'merchant-generated-request-guid'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'merchantReference', 'merchant-order-number'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'amount.amount', '37.00'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'amount.currency', 'USD'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', 'application/json'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Accept', 'application/json'
DECLARE @resp int
EXEC sp_OAMethod @http, 'PostJson3', @resp OUT, 'https://api.us-sandbox.afterpay.com/v2/payments/{{id}}/capture', 'application/json', @json
EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
RETURN
END
EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
PRINT @iTmp0
EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
END
GO
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": [
]
}