Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Provides interface to perform generic extract

The rest api base path:  http://host:port/services/eagle/v2/generic/extract 

The rest api definition:    http://host:port/services/eagle/generic/extract/api-doc

Details how to get host and port you can find at REST Endpoints

Executing Generic Extract request

In order to get extract you should send POST request to the http://host:port/services/eagle/v2/generic/extract  and set query parameters in JSON format as a request body

Example:

curl -X POST -d @requestBody.json "http://host:port/services/eagle/v2/generic/extract"

requstBody.json content:

{
"extractParameters": [
{
"name":"maxrows",
"value":"1"
},{
"name":"OutputFormat",
"value":"JSON"
}
],
"extracts": [
{
"name":"ENTITYEXTRACT"
},
{
"name":"SMFEXTRACT"
}
]
}
In response you will get ZIP archive with extract files or TSR in JSON format in case no data was extracted or some errors occurred
  • No labels