Chilkat Online Tools

SQL Server / GP-API Collection / DCC_1.0 Rate Lookup

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
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @success int

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

    -- The following JSON is sent in the request body.

    -- {
    --   "account_name": "dcc",
    --   "model": "FROM_TRANSACTION_CURRENCY",
    --   "transaction_type": "SALE",
    --   "channel": "CNP",
    --   "amount": "10",
    --   "currency": "EUR",
    --   "country": "GB",
    --   "reference": "TRANS-20180114123459878",
    --   "payment_method": {
    --     "name": "Jane Doe",
    --     "entry_mode": "ECOM",
    --     "card": {
    --       "number": "4006097467207025",
    --       "expiry_month": "12",
    --       "expiry_year": "20",
    --       "cvv": "233"
    --     }
    --   }
    -- }

    DECLARE @json int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.JsonObject', @json OUT

    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'account_name', 'dcc'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'model', 'FROM_TRANSACTION_CURRENCY'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'transaction_type', 'SALE'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'channel', 'CNP'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'amount', '10'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'currency', 'EUR'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'country', 'GB'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'reference', 'TRANS-20180114123459878'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'payment_method.name', 'Jane Doe'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'payment_method.entry_mode', 'ECOM'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'payment_method.card.number', '4006097467207025'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'payment_method.card.expiry_month', '12'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'payment_method.card.expiry_year', '20'
    EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'payment_method.card.cvv', '233'

    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', 'application/json'
    EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'X-GP-Version', '{{version}}'
    -- Adds the "Authorization: Bearer {{token}}" header.
    EXEC sp_OASetProperty @http, 'AuthToken', '{{token}}'

    DECLARE @resp int
    EXEC sp_OAMethod @http, 'PostJson3', @resp OUT, 'https://{{url}}/ucp/currency-conversions', '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
	-H "Content-Type: application/json"
	-H "X-GP-Version: {{version}}"
	-H "Authorization: Bearer {{token}}"
	-d '{
    "account_name": "dcc",
    "model": "FROM_TRANSACTION_CURRENCY",
    "transaction_type": "SALE",
    "channel": "CNP",
    "amount": "10",
    "currency": "EUR",
    "country": "GB",
    "reference": "TRANS-20180114123459878",
    "payment_method": {
        "name": "Jane Doe",
        "entry_mode": "ECOM",
        "card": {
            "number": "4006097467207025",
            "expiry_month": "12",
            "expiry_year": "20",
            "cvv": "233"
        }
    }
}'
https://{{url}}/ucp/currency-conversions

Postman Collection Item JSON

{
  "name": "DCC_1.0 Rate Lookup",
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "exec": [
          ""
        ],
        "type": "text/javascript"
      }
    },
    {
      "listen": "test",
      "script": {
        "exec": [
          "var jsonData = JSON.parse(responseBody);\r",
          "\r",
          "postman.setEnvironmentVariable(\"ccs_id\", jsonData.id);"
        ],
        "type": "text/javascript"
      }
    }
  ],
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json",
        "type": "text"
      },
      {
        "key": "X-GP-Version",
        "value": "{{version}}",
        "type": "text"
      },
      {
        "key": "Authorization",
        "value": "Bearer {{token}}",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n    \"account_name\": \"dcc\",\r\n    \"model\": \"FROM_TRANSACTION_CURRENCY\",\r\n    \"transaction_type\": \"SALE\",\r\n    \"channel\": \"CNP\",\r\n    \"amount\": \"10\",\r\n    \"currency\": \"EUR\",\r\n    \"country\": \"GB\",\r\n    \"reference\": \"TRANS-20180114123459878\",\r\n    \"payment_method\": {\r\n        \"name\": \"Jane Doe\",\r\n        \"entry_mode\": \"ECOM\",\r\n        \"card\": {\r\n            \"number\": \"4006097467207025\",\r\n            \"expiry_month\": \"12\",\r\n            \"expiry_year\": \"20\",\r\n            \"cvv\": \"233\"\r\n        }\r\n    }\r\n}"
    },
    "url": {
      "raw": "https://{{url}}/ucp/currency-conversions",
      "protocol": "https",
      "host": [
        "{{url}}"
      ],
      "path": [
        "ucp",
        "currency-conversions"
      ]
    }
  },
  "response": [
  ]
}