update_app_endpoint
Update an existing endpoint's exposed columns, methods, or active status. Pass endpoint ID from list_app_endpoints and column IDs from get_board_schema.
Instructions
Change an existing endpoint — most often to set exposedColumns on one that was created without them. Get the endpoint id from list_app_endpoints and the column ids from get_board_schema.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Human-readable name | |
| slug | No | URL slug: lowercase letters, digits and dashes | |
| appId | Yes | App id or slug (from list_apps / create_app) | |
| isActive | No | Whether it is active | |
| endpointId | Yes | Endpoint id (from list_app_endpoints) | |
| allowedMethods | No | HTTP methods the endpoint accepts: GET, POST, PATCH, DELETE | |
| exposedColumns | No | Replacement list of exposed columns (same shape as create_app_endpoint) | |
| organizationId | No | Organization id; defaults to the credential organization when omitted |