Update outbound application

put

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

Updates the details of outbound application and security.

Request

Path Parameters
Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: string
Back to Top

Response

204 Response

This operation updates a outbound application and its security successfully.
Back to Top

Examples

This example describes how to update the details of outbound application and 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 PUT \
     -H "Accept: application/json" \
     -H "Content-Type: application/json" \
     -u 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
     -L "http://server:port/PASService/rest/services/v1/outboundApplications/7D03B0C3-D2B5-4555-93A5-B39BAEB0C611" \
     -d '{"Use this placeholder to plug-in the example request body given below"}'

Example Request Body

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

 
{
 "outboundApplications":
    {
      "eventName": "QABilling007",
      "environment": "TEST79",
      "protocolType": "JMS",
      "outBoundConfiguration": {
        "providerUrl": "http://server:port/",
        "connectionFactory": "DownstreamMessagePushConnectionFactory",
        "destinationName": "DownstreamMessagePushQueue"
      }
    }
}

Example Response Body

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

{
    "outboundApplication": [
        "56BCF103-C871-4322-BFA2-10BC95CA765B"
    ]
}
Back to Top