Use the POST dataStores/{{dataStoreId}}/actions/{{dataStoreActionId}}/invokeAction
endpoint to invoke an action for a data source instance. A 404
status code is returned for nonexistent action IDs. If the action produces a download file, the file will be returned directly in the response. Otherwise an ActionResult
will be returned.
Path parameters
Parameter |
Value |
Description |
dataStoreId |
string(required) |
ID of data store to which these actions belong to. |
dataStoreActionId |
string(required) |
ID of the action to get. |
Status codes
Code |
Reason |
200 |
Action invoked on Data store. |
404 |
Resource not found. |
Response schema definitions
ActionResult
- The result for non-download plugin actions.
Property |
Type |
Description |
message |
string |
The message from the completed action. |