Get spoke system registration information

get

/status/routing/apis

Request

Query Parameters
  • The list of ids for which spoke system registration is to be checked. Each value in the list of values should in the format of <api-id>:<api-version>:<path-id>. All three parameters are mandatory and should be non empty values. Incase of mising values or extra values or empty values ,**400 Bad request** will be returned.

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Routing Status is TRUE, fabric will be able to route the request with the given combination of api-id, version-id and path-id
Body ()
Root Schema : Results
Type: array
Show Source
Example:
[
    {
        "api-id":"tmf-632",
        "api-version":"v4",
        "path-id":"individual",
        "served":true
    },
    {
        "api-id":"tmf-632",
        "api-version":"v4",
        "path-id":"organization",
        "served":false
    }
]
Nested Schema : Result
Type: object
Show Source

400 Response

Bad Request
Body ()
Root Schema : Error
Type: object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source

401 Response

Unauthorized
Body ()
Root Schema : Error
Type: object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source

500 Response

Internal Server Error
Body ()
Root Schema : Error
Type: object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source
Back to Top

Examples

The following example shows how to get spoke system registration information for a specific api, version and path by submitting a get request on the REST resource using cURL.

cURL Command

curl --<username:password> --request GET '{FABRIC_HOST}/status/routing/apis?id={api-id}:{version-id}:{path-id}' --header Authorization: Bearer <accessToken> --header 'Content-Type: application/json'

Example of Response Body

The following shows an example of the response body in JSON format.

[
    {
        "api-id":"tmf-632",
        "api-version":"v4",
        "path-id":"individual",
        "served":true
    },
    {
        "api-id":"tmf-632",
        "api-version":"v4",
        "path-id":"organization",
        "served":false
    }
]
Back to Top