Purpose
|
Request
|
URL
|
Fetch Data from an OData Service
|
GET
|
https://<myserver>:8443/api/odata/<myds>/<plural-name>
|
Create an Entity
|
POST
|
https://<myserver>:8443/api/odata/<myds><plural-name>
|
Update an Entity
|
POST
X-HTTP-Method:MERGE |
https://<myserver>:8443/api/odata/<myds><plural-name>('pkey')
|
Delete an Entity
|
DELETE
Or
POST
X-HTTP-Method:DELETE |
https://<myserver>:8443/api/odata/<myds><plural-name>('pkey')
|