...
Code Block |
---|
GET /v3/namespaces/<namespace-id>/services
|
Parameter | Description |
---|---|
| Namespace ID |
...
Code Block |
---|
[
{
"app": "PurchaseHistory",
"description": "Service to retrieve Product IDs.",
"id": "CatalogLookup",
"name": "CatalogLookup",
"type": "Service"
}
...
]
|
Checking Service Availability
...
Code Block |
---|
GET /v3/namespaces/<namespace-id>/apps/<app-id>/services/<service-id>/available
|
Parameter | Description |
---|---|
| Namespace ID |
| Name of the application |
| Name of the service whose availability needs to be checked |
...
Code Block |
---|
<request-type> /v3/namespaces/<namespace-id>/apps/<app-id>/services/<service-id>/methods/<endpoint-path>
|
Note: Any reserved or unsafe characters in the path parameters should be encoded using percent-encoding. See the section on Path Parameters for suggested approaches to encoding parameters.
...