Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
GET /v3/namespaces/<namespace-id>/services

Parameter

Description

namespace-id

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

Namespace ID

app-id

Name of the application

service-id

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.

...