Update outbound application security

put

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

Updates the details of outbound application 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 the outbound application security details successfully.
Back to Top

Examples

This example describes how to update security details of given OutboundApplicationId. 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/107655E1-E7CE-45FA-A5CD-616A33E5875E/outboundSecurities" \
     -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:

{
   "outboundSecurity":{
      "authType":"BASIC",
      "authentication":{
         "userName":"John",
         "password":"Smith"
      }
   }
}

Example Response Body

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

{
    "outboundSecurities": [
        "5C535DB2-616E-4319-A9E1-3CFDEB3E86C9"
    ]
}
Back to Top