IBM webMethods Hybrid Integration

IBM webMethods Hybrid Integration

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.


#TechXchangePresenter
 View Only
Expand all | Collapse all

webMethods API Gateway Q&A - Retrieve Native endpoints for all APIs

  • 1.  webMethods API Gateway Q&A - Retrieve Native endpoints for all APIs

    Posted Tue November 07, 2023 04:29 AM

    Product/components used and version/fix level:

    Versions 10.11
    Operating Systems All Operating Systems

    Is there a way to get all Native endpoints details for respective APIs (Routing Policies > Endpoint configured)?


    #Tuesday-troubleshooting
    #API-Management
    #API-Gateway
    #webMethods


  • 2.  RE: webMethods API Gateway Q&A - Retrieve Native endpoints for all APIs

    Posted Tue November 07, 2023 04:29 AM

    The following REST call helps to retrieve native endpoints.

    POST http://localhost:5555/rest/apigateway/search

    Content-Type: application/json

    {  
    "types": [  
    "POLICY_ACTION"  
    ],  
    "scope": [  
    {  
    "attributeName": "templateKey",  
    "keyword": "straightThroughRouting"  
    }  
    ]  
    }  
    

    Note: Change the keyword according to the Routing policy.


    #API-Gateway
    #Tuesday-troubleshooting
    #webMethods
    #API-Management