Control API Endpoint overview¶
| METHOD | ENDPOINT | USAGE | RETURNS |
|---|---|---|---|
| POST | /collections | Create a collection. | collection |
| GET | /collections | Get all collections. | collection |
| GET | /collections/{id} | Get a collection. | collection |
| PATCH | /collections/{id} | Update a collection. | collection |
| DELETE | /collections | Remove collection(s). | Nothing. |
| POST | /inputs | Create one or more inputs. | input |
| GET | /inputs | Get all inputs. | input |
| GET | /inputs/{id} | Get an input. | input |
| PATCH | /inputs/{id} | Update an input. | input |
| DELETE | /inputs | Remove input(s). | Nothing. |
| POST | /chains | Create a filter chain. | filter chain |
| GET | /chains | Get all filter chains. | filter chain |
| GET | /chains/{id} | Get a filter chain. | filter chain |
| PATCH | /chains/{id} | Update a filter chain. | filter chain |
| DELETE | /chains | Remove filter chain(s). | Nothing. |
| POST | /sets | Create a filter set. | filter set |
| GET | /sets | Get all filter sets. | filter set |
| GET | /sets/{id} | Get a filter set. | filter set |
| PATCH | /sets/{id} | Update a filter set. | filter set |
| DELETE | /sets | Remove filter set(s). | Nothing. |
| POST | /lists | Create a filter list. | filter list |
| GET | /lists | Get all filter lists. | filter list |
| GET | /lists/{id} | Get a filter list. | filter list |
| PATCH | /lists/{id} | Update a filter list. | filter list |
| DELETE | /lists | Remove filter list(s). | Nothing. |
| POST | /publications | Create a publication. | publication |
| GET | /publications | Get all publications. | publication |
| GET | /publications/{id} | Get a publication. | publication |
| PATCH | /publications/{id} | Update a publication. | publication |
| DELETE | /publications | Remove publication(s). | Nothing. |
| POST | /customizations | Create a customization. | customization |
| GET | /customizations | Get all customizations. | customization |
| GET | /customizations/{id} | Get a customization. | customization |
| PATCH | /customizations/{id} | Update a customization. | customization |
| DELETE | /customizations | Remove customization(s). | Nothing. |
| GET | /connect/{service} | Connect a service. | Nothing. |
| GET | /disconnect/{service} | Disconnect a service. | Nothing. |
| GET | /me/{service} | Get connected account. | Account information. |