Supported OData operations and data types
- Last Updated: March 6, 2025
- 1 minute read
- Hybrid Data Pipeline
- Version 4.6
- Documentation
Supported OData API operations
The following table shows the operations that can be performed and their associated URLs. Query the data source name to get a list of the valid entities.
In the URL examples in this table,
<myserver> is the DNS name or the IP address of the machine on which Hybrid Data Pipeline is installed.
<myds> is the name of your Hybrid Data Pipeline data source.
<plural-name> is the name you designate in your schema map for entity plurals. In the schema map, Hybrid Data Pipeline pluralizes the table name automatically. You use the plural entity name in OData requests.
pkey is the primary key.
| Purpose | Request | URL |
|---|---|---|
| Fetch Data from an OData Service |
|
https://<myserver>:8443/api/odata/<myds>/<plural-name> |
| Create an Entity |
|
https://<myserver>:8443/api/odata/<myds><plural-name> |
| Update an Entity |
|
https://<myserver>:8443/api/odata/<myds><plural-name>('pkey') |
| Delete an Entity |
Or
|
https://<myserver>:8443/api/odata/<myds><plural-name>('pkey') |