Using the Registry REST API¶
You can use the registry REST API to perform CRUD operations on registry resources. This is not packed with WSO2 API Manager by default. Follow the instructions below to use the registry REST API with WSO2 API Manager.
- Download the registry REST API webapp.
- Copy the webapp to the
<API-M_HOME>/repository/deployment/server/webappsdirectory. -
Invoke the registry REST API.
For an example, you can use the following cURL command to get the content of the
app-tiers.xmlfile, in the following registry path_system/governance/apimgt/applicationdatacurl -X GET -H "Authorization: Basic <base64_encoded_username:password>=" -H "Content-Type: application/json" -H "Cache-Control: no-cache" "https://<hostname>:<port>/resource/1.0.0/artifact/_system/governance/apimgt/applicationdata/app-tiers.xml" -kcurl -X GET -H "Authorization: Basic YWRtaW46YWRtaW4=" -H "Content-Type: application/json" -H "Cache-Control: no-cache" "https://localhost:9443/resource/1.0.0/artifact/_system/governance/apimgt/applicationdata/app-tiers.xml" -kFor a complete reference of the available REST API operations, go to Resources with REST API.