Documentation Index
Fetch the complete documentation index at: https://www.integrate.io/docs/llms.txt
Use this file to discover all available pages before exploring further.

Authentication
- None - No authentication
- Basic - Use basic authentication (user and/or password).
- Connection - Use a saved Integrate.io ETL connection to handle authentication automatically. When selected, a Choose connection dropdown appears with two types of connections:
- Pre-built service connections – Ready-made connections for popular platforms, including: Google Analytics, Facebook Ads Insights, HubSpot (Service Token), HubSpot, Facebook Ads (Destination), Intercom, Xero, LinkedIn, Instagram, Google Sheets, Google Drive, YouTube, Shopify, Salesforce, Marketing Cloud (SOAP), and Marketing Cloud (REST).
- Universal OAuth – A flexible connection for any OAuth-protected API not covered by the pre-built options. Supports three authentication methods: OAuth 2.0 (authorization code flow), Client Credentials (server-to-server), and Custom Auth (non-standard endpoints). See Allowing Integrate.io ETL access to any API with Universal OAuth to set one up.
- Tip: If the API you want to connect to appears in the pre-built list, select it for the simplest setup experience. If your API is not listed, use the Universal OAuth connection to configure authentication manually.
- Pre-built service connections – Ready-made connections for popular platforms, including: Google Analytics, Facebook Ads Insights, HubSpot (Service Token), HubSpot, Facebook Ads (Destination), Intercom, Xero, LinkedIn, Instagram, Google Sheets, Google Drive, YouTube, Shopify, Salesforce, Marketing Cloud (SOAP), and Marketing Cloud (REST).
Using a Universal OAuth Connection
When you select Connection as your authentication method:- A Choose connection dropdown appears. Select an existing connection or create a new one.
- The component will automatically attach the correct authentication header (typically
Authorization: Bearer {token}) to every outbound API request. - If you configured a custom authentication header in your connection (e.g.,
X-Shopify-Access-Tokenfor Shopify), that will be used instead, so no changes are needed in the Headers section. - Tokens are refreshed automatically when possible, so long-running jobs won’t fail due to token expiry mid-execution.
Request and response
Request
- method - The HTTP method. Select GET (default), POST, PATCH or PUT.
- URL - Enter the URL of your source endpoint.
- Headers - Optionally add request headers (names and values)
- Body - Optionally add a request body string
Pagination
Check Use pagination to have the source component make paginated requests. See here for list of supported API endpoints in addition to the standard link headers.- Pagination scheme - The method to paginate through response data (e.g. page number, offset+limit, cursor, link headers) and how to detect the final page.
- Automatic (Default) - the source detects the pagination scheme to use by the URL host/path.
- Jira - Use with hosted Jira installations.
- Magento - Use with hosted Magento installations.
- BigCommerce - Use with hosted BigCommerce installations.
- Elasticsearch - Use with hosted Elasticsearch installations.
- Link headers - the fallback option which will be used with the default automatic as well.
- Automatic (Default) - the source detects the pagination scheme to use by the URL host/path.
- Sleep interval between paginated requests (ms) - use to throttle API requests to avoid rate limitations. Default is 0 (no sleep).
- Maximum paginated requests - use to control the maximum number of pages for the source to go through. Default is unlimited, 0 or 1 means a single request will be made.
Response
Select the response type to determine how to parse the response from the API endpoint.- Raw - returns 3 fields: status code (integer), body (string) and headers (map).
- JSON - Response is processed using a JSONPath expression.
You can use a custom JSONPath expression to extract nested objects and arrays or the presets for object and array. Using the object preset, the response fields are the keys of the JSON object. Using the array preset, the response fields are the keys of the JSON objects within the array and each object is returned as a record in the component’s output. - Line Delimited JSON - Response is a single JSON object per line. Note that the response as a whole is not a valid JSON. The response fields are the keys of the JSON objects and each object is processed as a record.
- Line Delimited raw data - Response is broken to record per line. Useful when data contains records delimited by new line.
Extended JSON extraction
Setting this option to true enables extracting nested json fields into schema. As you can see on the screenshot below, each nested object property or array item can be selected directly in the schema section.




