Update Integration
gorgias_update_integrationUpdate an existing integration by ID, modifying settings like name, description, HTTP configuration, or reactivation status.
Instructions
PUT /api/integrations/{id} — Update an existing integration by its ID. The request body must include name at minimum. Returns the updated Integration object on success.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The ID of the integration to update | |
| http | No | HTTP configuration object. Only relevant for integrations of type 'http' | |
| name | Yes | Name of the integration (required) | |
| description | No | Human-readable description of the integration | |
| business_hours_id | No | ID of the business hours schedule to associate with this integration (e.g. for phone integrations). Pass null to clear. | |
| deactivated_datetime | No | When the integration was deactivated (ISO 8601 format). Set to null to reactivate |