Skip to main content
PATCH
/
catalogues
/
{id}
Update a catalogue
curl --request PATCH \
  --url http://localhost:8080/api/v1/catalogues/{id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": {
    "attributes": {
      "name": "<string>"
    },
    "type": "<string>"
  }
}
'
{
  "attributes": {
    "llm_names": [
      "<string>"
    ],
    "name": "<string>"
  },
  "id": "<string>",
  "type": "<string>"
}

Authorizations

Authorization
string
header
required

Path Parameters

id
integer
required

Catalogue ID

Body

application/json

Updated catalogue information

Catalogue input model

data
object

Response

OK

Catalogue response model

attributes
object
id
string
type
string