Update a collection
Understanding how to use FeatureOS API to build custom integrations.
Introduction
The FeatureOS update collection API allows you to update an existing collection in your knowledge base.
PUT
https://api.featureos.app/api/v3/collections/:id
curl -X PUT 'https://api.featureos.app/api/v3/collections/:id' \
-H 'API-KEY: YOUR_API_KEY' \
-H 'Content-Type: application/json'Headers
| Parameter | Default | Description |
|---|---|---|
| API-KEY | - | Generate from organization settings on the admin dashboard. |
| Authorization | - | Generate a unique JWT token specific to a user. |
Body Parameters
| Parameter | Required | Format | Description |
|---|---|---|---|
| name | false | String | The name of the collection. |
| description | false | Text | A description of the collection. |
| privacy | false | String | The collection privacy: public or private. |
| parent_id | false | Integer | The ID of a parent collection. Set to null to make it a top-level collection. |
| icon | false | String | URL to a custom icon for the collection. |
| position | false | Integer | Display position of the collection. |