From 2d17d1b9a4d3d485b738937fd7e49d4d3fbaf91b Mon Sep 17 00:00:00 2001 From: Ivan Branimir Skoric <58559012+ib-skoric@users.noreply.github.com> Date: Fri, 15 May 2026 17:55:39 +0100 Subject: [PATCH] Add default and locales fields to help_center schema (Preview) Add two new fields to the help_center schema in the Preview OpenAPI spec, matching intercom/intercom#508490: - default (boolean): whether the help center is the workspace default - locales (array of strings): locale codes the help center supports Also update the inline response example for GET /help_center/help_centers/{id} to include the new fields. --- descriptions/0/api.intercom.io.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/descriptions/0/api.intercom.io.yaml b/descriptions/0/api.intercom.io.yaml index 4daf336..6c38635 100644 --- a/descriptions/0/api.intercom.io.yaml +++ b/descriptions/0/api.intercom.io.yaml @@ -2780,6 +2780,9 @@ paths: display_name: Intercom Help Center url: https://help.mycompany.com custom_domain: help.mycompany.com + default: false + locales: + - en schema: "$ref": "#/components/schemas/help_center" '404': @@ -26437,6 +26440,18 @@ components: nullable: true description: Custom domain configured for the help center example: "help.mycompany.com" + default: + type: boolean + description: Whether this help center is the default for the workspace. + example: false + locales: + type: array + description: The locales in which the help center is available. + items: + type: string + example: + - en + - fr help_center_list: title: Help Centers type: object