Get Web Application Connector data
Use this resource to retrieve the data of an active Web Application Connector in INUBIT.
Request
To retrieve the data, send a POST request to the endpoint defined below.
URL: /webapp/{id}
Method: POST
Authorization: required
POST /ibis/rest/webapp/2082ed32-7f00-0101-4530-9c08b2617e57 HTTP/1.1
Accept: application/xml
Host: localhost:8000
Path Parameters
The following table lists the parameters for this request.
| Name | Description | Required | Allowed values |
|---|---|---|---|
|
Enter the unique ID assigned to the Web Application Connector. |
yes |
Alphanumeric string with hyphens |
Request Body
The request body must contain the specific criteria for the data retrieval.
<Properties version="4.1">
<Property name="ISPortalUser">test1</Property>
<Property name="ISPortalTenant">Liferay</Property>
<Property name="ISSessionId">199F71D8859D8A0A5A4C9B6C2D4FF712</Property>
<Property name="ISPortletActionUrl">/webapp/standalone/submit/2082ed32-7f00-0101-4530-9c08b2617e57</Property>
<Property name="ISUserName">inubitISPortalUser@@@intern</Property><Property name="ISWebContextPath"/>
<Property name="ISPortletNamespace">i_LiferayMVCPortlet_INSTANCE_AfYrAMY2vHql</Property>
<Property name="ISParameters"><?xml version="1.0" encoding="UTF-8"?><Parameters version="4.1"/></Property>
<Property name="ISWebLanguage">en</Property>
</Properties>
Response
The response contains the requested Web Application Connector data.
HTTP/1.1 200 OK
Content-Type: application/xml
<Form version="2.0" metric="px">
<Request>
<Panel background="#ffffff" name="main" start="true" orientation="vertical">
<Group orientation="horizontal">
<Group orientation="vertical">
<Label name="Label_2064279055" label="Company*" height="22"/>
<Label name="Label_880520722" escape="false" wrap="false" label="Street*" height="22"/>
<Label name="Label_860678083" label="City*" height="22"/>
<Label name="Label_1058936742" label="Article no.*" height="22"/>
<Label name="Label_446516069" label="Email address*" escape="false" height="22"/>
</Group>
<Group orientation="vertical">
<Group orientation="vertical">
<TextField width="300" name="TextField_191698769" mandatory="true" editable="true" enabled="true" visible="true"/>
<TextField width="300" name="TextField_2061931293"/>
<TextField width="300" name="TextField_745884218"/>
<TextField width="300" name="TextField_1676930903"/>
<TextField width="300" name="TextField_2040483458"/>
</Group>
<Group orientation="table" name="Group_327385993" valign="bottom">
<Row>
<Column>
<Button validate="false" name="Button_122079568" event="cancel()" label="Cancel" valign="bottom"/>
</Column>
<Column>
<Filler name="Filler_1673331712" size="50"/>
</Column>
<Column>
<Button validate="false" name="Button_948528158" label="Submit" event="submit(value)" valign="bottom"/>
</Column>
</Row>
</Group>
</Group>
</Group>
</Panel>
</Request>
</Form>
Errors
This request might return one of the following error codes:
- Authorization Failed (401)
-
Authorization with the given username and password failed. Please revisit both values and provide valid credentials.
{
"statusCode": 401,
"message": "Unauthorized access",
"path": "/rest/<endpoint>",
"timestamp": "2025-06-07T14:21:11.781"
}
- Resource Not Found (404)
-
The 404 (Not Found) status code indicates that the requested endpoint or resource is unavailable or does not exist on the server.
- Server Error (500)
-
Execution on the INUBIT server failed. Have a look into the response message, otherwise access to the INUBIT log is required to retrieve further information.
{
"statusCode": 500,
"message": "Internal Server Error",
"path": "/rest/<endpoint>",
"timestamp": "2025-08-06T12:55:31.862"
}
- Service Unavailable (503)
-
In maintenance mode the INUBIT server endpoint will not respond to incoming requests but return this error response. Once the maintenance mode is switched off the endpoint will respond normally.
{
"statusCode": 503,
"message": "Service Unavailable",
"path": "/rest/<endpoint>",
"timestamp": "2025-08-06T12:58:06.688"
}