...
Resource path
...
/session
...
HTTP method
...
GET
This operation returns a session id which should be appended to all subsequent API calls where this parameter is applicable.
Resource path | /session |
---|---|
HTTP method | GET |
Rw ui textbox macro | |||||
---|---|---|---|---|---|
| |||||
Example
|
Close Session
Resource path: /session/close?sessionid=<sessionid>
HTTP method: GET
This operation closes a session. This session id is no longer valid for any subsequent API calls.
Resource path | /session/close?sessionid=<sessionid> |
---|---|
HTTP method | GET |
Rw ui textbox macro | |||||
---|---|---|---|---|---|
| |||||
Example - Closing a session
|
Get Reference Data Profiles
Resource path: /refdatas
HTTP method: GET
This This operation retrieves a list of all Reference Data profiles that are available to the user.
Resource path | /refdatas |
---|---|
HTTP method | GET |
Rw ui textbox macro | |||||
---|---|---|---|---|---|
| |||||
Example - Retrieving a list
|
Get Metadata
Resource path: /refdatas/<Reference Data profile>/table/<table name>?sessionid=<session id>
HTTP method: GET
This operation retrieves table metadata that can be used for grid configuration, export, and Import configuration etc. If Last Update feature is enabled, the values stored in the most recent Last Update user and timestamp column will be retrieved as well. The result is returned synchronously.
...
Resource path | /refdatas/<Reference Data profile>/table/<table name>?sessionid=<session id> |
---|---|
HTTP method | GET |
rw-ui-textbox-macro | |||||
---|---|---|---|---|---|
| |||||
Example - Get metadata
|
Get Query
Resource path: /refdatas/<Reference Data profile>/table/<table name>/rowset?sessionid=<session id>
HTTP method: PUT
Resource path:
This operation executes database queries on specific a Reference Data profile and database table. The query is performed asynchronously and control is returned immediately. You can retrieve the result of the query by using /rowset/<rowset number>?sessionid=<session id>
. This operation requires JSON payload as input.
...
Resource path | /refdatas/<Reference Data profile>/table/<table name>/rowset?sessionid=<session id> |
---|---|
HTTP method | PUT |
Rw ui textbox macro | |||||
---|---|---|---|---|---|
| |||||
Example - Get query
|
Rw ui textbox macro | |||||
---|---|---|---|---|---|
| |||||
Example json
|
Get Data Sets
Resource path: /rowset/<rowset number>?sessionid=<session id>
HTTP method: GET
Data sets can be retrieved once downloaded to the file system of the Platform. This operation returns a data set for the given rowset (sequence number). The total number of available data sets can be queried with the status
operation.
...
Resource path | /rowset/<rowset number>?sessionid=<session id> |
---|---|
HTTP method | GET |
Rw ui textbox macro | |||||
---|---|---|---|---|---|
| |||||
Example - Get data sets
|
...