FastSpring Connector
Documentation
Version: 1
Documentation

EndPoint Get Product IDs


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

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:

Get Product IDs using API Source

FastSpring
Get Product IDs
SSIS API Source - Read from table or endpoint

Get Product IDs using API Destination

FastSpring
Get Product IDs
SSIS API Destination - Access table or endpoint

ODBC application

Use these SQL queries in your ODBC application data source:

Read product ids

Read all orders

SELECT * FROM get_product_ids

SQL Server

Use these SQL queries in SQL Server after you create a data source in Data Gateway:

Read product ids

Read all orders

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM get_product_ids';

EXEC (@MyQuery) AT [LINKED_SERVER_TO_FASTSPRING_IN_DATA_GATEWAY];