Inhalt
Untergeordnete Seiten (Anzeige untergeordneter Seiten)
The available Swagger UI for the Congree REST API is located in the following URL: http://localhost/congree/swagger
Congree REST API endpoints are located at http:///congree/api
Information
...
/congree/api/Information/v1/Version
...
Returns Congree Server and Web API versions
Codeblock | ||||
---|---|---|---|---|
| ||||
{
"CongreeWebApiVersion": "string",
"CongreeVersion": "string"
} |
Codeblock | ||||||
---|---|---|---|---|---|---|
| ||||||
{
"CongreeWebApiVersion": "5.0.14353.13448.20190325.Dev",
"CongreeVersion": "5.0.14353.13448.20190325.Dev"
} |
...
/congree/api/Information/v1/Components
...
Returns available components
The response structure corresponds to CongreeComponentInfo class, see Type definitions - IBulkCheckService - Auxiliary types.
Codeblock | ||||
---|---|---|---|---|
| ||||
[
{
"Id": "string",
"Name": "string"
}
] |
...
language | js |
---|---|
title | Response example |
collapse | true |
...