Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


Access the data service using CRUD operations

Open a command prompt execute the following CURL commands using CRUD operations:

  • To get the service document:

    Code Block
    curl -X GET -H 'Accept: application/json' https://localhost:9443/odata/dataservice/DatasourceID{data_service_name}/{data_soure_id}
  • To get the metadata of the service:

    Code Block
    curl -X GET -H 'Accept: application/xml' https://localhost:9443/odata/dataservice/DatasourceID{data_service_name}/{data_soure_id}/$metadata
  • To read details from the ACCOUNT table:

    Code Block
    curl -X GET -H 'Accept: application/xml' https://localhost:9443/odata/dataservice/DatasourceID{data_service_name}/{data_soure_id}/ACCOUNT