Catalog of all API end points.

get

/learn.rest/v1/metadata-catalog

Catalog of API end points.

Request

Query Parameters
  • If set to true, payload includes the total number of rows that satisfies the request. Use of this parameter determines if the 'last' link is displayed for a pageable collection.
Back to Top

Response

Supported Media Types

200 Response

metadata-catalog collection fetched.
Body ()
Root Schema : CatalogResponse
Type: object
Response object of the catalog items.
Show Source
Example:
{
    "items":[
        {
            "name":"users",
            "links":[
                {
                    "rel":"canonical",
                    "href":"{url}/learn.rest/v1/metadata-catalog/users",
                    "mediaType":"application/json"
                },
                {
                    "rel":"alternate",
                    "href":"https://{url}/learn.rest/v1/metadata-catalog/users",
                    "mediaType":"application/json"
                },
                {
                    "rel":"describes",
                    "href":"https://{url}/learn.rest/v1/metadata-catalog/users",
                    "mediaType":"application/json"
                }
            ]
        },
        {
            "...":null
        }
    ],
    "links":[
        {
            "rel":"canonical",
            "href":"{url}/learn.rest/v1/users"
        }
    ]
}
Nested Schema : items
Type: array
Show Source
Nested Schema : User
Type: object
Response Object of the Catalog Items.
Show Source
Example:
[
    {
        "name":"users",
        "links":[
            {
                "rel":"canonical",
                "href":"https://{url}/learn.rest/v1/metadata-catalog/users",
                "mediaType":"application/json"
            },
            {
                "rel":"alternate",
                "href":"https://{url}/learn.rest/v1/metadata-catalog/users",
                "mediaType":"application/json"
            },
            {
                "rel":"describes",
                "href":"https://{url}/learn.rest/v1/metadata-catalog/users",
                "mediaType":"application/json"
            }
        ]
    }
]
Nested Schema : CatalogItemLinkItems
Type: object
Object comprising links to the Catalog items.
Show Source
Example:
{
    "rel":"canonical",
    "href":"{url}/learn.rest/v1/users/456"
}

401 Response

Authentication refused for provided credentials or the token is invalid.
Headers

500 Response

Internal server error.
Back to Top