Skip to main content
GET
/
catalogues
/
{catalogue_id}
Get a catalogue
curl --request GET \
  --url http://localhost:3001/portal-api/catalogues/{catalogue_id} \
  --header 'Authorization: <api-key>'
{
  "ID": 1,
  "Name": "Private Catalogue",
  "CreatedAt": "2023-06-25 13:37",
  "UpdatedAt": "2023-06-25 13:37",
  "OrgCatalogues": [
    {
      "Catalogue": "Private catalogue",
      "ID": 1,
      "Name": "<string>",
      "Organisation": "Default organisation"
    }
  ],
  "Plans": [
    "Free plan"
  ],
  "Products": [
    "ACME Payment API"
  ],
  "VisibilityStatus": "Private"
}

Authorizations

Authorization
string
header
required

Path Parameters

catalogue_id
integer
required
Example:

Response

200 - application/json
ID
integer
Example:
Name
string
Example:
CreatedAt
string
Example:
UpdatedAt
string
Example:
OrgCatalogues
object[]
Plans
string[]
Products
string[]
VisibilityStatus
enum<string>
Available options:
Private,
Public
Example: