SQL Server
SQL Server
PayPal - Find Completed Sales
See more PayPal Examples
List payments and find completed payments (sales transactions). Get the sales id, state, and total amount for each.Chilkat SQL Server Downloads
-- 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)
DECLARE @success int
SELECT @success = 0
-- This requires the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
-- Load our previously obtained access token. (see PayPal OAuth2 Access Token)
DECLARE @jsonToken int
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @jsonToken OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
EXEC sp_OAMethod @jsonToken, 'LoadFile', @success OUT, 'qa_data/tokens/paypal.json'
-- Build the Authorization request header field value.
DECLARE @sbAuth int
EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbAuth OUT
-- token_type should be "Bearer"
EXEC sp_OAMethod @jsonToken, 'StringOf', @sTmp0 OUT, 'token_type'
EXEC sp_OAMethod @sbAuth, 'Append', @success OUT, @sTmp0
EXEC sp_OAMethod @sbAuth, 'Append', @success OUT, ' '
EXEC sp_OAMethod @jsonToken, 'StringOf', @sTmp0 OUT, 'access_token'
EXEC sp_OAMethod @sbAuth, 'Append', @success OUT, @sTmp0
-- Make the initial connection.
-- A single REST object, once connected, can be used for many PayPal REST API calls.
-- The auto-reconnect indicates that if the already-established HTTPS connection is closed,
-- then it will be automatically re-established as needed.
DECLARE @rest int
EXEC @hr = sp_OACreate 'Chilkat.Rest', @rest OUT
DECLARE @bAutoReconnect int
SELECT @bAutoReconnect = 1
EXEC sp_OAMethod @rest, 'Connect', @success OUT, 'api.sandbox.paypal.com', 443, 1, @bAutoReconnect
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @rest, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @jsonToken
EXEC @hr = sp_OADestroy @sbAuth
EXEC @hr = sp_OADestroy @rest
RETURN
END
-- ----------------------------------------------------------------------------------------------
-- The code above this comment could be placed inside a function/subroutine within the application
-- because the connection does not need to be made for every request. Once the connection is made
-- the app may send many requests..
-- ----------------------------------------------------------------------------------------------
-- Clear the REST object of any headers or query params from previous requests.
EXEC sp_OAMethod @rest, 'ClearAllHeaders', @success OUT
EXEC sp_OAMethod @rest, 'ClearAllQueryParams', @success OUT
EXEC sp_OAMethod @sbAuth, 'GetAsString', @sTmp0 OUT
EXEC sp_OAMethod @rest, 'AddHeader', @success OUT, 'Authorization', @sTmp0
-- To find sales transactions, we list payments and look for those
-- containing "sale" transactions
EXEC sp_OAMethod @rest, 'AddQueryParam', @success OUT, 'count', '100'
EXEC sp_OAMethod @rest, 'AddQueryParam', @success OUT, 'start_index', '0'
EXEC sp_OAMethod @rest, 'AddQueryParam', @success OUT, 'sort_by', 'update_time'
EXEC sp_OAMethod @rest, 'AddQueryParam', @success OUT, 'sort_order', 'asc'
-- Send the GET request and get the JSON response.
DECLARE @sbJsonResponse int
EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbJsonResponse OUT
EXEC sp_OAMethod @rest, 'FullRequestNoBodySb', @success OUT, 'GET', '/v1/payments/payment', @sbJsonResponse
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @rest, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @jsonToken
EXEC @hr = sp_OADestroy @sbAuth
EXEC @hr = sp_OADestroy @rest
EXEC @hr = sp_OADestroy @sbJsonResponse
RETURN
END
DECLARE @json int
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT
EXEC sp_OASetProperty @json, 'EmitCompact', 0
EXEC sp_OAMethod @json, 'LoadSb', @success OUT, @sbJsonResponse
-- (optional) Save the entire JSON response to a file to examine if desired..
DECLARE @sbTemp int
EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbTemp OUT
EXEC sp_OAMethod @json, 'EmitSb', @success OUT, @sbTemp
EXEC sp_OAMethod @sbTemp, 'WriteFile', @success OUT, 'qa_output/paypal_payments.json', 'utf-8', 0
EXEC sp_OAGetProperty @rest, 'ResponseStatusCode', @iTmp0 OUT
PRINT 'Response Status Code = ' + @iTmp0
-- Did we get a 200 success response?
EXEC sp_OAGetProperty @rest, 'ResponseStatusCode', @iTmp0 OUT
IF @iTmp0 <> 200
BEGIN
EXEC sp_OAMethod @json, 'Emit', @sTmp0 OUT
PRINT @sTmp0
PRINT 'Failed.'
EXEC @hr = sp_OADestroy @jsonToken
EXEC @hr = sp_OADestroy @sbAuth
EXEC @hr = sp_OADestroy @rest
EXEC @hr = sp_OADestroy @sbJsonResponse
EXEC @hr = sp_OADestroy @json
EXEC @hr = sp_OADestroy @sbTemp
RETURN
END
-- We are looking for sales transactions .
-- As shown below, we are looking in the "transactions" for "related_resources"
-- containing "sale" JSON objects.
-- {
-- "payments": [
-- {
-- "id": "PAY-66A12106PU3254228LA3BYKI",
-- "create_time": "2016-11-23T22:46:01Z",
-- "update_time": "2016-11-23T22:46:07Z",
-- "state": "approved",
-- "intent": "sale",
-- "payer": {
-- ...
-- }
-- ]
-- },
-- "transactions": [
-- {
-- ...
-- "related_resources": [
-- {
-- "sale": {
-- "id": "70L88278E6781074B",
-- "create_time": "2016-11-23T22:46:01Z",
-- "update_time": "2016-11-23T22:46:07Z",
-- "amount": {
-- "total": "7.47",
-- "currency": "USD"
-- },
-- "state": "completed",
-- "parent_payment": "PAY-66A12106PU3254228LA3BYKI",
-- Iterate over the payments and show each sale transaction.
DECLARE @jsonSale int
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @jsonSale OUT
DECLARE @numPayments int
EXEC sp_OAMethod @json, 'SizeOfArray', @numPayments OUT, 'payments'
DECLARE @i int
SELECT @i = 0
WHILE @i < @numPayments
BEGIN
EXEC sp_OASetProperty @json, 'I', @i
DECLARE @j int
SELECT @j = 0
DECLARE @numTransactions int
EXEC sp_OAMethod @json, 'SizeOfArray', @numTransactions OUT, 'payments[i].transactions'
WHILE @j < @numTransactions
BEGIN
EXEC sp_OASetProperty @json, 'J', @j
DECLARE @numRelatedResources int
EXEC sp_OAMethod @json, 'SizeOfArray', @numRelatedResources OUT, 'payments[i].transactions[j].related_resources'
DECLARE @k int
SELECT @k = 0
WHILE @k < @numRelatedResources
BEGIN
EXEC sp_OASetProperty @json, 'K', @k
EXEC sp_OAMethod @json, 'HasMember', @iTmp0 OUT, 'payments[i].transactions[j].related_resources[k].sale'
IF @iTmp0 = 1
BEGIN
EXEC sp_OAMethod @json, 'ObjectOf2', @success OUT, 'payments[i].transactions[j].related_resources[k].sale', @jsonSale
EXEC sp_OAMethod @jsonSale, 'StringOf', @sTmp0 OUT, 'id'
PRINT 'sale id: ' + @sTmp0
EXEC sp_OAMethod @jsonSale, 'StringOf', @sTmp0 OUT, 'state'
PRINT 'state: ' + @sTmp0
EXEC sp_OAMethod @jsonSale, 'StringOf', @sTmp0 OUT, 'amount.total'
PRINT 'total: ' + @sTmp0
PRINT '----'
END
SELECT @k = @k + 1
END
SELECT @j = @j + 1
END
SELECT @i = @i + 1
END
PRINT 'success'
EXEC @hr = sp_OADestroy @jsonToken
EXEC @hr = sp_OADestroy @sbAuth
EXEC @hr = sp_OADestroy @rest
EXEC @hr = sp_OADestroy @sbJsonResponse
EXEC @hr = sp_OADestroy @json
EXEC @hr = sp_OADestroy @sbTemp
EXEC @hr = sp_OADestroy @jsonSale
END
GO