Get details of given application id and its corresponding security

get

/PASService/rest/services/v1/outboundApplications/{outboundApplicationId}

Gets the details of given application id and its corresponding security.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

200 Response

This operation fetches details of given application Id and its corresponding security successfully.
Back to Top

Examples

Get details of given application id and its corresponding security. For more information on Downstream Message Push parameters, refer to Downstream Message Push Parameters.

Example cURL Command

Use the following cURL command to submit a request on the REST resource:

curl \
   -X GET \
   -H "Content-Type: application/json" \
   -u 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \ 
   -L "http://server:port/PASService/rest/services/v1/outboundApplications/22E39E64-7876-4A61-B5FE-E45A291C54D"

Example Response Body

The following shows an example of the response body in JSON format:

{
    "count": 1,
    "offset": 0,
    "limit": 1,
    "outboundApplications": [
        {
            "links": [
                {
                    "href": "http://server:port/PASService/rest/services/v1/outboundApplications/51745A97-76C9-40B3-B4C4-6CE896F64126/outboundSecurities",
                    "rel": "outboundSecurities",
                    "mediaType": "application/json",
                    "method": "GET"
                },
                {
                    "href": "http://server:port/PASService/rest/services/v1/outboundApplications/51745A97-76C9-40B3-B4C4-6CE896F64126",
                    "rel": "self",
                    "mediaType": "application/json",
                    "method": "GET"
                }
            ],
            "outBoundApplicationId": "51745A97-76C9-40B3-B4C4-6CE896F64126",
            "eventName": "QABilling5",
            "environment": "Development",
            "maxTimeOut": "6000",
            "protocolType": "JMS",
            "outBoundConfiguration": {
                "providerUrl": "http://server:port/",
                "connectionFactory": "DownstreamMessagePushConnectionFactory",
                "destinationName": "DownstreamMessagePushQueue",
                "timeToLive": "6000",
                "priorityLevel": 4,
                "deliveryMode": "DeliveryMode.PERSISTENT",
                "acknowledgementMode": "AUTO_ACKNOWLEDGE"
            },
            "outboundSecurity": {
                "links": [
                    {
                        "href": "http://server:port/PASService/rest/services/v1/outboundApplications/51745A97-76C9-40B3-B4C4-6CE896F64126/outboundSecurities",
                        "rel": "self",
                        "mediaType": "application/json",
                        "method": "GET"
                    }
                ],
                "fields": null,
                "multiFields": null,
                "codes": null,
                "outboundSecurityGUID": "B505CB28-6909-42DF-B9E8-A9A814CA9D31",
                "outboundApplicationGUID": "51745A97-76C9-40B3-B4C4-6CE896F64126",
                "authType": "BASIC",
                "authentication": {
                    "userName": "admin",
                    "password": "6BWYeciXwE/8PJrnWQ7syQ=="
                },
                "createdGMT": "2022-12-13T13:12:30Z",
                "updatedGMT": "2022-12-14T08:04:43Z"
            },
            "createdGMT": "2022-12-13T13:12:30Z",
            "updatedGMT": "2022-12-14T08:04:43Z"
        }
    ]
}


Back to Top