OData ConnectorZappySys OData Connector provide read / write capability inside your app (see list below), using these drag and drop, high performance connector you can perform many OData operations without any coding. You can use this connector to integrate OData data inside apps like SSIS, SQL Server or popular ETL Platforms / BI Tools/ Reporting Apps / Programming languages (i.e. Informatica, Power BI, SSRS, Excel, C#, JAVA, Python). |
Integrate OData with these apps
Actions supported by OData Connector
OData Connector support following actions for REST API integration. If some actions are not listed below then you can easily edit Connector file and enhance out of the box functionality.
List Tables (JSON API)
[
Read more...
]
List Tables (XML API)
[
Read more...
]
Generic Read Data (JSON API)
[
Read more...
]
Parameter | Description |
---|---|
TableName |
|
Generic Read Data (XML API)
[
Read more...
]
Parameter | Description |
---|---|
TableName |
|
Read [$parent.name$]
[
Read more...
]
Generic Request
This is generic endpoint. Use this endpoint when some actions are not implemented by connector. Just enter partial URL (Required), Body, Method, Header etc. Most parameters are optional except URL. [
Read more...
]
Parameter | Description | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Url |
|
||||||||||||||||||||||||||
Body |
|
||||||||||||||||||||||||||
IsMultiPart |
|
||||||||||||||||||||||||||
Filter |
|
||||||||||||||||||||||||||
Headers |
|
Generic Request (Bulk Write)
This is a generic endpoint for bulk write purpose. Use this endpoint when some actions are not implemented by connector. Just enter partial URL (Required), Body, Method, Header etc. Most parameters are optional except URL. [
Read more...
]
Parameter | Description |
---|---|
Url |
|
IsMultiPart |
|
Filter |
|
Headers |
|
SQL examples for OData Connector
Use these example OData SQL queries in any ODBC-compatible application:
Read all records from an JSON OData Service Table [ Read more... ]
SELECT * FROM Customers
Read all records from an XML OData Service Table [ Read more... ]
SELECT * FROM read_data_xml WITH(TableName='MyTable')
Filter records using server side criteria [ Read more... ]
SELECT * FROM Customers WITH( SearchCriteria='Country -eq ''USA'' ')
Filter records using client side criteria [ Read more... ]
SELECT * FROM Customers WHERE Country = 'USA'
List all Tables (JSON Based Format) [ Read more... ]
SELECT * FROM list_tables_json
List all Tables (XML Based Format) [ Read more... ]
SELECT * FROM list_tables_xml