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

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)?

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.