Attach different path parameters (URIs) to the Base URL to accomplish various actions in the Application.
Register New Developer
This request adds a new developer based on the JSON provided in the body of the message.
URI | /developers |
---|---|
HTTP | POST |
Sample
Example Input and Response
List Developer
This request lists details for the developer based on the Developer ID provided in the URI.
URI | /developers/{developerId} |
---|---|
HTTP | GET |
Response
Edit Developer
This request edits details for the developer based on the Developer ID provided in the URI.
URI | /developers/{developerId} |
---|---|
HTTP | PUT |
Sample
Example Input and Response
Registering New Application and Editing Existing Application
This request registers a new application if not registered previously as well as edits an application that is already present.
URI | /applications |
---|---|
HTTP | POST |
Query Parameter | clientId |
Sample
Example Input and Response
List Application based on Query parameter
This request lists names of applications listed for client Id provided in the Query Parameter.
URI | /applications |
---|---|
HTTP | GET |
Query Parameter | clientId |
Response
List Application based on Path parameter
This request lists details of applications for theApplication ID provided in the URI.
URI | /applications/{applicationId} |
---|---|
HTTP | GET |
Response
Unregister Application
This request removes an existing application based on the Application ID provided in URI.
URI | /applications/{applicationId} |
---|---|
HTTP | DELETE |
Response
Register Product
This request registers a Product within the Application with Application ID provided in the URI.
URI | /applications/{applicationId}/products |
---|---|
HTTP | POST |
Example
Response
List Products
request lists Products based on the access level provided in the Query Parameter.
URI | /products |
---|---|
HTTP | GET |
Query Parameter | accesslevel |
Example
Response
List APIs
This request lists APIs based on the API ID Provided in the URI.
URI | /apis/{apiId} |
---|---|
HTTP | GET |
Response
Return JSON for APIs
This request returns JSON for APIs based on the API ID provided in the URI.
URI | /apis/{apiId}.json |
---|---|
HTTP | GET |
Response
Deploy Project
This request deploys a Project based on the Project ID, Version and Server Group provided in the URI.
URI | /apis/{projectId}/{version}/deploy/{ServerGroup} |
---|---|
HTTP | PUT |
Response
UnDeploy Project
This request undeploys a project based on the Project ID, Version and Server Groups provided in the URI.
URI | /apis/{projectId}/{version}/undeploy/{ServerGroup} |
---|---|
HTTP | PUT |
Response
List Server Group URL
This request lists the URL of the Server Group provided in the URI.
URI | /enviornments/{Environment}/urls |
---|---|
HTTP | GET |