How to get a list of API requesters
You can use the HTTP method
GET
to obtain a list of the IBM® z/OS® Connect API requesters installed in the
runtime.
- HTTP method
- GET
- URI
- /zosConnect/apiRequesters
- Description
- Gets a list of the IBM z/OS Connect API requesters installed in the runtime, including some basic information and a URL for more detailed information.
- Security
- Users with
Admin
,Operations
orReader
authority can get a list of API requesters; users withInvoke
authority cannot.Note: A user must be a member of a global group to be able to see all the resources. For more information about user authorization, see Overview of IBM z/OS Connect security. - Response body
-
{ "apiRequesters":[ { "name":"{name}", "version":"{version}", "description":"{API requester description}", "status":"Started|Stopped", "apiRequesterUrl":"http(s)://{host}:{port}/zosConnect/apiRequesters/{name}" "connection":"{Endpoint Connection id}" }, ... repeats ] }
where apiRequesterUrl contains the URL where you can get more details for the specific API requester. For more information, see How to get details of an API requester.
- Example response body
-
{ "apiRequesters":[ { "name":"Book_Inventory", "version":"1.0.0", "description":"API requester for Book_Inventory app", "status":"Started", "apiRequesterUrl":"http://localhost:9080/zosConnect/apiRequesters/Book_Inventory" "connection":"BookConnref" } ] }