List All Products
Name
get_products
Description
Returns a list of your products. The products are returned sorted by creation date, with the most recently created products appearing first. [API reference]
Related Tables
Parameters
Output Columns
Label | Data Type (SSIS) | Data Type (SQL) | Length | Raw | Description |
---|---|---|---|---|---|
Id |
DT_WSTR
|
nvarchar(100)
|
100 | False |
|
Name |
DT_WSTR
|
nvarchar(100)
|
100 | False |
|
Caption |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
Description |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
Active |
DT_BOOL
|
bit
|
False |
||
Created |
DT_DBTIMESTAMP
|
datetime
|
False |
||
Updated |
DT_DBTIMESTAMP
|
datetime
|
False |
||
Type |
DT_WSTR
|
nvarchar(100)
|
100 | False |
|
Object |
DT_WSTR
|
nvarchar(100)
|
100 | False |
|
Attributes |
DT_WSTR
|
nvarchar(2000)
|
2000 | False |
|
LiveMode |
DT_BOOL
|
bit
|
False |
||
StatementDescription |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
UnitLabel |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
PackageDimensionsHeight |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
PackageDimensionsLength |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
PackageDimensionsWidth |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
PackageDimensionsWeight |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
URL |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
Images |
DT_WSTR
|
nvarchar(2000)
|
2000 | False |
|
TaxCodeId |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
TaxCodeName |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
PriceUnitAmount |
DT_I8
|
bigint
|
False |
||
PriceRecurringInterval |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
PriceRecurringIntervalCount |
DT_I4
|
int
|
False |
||
PriceRecurringUsageType |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
Shippable |
DT_WSTR
|
nvarchar(4000)
|
4000 | False |
|
DeactivatedOn |
DT_DBTIMESTAMP
|
datetime
|
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 Stripe 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:
List all products
SELECT * FROM get_products
Get all Products
Read all products
SELECT * FROM Products
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:
List all products
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM get_products';
EXEC (@MyQuery) AT [LS_TO_STRIPE_IN_GATEWAY];
Get all Products
Read all products
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM Products';
EXEC (@MyQuery) AT [LS_TO_STRIPE_IN_GATEWAY];
get_products
endpoint belongs to
Products
table(s), and can therefore be used via those table(s).