Get specific security details of given application Id
get
/PASService/rest/services/v1/outboundApplications/{outboundApplicationId}/outboundSecurities
Gets specific security details of given application Id.
Request
Path Parameters
-
outboundApplicationId(required): string(guid)
Outbound Application Id
There's no request body for this operation.
Back to TopResponse
200 Response
This operation fetches details of specific security details of given application Id successfully.
Examples
Get specific security details of given application id. 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/107655E1-E7CE-45FA-A5CD-616A33E5875E/outboundSecurities"
Example Response Body
The following shows an example of the response body in JSON format:
{ "outboundApplications":{ "links":[ { "href":"http://server:port/PASService/rest/services/v1/outboundApplications/22E39E64-7876-4A61-B5FE-E45A291C54D", "rel":"self", "mediaType":"application/json", "method":"GET" }, { "href":"http://server:port/PASService/rest/services/v1/outboundApplications/22E39E64-7876-4A61-B5FE-E45A291C54D/outboundSecurities", "rel":"outboundSecurity", "mediaType":"application/json", "method":"GET" } ], "outboundApplicationId":"7D03B0C3-D2B5-4555-93A5-B39BAEB0C611", "eventName":"Billing", "environment":"Test", "createdGMT":"27-DEC-10 06.08.32.703000000 PM", "updatedGMT":"27-DEC-10 06.12.48.256000000 PM", "maxTimeOut":"100", "protocolType":"JMS", "outBoundConfiguration":{ "providerURL":"http://192.168.4.11:8011", "connectionFactory":"DownstreamMessageFactory", "destinationName":"DownstreamMessageQueue" }, "outboundSecurities":{ "links":[ { "href":"http://server:port/PASService/rest/services/v1/outboundApplications/107655E1-E7CE-45FA-A5CD-616A33E5875E/outboundSecurities/22E39E64-7876-4A61-B5FE-9E45A291C54D", "rel":"self", "mediaType":"application/json", "method":"GET" } ], "outboundSecurityId":"7D03B0C3-D2B5-4555-93A5-B39BAEB0C611", "outboundApplicationId":"107655E1-E7CE-45FA-A5CD-616A33E5875E", "createdGMT":"27-DEC-10 06.08.32.703000000 PM", "updatedGMT":"27-DEC-10 06.12.48.256000000 PM", "authType":"BASIC", "authentication":{ "userName":"John", "passWord":"Smith" } } } }