Versions Compared

Key

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

...

The baseport is 20000 + 220 = 20220 and the REST API port is 20427.

...

Access the page with the list of available Swagger definitions at  http://appserverhostname:20427/eagle/v2/api-doc. This link provides a JSON document with the list of all available APIs grouped by resources.

...

Full extract SWAGGER definition at http://appserverhostname:20427/eagle/v2/extract/api-doc.

...

Access the SWAGGER for a Warehouse group that you can use at: http://xn--http-4b7a//appserverhostname:20427/eagle/v2/extract/api-doc.

Web Server REST Endpoints

...

In case of a GET request, you can pass filter parameters as a query parameter as shown below:
http://appserverhostname:20427/eagle/v2/entities?maxrows=1

Similarly, with With a POST request, you can pass filter parameters within a JSON body with multiple parameters separated by a comma:

Code Block
languagejs
titlePOST Request Example
http://appserverhostname:20427/eagle/v2/entities
	{
		"maxrows": "1"
	}

In 2017R2For 2017R2, this is the format:

http://webserver/eagle/v2/entities?maxrows=1

...