- Created by Former user, last modified on Sept 26, 2016
You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 17 Next »
Expand a topic to see the relevant APIs:
Note: Before you add or delete users from your tenant, you must first log in to your tenant space in the Cloud as admin.
Login
Description | Log in to WSO2 Cloud's tenant space as admin. |
URI | https://cloudmgt.cloud.wso2.com/cloudmgt/site/blocks/user/authenticate/ajax/login.jag |
URI Parameters |
|
HTTP Methods | POST |
Example | curl -c cookies -k -v -X POST https://cloudmgt.cloud.wso2.com/cloudmgt/site/blocks/user/authenticate/ajax/login.jag -d 'action=login&userName=myemail@wso2.com &password=adminpassword' |
addUserToTenant
Description | Create a new user in the Cloud |
URI | https://cloudmgt.cloud.wso2.com/cloudmgt/site/blocks/tenant/users/add/ajax/add.jag |
URI Parameters |
|
HTTP Methods | POST |
Example | curl -k -v -X POST https://cloudmgt.cloud.wso2.com/cloudmgt/site/blocks/tenant/users/add/ajax/add.jag -b cookies -H 'ContentType:application/xwwwformurlencoded' -H 'AcceptLanguage:enUS,en;q=0.5' -d 'action=addUserToTenant&userEmail=myemail@wso2.com&password=testPassword&firstName=testFirstName&lastName=testLastName&roles=subscriber' |
deleteUserFromTenant
Description | Delete an existing user from your tenant |
URI | https://cloudmgt.cloud.wso2.com/cloudmgt/site/blocks/tenant/users/add/ajax/add.jag |
URI Parameters |
|
HTTP Methods | POST |
Example | curl -b cookies -k -v -X POST https://cloudmgt.cloud.wso2.com/cloudmgt/site/blocks/tenant/users/add/ajax/add.jag -H 'ContentType:application/xwwwformurlencoded' -H 'AcceptLanguage:enUS,en;q=0.5' -d 'action=deleteUserFromTenant&userName=myemail@wso2.com' |
Note: When you access any API other than the login and logout APIs through an external REST client such as cURL, first invoke the login API to ensure that user is authenticated. When the login API is invoked, the system stores the generated session cookie in a file, which we use in the next API invocations.
The responses is a JSON message.
Login
Description | Log in to API Publisher web application. |
URI | https://api.cloud.wso2.com/publisher/site/blocks/user/login/ajax/login.jag |
URI Parameters | action=login&username=xxx&password=xxx |
HTTP Methods | POST |
Example | curl -X POST -c cookies https://api.cloud.wso2.com/publisher/site/blocks/user/login/ajax/login.jag -d 'action=login&username=<user name>&password=xxx' The <user name> should be email@organization_key with @ in the e-mail replaced by dot. For example, if the e-mail is jhon@gamil.com, the <user name> should be jhon.gmail.com@organization_key. You can find the organization_key on the Manage page of the cloud. |
Logout
Description | Log out from API Publisher web application. |
URI | https://api.cloud.wso2.com/publisher/site/blocks/user/login/ajax/login.jag |
URI Parameters | ?action=logout |
HTTP Methods | GET |
Example | curl -b cookies https://api.cloud.wso2.com/publisher/site/blocks/user/login/ajax/login.jag?action=logout |
Add API
Description | Add a new API. | ||||||||||||||||||||||||||||||||||||||||
URI | https://api.cloud.wso2.com/publisher/site/blocks/item-add/ajax/add.jag | ||||||||||||||||||||||||||||||||||||||||
URI Parameters | Given below are the parameters that you can pass with an Add-API call. Mandatory ones are marked with a *.
| ||||||||||||||||||||||||||||||||||||||||
HTTP Methods | POST | ||||||||||||||||||||||||||||||||||||||||
Example | curl -X POST -b cookies https://api.cloud.wso2.com/publisher/site/blocks/item-add/ajax/add.jag -d "action=addAPI&name=PhoneVerification&context=/phoneverify&version=1.0.0&visibility=public&thumbUrl=&description=Verify a phone number&tags=phone,mobile,multimedia&endpointType=nonsecured&tiersCollection=Gold,Bronze&http_checked=http&https_checked=https&resourceCount=0&resourceMethod-0=GET&resourceMethodAuthType-0=Application&resourceMethodThrottlingTier-0=Unlimited&uriTemplate-0=/*&default_version_checked=default_version&bizOwner=xx&bizOwnerMail= xx@ee.com &techOwner=xx&techOwnerMail= ggg@ww.com " -d'endpoint_config={"production_endpoints":{"url":" https://ws.cdyne.com/phoneverify/phoneverify.asmx","config":null},"endpoint_type":"http "}'; |
Update API
Description | Update an existing API |
URI | https://api.cloud.wso2.com/publisher/site/blocks/item-add/ajax/add.jag |
URI Parameters | Parameters are same as in Add API except that a ction= updateAPI and you can only update the following parameters: visibility, thumbUrl, description, tags, endpointType, endpoint_config (can change the endpoint URL etc,) http_checked, https_checked, tiersCollection, swagger and can also add new resources. See example below. |
HTTP Methods | POST |
Example | Update API : curl -X POST -b cookies https://api.cloud.wso2.com/publisher/site/blocks/item-add/ajax/add.jag -d "action=updateAPI&name=PhoneVerification&provider=admin&version=1.0.0&visibility=public&description=Youtube Live Feeds&endpointType=nonsecured&http_checked=http&https_checked=https&tags=youtube,gdata,multimedia&tier=Silver&thumbUrl= https://www.10bigideas.com.au/www/573/files/pf-thumbnail-youtube_logo.jpg&context=/youtube&tiersCollection=Gold,silver&resourceCount=0&resourceMethod-0=GET&resourceMethodAuthType-0=Application&resourceMethodThrottlingTier-0=Unlimited&uriTemplate-0=/*" -d'endpoint_config={"production_endpoints":{"url":"https://gdata.youtube.com/feeds/api/standardfeeds","config":null},"endpoint_type":"http"}'; |
Get All APIs
Description | Lists all the created APIs. |
URI | https://api.cloud.wso2.com/publisher/site/blocks/listing/ajax/item-list.jag |
URI Parameters | ?action=getAllAPIs |
HTTP Methods | GET |
Example | curl -b cookies https://api.cloud.wso2.com/publisher/site/blocks/listing/ajax/item-list.jag?action=getAllAPIs |
Get an API
Description | Get details of a specific API. |
URI | https://api.cloud.wso2.com/publisher/site/blocks/listing/ajax/item-list.jag |
URI Parameters | action=getAPI&name=xxx&version=xxx&provider=xxx |
HTTP Methods | POST |
Example | curl -X POST -b cookies https://api.cloud.wso2.com/publisher/site/blocks/listing/ajax/item-list.jag -d 'action=getAPI&name=API1&version=1.0.0&provider=user1' |
Remove an API
Description | Remove an API. |
URI | https://api.cloud.wso2.com/publisher/site/blocks/item-add/ajax/remove.jag |
URI Parameters | action=removeAPI&name=xxx&version=xxx&provider=xxx |
HTTP Methods | POST |
Example | curl -X POST -b cookies https://api.cloud.wso2.com/publisher/site/blocks/item-add/ajax/remove.jag -d 'action=removeAPI&name=API1&version=1.0.0&provider=user1' |
Copy an API
Description | Copy an API to a newer version. |
URI | https://api.cloud.wso2.com/publisher/site/blocks/overview/ajax/overview.jag |
URI Parameters | action=createNewAPI&provider=xxx&apiName=xxx&version=xxx&newVersion=xxx |
HTTP Methods | POST |
Example | curl -X POST -b cookies https://api.cloud.wso2.com/publisher/site/blocks/overview/ajax/overview.jag -d "action=createNewAPI&provider=user1&apiName=API1&version=1.0.0&newVersion=2.0.0&isDefaultVersion=default_version" |
Check Older Version
Description | Does older version of API exist. |
URI | https://api.cloud.wso2.com/publisher/site/blocks/life-cycles/ajax/life-cycles.jag |
URI Parameters | action=isAPIOlderVersionExist&provider=xxx&name=xxx&version=xxx |
HTTP Methods | POST |
Example | curl -X POST -b cookies https://api.cloud.wso2.com/publisher/site/blocks/life-cycles/ajax/life-cycles.jag ?action=isAPIOlderVersionExist&provider=user1&name=API1&version=1.0.0 |
Change API Status
Description | Change the API's status. |
URI | https://api.cloud.wso2.com/publisher/site/blocks/life-cycles/ajax/life-cycles.jag |
URI Parameters | action=updateStatus&name=xxx&version=1.0.0&provider=apiCreateName&status=PUBLISHED&publishToGateway=true&requireResubscription=true |
HTTP Methods | POST |
Example | curl -X POST -b cookies https://api.cloud.wso2.com/publisher/site/blocks/life-cycles/ajax/life-cycles.jag -d 'action=updateStatus&name=TwitterAPI&version=1.0.0&provider=provider&status=PUBLISHED&publishToGateway=true&requireResubscrip |
Add/Update an API Document
Description | Add a new API document. |
URI | https://api.cloud.wso2.com/publisher/site/blocks/documentation/ajax/docs.jag |
URI Parameters | Add Document: action=addDocumentation&provider=xxx&apiName=xxx&version=xxx&docName=xxx&docType=xxx&sourceType=xxx&docUrl=xxx&summary=xxx&docLocation=xxx&docVisibility=owner_only/private Add Document file: action=addDocumentation&provider=xxx&apiName=xxx&version=xxx&docName=xxx&docType=xxx&sourceType=xxx&docUrl=xxx&summary=xxx&docLocation=xxx Update Document: action=addDocumentation&mode=Update&provider=xxx&apiName=xxx&version=xxx&docName=xxx&docType=xxx&sourceType=xxx&docUrl=xxx&summary=xxx&docLocation=xxx |
HTTP Methods | POST |
Example | Add Document: curl -X POST -b cookies https://api.cloud.wso2.com/publisher/site/blocks/documentation/ajax/docs.jag -d "action=addDocumentation&provider=admin&apiName=PhoneVerification&version=1.0.0&docName=testDoc&docType=how to&sourceType=inline&docUrl=&summary=testing&docLocation=" Add Document file: curl -X POST -b cookies https://api.cloud.wso2.com/publisher/site/blocks/documentation/ajax/docs.jag -F "action=addDocumentation" -F "provider=admin" -F "apiName=testAPi" -F "version=1.0.0" -F "docName=testDoc2" -F "docType=how to" -F "sourceType=file" -F "docUrl=" -F "summary=testing" -F "docLocation=@test.txt" Update Document: curl -X POST -b cookies https://api.cloud.wso2.com/publisher/site/blocks/documentation/ajax/docs.jag -d "action=addDocumentation&mode=Update&provider=admin&apiName=PhoneVerification&version=1.0.0&docName=testDoc&docType=how to&sourceType=inline&docUrl=&summary=new summary&docLocation=" |
Remove an API Document
Description | Remove an API document. |
URI | https://api.cloud.wso2.com/publisher/site/blocks/documentation/ajax/docs.jag |
URI Parameters | action=removeDocumentation&provider=xxx&apiName=xxx&version=xxx&docName=xxx&docType=xxx |
HTTP Methods | POST |
Example | curl -X POST -b cookies https://api.cloud.wso2.com/publisher/site/blocks/documentation/ajax/docs.jag -d 'action=removeDocumentation&provider=admin&apiName=API1&version=1.0.0&docName=doc1&docType=How To' |
Get all Throttling Tiers
Description | Get the throttling tiers that can be applied to APIs |
URI | https://api.cloud.wso2.com/publisher/site/blocks/item-add/ajax/add.jag? |
URI Parameters | action=getTiers |
HTTP Methods | GET |
Example | curl -b cookies https://api.cloud.wso2.com/publisher/site/blocks/item-add/ajax/add.jag?action=getTiers |
Check if API Exists
Description | Check if an API by a given name exists in the API Publisher |
URI | https://api.cloud.wso2.com/publisher/site/blocks/item-add/ajax/add.jag |
URI Parameters | action=isAPINameExist&apiName=<name of the API> |
HTTP Methods | GET |
Example | curl -b cookies " https://api.cloud.wso2.com/publisher/site/blocks/item-add/ajax/add.jag?action=isAPINameExist&apiName=PhoneVerification" |
Validate Roles
Description | Check if the user logged in user is any one in a given list of users |
URI | https://api.cloud.wso2.com/publisher/site/blocks/item-add/ajax/add.jag |
URI Parameters | action=validateRoles&roles=<list of roles> |
HTTP Methods | GET |
Example | curl -b cookies " https://api.cloud.wso2.com/publisher/site/blocks/item-add/ajax/add.jag?action=validateRoles&roles=admin" |
Login
Description | Log in to API Store. |
URI | https://api.cloud.wso2.com/store/site/blocks/user/login/ajax/login.jag |
URI Parameters | action=login&username=xxx&password=xxx |
HTTP Methods | POST |
Example | curl -X POST -c cookies https://api.cloud.wso2.com/store/site/blocks/user/login/ajax/login.jag -d 'action=login&username=user1&password=xxx' |
Logout
Description | Log out from API Store. |
URI | https://api.cloud.wso2.com/store/site/blocks/user/login/ajax/login.jag |
URI Parameters | ?action=logout |
HTTP Methods | GET |
Example | curl -b cookies https://api.cloud.wso2.com/store/site/blocks/user/login/ajax/login.jag?action=logout |
User Signup
Description | Add a new API Consumer. |
URI | https://api.cloud.wso2.com/store/site/blocks/user/sign-up/ajax/user-add.jag |
URI Parameters | action=addUser&username=xxx&password=xxx&allFieldsValues=firstname|lastname|email |
HTTP Methods | POST |
Example | curl -X POST -b cookies https://api.cloud.wso2.com/store/site/blocks/user/sign-up/ajax/user-add.jag -d 'action=addUser&username=user2&password=xxx&allFieldsValues=firstname|lastname|email' |
Search APIs
Description | Search for APIs using a given query. |
URI | https://api.cloud.wso2.com/store/site/blocks/search/api-search/ajax/search.jag |
URI Parameters | action=searchAPIs&query=<query>&start=<number>&end=<number> The |
HTTP Methods | POST |
Example | curl -X POST -b cookies "https://api.cloud.wso2.com/store/site/blocks/search/api-search/ajax/search.jag" -d "action=searchAPIs&query=test&start=0&end=3" |
Get all Paginated Published APIs
Description | Get a list of all published APIs in paginated form so that browsing is easier. |
URI | https://api.cloud.wso2.com /store/site/blocks/api/listing/ajax/list.jag |
URI Parameters | action=getAllPaginatedPublishedAPIs, tenant, start, end |
HTTP Methods | GET |
Example | curl -b cookies https://api.cloud.wso2.com/store/site/blocks/api/listing/ajax/list.jag?action=getAllPaginatedPublishedAPIs&tenant=carbon.super&start =0&end=2 |
Please note that the getAllPublishedAPIs
API is deprecated. You can get the same functionality from getAllPaginatedPublishedAPIs
.
Get Published APIs by Application
Description | Get a list of published APIs filtered by the subscribed Application. Login API needs be called prior to calling this API. |
URI | https://api.cloud.wso2.com/store/site/blocks/subscription/subscription-list/ajax/subscription-list.jag |
URI Parameters | action=getSubscriptionByApplication&app=App1 |
HTTP Methods | GET |
Example | curl -b cookies https://api.cloud.wso2.com/store/site/blocks/subscription/subscription-list/ajax/subscription-list.jag?action=getSubscriptionByApplication&app=App1 |
Add an Application
Description | Add a new application. |
URI | https://api.cloud.wso2.com/store/site/blocks/application/application-add/ajax/application-add.jag |
URI Parameters | action=addApplication&application=xxx&tier=xxx&description=xxx&callbackUrl |
HTTP Methods | POST |
Example | curl -X POST -b cookies https://api.cloud.wso2.com/store/site/blocks/application/application-add/ajax/application-add.jag -d 'action=addApplication&application=app1&tier=Gold&description=&callbackUrl=' |
Update an Application
Description | Update an existing application. |
URI | https://api.cloud.wso2.com/store/site/blocks/application/application-update/ajax/application-update.jag |
URI Parameters | action=updateApplication&applicationOld=xxx&applicationNew=xxx&callbackUrlNew=xxx&descriptionNew=xxx&tier=xxx |
HTTP Methods | POST |
Example | curl -X POST -b cookies https://api.cloud.wso2.com/store/site/blocks/application/application-update/ajax/application-update.jag -d 'action=updateApplication&applicationOld=app1&applicationNew=app2&tier=Gold&descriptionNew=&callbackUrlNew' |
Get Applications
Description | Get list of applications. |
URI | https://api.cloud.wso2.com/store/site/blocks/application/application-list/ajax/application-list.jag |
URI Parameters | ?action=getApplications |
HTTP Methods | GET |
Example | curl -b cookies https://api.cloud.wso2.com/store/site/blocks/application/application-list/ajax/application-list.jag?action=getApplications |
Remove an Application
Description | Remove an existing application. |
URI | https://api.cloud.wso2.com/store/site/blocks/application/application-remove/ajax/application-remove.jag |
URI Parameters | action=removeApplication&application=xxx |
HTTP Methods | POST |
Example | curl -X POST -b cookies https://api.cloud.wso2.com/store/site/blocks/application/application-remove/ajax/application-remove.jag -d 'action=removeApplication&application=app2' |
Generate an Application Key
Description | Generate the key and secret values for a new application. |
URI | https://api.cloud.wso2.com/store/site/blocks/subscription/subscription-add/ajax/subscription-add.jag |
URI Parameters | action=generateApplicationKey&application=<app_name>&keytype=<PRODUCTION|SANDBOX>&callbackUrl=<URL>&authorizedDomains=<The domains from which requests are allowed to the APIs>&validityTime=<time duration in seconds>&tokenScope
|
HTTP Methods | POST |
Examples |
|
Add a Subscription
Description | Add a new API subscription. |
URI | https://api.cloud.wso2.com/store/site/blocks/subscription/subscription-add/ajax/subscription-add.jag |
URI Parameters | action=addSubscription&name=xxx&version=xxx&provider=xxx&tier=xxx&applicationId=xxx |
HTTP Methods | POST |
Example | curl -X POST -b cookies https://api.cloud.wso2.com/store/site/blocks/subscription/subscription-add/ajax/subscription-add.jag -d 'action=addSubscription&name=API1&version=1.0.0&provider=user1&tier=gold&applicationId=1' |
List Subscriptions
Description | List all API subscriptions. |
URI | https://api.cloud.wso2.com/store/site/blocks/subscription/subscription-list/ajax/subscription-list.jag |
URI Parameters | action=getAllSubscriptions |
HTTP Methods | GET |
Example | curl -b cookies https://api.cloud.wso2.com/store/site/blocks/subscription/subscription-list/ajax/subscription-list.jag?action=getAllSubscriptions |
List Subscriptions by Application
Description | List all API subscriptions of a given application. |
URI | https://api.cloud.wso2.com/store/site/blocks/subscription/subscription-list/ajax/subscription-list.jag |
URI Parameters | action=getSubscriptionByApplication&app=<application_name> |
HTTP Methods | GET |
Example | curl -b cookies 'https://api.cloud.wso2.com/store/site/blocks/subscription/subscription-list/ajax/subscription-list.jag?action=getSubscriptionByApplication&app=DefaultApplication' |
Remove a Subscription
Description | Remove an API subscription |
URI | https://api.cloud.wso2.com/store/site/blocks/subscription/subscription-remove/ajax/subscription-remove.jag |
URI Parameters | action=removeSubscription&name=xxx&version=xxx&provider=xxx&applicationId=xxx |
HTTP Methods | POST |
Example | curl -X POST -b cookies https://api.cloud.wso2.com/store/site/blocks/subscription/subscription-remove/ajax/subscription-remove.jag -d 'action=removeSubscription&name=API1&version=1.0.0&provider=user1&applicationId=1' |
Delete an OAuth Application
Description | Deletes an OAuth application in a third-party Authorization Server. If you delete it through the API Store UI, only the mapping that is maintained in the API Cloud will be deleted. |
URI | https://api.cloud.wso2.com/store/site/blocks/subscription/subscription-add/ajax/subscription-add.jag |
URI Parameters | action=deleteAuthApplication&consumerKey=<application_key> |
HTTP Methods | POST |
Example | curl -k -X POST -b cookies https://api.cloud.wso2.com/store/site/blocks/subscription/subscription-add/ajax/subscription-add.jag -d 'action=deleteAuthApplication&consumerKey=4lHddsxCtpFa2zJE1EbBpJy_NIQa' |
Provision an Out-of-Band OAuth Client
Description | Provisions an OAuth client that was created out-of-band. |
URI | https://api.cloud.wso2.com/store/site/blocks/subscription/subscription-add/ajax/subscription-add.jag |
URI Parameters | action=mapExistingOauthClient&application=semi&keytype=PRODUCTION/SANDBOX&callbackUrl=<URL>&authorizedDomains=<The domains from which requests are allowed to the APIs>&validityTime=<time duration in seconds>&client_id=<client ID> |
HTTP Methods | POST |
Example | curl -X POST -b cookies https://api.cloud.wso2.com/store/site/blocks/subscription/subscription-add/ajax/subscription-add.jag -d 'action=mapExistingOauthClient&application=semi&keytype=PRODUCTION&callbackUrl=google.com&authorizedDomains=ALL&validityTime=3600&client_id=mPbgvinvpEk1QcSrw962TLICriUa&jsonParams={"username":"admin","key_type":"PRODUCTION","client_secret":"ynEI1ugq1_RCTJ9bM8jtD9RCsdoa","validityPeriod":3600,"client_id":"mPbgvinvpEk1QcSrw962TLICriUa"}' |
Clean Partially Created Keys
Description | Cleans any partially created keys from the API Cloud database, before adding a new subscription. Partially created keys can remain in the API Cloud databases when an OAuth application of a third-party authorization server gets deleted using the API Store UI. It only deletes the mapping that is maintained in the API Cloud side. |
URI | https://api.cloud.wso2.com/store/site/blocks/subscription/subscription-add/ajax/subscription-add.jag |
URI Parameters | action=cleanUpApplicationRegistration&applicationName=xxx&keyType=PRODUCTION/SANDBOX' |
HTTP Methods | POST |
Example | curl -X POST -b cookies https://api.cloud.wso2.com/store/site/blocks/subscription/subscription-add/ajax/subscription-add.jag -d 'action=cleanUpApplicationRegistration&applicationName=DefaultApplication&keyType=PRODUCTION' |
Get all Documentation
Description | Get all documents create for a given API |
URI | https://api.cloud.wso2.com/store/site/blocks/api/listing/ajax/list.jag |
URI Parameters | action=getAllDocumentationOfApi&name=<API Name>&version=x.x.x&provider=<Name of the API provider>" |
HTTP Methods | GET |
Example | curl -b cookies "https://api.cloud.wso2.com/store/site/blocks/api/listing/ajax/list.jag?action=getAllDocumentationOfApi&name=PhoneVerification&version=1.0.0&provider=admin" |
Get the Contents of a File Document
Description | Get the contents of a file that is attached to API documentation of type 'File' |
URI | https://api.cloud.wso2.com/store/site/blocks/api/documentation/view/ajax/file-docs.jag |
URI Parameters | action=getFileDocumentByFilePath&filePath=<Get the file path using getAllDocumentationOfApi> |
HTTP Methods | GET |
Example |
Add an API Comment
Description | Add a comment to an API. |
URI | https://api.cloud.wso2.com/store/site/blocks/comment/comment-add/ajax/comment-add.jag |
URI Parameters | action=addComment&name=xxx&version=xxx&provider=xxx&comment=xxx |
HTTP Methods | POST |
Example | curl -X POST -b cookies https://api.cloud.wso2.com/store/site/blocks/comment/comment-add/ajax/comment-add.jag -d 'action=addComment&name=CalculatorAPI&version=1.0&provider=admin&comment=test comment' |
Get all Endpoint URLs
Description | Get all the endpoint URLs of the API Gateway environments configured for an API. |
URI | https://api.cloud.wso2.com/store/site/blocks/api/api-info/ajax/api-info.jag |
URI Parameters | action=getAPIEndpointURLs&name=xxx&version=x.x.x&provider=xxx |
HTTP Methods | POST |
Example | curl -X POST -b cookies https://api.cloud.wso2.com/store/site/blocks/api/api-info/ajax/api-info.jag -d 'action=getAPIEndpointURLs&name=CalculatorAPI&version=1.0&provider=admin' |
Get all Available Tiers
Description | Get all the tiers available in the deployment. |
URI | https://api.cloud.wso2.com/store/site/blocks/item-add/ajax/add.jag |
URI Parameters | action=getTiers |
HTTP Methods | GET |
Example | curl -b cookies https://api.cloud.wso2.com/store/site/blocks/item-add/ajax/add.jag?action=getTiers |
- No labels