SQL Server
SQL Server
Faire - Get All Products
See more Faire Examples
Retrieves a list of products, ordered ascending by updated_at. By default, it only returns non-deleted products.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
-- 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 assumes 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
-- Implements the following CURL command:
-- curl -X GET -H "X-FAIRE-ACCESS-TOKEN: <access_token>" -d "limit=50" -d "page=1" https://www.faire.com/api/v1/products
-- Use the following online tool to generate HTTP code from a CURL command
-- Convert a cURL Command to HTTP Source Code
DECLARE @queryParams int
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @queryParams OUT
EXEC sp_OAMethod @queryParams, 'UpdateInt', @success OUT, 'limit', 50
EXEC sp_OAMethod @queryParams, 'UpdateInt', @success OUT, 'page', 1
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'X-FAIRE-ACCESS-TOKEN', '<access_token>'
DECLARE @resp int
EXEC @hr = sp_OACreate 'Chilkat.HttpResponse', @resp OUT
EXEC sp_OAMethod @http, 'HttpParams', @success OUT, 'GET', 'https://www.faire.com/api/v1/products', @queryParams, @resp
IF @success = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @queryParams
EXEC @hr = sp_OADestroy @resp
RETURN
END
DECLARE @sbResponseBody int
EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbResponseBody OUT
EXEC sp_OAMethod @resp, 'GetBodySb', @success OUT, @sbResponseBody
DECLARE @jResp int
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @jResp OUT
EXEC sp_OAMethod @jResp, 'LoadSb', @success OUT, @sbResponseBody
EXEC sp_OASetProperty @jResp, 'EmitCompact', 0
PRINT 'Response Body:'
EXEC sp_OAMethod @jResp, 'Emit', @sTmp0 OUT
PRINT @sTmp0
DECLARE @respStatusCode int
EXEC sp_OAGetProperty @resp, 'StatusCode', @respStatusCode OUT
PRINT 'Response Status Code = ' + @respStatusCode
IF @respStatusCode >= 400
BEGIN
PRINT 'Response Header:'
EXEC sp_OAGetProperty @resp, 'Header', @sTmp0 OUT
PRINT @sTmp0
PRINT 'Failed.'
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @queryParams
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
RETURN
END
-- Sample JSON response:
-- (Sample code for parsing the JSON response is shown below)
-- {
-- "page": 1,
-- "limit": 50,
-- "products": [
-- {
-- "id": "p_123",
-- "brand_id": "b_abc",
-- "short_description": "Our candles smell fantastic. Want to know how good? Read our description!",
-- "description": "Glad you decided to read our description! We have significantly more characters to describe to you just how good our candles smell.",
-- "wholesale_price_cents": 500,
-- "retail_price_cents": 1000,
-- "sale_state": "FOR_SALE",
-- "active": true,
-- "deleted": false,
-- "name": "Faire's fantastic candle",
-- "unit_multiplier": 8,
-- "taxonomy_type": {
-- "id": "tt_23nl3bzl00",
-- "name": "Votive Candle"
-- },
-- "options": [
-- ],
-- "created_at": "20190314T000915.000Z",
-- "updated_at": "20190315T000915.000Z"
-- }
-- ]
-- }
-- Sample code for parsing the JSON response...
-- Use the following online tool to generate parsing code from sample JSON:
-- Generate Parsing Code from JSON
DECLARE @id nvarchar(4000)
DECLARE @brand_id nvarchar(4000)
DECLARE @short_description nvarchar(4000)
DECLARE @description nvarchar(4000)
DECLARE @wholesale_price_cents int
DECLARE @retail_price_cents int
DECLARE @sale_state nvarchar(4000)
DECLARE @active int
DECLARE @deleted int
DECLARE @name nvarchar(4000)
DECLARE @unit_multiplier int
DECLARE @taxonomy_typeId nvarchar(4000)
DECLARE @taxonomy_typeName nvarchar(4000)
DECLARE @created_at nvarchar(4000)
DECLARE @updated_at nvarchar(4000)
DECLARE @j int
DECLARE @count_j int
DECLARE @page int
EXEC sp_OAMethod @jResp, 'IntOf', @page OUT, 'page'
DECLARE @limit int
EXEC sp_OAMethod @jResp, 'IntOf', @limit OUT, 'limit'
DECLARE @i int
SELECT @i = 0
DECLARE @count_i int
EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'products'
WHILE @i < @count_i
BEGIN
EXEC sp_OASetProperty @jResp, 'I', @i
EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'products[i].id'
EXEC sp_OAMethod @jResp, 'StringOf', @brand_id OUT, 'products[i].brand_id'
EXEC sp_OAMethod @jResp, 'StringOf', @short_description OUT, 'products[i].short_description'
EXEC sp_OAMethod @jResp, 'StringOf', @description OUT, 'products[i].description'
EXEC sp_OAMethod @jResp, 'IntOf', @wholesale_price_cents OUT, 'products[i].wholesale_price_cents'
EXEC sp_OAMethod @jResp, 'IntOf', @retail_price_cents OUT, 'products[i].retail_price_cents'
EXEC sp_OAMethod @jResp, 'StringOf', @sale_state OUT, 'products[i].sale_state'
EXEC sp_OAMethod @jResp, 'BoolOf', @active OUT, 'products[i].active'
EXEC sp_OAMethod @jResp, 'BoolOf', @deleted OUT, 'products[i].deleted'
EXEC sp_OAMethod @jResp, 'StringOf', @name OUT, 'products[i].name'
EXEC sp_OAMethod @jResp, 'IntOf', @unit_multiplier OUT, 'products[i].unit_multiplier'
EXEC sp_OAMethod @jResp, 'StringOf', @taxonomy_typeId OUT, 'products[i].taxonomy_type.id'
EXEC sp_OAMethod @jResp, 'StringOf', @taxonomy_typeName OUT, 'products[i].taxonomy_type.name'
EXEC sp_OAMethod @jResp, 'StringOf', @created_at OUT, 'products[i].created_at'
EXEC sp_OAMethod @jResp, 'StringOf', @updated_at OUT, 'products[i].updated_at'
SELECT @j = 0
EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_j OUT, 'products[i].options'
WHILE @j < @count_j
BEGIN
EXEC sp_OASetProperty @jResp, 'J', @j
SELECT @j = @j + 1
END
SELECT @i = @i + 1
END
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @queryParams
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @sbResponseBody
EXEC @hr = sp_OADestroy @jResp
END
GO