Get Products
Name
get_products
Description
Related Tables
Parameters
Parameter | Label | Required | Options | Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no parameters |
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description |
---|---|---|---|---|---|
Id |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
Display |
DT_WSTR
|
nvarchar(1000)
|
1000 | False |
|
Summary |
DT_WSTR
|
nvarchar(1000)
|
1000 | False |
|
Description |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
Action |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
Image |
DT_WSTR
|
nvarchar(500)
|
500 | False |
|
Format |
DT_WSTR
|
nvarchar(50)
|
50 | False |
|
Sku |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
Renew |
DT_WSTR
|
nvarchar(10)
|
10 | False |
|
Interval |
DT_WSTR
|
nvarchar(10)
|
10 | False |
|
IntervalLength |
DT_I8
|
bigint
|
False |
||
IntervalCount |
DT_I4
|
int
|
False |
||
QuantityBehavior |
DT_WSTR
|
nvarchar(10)
|
10 | False |
|
QuantityDefault |
DT_I8
|
bigint
|
False |
||
PriceUSD |
DT_R8
|
float
|
False |
||
PriceEUR |
DT_R8
|
float
|
False |
||
PriceGBP |
DT_R8
|
float
|
False |
||
PriceCAD |
DT_R8
|
float
|
False |
||
PriceNZD |
DT_R8
|
float
|
False |
||
PriceCHF |
DT_R8
|
float
|
False |
||
PriceSEK |
DT_R8
|
float
|
False |
||
PriceCZK |
DT_R8
|
float
|
False |
||
PriceDKK |
DT_R8
|
float
|
False |
||
PricePLN |
DT_R8
|
float
|
False |
||
PriceSGD |
DT_R8
|
float
|
False |
||
PriceJPY |
DT_R8
|
float
|
False |
||
PriceCNY |
DT_R8
|
float
|
False |
||
PriceHKD |
DT_R8
|
float
|
False |
||
PriceINR |
DT_R8
|
float
|
False |
||
PriceBRL |
DT_R8
|
float
|
False |
||
PriceAUD |
DT_R8
|
float
|
False |
||
Trial |
DT_I4
|
int
|
False |
||
PaymentCollected |
DT_BOOL
|
bit
|
False |
||
PaidTrial |
DT_BOOL
|
bit
|
False |
||
FulfillmentInstructions |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
Badge |
DT_WSTR
|
nvarchar(50)
|
50 | False |
|
Rank |
DT_I4
|
int
|
False |
||
DateLimitsEnabled |
DT_BOOL
|
bit
|
False |
||
CancellationInterval |
DT_WSTR
|
nvarchar(4)
|
4 | False |
|
CancellationIntervalLength |
DT_I8
|
bigint
|
False |
||
TaxCode |
DT_WSTR
|
nvarchar(50)
|
50 | False |
|
TaxCodeDescription |
DT_WSTR
|
nvarchar(500)
|
500 | False |
|
Visibility |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
ProductAppReference |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
Parent |
DT_WSTR
|
nvarchar(255)
|
255 | False |
|
MigratedProductId |
DT_WSTR
|
nvarchar(50)
|
50 | False |
|
ClassicProduct |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
SetupFeeTitle |
DT_WSTR
|
nvarchar(500)
|
500 | False |
|
SetupFeePriceUSD |
DT_R8
|
float
|
False |
||
SetupFeePriceEUR |
DT_R8
|
float
|
False |
||
SetupFeePriceGBP |
DT_R8
|
float
|
False |
||
TrialPriceUSD |
DT_R8
|
float
|
False |
||
TrialPriceEUR |
DT_R8
|
float
|
False |
||
TrialPriceGBP |
DT_R8
|
float
|
False |
Input Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime. |
Examples
SSIS
Use FastSpring Connector in API Source component to read data or in API Destination component to read/write data:
Read from Products table using API Destination
This Endpoint belongs to Products table, therefore you cannot work with it directly. Use this table and table-operation pair instead:

ODBC application
Use these SQL queries in your ODBC application data source:
Get products
SELECT * FROM get_products
Read product details
Read all products
SELECT * FROM Products
Read a single product by id
Read a single product by id
SELECT * FROM Products Where Id='some-product-id'
get_products
endpoint belongs to
Products
table(s), and can therefore be used via those table(s).
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Get products
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM get_products';
EXEC (@MyQuery) AT [LS_TO_FASTSPRING_IN_GATEWAY];
Read product details
Read all products
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM Products';
EXEC (@MyQuery) AT [LS_TO_FASTSPRING_IN_GATEWAY];
Read a single product by id
Read a single product by id
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM Products Where Id=''some-product-id''';
EXEC (@MyQuery) AT [LS_TO_FASTSPRING_IN_GATEWAY];
get_products
endpoint belongs to
Products
table(s), and can therefore be used via those table(s).