Update Integration
PUT/api/v2/instance/:instanceId/typebot-integration
Update Integration
Request
Path Parameters
instanceId stringrequired
ID of the instance.
- application/json
Body
required
- publicId: The ID or name given to your typebot
- typebotURL: The URL of your typebot host- default: https://typebot.io
 
- enabled: Enable or disable your integration
publicId Typebot IDrequired
The ID or name given to your typebot
typebotURL Typebot URLrequired
Default value: https://typebot.io
The URL of your typebot host
enabled Enabledrequired
Default value: false
Enable or disable your integration
Responses
- 201
- 400
- 403
- 404
Success - status: 201
- application/json
- Schema
- Example (from schema)
Schema
integrationId stringrequired
publicId stringrequired
typebotURL stringrequired
enabled booleanrequired
instanceInstanceId stringrequired
createdAt date-timerequired
updatedAt date-timerequired
{
  "integrationId": "string",
  "publicId": "string",
  "typebotURL": "string",
  "enabled": true,
  "instanceInstanceId": "string",
  "createdAt": "2025-06-12T13:21:07.240Z",
  "updatedAt": "2025-06-12T13:21:07.240Z"
}
BadRequestException
- application/json
- Schema
- Example (from schema)
Schema
message string[]required
Default value: string,[object Object]
error stringrequired
statusCode numberrequired
{
  "message": [
    "string"
  ],
  "error": "string",
  "statusCode": 0
}
ForbiddenException
- application/json
- Schema
- Example (from schema)
Schema
message string[]required
Default value: string,[object Object]
error stringrequired
statusCode numberrequired
{
  "message": [
    "string"
  ],
  "error": "string",
  "statusCode": 0
}
NotFoundException
- application/json
- Schema
- Example (from schema)
Schema
message string[]required
Default value: string,[object Object]
error stringrequired
statusCode numberrequired
{
  "message": [
    "string"
  ],
  "error": "string",
  "statusCode": 0
}
Loading...