SQL Server
SQL Server
Xero Get Full Set of Tenants
See more Xero Examples
Check the full set of tenants you've been authorized to accessChilkat 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 example requires the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @jsonToken int
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @jsonToken OUT
EXEC sp_OAMethod @jsonToken, 'LoadFile', @success OUT, 'qa_data/tokens/xero-access-token.json'
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @jsonToken, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @jsonToken
RETURN
END
EXEC sp_OAMethod @jsonToken, 'StringOf', @sTmp0 OUT, 'access_token'
EXEC sp_OASetProperty @http, 'AuthToken', @sTmp0
EXEC sp_OASetProperty @http, 'Accept', 'application/json'
DECLARE @resp int
EXEC @hr = sp_OACreate 'Chilkat.HttpResponse', @resp OUT
EXEC sp_OAMethod @http, 'HttpNoBody', @success OUT, 'GET', 'https://api.xero.com/connections', @resp
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @jsonToken
EXEC @hr = sp_OADestroy @resp
RETURN
END
EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
PRINT 'Response Status Code: ' + @iTmp0
DECLARE @jarr int
EXEC @hr = sp_OACreate 'Chilkat.JsonArray', @jarr OUT
EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
EXEC sp_OAMethod @jarr, 'Load', @success OUT, @sTmp0
EXEC sp_OASetProperty @jarr, 'EmitCompact', 0
EXEC sp_OAMethod @jarr, 'Emit', @sTmp0 OUT
PRINT @sTmp0
EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
IF @iTmp0 <> 200
BEGIN
PRINT 'Failed.'
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @jsonToken
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @jarr
RETURN
END
-- Sample response
-- Use this online tool to generate parsing code from sample JSON:
-- Generate Parsing Code from JSON
-- [
-- {
-- "id": "c869f3b7-6435-4c7e-8cb2-122721b04a69",
-- "tenantId": "45e4708e-d862-4111-ab3a-dd8cd03913e1",
-- "tenantType": "ORGANISATION",
-- "createdDateUtc": "2020-02-02T19:17:58.1117990",
-- "updatedDateUtc": "2020-02-02T19:17:58.1117990"
-- },
-- {
-- "id": "74305bf3-12e0-45e2-8dc8-e3ec73e3b1f9",
-- "tenantId": "c3d5e782-2153-4cda-bdb4-cec791ceb90d",
-- "tenantType": "ORGANISATION",
-- "createdDateUtc": "2020-01-30T01:33:36.2717380",
-- "updatedDateUtc": "2020-02-02T19:21:08.5739590"
-- }
-- ]
DECLARE @json int
DECLARE @id nvarchar(4000)
DECLARE @tenantId nvarchar(4000)
DECLARE @tenantType nvarchar(4000)
DECLARE @createdDateUtc nvarchar(4000)
DECLARE @updatedDateUtc nvarchar(4000)
DECLARE @i int
SELECT @i = 0
DECLARE @count_i int
EXEC sp_OAGetProperty @jarr, 'Size', @count_i OUT
WHILE @i < @count_i
BEGIN
EXEC sp_OAMethod @jarr, 'ObjectAt', @json OUT, @i
EXEC sp_OAMethod @json, 'StringOf', @id OUT, 'id'
EXEC sp_OAMethod @json, 'StringOf', @tenantId OUT, 'tenantId'
EXEC sp_OAMethod @json, 'StringOf', @tenantType OUT, 'tenantType'
EXEC sp_OAMethod @json, 'StringOf', @createdDateUtc OUT, 'createdDateUtc'
EXEC sp_OAMethod @json, 'StringOf', @updatedDateUtc OUT, 'updatedDateUtc'
EXEC @hr = sp_OADestroy @json
SELECT @i = @i + 1
END
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @jsonToken
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @jarr
END
GO