Attach different path parameters (URIs) to the Base URL to accomplish various actions in the Application.
Register New Developer
This request adds new developer based on the JSON provided in the body.
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 new application if not registered previously and also 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
Lists names of application for client Id provided in the Query Parameter.
URI | /applications |
---|---|
HTTP | GET |
Query Parameter | clientId |
Response
List Application based on Path parameter
Lists details of the application for theApplication Id provided in the URI.
URI | /applications/{applicationId} |
---|---|
HTTP | GET |
Response
Unregister Application
This request removes an existing application based on Application Id provided in URI.
URI | /applications/{applicationId} |
---|---|
HTTP | DELETE |
Response
Register Product
Register Product in Application with Application Id provided in the URI.
URI | /applications/{applicationId}/products |
---|---|
HTTP | POST |
Example
Response
List Products
List Products based on access level provided in Query Parameter.
URI | /products |
---|---|
HTTP | GET |
Query Parameter | accesslevel |
Example
Response
List APIs
List APIs based on API ID Provided in the URI.
URI | /apis/{apiId} |
---|---|
HTTP | GET |
Response
Return JSON for APIs
Return JSON for APIs based on the API ID provided in the URI.
URI | /apis/{apiId}.json |
---|---|
HTTP | GET |
Response
Deploy Project
Deploy Project based on the Project ID, Version and Server Group in the URI.
URI | /apis/{projectId}/{version}/deploy/{ServerGroup} |
---|---|
HTTP | PUT |
Response
UnDeploy Project
UnDeploy project based on the Project ID, Version and Server Groups in the URI.
URI | /apis/{projectId}/{version}/undeploy/{ServerGroup} |
---|---|
HTTP | PUT |
Response
List Server Group URL
Lists the URL of the Server Group provided in the URI.
URI | /ServerGroups/{ServerGroup}/urls |
---|---|
HTTP | GET |