Authorizations
Path Parameters
Tool Catalogue ID
Body
application/json
Updated Tool Catalogue information
Tool Catalogue input model
curl --request PATCH \
--url http://localhost:8080/api/v1/tool-catalogues/{id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"attributes": {
"icon": "<string>",
"long_description": "<string>",
"name": "<string>",
"short_description": "<string>"
},
"type": "<string>"
}
}
'{
"attributes": {
"icon": "<string>",
"long_description": "<string>",
"name": "<string>",
"short_description": "<string>",
"tags": [
{
"attributes": {
"name": "<string>"
},
"id": "<string>",
"type": "<string>"
}
],
"tools": [
{
"attributes": {
"auth_key": "<string>",
"auth_schema_name": "<string>",
"description": "<string>",
"name": "<string>",
"oas_spec": [
123
],
"operations": [
"<string>"
],
"privacy_score": 123,
"tool_type": "<string>"
},
"id": "<string>",
"type": "<string>"
}
]
},
"id": "<string>",
"type": "<string>"
}Update an existing tool catalogue’s information
curl --request PATCH \
--url http://localhost:8080/api/v1/tool-catalogues/{id} \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"data": {
"attributes": {
"icon": "<string>",
"long_description": "<string>",
"name": "<string>",
"short_description": "<string>"
},
"type": "<string>"
}
}
'{
"attributes": {
"icon": "<string>",
"long_description": "<string>",
"name": "<string>",
"short_description": "<string>",
"tags": [
{
"attributes": {
"name": "<string>"
},
"id": "<string>",
"type": "<string>"
}
],
"tools": [
{
"attributes": {
"auth_key": "<string>",
"auth_schema_name": "<string>",
"description": "<string>",
"name": "<string>",
"oas_spec": [
123
],
"operations": [
"<string>"
],
"privacy_score": 123,
"tool_type": "<string>"
},
"id": "<string>",
"type": "<string>"
}
]
},
"id": "<string>",
"type": "<string>"
}Tool Catalogue ID
Updated Tool Catalogue information
Tool Catalogue input model
Show child attributes
Was this page helpful?