Apinizer Documentation Management API Current: Report APIs Report APIs Report APIs are the services used to list the environments on Apinizer.1.Get All API ProxiesDescription/Purpose: After successfully accessing this service, all API Proxies on Apinizer are listed.Authorization: The user must have an admin role to access this service.Endpoint: https://<APINIZER_MANAGER_ADDRESS>/apiops/reports/api-proxiesHTTP Method: GETRequest Headers:HeaderValueAuthorization<ACCESS_TOKEN> In order to access this endpoint, a token is required.For detailed information on how to obtain a token, please visit the Authentication API page. Acceptapplication/jsonRequest Body: (none)Response:StatusStatus CodeDescriptionBodySuccess200successful operation{ "status": "SUCCESS", "resultList": [ { "apiName": "API Proxy Name", "apiUrl": "---", "apiType": "SOAP", "projectName": "default", "apiSpecUrl": "----", "apiRelativePath": "----", "soapToRest": false, "deployed": true, "routingAddressList": [ "---" ], "backendSpecUrl": "---" } ]}Error400bad request{ "error": "...", "error_description": "..."}Error401not authorized for this operation{ "error": "unauthorized_client", "error_description": "..."}Error500internal error{ "error": "...", "error_description": "..."} ×