Get details of 100 latest records of outboundApplication

get

/PASService/rest/services/v1/outboundApplications

Gets details of 100 latest records of outboundApplication.

Request

Query Parameters
  • When this parameter is provided, the specified children are included in the resource payload (instead of just a link). The value of this query parameter is "all" or "the name of the child resource". More than one child can be specified using comma as a separator. Example:?expand=Employees,Localizations. Nested children can also be provided following the format "Child.NestedChild" (Example: ?expand=Employees.Managers). If a nested child is provided (Example: Employees.Managers), the missing children will be processed implicitly. For example, "?expand=Employees.Managers" is the same as "?expand=Employees,Employees.Managers" (which will expand Employees and Managers). More than one child can be specified using comma as a separator. For example: "?expand=Employees,Localizations". Nested children can also be provided following the format: "Child.NestedChild" For example:"?expand=Employees.Managers" If a nested child is provided (Example:Employees.Managers), the missing children will be processed implicitly i.e.,"?expand=Employees.Managers" is the same as "?expand=Employees,Employees.Managers", which will expand both Employees and Managers.
  • This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.
  • Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.
  • This query parameter defines the where clause. The resource collection will be queried using the provided expressions. The value of this query parameter is one or more expressions. Example: ?q=Deptno>=10 and <= 30;Loc!=NY.

There's no request body for this operation.

Back to Top

Response

200 Response

This operation fetches details of 100 latest records of outboundApplication successfully.
Back to Top

Examples

Get details of 100 latest records of outboundApplication. 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?expand=all"

Example Response Body

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

{
   "count":"100",
   "offset":"0",
   "limit":"100",
   "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",
               "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"
         }
      }
   }
}

Back to Top