diff --git a/descriptions/0/api.intercom.io.yaml b/descriptions/0/api.intercom.io.yaml index 49f7c31..871857e 100644 --- a/descriptions/0/api.intercom.io.yaml +++ b/descriptions/0/api.intercom.io.yaml @@ -45,7 +45,7 @@ paths: type: app id_code: this_is_an_id1_that_should_be_at_least_40 name: MyApp 1 - created_at: 1691577342 + created_at: 1692025920 secure: false identity_verification: false timezone: America/Los_Angeles @@ -100,7 +100,7 @@ paths: Admin not found: value: type: error.list - request_id: bb736fe4-f4ab-480f-824f-3c00d5d4fd8d + request_id: 61574ed7-c09a-494c-b2b0-97ec464fdf90 errors: - code: admin_not_found message: Admin for admin_id not found @@ -114,7 +114,7 @@ paths: Unauthorized: value: type: error.list - request_id: bc6c509d-1a14-49cc-a3d1-f07c6273ccb2 + request_id: 23a053bb-cd79-4a94-832a-1142618e2493 errors: - code: unauthorized message: Access Token Invalid @@ -196,12 +196,12 @@ paths: type: activity_log.list pages: type: pages - next: + next: page: 1 per_page: 20 total_pages: 1 activity_logs: - - id: a6f33d43-a71f-484e-8e4d-ce06722603ff + - id: f9547aa2-ba3b-41e5-ae58-f618a157ff09 performed_by: type: admin id: '991266219' @@ -210,11 +210,11 @@ paths: metadata: before: before after: after - created_at: 1691577351 + created_at: 1692025925 activity_type: app_name_change activity_description: Ciaran5 Lee changed your app name from before to after. - - id: cdb59612-b630-4c67-9979-41c9936a16cf + - id: 8a343dd2-6933-4e18-9752-450253c39130 performed_by: type: admin id: '991266219' @@ -226,7 +226,7 @@ paths: title: Initial message title before: Initial message title after: Eventual message title - created_at: 1691577351 + created_at: 1692025925 activity_type: message_state_change activity_description: Ciaran5 Lee changed your Initial message title message from Initial message title to Eventual message @@ -241,7 +241,7 @@ paths: Unauthorized: value: type: error.list - request_id: 6893b33e-c8c6-4d97-a14e-1a36e3976d4b + request_id: 56abaf8c-c17c-4c76-90a5-316591ed5b37 errors: - code: unauthorized message: Access Token Invalid @@ -287,7 +287,7 @@ paths: Unauthorized: value: type: error.list - request_id: d612a50d-1488-4d58-9934-e81d314e9fe4 + request_id: 2b4e87ed-6243-4017-bfda-6f39949b7f76 errors: - code: unauthorized message: Access Token Invalid @@ -338,7 +338,7 @@ paths: Admin not found: value: type: error.list - request_id: 3493b0f7-bcf3-45d6-a8d8-5a64c6bad17b + request_id: 222ff016-fc91-4eb1-9b60-b5e4e40596ca errors: - code: admin_not_found message: Admin not found @@ -352,12 +352,570 @@ paths: Unauthorized: value: type: error.list - request_id: 7f55447d-ae2f-4e7b-9406-0fa40694b9f1 + request_id: a5d392a6-bb7a-4fde-937f-4e3061a563eb errors: - code: unauthorized message: Access Token Invalid schema: "$ref": "#/components/schemas/error" + "/ai/content_import_sources": + get: + summary: List content import sources + parameters: + - name: Intercom-Version + in: header + schema: + "$ref": "#/components/schemas/intercom_version" + tags: + - AI Content + description: You can retrieve a list of all content import sources for a workspace. + responses: + '200': + description: successful + content: + application/json: + examples: + successful: + value: + data: + - id: 150341 + type: content_import_source + last_synced_at: 1692033129 + status: active + url: https://support.example.com/us/1 + sync_behavior: automatic + created_at: 1692025929 + updated_at: 1692025929 + - id: 150342 + type: content_import_source + last_synced_at: 1692033129 + status: active + url: https://support.example.com/us/2 + sync_behavior: automatic + created_at: 1692025929 + updated_at: 1692025929 + - id: 150343 + type: content_import_source + last_synced_at: 1692033129 + status: active + url: https://support.example.com/us/3 + sync_behavior: automatic + created_at: 1692025929 + updated_at: 1692025929 + pages: + type: pages + page: 1 + per_page: 50 + total_pages: 1 + total_count: 3 + type: list + schema: + "$ref": "#/components/schemas/content_import_sources_list" + '401': + description: Unauthorized + content: + application/json: + examples: + Unauthorized: + value: + type: error.list + request_id: '0591d137-7d69-4904-8880-fc4acffa2ee1' + errors: + - code: unauthorized + message: Access Token Invalid + schema: + "$ref": "#/components/schemas/error" + post: + summary: Create a content import source + parameters: + - name: Intercom-Version + in: header + schema: + "$ref": "#/components/schemas/intercom_version" + tags: + - AI Content + description: You can create a new content import source by sending a POST request + to this endpoint. + responses: + '200': + description: successful + content: + application/json: + examples: + successful: + value: + id: 150344 + type: content_import_source + last_synced_at: 1692025930 + status: active + url: https://www.example.com + sync_behavior: api + created_at: 1692025930 + updated_at: 1692025930 + schema: + "$ref": "#/components/schemas/content_import_source" + '401': + description: Unauthorized + content: + application/json: + examples: + Unauthorized: + value: + type: error.list + request_id: eae89f44-633f-4f08-ba0f-4c7813fcaf18 + errors: + - code: unauthorized + message: Access Token Invalid + schema: + "$ref": "#/components/schemas/error" + requestBody: + content: + application/json: + schema: + "$ref": "#/components/schemas/create_content_import_source_request" + examples: + successful: + summary: successful + value: + sync_behavior: api + url: https://www.example.com + "/ai/content_import_sources/{id}": + parameters: + - name: id + in: path + description: The unique identifier for the content import source which is given + by Intercom. + required: true + schema: + type: string + delete: + summary: Delete a content import source + description: You can delete a content import source by making a DELETE request + this endpoint. This will also delete all external pages that were imported + from this source. + parameters: + - name: Intercom-Version + in: header + schema: + "$ref": "#/components/schemas/intercom_version" + tags: + - AI Content + responses: + '204': + description: successful + '401': + description: Unauthorized + content: + application/json: + examples: + Unauthorized: + value: + type: error.list + request_id: f93a647c-4654-487c-ae94-6c79dd3b8885 + errors: + - code: unauthorized + message: Access Token Invalid + schema: + "$ref": "#/components/schemas/error" + get: + summary: Retrieve a content import source + parameters: + - name: Intercom-Version + in: header + schema: + "$ref": "#/components/schemas/intercom_version" + tags: + - AI Content + responses: + '200': + description: successful + content: + application/json: + examples: + successful: + value: + id: 150346 + type: content_import_source + last_synced_at: 1692033132 + status: active + url: https://support.example.com/us/5 + sync_behavior: api + created_at: 1692025931 + updated_at: 1692025931 + schema: + "$ref": "#/components/schemas/content_import_source" + '401': + description: Unauthorized + content: + application/json: + examples: + Unauthorized: + value: + type: error.list + request_id: 2f4d963c-2171-4d12-afe4-6c08ad1eba2b + errors: + - code: unauthorized + message: Access Token Invalid + schema: + "$ref": "#/components/schemas/error" + put: + summary: Update a content import source + parameters: + - name: Intercom-Version + in: header + schema: + "$ref": "#/components/schemas/intercom_version" + tags: + - AI Content + description: You can update an existing content import source. + responses: + '200': + description: successful + content: + application/json: + examples: + successful: + value: + id: 150347 + type: content_import_source + last_synced_at: 1692033133 + status: active + url: https://www.example.com + sync_behavior: api + created_at: 1692025933 + updated_at: 1692025933 + schema: + "$ref": "#/components/schemas/content_import_source" + '401': + description: Unauthorized + content: + application/json: + examples: + Unauthorized: + value: + type: error.list + request_id: 459f5b38-151a-4b57-84eb-c1de327dfea0 + errors: + - code: unauthorized + message: Access Token Invalid + schema: + "$ref": "#/components/schemas/error" + requestBody: + content: + application/json: + schema: + "$ref": "#/components/schemas/update_content_import_source_request" + examples: + successful: + summary: successful + value: + sync_behavior: api + url: https://www.example.com + "/ai/external_pages": + get: + summary: List external pages + parameters: + - name: Intercom-Version + in: header + schema: + "$ref": "#/components/schemas/intercom_version" + tags: + - AI Content + description: You can retrieve a list of all external pages for a workspace. + responses: + '200': + description: successful + content: + application/json: + examples: + successful: + value: + data: + - id: '233081' + type: external_page + title: My External Content + html: "

Hello world

This is external content

" + url: https://support.example.com/us/3 + fin_availability: true + locale: en + source_id: 150350 + external_id: '3' + created_at: 1692025934 + updated_at: 1692025934 + last_ingested_at: 1692025934 + - id: '233080' + type: external_page + title: My External Content + html: "

Hello world

This is external content

" + url: https://support.example.com/us/2 + fin_availability: true + locale: en + source_id: 150349 + external_id: '2' + created_at: 1692025934 + updated_at: 1692025934 + last_ingested_at: 1692025934 + - id: '233079' + type: external_page + title: My External Content + html: "

Hello world

This is external content

" + url: https://support.example.com/us/1 + fin_availability: true + locale: en + source_id: 150348 + external_id: '1' + created_at: 1692025934 + updated_at: 1692025934 + last_ingested_at: 1692025933 + pages: + type: pages + page: 1 + per_page: 50 + total_pages: 1 + total_count: 3 + type: list + schema: + "$ref": "#/components/schemas/external_pages_list" + '401': + description: Unauthorized + content: + application/json: + examples: + Unauthorized: + value: + type: error.list + request_id: eea4120e-dd99-4609-ac71-b18a154c6d26 + errors: + - code: unauthorized + message: Access Token Invalid + schema: + "$ref": "#/components/schemas/error" + post: + summary: Create an external page (or update an external page by external ID) + parameters: + - name: Intercom-Version + in: header + schema: + "$ref": "#/components/schemas/intercom_version" + tags: + - AI Content + description: You can create a new external page by sending a POST request to + this endpoint. If an external page already exists with the specified source_id + and external_id, it will be updated instead. + responses: + '200': + description: successful + content: + application/json: + examples: + successful: + value: + id: '233083' + type: external_page + title: Test + html: "

Test

" + url: https://www.example.com + fin_availability: true + locale: en + source_id: 150352 + external_id: abc1234 + created_at: 1692025935 + updated_at: 1692025935 + last_ingested_at: 1692025935 + schema: + "$ref": "#/components/schemas/external_page" + '401': + description: Unauthorized + content: + application/json: + examples: + Unauthorized: + value: + type: error.list + request_id: b0427aef-3306-443c-a2bf-217db24a752a + errors: + - code: unauthorized + message: Access Token Invalid + schema: + "$ref": "#/components/schemas/error" + requestBody: + content: + application/json: + schema: + "$ref": "#/components/schemas/create_external_page_request" + examples: + successful: + summary: successful + value: + external_id: abc1234 + html: "

Test

" + locale: en + source_id: 150352 + title: Test + url: https://www.example.com + "/ai/external_pages/{id}": + parameters: + - name: id + in: path + description: The unique identifier for the external page which is given by Intercom. + required: true + schema: + type: string + delete: + summary: Delete an external page + parameters: + - name: Intercom-Version + in: header + schema: + "$ref": "#/components/schemas/intercom_version" + tags: + - AI Content + description: Sending a DELETE request for an external page will remove it from + the content library UI and from being used for AI answers. + responses: + '200': + description: successful + content: + application/json: + examples: + successful: + value: + id: '233084' + type: external_page + title: My External Content + html: "

Hello world

This is external content

" + url: https://support.example.com/us/5 + fin_availability: true + locale: en + source_id: 150353 + external_id: '4' + created_at: 1692025936 + updated_at: 1692025936 + last_ingested_at: 1692025936 + schema: + "$ref": "#/components/schemas/external_page" + '401': + description: Unauthorized + content: + application/json: + examples: + Unauthorized: + value: + type: error.list + request_id: 794aab2c-0d6d-492c-aa35-f183a7a607da + errors: + - code: unauthorized + message: Access Token Invalid + schema: + "$ref": "#/components/schemas/error" + get: + summary: Retrieve an external page + parameters: + - name: Intercom-Version + in: header + schema: + "$ref": "#/components/schemas/intercom_version" + tags: + - AI Content + description: You can retrieve an external page. + responses: + '200': + description: successful + content: + application/json: + examples: + successful: + value: + id: '233085' + type: external_page + title: My External Content + html: "

Hello world

This is external content

" + url: https://support.example.com/us/6 + fin_availability: true + locale: en + source_id: 150354 + external_id: '5' + created_at: 1692025937 + updated_at: 1692025937 + last_ingested_at: 1692025937 + schema: + "$ref": "#/components/schemas/external_page" + '401': + description: Unauthorized + content: + application/json: + examples: + Unauthorized: + value: + type: error.list + request_id: 21590b11-1c50-449c-b477-68ff91a726f2 + errors: + - code: unauthorized + message: Access Token Invalid + schema: + "$ref": "#/components/schemas/error" + put: + summary: Update an external page + parameters: + - name: Intercom-Version + in: header + schema: + "$ref": "#/components/schemas/intercom_version" + tags: + - AI Content + description: You can update an existing external page (if it was created via + the API). + responses: + '200': + description: successful + content: + application/json: + examples: + successful: + value: + id: '233086' + type: external_page + title: Test + html: "

Test

" + url: https://www.example.com + fin_availability: true + locale: en + source_id: 150355 + external_id: '5678' + created_at: 1692025938 + updated_at: 1692025938 + last_ingested_at: 1692025938 + schema: + "$ref": "#/components/schemas/external_page" + '401': + description: Unauthorized + content: + application/json: + examples: + Unauthorized: + value: + type: error.list + request_id: 9a3b5092-b427-4784-ae6a-8d720ba565ec + errors: + - code: unauthorized + message: Access Token Invalid + schema: + "$ref": "#/components/schemas/error" + requestBody: + content: + application/json: + schema: + "$ref": "#/components/schemas/update_external_page_request" + examples: + successful: + summary: successful + value: + external_id: '5678' + html: "

Test

" + locale: en + source_id: 150355 + title: Test + url: https://www.example.com "/articles": get: summary: List all articles @@ -392,18 +950,18 @@ paths: data: - id: '92828' type: article - workspace_id: this_is_an_id22_that_should_be_at_least_4 + workspace_id: this_is_an_id64_that_should_be_at_least_4 parent_id: 87783 parent_type: collection parent_ids: [] title: This is the article title description: '' body: '' - author_id: 991266227 + author_id: 991266248 state: published - created_at: 1691577359 - updated_at: 1691577359 - url: http://help-center.test/myapp-22/en/articles/92828-this-is-the-article-title + created_at: 1692025940 + updated_at: 1692025940 + url: http://help-center.test/myapp-64/en/articles/92828-this-is-the-article-title schema: "$ref": "#/components/schemas/article_list" '401': @@ -414,7 +972,7 @@ paths: Unauthorized: value: type: error.list - request_id: 680be870-4ea2-48ee-9559-30b4f51d530d + request_id: 7d0e2a5f-6ba7-432a-8339-188ef0889e55 errors: - code: unauthorized message: Access Token Invalid @@ -441,7 +999,7 @@ paths: value: id: '92831' type: article - workspace_id: this_is_an_id26_that_should_be_at_least_4 + workspace_id: this_is_an_id68_that_should_be_at_least_4 parent_id: 87785 parent_type: collection parent_ids: [] @@ -456,11 +1014,11 @@ paths: title: Thanks for everything description: Description of the Article body:

Body of the Article

- author_id: 991266232 + author_id: 991266253 state: published - created_at: 1691577363 - updated_at: 1691577363 - url: http://help-center.test/myapp-26/en/articles/92831-thanks-for-everything + created_at: 1692025942 + updated_at: 1692025942 + url: http://help-center.test/myapp-68/en/articles/92831-thanks-for-everything schema: "$ref": "#/components/schemas/article" '400': @@ -471,7 +1029,7 @@ paths: Bad Request: value: type: error.list - request_id: bfbeb030-03d7-49c7-86a7-2a92be4c144b + request_id: 1461d54a-00f9-4943-b5ce-bed47bfc0eec errors: - code: parameter_not_found message: author_id must be in the main body or default locale @@ -486,7 +1044,7 @@ paths: Unauthorized: value: type: error.list - request_id: b449b282-5f64-4663-b060-30aa84bf51c1 + request_id: 375714d2-0bef-4ba5-bcee-55c0242d4805 errors: - code: unauthorized message: Access Token Invalid @@ -504,7 +1062,7 @@ paths: title: Thanks for everything description: Description of the Article body: Body of the Article - author_id: 991266232 + author_id: 991266253 state: published parent_id: 87785 parent_type: collection @@ -513,7 +1071,7 @@ paths: title: Merci pour tout description: Description de l'article body: Corps de l'article - author_id: 991266232 + author_id: 991266253 state: published bad_request: summary: Bad Request @@ -552,7 +1110,7 @@ paths: value: id: '92834' type: article - workspace_id: this_is_an_id32_that_should_be_at_least_4 + workspace_id: this_is_an_id74_that_should_be_at_least_4 parent_id: 87788 parent_type: collection parent_ids: [] @@ -567,11 +1125,11 @@ paths: title: This is the article title description: '' body: '' - author_id: 991266237 + author_id: 991266258 state: published - created_at: 1691577366 - updated_at: 1691577366 - url: http://help-center.test/myapp-32/en/articles/92834-this-is-the-article-title + created_at: 1692025944 + updated_at: 1692025944 + url: http://help-center.test/myapp-74/en/articles/92834-this-is-the-article-title schema: "$ref": "#/components/schemas/article" '404': @@ -582,7 +1140,7 @@ paths: Article not found: value: type: error.list - request_id: 1f4b5169-a2cc-4ca7-b448-af36870d9d37 + request_id: 98e85810-4326-4027-993c-82bac6bac31f errors: - code: not_found message: Resource Not Found @@ -596,7 +1154,7 @@ paths: Unauthorized: value: type: error.list - request_id: 72b0b630-7527-4ac8-97c0-c36260726648 + request_id: 2dcd5940-b428-4eab-b94f-b11413d681c3 errors: - code: unauthorized message: Access Token Invalid @@ -631,7 +1189,7 @@ paths: value: id: '92837' type: article - workspace_id: this_is_an_id38_that_should_be_at_least_4 + workspace_id: this_is_an_id80_that_should_be_at_least_4 parent_id: 87791 parent_type: collection parent_ids: [] @@ -646,11 +1204,11 @@ paths: title: Christmas is here! description: '' body:

New gifts in store for the jolly season

- author_id: 991266243 + author_id: 991266264 state: published - created_at: 1691577370 - updated_at: 1691577371 - url: http://help-center.test/myapp-38/en/articles/92837-christmas-is-here + created_at: 1692025946 + updated_at: 1692025946 + url: http://help-center.test/myapp-80/en/articles/92837-christmas-is-here schema: "$ref": "#/components/schemas/article" '404': @@ -661,7 +1219,7 @@ paths: Article Not Found: value: type: error.list - request_id: 8abe9a5a-be6d-4ed5-9e12-1fe5daf67859 + request_id: 5451286d-89a5-4456-880d-17b40aa7fba2 errors: - code: not_found message: Resource Not Found @@ -675,7 +1233,7 @@ paths: Unauthorized: value: type: error.list - request_id: 7eb3e40b-c06f-4552-a034-efe1eb8bb03e + request_id: 51f0cfc9-7d84-4de8-acce-58c4c4650ad5 errors: - code: unauthorized message: Access Token Invalid @@ -736,7 +1294,7 @@ paths: Article Not Found: value: type: error.list - request_id: fd9cc776-c929-40e2-bec9-2b0ed872779b + request_id: 25710b77-3579-4fca-968f-614bc0e1fc15 errors: - code: not_found message: Resource Not Found @@ -750,7 +1308,7 @@ paths: Unauthorized: value: type: error.list - request_id: e68643d4-1085-4547-bcd0-d2cffa6b42dd + request_id: 757966da-cc7e-4382-aacc-de9ea7f65d4f errors: - code: unauthorized message: Access Token Invalid @@ -784,27 +1342,27 @@ paths: type: list data: - id: '87797' - workspace_id: this_is_an_id50_that_should_be_at_least_4 + workspace_id: this_is_an_id92_that_should_be_at_least_4 name: English collection title - url: http://help-center.test/myapp-50/collection-15 + url: http://help-center.test/myapp-92/collection-15 order: 15 - created_at: 1691577378 - updated_at: 1691577378 + created_at: 1692025951 + updated_at: 1692025951 description: english collection description icon: bookmark - parent_id: - help_center_id: 517631 + parent_id: + help_center_id: 519649 - id: '87798' - workspace_id: this_is_an_id50_that_should_be_at_least_4 + workspace_id: this_is_an_id92_that_should_be_at_least_4 name: English section title - url: http://help-center.test/myapp-50/section-1 + url: http://help-center.test/myapp-92/section-1 order: 1 - created_at: 1691577378 - updated_at: 1691577378 - description: + created_at: 1692025951 + updated_at: 1692025951 + description: icon: bookmark parent_id: '87797' - help_center_id: + help_center_id: total_count: 2 pages: type: pages @@ -821,7 +1379,7 @@ paths: Unauthorized: value: type: error.list - request_id: 58d34231-ddc8-4f1d-b3c8-5a9e9223b8d5 + request_id: fd72ac71-5508-42e5-91ac-a4f753e58cba errors: - code: unauthorized message: Access Token Invalid @@ -847,16 +1405,16 @@ paths: collection created: value: id: '87803' - workspace_id: this_is_an_id54_that_should_be_at_least_4 + workspace_id: this_is_an_id96_that_should_be_at_least_4 name: Thanks for everything - url: http://help-center.test/myapp-54/ + url: http://help-center.test/myapp-96/ order: 1 - created_at: 1691577381 - updated_at: 1691577381 + created_at: 1692025954 + updated_at: 1692025954 description: '' icon: book-bookmark - parent_id: - help_center_id: 517633 + parent_id: + help_center_id: 519651 schema: "$ref": "#/components/schemas/collection" '400': @@ -867,7 +1425,7 @@ paths: Bad Request: value: type: error.list - request_id: 68065fea-306b-4e97-bcb6-e44919e958cd + request_id: fa274a4f-dbd9-4dcb-bfee-ed31d843547c errors: - code: parameter_not_found message: Name is a required parameter. @@ -881,7 +1439,7 @@ paths: Unauthorized: value: type: error.list - request_id: 663ab484-460f-43bb-a6bf-daf07ee07c5f + request_id: 45bbee2d-7eaf-42f5-b2c4-4e0fe38def33 errors: - code: unauthorized message: Access Token Invalid @@ -930,16 +1488,16 @@ paths: Collection found: value: id: '87808' - workspace_id: this_is_an_id60_that_should_be_at_least_4 + workspace_id: this_is_an_id102_that_should_be_at_least_ name: English collection title - url: http://help-center.test/myapp-60/collection-20 + url: http://help-center.test/myapp-102/collection-20 order: 20 - created_at: 1691577383 - updated_at: 1691577383 + created_at: 1692025955 + updated_at: 1692025955 description: english collection description icon: bookmark - parent_id: - help_center_id: 517636 + parent_id: + help_center_id: 519654 schema: "$ref": "#/components/schemas/collection" '404': @@ -950,7 +1508,7 @@ paths: Collection not found: value: type: error.list - request_id: 1016b6fe-2967-46ba-90db-51e09ba69e92 + request_id: 2c458ca5-2429-4b04-8cf1-faee0464976f errors: - code: not_found message: Resource Not Found @@ -964,7 +1522,7 @@ paths: Unauthorized: value: type: error.list - request_id: aeb7c2af-36dc-46a5-9e65-f9140c5690f2 + request_id: 64301bbb-8d56-4989-b03d-ca22c8b57835 errors: - code: unauthorized message: Access Token Invalid @@ -998,16 +1556,16 @@ paths: successful: value: id: '87814' - workspace_id: this_is_an_id66_that_should_be_at_least_4 + workspace_id: this_is_an_id108_that_should_be_at_least_ name: Update collection name - url: http://help-center.test/myapp-66/collection-23 + url: http://help-center.test/myapp-108/collection-23 order: 23 - created_at: 1691577385 - updated_at: 1691577386 + created_at: 1692025957 + updated_at: 1692025957 description: english collection description icon: folder - parent_id: - help_center_id: 517639 + parent_id: + help_center_id: 519657 schema: "$ref": "#/components/schemas/collection" '404': @@ -1018,7 +1576,7 @@ paths: Collection Not Found: value: type: error.list - request_id: '0492c0a6-5334-4230-8794-7aa56d490161' + request_id: '08b9eb8a-3077-4993-88d4-ebcb20c6efb4' errors: - code: not_found message: Resource Not Found @@ -1032,7 +1590,7 @@ paths: Unauthorized: value: type: error.list - request_id: '00268d85-cc86-449e-a463-9632db5f00e1' + request_id: 7893b4b5-3637-44eb-adb5-b6435b830d33 errors: - code: unauthorized message: Access Token Invalid @@ -1092,7 +1650,7 @@ paths: collection Not Found: value: type: error.list - request_id: 0120ea9a-3dec-4646-9932-c49a1e38fb8d + request_id: bc727ef2-6699-48bd-9750-9c864b516127 errors: - code: not_found message: Resource Not Found @@ -1106,7 +1664,7 @@ paths: Unauthorized: value: type: error.list - request_id: 17c992e2-b5cc-493a-8e40-8723da634f4f + request_id: 11ba73b8-9e9e-4b9a-8ca8-71eae77a87f1 errors: - code: unauthorized message: Access Token Invalid @@ -1140,10 +1698,10 @@ paths: examples: Collection found: value: - id: '517645' - workspace_id: this_is_an_id78_that_should_be_at_least_4 - created_at: 1691577390 - updated_at: 1691577390 + id: '519663' + workspace_id: this_is_an_id120_that_should_be_at_least_ + created_at: 1692025960 + updated_at: 1692025960 identifier: help-center-1 website_turned_on: false display_name: Intercom Help Center @@ -1157,7 +1715,7 @@ paths: Collection not found: value: type: error.list - request_id: 94b65ae0-76f6-4d5a-b538-233ee09f1e2f + request_id: 91a41322-aa2b-493e-9545-566c4a2693a5 errors: - code: not_found message: Resource Not Found @@ -1171,7 +1729,7 @@ paths: Unauthorized: value: type: error.list - request_id: 73911c3f-03c1-4e62-b069-4fe18b9381a0 + request_id: 8df4b4e1-8c1c-4278-b159-b8eaac714a73 errors: - code: unauthorized message: Access Token Invalid @@ -1209,7 +1767,7 @@ paths: Unauthorized: value: type: error.list - request_id: 35834623-69da-42ee-ae16-01792c135294 + request_id: ba317252-250b-4410-9bf6-2537d7826e35 errors: - code: unauthorized message: Access Token Invalid @@ -1241,12 +1799,12 @@ paths: value: type: company company_id: company_remote_id - id: 64d36c3c45ceba405a02c51b - app_id: this_is_an_id104_that_should_be_at_least_ + id: 64da447071858de10365308b + app_id: this_is_an_id146_that_should_be_at_least_ name: my company remote_created_at: 1374138000 - created_at: 1691577404 - updated_at: 1691577404 + created_at: 1692025968 + updated_at: 1692025968 monthly_spend: 0 session_count: 0 user_count: 0 @@ -1269,7 +1827,7 @@ paths: Bad Request: value: type: error.list - request_id: + request_id: errors: - code: bad_request message: bad 'test' parameter @@ -1283,7 +1841,7 @@ paths: Unauthorized: value: type: error.list - request_id: 35303b49-d388-43b4-9163-f2208ac8ae99 + request_id: f9eb2562-9de5-4617-acd0-6123187a9ae2 errors: - code: unauthorized message: Access Token Invalid @@ -1354,12 +1912,12 @@ paths: value: type: company company_id: '1' - id: 64d36c4045ceba405a02c525 - app_id: this_is_an_id110_that_should_be_at_least_ + id: 64da447271858de103653095 + app_id: this_is_an_id152_that_should_be_at_least_ name: company2 - remote_created_at: 1691577408 - created_at: 1691577408 - updated_at: 1691577408 + remote_created_at: 1692025970 + created_at: 1692025970 + updated_at: 1692025970 monthly_spend: 0 session_count: 0 user_count: 1 @@ -1381,7 +1939,7 @@ paths: Company Not Found: value: type: error.list - request_id: 3eee9b94-3d6e-496b-9fcb-f222ab252eff + request_id: 4035ba9a-5749-4b0e-aa98-8a6947f6a90c errors: - code: company_not_found message: Company Not Found @@ -1395,7 +1953,7 @@ paths: Unauthorized: value: type: error.list - request_id: 3a910470-8a39-41a6-8b1a-dc2e59230f91 + request_id: 99290458-ab7d-4f5e-9032-53657c773533 errors: - code: unauthorized message: Access Token Invalid @@ -1430,12 +1988,12 @@ paths: value: type: company company_id: '1' - id: 64d36c4445ceba405a02c530 - app_id: this_is_an_id116_that_should_be_at_least_ + id: 64da447471858de1036530a0 + app_id: this_is_an_id158_that_should_be_at_least_ name: company4 - remote_created_at: 1691577412 - created_at: 1691577412 - updated_at: 1691577412 + remote_created_at: 1692025972 + created_at: 1692025972 + updated_at: 1692025972 monthly_spend: 0 session_count: 0 user_count: 1 @@ -1457,7 +2015,7 @@ paths: Company Not Found: value: type: error.list - request_id: f1d53097-5442-4f30-b76c-73588c2b2e36 + request_id: 0c473f4c-3382-43fc-9c20-e6f4c93ad65e errors: - code: company_not_found message: Company Not Found @@ -1471,7 +2029,7 @@ paths: Unauthorized: value: type: error.list - request_id: '0496a487-2762-4dd6-9dfa-c6a460556197' + request_id: fd3ee917-7f3b-4c3d-8757-a2337d1285d2 errors: - code: unauthorized message: Access Token Invalid @@ -1505,12 +2063,12 @@ paths: value: type: company company_id: '1' - id: 64d36c4945ceba405a02c53a - app_id: this_is_an_id122_that_should_be_at_least_ + id: 64da447771858de1036530aa + app_id: this_is_an_id164_that_should_be_at_least_ name: company5 - remote_created_at: 1691577417 - created_at: 1691577417 - updated_at: 1691577417 + remote_created_at: 1692025975 + created_at: 1692025975 + updated_at: 1692025975 monthly_spend: 0 session_count: 0 user_count: 1 @@ -1532,7 +2090,7 @@ paths: Company Not Found: value: type: error.list - request_id: e22ce7db-d650-4aa4-b701-f40b38ebc1da + request_id: 78b0e83f-60a4-4ce2-b2c6-2b837bff6c18 errors: - code: company_not_found message: Company Not Found @@ -1546,7 +2104,7 @@ paths: Unauthorized: value: type: error.list - request_id: 7cc72142-76a8-4f77-ac8d-b24ad3ce609f + request_id: 47af5a39-6b56-4c32-9aea-18a2bc8f411e errors: - code: unauthorized message: Access Token Invalid @@ -1578,7 +2136,7 @@ paths: examples: Successful: value: - id: 64d36c4d45ceba405a02c544 + id: 64da447a71858de1036530b4 object: company deleted: true schema: @@ -1591,7 +2149,7 @@ paths: Company Not Found: value: type: error.list - request_id: 0173b925-1edb-45f3-a600-e18140a9e213 + request_id: 272fd44a-47df-4069-9f9a-002b41145a69 errors: - code: company_not_found message: Company Not Found @@ -1605,7 +2163,7 @@ paths: Unauthorized: value: type: error.list - request_id: 197663f4-a8c9-4393-a603-d48f8b445db1 + request_id: 71478f11-d04c-4259-a2d0-545f0a76a6a5 errors: - code: unauthorized message: Access Token Invalid @@ -1657,7 +2215,7 @@ paths: Company Not Found: value: type: error.list - request_id: 95e46747-5bf9-4db8-b0f7-96cd7dbd9125 + request_id: '097fa020-378f-442d-b0e2-86980cba00fa' errors: - code: company_not_found message: Company Not Found @@ -1671,7 +2229,7 @@ paths: Unauthorized: value: type: error.list - request_id: 7e5f6d16-7d8a-4d65-a1ab-1fc9b313958f + request_id: a2fe25ce-56b0-45f2-9320-3207940fd007 errors: - code: unauthorized message: Access Token Invalid @@ -1716,7 +2274,7 @@ paths: Company Not Found: value: type: error.list - request_id: 187a2386-7f8c-48dc-aa6c-384b3c9a718f + request_id: 14f7c992-359c-423c-81a8-0e32f01ef120 errors: - code: company_not_found message: Company Not Found @@ -1730,7 +2288,7 @@ paths: Unauthorized: value: type: error.list - request_id: 46dbd9f7-0609-43dd-add3-ad28a7a4172e + request_id: febe5ea1-07d8-4586-83f5-58f852f04304 errors: - code: unauthorized message: Access Token Invalid @@ -1811,12 +2369,12 @@ paths: data: - type: company company_id: remote_companies_scroll_2 - id: 64d36c5c45ceba405a02c560 - app_id: this_is_an_id146_that_should_be_at_least_ + id: 64da448171858de1036530d0 + app_id: this_is_an_id188_that_should_be_at_least_ name: IntercomQATest1 - remote_created_at: 1691577436 - created_at: 1691577436 - updated_at: 1691577436 + remote_created_at: 1692025985 + created_at: 1692025985 + updated_at: 1692025985 monthly_spend: 0 session_count: 0 user_count: 4 @@ -1830,7 +2388,7 @@ paths: custom_attributes: {} pages: type: pages - next: + next: page: 1 per_page: 15 total_pages: 1 @@ -1845,7 +2403,7 @@ paths: Unauthorized: value: type: error.list - request_id: 4ae8b7ad-bc07-4a7d-b8a1-73ae0d193bfe + request_id: 9815afac-cc46-4cda-85e1-759bc4225516 errors: - code: unauthorized message: Access Token Invalid @@ -1897,12 +2455,12 @@ paths: data: - type: company company_id: remote_companies_scroll_2 - id: 64d36c5f45ceba405a02c568 - app_id: this_is_an_id150_that_should_be_at_least_ + id: 64da448271858de1036530d8 + app_id: this_is_an_id192_that_should_be_at_least_ name: IntercomQATest1 - remote_created_at: 1691577439 - created_at: 1691577439 - updated_at: 1691577439 + remote_created_at: 1692025986 + created_at: 1692025986 + updated_at: 1692025986 monthly_spend: 0 session_count: 0 user_count: 4 @@ -1914,9 +2472,9 @@ paths: segments: [] plan: {} custom_attributes: {} - pages: - total_count: - scroll_param: ab815309-ed92-4838-81c6-c74198b28ef4 + pages: + total_count: + scroll_param: ce4b4748-e03b-4d96-8384-0e00be8bb4ac schema: "$ref": "#/components/schemas/company_scroll" '401': @@ -1927,7 +2485,7 @@ paths: Unauthorized: value: type: error.list - request_id: 2447ce74-3ce9-4b4d-aaee-b7006c9cbfd8 + request_id: 4fb1a66b-95b2-4ccf-a598-7831fe6fd38f errors: - code: unauthorized message: Access Token Invalid @@ -1962,12 +2520,12 @@ paths: value: type: company company_id: '1' - id: 64d36c6345ceba405a02c571 - app_id: this_is_an_id154_that_should_be_at_least_ + id: 64da448471858de1036530e1 + app_id: this_is_an_id196_that_should_be_at_least_ name: company9 - remote_created_at: 1691577443 - created_at: 1691577443 - updated_at: 1691577443 + remote_created_at: 1692025988 + created_at: 1692025988 + updated_at: 1692025988 monthly_spend: 0 session_count: 0 user_count: 1 @@ -1989,7 +2547,7 @@ paths: Company Not Found: value: type: error.list - request_id: 27ac365a-bd8c-40fb-8fd9-3db279c24fb1 + request_id: ba3197b8-6b30-4e13-a84c-a2415339fbc0 errors: - code: not_found message: User Not Found @@ -2003,7 +2561,7 @@ paths: Unauthorized: value: type: error.list - request_id: f504121f-3ddf-45d9-9cfe-a381e88bf506 + request_id: 70795f97-568b-417f-b2e7-1c605cb1bf5e errors: - code: unauthorized message: Access Token Invalid @@ -2026,11 +2584,11 @@ paths: successful: summary: Successful value: - id: 64d36c6345ceba405a02c571 + id: 64da448471858de1036530e1 company_not_found: summary: Company Not Found value: - id: 64d36c6545ceba405a02c575 + id: 64da448671858de1036530e5 "/contacts/{contact_id}/companies/{id}": delete: summary: Detach a contact from a company @@ -2068,12 +2626,12 @@ paths: value: type: company company_id: '1' - id: 64d36c6845ceba405a02c57d - app_id: this_is_an_id160_that_should_be_at_least_ + id: 64da448871858de1036530ed + app_id: this_is_an_id202_that_should_be_at_least_ name: company12 - remote_created_at: 1691577448 - created_at: 1691577448 - updated_at: 1691577449 + remote_created_at: 1692025992 + created_at: 1692025992 + updated_at: 1692025992 monthly_spend: 0 session_count: 0 user_count: 0 @@ -2095,14 +2653,14 @@ paths: Company Not Found: value: type: error.list - request_id: 713a8be9-2eca-4ce1-bb8c-b66593a764fe + request_id: 21b6e5b3-b9a5-47bc-b91a-8849af57b00e errors: - code: company_not_found message: Company Not Found Contact Not Found: value: type: error.list - request_id: 49727e92-1316-43fa-b7c0-2ccad4ed8611 + request_id: 97ec6018-2c5d-4c68-a134-6f12b76c2723 errors: - code: not_found message: User Not Found @@ -2116,7 +2674,7 @@ paths: Unauthorized: value: type: error.list - request_id: 654cc142-ee55-41ad-8d89-6d509aebae98 + request_id: ae38825c-a420-46df-af6e-c06221bffdcc errors: - code: unauthorized message: Access Token Invalid @@ -2154,13 +2712,13 @@ paths: data: - type: company company_id: '1' - id: 64d36c7f45ceba405a02c5a3 - app_id: this_is_an_id168_that_should_be_at_least_ + id: 64da449571858de103653113 + app_id: this_is_an_id210_that_should_be_at_least_ name: company25 - remote_created_at: 1691577471 - created_at: 1691577471 - updated_at: 1691577471 - last_request_at: 1691404671 + remote_created_at: 1692026005 + created_at: 1692026005 + updated_at: 1692026005 + last_request_at: 1691853205 monthly_spend: 0 session_count: 0 user_count: 1 @@ -2174,7 +2732,7 @@ paths: custom_attributes: {} pages: type: pages - next: + next: page: 1 per_page: 50 total_pages: 1 @@ -2189,7 +2747,7 @@ paths: Contact not found: value: type: error.list - request_id: 6595a6c2-8717-44ae-8763-3a36a59f1384 + request_id: 3457cf37-597b-41da-a93c-f14d6c1e8e7b errors: - code: not_found message: User Not Found @@ -2203,7 +2761,7 @@ paths: Unauthorized: value: type: error.list - request_id: 0e716791-9ac1-4b80-abe1-6d4885395395 + request_id: 55d149e7-e14e-4f44-96b2-52305bbf34ce errors: - code: unauthorized message: Access Token Invalid @@ -2239,51 +2797,51 @@ paths: type: list data: - type: note - id: '409656' - created_at: 1690972677 + id: '411674' + created_at: 1691421208 contact: type: contact - id: 64d36c8545ceba405a02c5ae + id: 64da449771858de10365311e author: type: admin - id: '991266309' - name: Ciaran94 Lee - email: admin94@email.com + id: '991266330' + name: Ciaran115 Lee + email: admin115@email.com away_mode_enabled: false away_mode_reassign: false body: "

This is a note.

" - type: note - id: '409655' - created_at: 1690886277 + id: '411673' + created_at: 1691334808 contact: type: contact - id: 64d36c8545ceba405a02c5ae + id: 64da449771858de10365311e author: type: admin - id: '991266309' - name: Ciaran94 Lee - email: admin94@email.com + id: '991266330' + name: Ciaran115 Lee + email: admin115@email.com away_mode_enabled: false away_mode_reassign: false body: "

This is a note.

" - type: note - id: '409654' - created_at: 1690886276 + id: '411672' + created_at: 1691334807 contact: type: contact - id: 64d36c8545ceba405a02c5ae + id: 64da449771858de10365311e author: type: admin - id: '991266309' - name: Ciaran94 Lee - email: admin94@email.com + id: '991266330' + name: Ciaran115 Lee + email: admin115@email.com away_mode_enabled: false away_mode_reassign: false body: "

This is a note.

" total_count: 3 pages: type: pages - next: + next: page: 1 per_page: 50 total_pages: 1 @@ -2297,7 +2855,7 @@ paths: Contact not found: value: type: error.list - request_id: c02b3cec-5b75-4086-9171-2031fd2e4c91 + request_id: 83e22584-75d4-42a3-8cc2-530277630c9e errors: - code: not_found message: User Not Found @@ -2331,16 +2889,16 @@ paths: Successful response: value: type: note - id: '409661' - created_at: 1691577480 + id: '411679' + created_at: 1692026009 contact: type: contact - id: 64d36c8745ceba405a02c5b0 + id: 64da449971858de103653120 author: type: admin - id: '991266311' - name: Ciaran96 Lee - email: admin96@email.com + id: '991266332' + name: Ciaran117 Lee + email: admin117@email.com away_mode_enabled: false away_mode_reassign: false body: "

Hello

" @@ -2354,14 +2912,14 @@ paths: Admin not found: value: type: error.list - request_id: d6adbcd8-5d26-4144-9dd4-3b29ca5741c3 + request_id: 2660bd86-1a7c-4d61-acdc-60b714c3ff0e errors: - code: not_found message: Resource Not Found Contact not found: value: type: error.list - request_id: f9b674d0-16d5-42b8-aa4c-81a89e65df8b + request_id: 5f2761ac-89af-406b-bdae-04d244c8ebe4 errors: - code: not_found message: User Not Found @@ -2391,20 +2949,20 @@ paths: successful_response: summary: Successful response value: - contact_id: 64d36c8745ceba405a02c5b0 - admin_id: 991266311 + contact_id: 64da449971858de103653120 + admin_id: 991266332 body: Hello admin_not_found: summary: Admin not found value: - contact_id: 64d36c8845ceba405a02c5b1 + contact_id: 64da449971858de103653121 admin_id: 123 body: Hello contact_not_found: summary: Contact not found value: contact_id: 123 - admin_id: 991266313 + admin_id: 991266334 body: Hello "/contacts/{contact_id}/segments": get: @@ -2437,10 +2995,10 @@ paths: type: list data: - type: segment - id: 64d36c8b45ceba405a02c5b3 + id: 64da449a71858de103653123 name: segment - created_at: 1691577483 - updated_at: 1691577483 + created_at: 1692026010 + updated_at: 1692026010 person_type: user schema: "$ref": "#/components/schemas/contact_segments" @@ -2452,7 +3010,7 @@ paths: Contact not found: value: type: error.list - request_id: ea9cde2b-5acf-47b1-a289-8229281c588d + request_id: 00a3127a-c68c-4bae-9232-4709bb263ae7 errors: - code: not_found message: User Not Found @@ -2466,7 +3024,7 @@ paths: Unauthorized: value: type: error.list - request_id: 1323b717-b96d-49b6-897f-3d0216b349f7 + request_id: 2d193246-0681-4d6c-befc-609ea0761719 errors: - code: unauthorized message: Access Token Invalid @@ -2510,7 +3068,7 @@ paths: type: list data: - type: subscription - id: '444969' + id: '446987' state: live consent_type: opt_out default_translation: @@ -2524,7 +3082,7 @@ paths: content_types: - email - type: subscription - id: '444971' + id: '446989' state: live consent_type: opt_in default_translation: @@ -2547,7 +3105,7 @@ paths: Contact not found: value: type: error.list - request_id: 988ce043-22fb-4f9c-9ecc-8739f89bf674 + request_id: dd4017ad-a14b-48b2-8e3d-734e15aeb05d errors: - code: not_found message: User Not Found @@ -2561,7 +3119,7 @@ paths: Unauthorized: value: type: error.list - request_id: adcac088-1a0b-47c5-a65d-3d06b4d0f79a + request_id: 8cb5a3f5-8bb4-4abb-9115-640dcedbca83 errors: - code: unauthorized message: Access Token Invalid @@ -2602,7 +3160,7 @@ paths: Successful: value: type: subscription - id: '444984' + id: '447002' state: live consent_type: opt_in default_translation: @@ -2625,14 +3183,14 @@ paths: Contact not found: value: type: error.list - request_id: 3298e44b-7bb1-491b-91ae-6fb7511a1d90 + request_id: 9bd10fc0-8a75-47c1-9916-515a8fb433b0 errors: - code: not_found message: User Not Found Resource not found: value: type: error.list - request_id: d7ab94c5-5a72-478a-922e-aefc1007a9c5 + request_id: 38cce6ca-35f8-477e-98f1-2bfa70189d12 errors: - code: not_found message: Resource Not Found @@ -2646,7 +3204,7 @@ paths: Unauthorized: value: type: error.list - request_id: fac3a1da-af5d-414e-b546-ac69b0c8a8c3 + request_id: c6771951-ba30-4dff-9b84-0a674682e569 errors: - code: unauthorized message: Access Token Invalid @@ -2674,12 +3232,12 @@ paths: successful: summary: Successful value: - id: 444984 + id: 447002 consent_type: opt_in contact_not_found: summary: Contact not found value: - id: 444988 + id: 447006 consent_type: opt_in resource_not_found: summary: Resource not found @@ -2725,7 +3283,7 @@ paths: Successful: value: type: subscription - id: '445000' + id: '447018' state: live consent_type: opt_in default_translation: @@ -2748,14 +3306,14 @@ paths: Contact not found: value: type: error.list - request_id: 10f9bb61-d504-426d-aa7f-cff4858a0612 + request_id: bd351075-3540-444e-82a0-05863cafd494 errors: - code: not_found message: User Not Found Resource not found: value: type: error.list - request_id: 1f3b2195-d1c8-441e-a445-525dc4988809 + request_id: e21635fb-c4af-40d2-8a79-0af70f1bd772 errors: - code: not_found message: Resource Not Found @@ -2769,7 +3327,7 @@ paths: Unauthorized: value: type: error.list - request_id: b63a16ad-5a12-4949-b350-b5bb51ccaf46 + request_id: 5f873c80-fe40-444a-8ce2-e2957dec401d errors: - code: unauthorized message: Access Token Invalid @@ -2807,7 +3365,7 @@ paths: type: list data: - type: tag - id: '324900' + id: '326918' name: Manual tag schema: "$ref": "#/components/schemas/tag_list" @@ -2819,7 +3377,7 @@ paths: Contact not found: value: type: error.list - request_id: 94739bb3-4b0d-4693-aae1-28ef7899ac91 + request_id: d0644827-814e-40b0-b6a4-5495cb30f623 errors: - code: not_found message: User Not Found @@ -2833,7 +3391,7 @@ paths: Unauthorized: value: type: error.list - request_id: 167b1589-159a-43f0-ac40-2d64b9a13add + request_id: 0d0c9d85-536d-467e-881f-cd111942957d errors: - code: unauthorized message: Access Token Invalid @@ -2868,7 +3426,7 @@ paths: successful: value: type: tag - id: '324901' + id: '326919' name: Manual tag schema: "$ref": "#/components/schemas/tag" @@ -2880,14 +3438,14 @@ paths: Contact not found: value: type: error.list - request_id: a2d9b5f5-c8e4-4909-a878-484935889f66 + request_id: aa7f6b76-f2ff-4a3a-a0de-409ac06ffc76 errors: - code: not_found message: User Not Found Tag not found: value: type: error.list - request_id: ee07f887-71e0-4167-9a3b-481542a0a276 + request_id: 54fa2ac0-4a92-4c90-878d-186a32bf6101 errors: - code: not_found message: Resource Not Found @@ -2901,7 +3459,7 @@ paths: Unauthorized: value: type: error.list - request_id: c3dd9f88-7818-499d-b4ba-e7498137b9b8 + request_id: 754c1025-6d81-4121-b41b-8760936f32b9 errors: - code: unauthorized message: Access Token Invalid @@ -2924,11 +3482,11 @@ paths: successful: summary: successful value: - id: 324901 + id: 326919 contact_not_found: summary: Contact not found value: - id: 324902 + id: 326920 tag_not_found: summary: Tag not found value: @@ -2970,7 +3528,7 @@ paths: successful: value: type: tag - id: '324904' + id: '326922' name: Manual tag schema: "$ref": "#/components/schemas/tag" @@ -2982,14 +3540,14 @@ paths: Contact not found: value: type: error.list - request_id: 3750b823-93c6-4278-886c-1bd5aa1f6eb8 + request_id: 9238b9ce-d806-408e-a256-dc503d6817bf errors: - code: not_found message: User Not Found Tag not found: value: type: error.list - request_id: aa1e33b7-7180-4960-b0b9-da2154ea1dd7 + request_id: 888727d8-53ab-432b-8b01-25ada837e8f2 errors: - code: not_found message: Resource Not Found @@ -3003,7 +3561,7 @@ paths: Unauthorized: value: type: error.list - request_id: 4722c5f7-8394-49be-aa1f-9b54da5f29a7 + request_id: 47457c95-8428-43b0-96d0-a435b02344a8 errors: - code: unauthorized message: Access Token Invalid @@ -3037,91 +3595,91 @@ paths: successful: value: type: contact - id: 64d36ca345ceba405a02c5ca - workspace_id: this_is_an_id234_that_should_be_at_least_ + id: 64da44a971858de10365313a + workspace_id: this_is_an_id276_that_should_be_at_least_ external_id: '70' role: user email: joebloggs@intercom.io - phone: - formatted_phone: + phone: + formatted_phone: name: joe bloggs - avatar: - owner_id: + avatar: + owner_id: social_profiles: type: list data: [] has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false - created_at: 1691577508 - updated_at: 1691577508 - signed_up_at: 1691577508 - last_seen_at: - last_replied_at: - last_contacted_at: - last_email_opened_at: - last_email_clicked_at: - language_override: - browser: - browser_version: - browser_language: - os: + created_at: 1692026025 + updated_at: 1692026025 + signed_up_at: 1692026025 + last_seen_at: + last_replied_at: + last_contacted_at: + last_email_opened_at: + last_email_clicked_at: + language_override: + browser: + browser_version: + browser_language: + os: location: type: location - country: - region: - city: - country_code: - continent_code: - android_app_name: - android_app_version: - android_device: - android_os_version: - android_sdk_version: - android_last_seen_at: - ios_app_name: - ios_app_version: - ios_device: - ios_os_version: - ios_sdk_version: - ios_last_seen_at: + country: + region: + city: + country_code: + continent_code: + android_app_name: + android_app_version: + android_device: + android_os_version: + android_sdk_version: + android_last_seen_at: + ios_app_name: + ios_app_version: + ios_device: + ios_os_version: + ios_sdk_version: + ios_last_seen_at: custom_attributes: {} tags: type: list data: [] - url: "/contacts/64d36ca345ceba405a02c5ca/tags" + url: "/contacts/64da44a971858de10365313a/tags" total_count: 0 has_more: false notes: type: list data: [] - url: "/contacts/64d36ca345ceba405a02c5ca/notes" + url: "/contacts/64da44a971858de10365313a/notes" total_count: 0 has_more: false companies: type: list data: [] - url: "/contacts/64d36ca345ceba405a02c5ca/companies" + url: "/contacts/64da44a971858de10365313a/companies" total_count: 0 has_more: false opted_out_subscription_types: type: list data: [] - url: "/contacts/64d36ca345ceba405a02c5ca/subscriptions" + url: "/contacts/64da44a971858de10365313a/subscriptions" total_count: 0 has_more: false opted_in_subscription_types: type: list data: [] - url: "/contacts/64d36ca345ceba405a02c5ca/subscriptions" + url: "/contacts/64da44a971858de10365313a/subscriptions" total_count: 0 has_more: false - utm_campaign: - utm_content: - utm_medium: - utm_source: - utm_term: - referrer: + utm_campaign: + utm_content: + utm_medium: + utm_source: + utm_term: + referrer: schema: "$ref": "#/components/schemas/contact" '401': @@ -3132,7 +3690,7 @@ paths: Unauthorized: value: type: error.list - request_id: 9002a663-d522-45f7-af8a-15ab4265e3d4 + request_id: eb189c10-6e10-4159-bfaa-0627ac2ea4d9 errors: - code: unauthorized message: Access Token Invalid @@ -3177,91 +3735,91 @@ paths: successful: value: type: contact - id: 64d36ca645ceba405a02c5cb - workspace_id: this_is_an_id238_that_should_be_at_least_ + id: 64da44ab71858de10365313b + workspace_id: this_is_an_id280_that_should_be_at_least_ external_id: '70' role: user email: joe@bloggs.com - phone: - formatted_phone: + phone: + formatted_phone: name: Joe Bloggs - avatar: - owner_id: + avatar: + owner_id: social_profiles: type: list data: [] has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false - created_at: 1691577510 - updated_at: 1691577510 - signed_up_at: 1691577510 - last_seen_at: - last_replied_at: - last_contacted_at: - last_email_opened_at: - last_email_clicked_at: - language_override: - browser: - browser_version: - browser_language: - os: + created_at: 1692026027 + updated_at: 1692026027 + signed_up_at: 1692026027 + last_seen_at: + last_replied_at: + last_contacted_at: + last_email_opened_at: + last_email_clicked_at: + language_override: + browser: + browser_version: + browser_language: + os: location: type: location - country: - region: - city: - country_code: - continent_code: - android_app_name: - android_app_version: - android_device: - android_os_version: - android_sdk_version: - android_last_seen_at: - ios_app_name: - ios_app_version: - ios_device: - ios_os_version: - ios_sdk_version: - ios_last_seen_at: + country: + region: + city: + country_code: + continent_code: + android_app_name: + android_app_version: + android_device: + android_os_version: + android_sdk_version: + android_last_seen_at: + ios_app_name: + ios_app_version: + ios_device: + ios_os_version: + ios_sdk_version: + ios_last_seen_at: custom_attributes: {} tags: type: list data: [] - url: "/contacts/64d36ca645ceba405a02c5cb/tags" + url: "/contacts/64da44ab71858de10365313b/tags" total_count: 0 has_more: false notes: type: list data: [] - url: "/contacts/64d36ca645ceba405a02c5cb/notes" + url: "/contacts/64da44ab71858de10365313b/notes" total_count: 0 has_more: false companies: type: list data: [] - url: "/contacts/64d36ca645ceba405a02c5cb/companies" + url: "/contacts/64da44ab71858de10365313b/companies" total_count: 0 has_more: false opted_out_subscription_types: type: list data: [] - url: "/contacts/64d36ca645ceba405a02c5cb/subscriptions" + url: "/contacts/64da44ab71858de10365313b/subscriptions" total_count: 0 has_more: false opted_in_subscription_types: type: list data: [] - url: "/contacts/64d36ca645ceba405a02c5cb/subscriptions" + url: "/contacts/64da44ab71858de10365313b/subscriptions" total_count: 0 has_more: false - utm_campaign: - utm_content: - utm_medium: - utm_source: - utm_term: - referrer: + utm_campaign: + utm_content: + utm_medium: + utm_source: + utm_term: + referrer: schema: "$ref": "#/components/schemas/contact" '401': @@ -3272,7 +3830,7 @@ paths: Unauthorized: value: type: error.list - request_id: 1aa6e9da-78f5-4cff-87a9-caeee878d1ab + request_id: e7b3b8c4-f7d2-41f3-819a-f84eeb78368d errors: - code: unauthorized message: Access Token Invalid @@ -3303,7 +3861,7 @@ paths: examples: successful: value: - id: 64d36ca845ceba405a02c5cc + id: 64da44ac71858de10365313c external_id: '70' type: contact deleted: true @@ -3317,7 +3875,7 @@ paths: Unauthorized: value: type: error.list - request_id: bb387e67-b142-47eb-9c3d-248b10c1eb6c + request_id: 1ab77254-ffe5-454d-855e-e8ea536ddb60 errors: - code: unauthorized message: Access Token Invalid @@ -3345,91 +3903,91 @@ paths: successful: value: type: contact - id: 64d36cab45ceba405a02c5ce - workspace_id: this_is_an_id246_that_should_be_at_least_ + id: 64da44ae71858de10365313e + workspace_id: this_is_an_id288_that_should_be_at_least_ external_id: '70' role: user email: joe@bloggs.com - phone: - formatted_phone: + phone: + formatted_phone: name: Joe Bloggs - avatar: - owner_id: + avatar: + owner_id: social_profiles: type: list data: [] has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false - created_at: 1691577515 - updated_at: 1691577516 - signed_up_at: 1691577515 - last_seen_at: - last_replied_at: - last_contacted_at: - last_email_opened_at: - last_email_clicked_at: - language_override: - browser: - browser_version: - browser_language: - os: + created_at: 1692026030 + updated_at: 1692026030 + signed_up_at: 1692026030 + last_seen_at: + last_replied_at: + last_contacted_at: + last_email_opened_at: + last_email_clicked_at: + language_override: + browser: + browser_version: + browser_language: + os: location: type: location - country: - region: - city: - country_code: - continent_code: - android_app_name: - android_app_version: - android_device: - android_os_version: - android_sdk_version: - android_last_seen_at: - ios_app_name: - ios_app_version: - ios_device: - ios_os_version: - ios_sdk_version: - ios_last_seen_at: + country: + region: + city: + country_code: + continent_code: + android_app_name: + android_app_version: + android_device: + android_os_version: + android_sdk_version: + android_last_seen_at: + ios_app_name: + ios_app_version: + ios_device: + ios_os_version: + ios_sdk_version: + ios_last_seen_at: custom_attributes: {} tags: type: list data: [] - url: "/contacts/64d36cab45ceba405a02c5ce/tags" + url: "/contacts/64da44ae71858de10365313e/tags" total_count: 0 has_more: false notes: type: list data: [] - url: "/contacts/64d36cab45ceba405a02c5ce/notes" + url: "/contacts/64da44ae71858de10365313e/notes" total_count: 0 has_more: false companies: type: list data: [] - url: "/contacts/64d36cab45ceba405a02c5ce/companies" + url: "/contacts/64da44ae71858de10365313e/companies" total_count: 0 has_more: false opted_out_subscription_types: type: list data: [] - url: "/contacts/64d36cab45ceba405a02c5ce/subscriptions" + url: "/contacts/64da44ae71858de10365313e/subscriptions" total_count: 0 has_more: false opted_in_subscription_types: type: list data: [] - url: "/contacts/64d36cab45ceba405a02c5ce/subscriptions" + url: "/contacts/64da44ae71858de10365313e/subscriptions" total_count: 0 has_more: false - utm_campaign: - utm_content: - utm_medium: - utm_source: - utm_term: - referrer: + utm_campaign: + utm_content: + utm_medium: + utm_source: + utm_term: + referrer: schema: "$ref": "#/components/schemas/contact" '401': @@ -3440,7 +3998,7 @@ paths: Unauthorized: value: type: error.list - request_id: 7cbf3606-da5f-4969-9e21-c72929dc770a + request_id: 99a6847a-75fd-44d7-ad47-38af8bc4341f errors: - code: unauthorized message: Access Token Invalid @@ -3455,8 +4013,8 @@ paths: successful: summary: successful value: - from: 64d36cab45ceba405a02c5cd - into: 64d36cab45ceba405a02c5ce + from: 64da44ae71858de10365313d + into: 64da44ae71858de10365313e "/contacts/search": post: summary: Search contacts @@ -3565,7 +4123,7 @@ paths: Unauthorized: value: type: error.list - request_id: b295e079-23a7-43ef-a029-05327061dfa2 + request_id: 9f4d0de3-ad16-4a58-9e75-f5b5ccedb52b errors: - code: unauthorized message: Access Token Invalid @@ -3585,15 +4143,15 @@ paths: value: - field: id operator: "=" - value: 64d36caf45ceba405a02c5d1 + value: 64da44b071858de103653141 - operator: OR value: - field: id operator: "=" - value: 64d36caf45ceba405a02c5d1 + value: 64da44b071858de103653141 - field: id operator: "=" - value: 64d36caf45ceba405a02c5d1 + value: 64da44b071858de103653141 "/contacts": get: summary: List all contacts @@ -3632,7 +4190,7 @@ paths: Unauthorized: value: type: error.list - request_id: 77210af5-4cae-4b39-b1da-4161bb122195 + request_id: 2a092cdb-8ea6-469b-82d7-9e2b96f5b469 errors: - code: unauthorized message: Access Token Invalid @@ -3658,91 +4216,91 @@ paths: successful: value: type: contact - id: 64d36cb545ceba405a02c5d3 - workspace_id: this_is_an_id258_that_should_be_at_least_ - external_id: + id: 64da44b271858de103653143 + workspace_id: this_is_an_id300_that_should_be_at_least_ + external_id: role: user email: joebloggs@intercom.io - phone: - formatted_phone: - name: - avatar: - owner_id: + phone: + formatted_phone: + name: + avatar: + owner_id: social_profiles: type: list data: [] has_hard_bounced: false marked_email_as_spam: false unsubscribed_from_emails: false - created_at: 1691577525 - updated_at: 1691577525 - signed_up_at: - last_seen_at: - last_replied_at: - last_contacted_at: - last_email_opened_at: - last_email_clicked_at: - language_override: - browser: - browser_version: - browser_language: - os: + created_at: 1692026034 + updated_at: 1692026034 + signed_up_at: + last_seen_at: + last_replied_at: + last_contacted_at: + last_email_opened_at: + last_email_clicked_at: + language_override: + browser: + browser_version: + browser_language: + os: location: type: location - country: - region: - city: - country_code: - continent_code: - android_app_name: - android_app_version: - android_device: - android_os_version: - android_sdk_version: - android_last_seen_at: - ios_app_name: - ios_app_version: - ios_device: - ios_os_version: - ios_sdk_version: - ios_last_seen_at: + country: + region: + city: + country_code: + continent_code: + android_app_name: + android_app_version: + android_device: + android_os_version: + android_sdk_version: + android_last_seen_at: + ios_app_name: + ios_app_version: + ios_device: + ios_os_version: + ios_sdk_version: + ios_last_seen_at: custom_attributes: {} tags: type: list data: [] - url: "/contacts/64d36cb545ceba405a02c5d3/tags" + url: "/contacts/64da44b271858de103653143/tags" total_count: 0 has_more: false notes: type: list data: [] - url: "/contacts/64d36cb545ceba405a02c5d3/notes" + url: "/contacts/64da44b271858de103653143/notes" total_count: 0 has_more: false companies: type: list data: [] - url: "/contacts/64d36cb545ceba405a02c5d3/companies" + url: "/contacts/64da44b271858de103653143/companies" total_count: 0 has_more: false opted_out_subscription_types: type: list data: [] - url: "/contacts/64d36cb545ceba405a02c5d3/subscriptions" + url: "/contacts/64da44b271858de103653143/subscriptions" total_count: 0 has_more: false opted_in_subscription_types: type: list data: [] - url: "/contacts/64d36cb545ceba405a02c5d3/subscriptions" + url: "/contacts/64da44b271858de103653143/subscriptions" total_count: 0 has_more: false - utm_campaign: - utm_content: - utm_medium: - utm_source: - utm_term: - referrer: + utm_campaign: + utm_content: + utm_medium: + utm_source: + utm_term: + referrer: schema: "$ref": "#/components/schemas/contact" '401': @@ -3753,7 +4311,7 @@ paths: Unauthorized: value: type: error.list - request_id: a128b236-1049-4a2f-bf0f-360136c1f8e0 + request_id: c95bbe5d-10bf-4f90-86d4-a59c277b4c56 errors: - code: unauthorized message: Access Token Invalid @@ -3797,7 +4355,7 @@ paths: examples: successful: value: - id: 64d36cb745ceba405a02c5d4 + id: 64da44b471858de103653144 external_id: '70' type: contact archived: true @@ -3830,7 +4388,7 @@ paths: examples: successful: value: - id: 64d36cb945ceba405a02c5d5 + id: 64da44b571858de103653145 external_id: '70' type: contact archived: false @@ -3866,7 +4424,7 @@ paths: successful: value: type: tag - id: '324906' + id: '326924' name: Manual tag schema: "$ref": "#/components/schemas/tag" @@ -3878,7 +4436,7 @@ paths: Conversation not found: value: type: error.list - request_id: 8e67b6ae-de7b-4da0-bfe2-44e73c637e5d + request_id: 5b61a112-ff96-4fb2-a4fb-e6b20adc7f89 errors: - code: not_found message: Conversation not found @@ -3892,7 +4450,7 @@ paths: Unauthorized: value: type: error.list - request_id: 695b87b3-17b7-4e45-a012-3729ecfdc776 + request_id: f0f4bf07-3efd-4f70-a168-31e8c570c397 errors: - code: unauthorized message: Access Token Invalid @@ -3921,13 +4479,13 @@ paths: successful: summary: successful value: - id: 324906 - admin_id: 991266344 + id: 326924 + admin_id: 991266365 conversation_not_found: summary: Conversation not found value: - id: 324907 - admin_id: 991266346 + id: 326925 + admin_id: 991266367 "/conversations/{conversation_id}/tags/{id}": delete: summary: Remove tag from a conversation @@ -3965,7 +4523,7 @@ paths: successful: value: type: tag - id: '324909' + id: '326927' name: Manual tag schema: "$ref": "#/components/schemas/tag" @@ -3977,14 +4535,14 @@ paths: Conversation not found: value: type: error.list - request_id: aab15d84-51af-45d7-ba02-80a7eef4dd69 + request_id: 1e4c0a38-a88f-46ad-89c3-31f775782fb3 errors: - code: not_found message: Conversation not found Tag not found: value: type: error.list - request_id: dd52fae6-8768-4d18-8d3a-b1741a49487e + request_id: cb7404d6-aef5-44fb-9f96-9c9e401ffb65 errors: - code: tag_not_found message: Tag not found @@ -3998,7 +4556,7 @@ paths: Unauthorized: value: type: error.list - request_id: 10875e6d-6172-4e8e-832a-98cf72c09321 + request_id: 7c785896-80c9-4ea7-a32b-0378357eec2f errors: - code: unauthorized message: Access Token Invalid @@ -4021,15 +4579,15 @@ paths: successful: summary: successful value: - admin_id: 991266348 + admin_id: 991266369 conversation_not_found: summary: Conversation not found value: - admin_id: 991266350 + admin_id: 991266371 tag_not_found: summary: Tag not found value: - admin_id: 991266351 + admin_id: 991266372 "/conversations": get: summary: List all conversations @@ -4076,11 +4634,11 @@ paths: total_count: 1 conversations: - type: conversation - id: '720430' - created_at: 1691577541 - updated_at: 1691577541 - waiting_since: - snoozed_until: + id: '722448' + created_at: 1692026044 + updated_at: 1692026044 + waiting_since: + snoozed_until: source: type: conversation id: '403918065' @@ -4089,21 +4647,21 @@ paths: body: "

this is the message body

" author: type: admin - id: '991266354' - name: Ciaran136 Lee - email: admin136@email.com + id: '991266375' + name: Ciaran157 Lee + email: admin157@email.com attachments: [] - url: + url: redacted: false contacts: type: contact.list contacts: - type: contact - id: 64d36cc545ceba405a02c5d9 + id: 64da44bb71858de103653149 external_id: '70' - first_contact_reply: - admin_assignee_id: - team_assignee_id: + first_contact_reply: + admin_assignee_id: + team_assignee_id: open: false state: closed read: false @@ -4111,14 +4669,14 @@ paths: type: tag.list tags: [] priority: not_priority - sla_applied: - statistics: - conversation_rating: - teammates: - title: + sla_applied: + statistics: + conversation_rating: + teammates: + title: custom_attributes: {} topics: {} - ticket: + ticket: linked_objects: type: list data: [] @@ -4134,7 +4692,7 @@ paths: Unauthorized: value: type: error.list - request_id: dd762bb6-ef63-41fa-8cb0-59bd63167722 + request_id: b58205cf-4bf6-45fb-96f2-715cef8b6917 errors: - code: unauthorized message: Access Token Invalid @@ -4148,7 +4706,7 @@ paths: API plan restricted: value: type: error.list - request_id: c385ae25-1b2d-4e70-8dfb-bad6fa76452a + request_id: c994e080-2b4c-45ca-999b-ebae03099a31 errors: - code: api_plan_restricted message: Active subscription needed. @@ -4181,10 +4739,10 @@ paths: value: type: user_message id: '403918075' - created_at: 1691577584 + created_at: 1692026070 body: Hello there message_type: inapp - conversation_id: '720455' + conversation_id: '722473' schema: "$ref": "#/components/schemas/message" '404': @@ -4195,7 +4753,7 @@ paths: Contact Not Found: value: type: error.list - request_id: 31adb6d5-3972-47d3-9a8e-211089c3fb80 + request_id: 84c1528f-a9f6-4d82-b7f8-04189474825f errors: - code: not_found message: User Not Found @@ -4209,7 +4767,7 @@ paths: Unauthorized: value: type: error.list - request_id: 91832a0a-2203-49b3-9f31-79a650d96e5b + request_id: c15fce2b-eedb-4c00-8492-453fcf6fc0eb errors: - code: unauthorized message: Access Token Invalid @@ -4223,7 +4781,7 @@ paths: API plan restricted: value: type: error.list - request_id: d45a2ffa-1b22-4741-8d34-54193fc37fab + request_id: 7222d8b5-f94f-40df-94bc-30b0b28035c6 errors: - code: api_plan_restricted message: Active subscription needed. @@ -4240,7 +4798,7 @@ paths: value: from: type: user - id: 64d36cee45ceba405a02c5ee + id: 64da44d571858de10365315e body: Hello there contact_not_found: summary: Contact Not Found @@ -4292,11 +4850,11 @@ paths: conversation found: value: type: conversation - id: '720459' - created_at: 1691577596 - updated_at: 1691577596 - waiting_since: - snoozed_until: + id: '722477' + created_at: 1692026077 + updated_at: 1692026077 + waiting_since: + snoozed_until: source: type: conversation id: '403918079' @@ -4305,21 +4863,21 @@ paths: body: "

this is the message body

" author: type: admin - id: '991266368' - name: Ciaran143 Lee - email: admin143@email.com + id: '991266389' + name: Ciaran164 Lee + email: admin164@email.com attachments: [] - url: + url: redacted: false contacts: type: contact.list contacts: - type: contact - id: 64d36cfb45ceba405a02c5f2 + id: 64da44dd71858de103653162 external_id: '70' - first_contact_reply: - admin_assignee_id: - team_assignee_id: + first_contact_reply: + admin_assignee_id: + team_assignee_id: open: false state: closed read: false @@ -4327,14 +4885,14 @@ paths: type: tag.list tags: [] priority: not_priority - sla_applied: - statistics: - conversation_rating: - teammates: - title: + sla_applied: + statistics: + conversation_rating: + teammates: + title: custom_attributes: {} topics: {} - ticket: + ticket: linked_objects: type: list data: [] @@ -4354,7 +4912,7 @@ paths: Not found: value: type: error.list - request_id: 18d41d5c-dd06-45ba-8a20-8a53c21c13ce + request_id: f3777ffd-b34a-494d-815b-1867893a3a48 errors: - code: not_found message: Resource Not Found @@ -4368,7 +4926,7 @@ paths: Unauthorized: value: type: error.list - request_id: e8a27a93-0bb3-443d-877f-59721b18adc3 + request_id: 9de7b8e7-33d5-4441-b4f2-936fc17739dc errors: - code: unauthorized message: Access Token Invalid @@ -4382,7 +4940,7 @@ paths: API plan restricted: value: type: error.list - request_id: a909c5a8-0993-4b85-b4fb-2c384dce987a + request_id: 2eae66f3-619a-477d-a1c0-d47c89babdd0 errors: - code: api_plan_restricted message: Active subscription needed. @@ -4425,11 +4983,11 @@ paths: conversation found: value: type: conversation - id: '720463' - created_at: 1691577610 - updated_at: 1691577613 - waiting_since: - snoozed_until: + id: '722481' + created_at: 1692026085 + updated_at: 1692026087 + waiting_since: + snoozed_until: source: type: conversation id: '403918083' @@ -4438,21 +4996,21 @@ paths: body: "

this is the message body

" author: type: admin - id: '991266376' - name: Ciaran147 Lee - email: admin147@email.com + id: '991266397' + name: Ciaran168 Lee + email: admin168@email.com attachments: [] - url: + url: redacted: false contacts: type: contact.list contacts: - type: contact - id: 64d36d0945ceba405a02c5f6 + id: 64da44e571858de103653166 external_id: '70' - first_contact_reply: - admin_assignee_id: - team_assignee_id: + first_contact_reply: + admin_assignee_id: + team_assignee_id: open: false state: closed read: true @@ -4460,16 +5018,16 @@ paths: type: tag.list tags: [] priority: not_priority - sla_applied: - statistics: - conversation_rating: - teammates: - title: + sla_applied: + statistics: + conversation_rating: + teammates: + title: custom_attributes: issue_type: Billing priority: High topics: {} - ticket: + ticket: linked_objects: type: list data: [] @@ -4479,37 +5037,37 @@ paths: type: conversation_part.list conversation_parts: - type: conversation_part - id: '715384' + id: '717402' part_type: conversation_attribute_updated_by_admin - body: - created_at: 1691577612 - updated_at: 1691577612 - notified_at: 1691577612 - assigned_to: + body: + created_at: 1692026087 + updated_at: 1692026087 + notified_at: 1692026087 + assigned_to: author: - id: '991266377' + id: '991266398' type: bot name: Operator - email: operator+this_is_an_id302_that_should_be_at_least_@intercom.io + email: operator+this_is_an_id344_that_should_be_at_least_@intercom.io attachments: [] - external_id: + external_id: redacted: false metadata: {} - type: conversation_part - id: '715385' + id: '717403' part_type: conversation_attribute_updated_by_admin - body: - created_at: 1691577613 - updated_at: 1691577613 - notified_at: 1691577613 - assigned_to: + body: + created_at: 1692026087 + updated_at: 1692026087 + notified_at: 1692026087 + assigned_to: author: - id: '991266377' + id: '991266398' type: bot name: Operator - email: operator+this_is_an_id302_that_should_be_at_least_@intercom.io + email: operator+this_is_an_id344_that_should_be_at_least_@intercom.io attachments: [] - external_id: + external_id: redacted: false metadata: {} total_count: 2 @@ -4523,7 +5081,7 @@ paths: Not found: value: type: error.list - request_id: '08dfa85d-3997-4c3e-ba37-d038f1b427a2' + request_id: 6280b3fc-a3c7-4d4e-b400-91b9106edce6 errors: - code: not_found message: Resource Not Found @@ -4537,7 +5095,7 @@ paths: Unauthorized: value: type: error.list - request_id: 48b88c63-4586-4c3f-879c-d9bb964ae4c6 + request_id: 86379938-6a7f-4bc5-a92b-cf49936f1386 errors: - code: unauthorized message: Access Token Invalid @@ -4551,7 +5109,7 @@ paths: API plan restricted: value: type: error.list - request_id: 20c111ba-a552-46e6-82a3-7072b0775a01 + request_id: d3084ee2-ae0c-41f5-b24f-db751e04c9e9 errors: - code: api_plan_restricted message: Active subscription needed. @@ -4670,11 +5228,11 @@ paths: total_count: 1 conversations: - type: conversation - id: '720467' - created_at: 1691577626 - updated_at: 1691577626 - waiting_since: - snoozed_until: + id: '722485' + created_at: 1692026094 + updated_at: 1692026095 + waiting_since: + snoozed_until: source: type: conversation id: '403918087' @@ -4683,21 +5241,21 @@ paths: body: "

this is the message body

" author: type: admin - id: '991266400' - name: Ciaran167 Lee - email: admin167@email.com + id: '991266421' + name: Ciaran188 Lee + email: admin188@email.com attachments: [] - url: + url: redacted: false contacts: type: contact.list contacts: - type: contact - id: 64d36d1945ceba405a02c5fa + id: 64da44ee71858de10365316a external_id: '70' - first_contact_reply: - admin_assignee_id: - team_assignee_id: + first_contact_reply: + admin_assignee_id: + team_assignee_id: open: false state: closed read: false @@ -4705,14 +5263,14 @@ paths: type: tag.list tags: [] priority: not_priority - sla_applied: - statistics: - conversation_rating: - teammates: - title: + sla_applied: + statistics: + conversation_rating: + teammates: + title: custom_attributes: {} topics: {} - ticket: + ticket: linked_objects: type: list data: [] @@ -4734,15 +5292,15 @@ paths: value: - field: id operator: "=" - value: '720467' + value: '722485' - operator: OR value: - field: id operator: "=" - value: '720467' + value: '722485' - field: id operator: "=" - value: '720467' + value: '722485' "/conversations/{id}/reply": post: summary: Reply to a conversation @@ -4781,11 +5339,11 @@ paths: User reply: value: type: conversation - id: '720475' - created_at: 1691577640 - updated_at: 1691577642 - waiting_since: 1691577642 - snoozed_until: + id: '722493' + created_at: 1692026104 + updated_at: 1692026104 + waiting_since: 1692026104 + snoozed_until: source: type: conversation id: '403918090' @@ -4794,24 +5352,24 @@ paths: body: "

this is the message body

" author: type: admin - id: '991266402' - name: Ciaran168 Lee - email: admin168@email.com + id: '991266423' + name: Ciaran189 Lee + email: admin189@email.com attachments: [] - url: + url: redacted: false contacts: type: contact.list contacts: - type: contact - id: 64d36d2745ceba405a02c601 + id: 64da44f771858de103653171 external_id: '70' first_contact_reply: - created_at: 1691577642 + created_at: 1692026104 type: conversation - url: - admin_assignee_id: - team_assignee_id: + url: + admin_assignee_id: + team_assignee_id: open: true state: open read: false @@ -4819,14 +5377,14 @@ paths: type: tag.list tags: [] priority: not_priority - sla_applied: - statistics: - conversation_rating: - teammates: - title: + sla_applied: + statistics: + conversation_rating: + teammates: + title: custom_attributes: {} topics: {} - ticket: + ticket: linked_objects: type: list data: [] @@ -4836,31 +5394,31 @@ paths: type: conversation_part.list conversation_parts: - type: conversation_part - id: '715387' + id: '717405' part_type: comment body: "

Thanks again :)

" - created_at: 1691577642 - updated_at: 1691577642 - notified_at: 1691577642 - assigned_to: + created_at: 1692026104 + updated_at: 1692026104 + notified_at: 1692026104 + assigned_to: author: - id: 64d36d2745ceba405a02c601 + id: 64da44f771858de103653171 type: user name: Joe Bloggs email: joe@bloggs.com attachments: [] - external_id: + external_id: redacted: false metadata: {} total_count: 1 Admin note reply: value: type: conversation - id: '720476' - created_at: 1691577645 - updated_at: 1691577646 - waiting_since: - snoozed_until: + id: '722494' + created_at: 1692026106 + updated_at: 1692026107 + waiting_since: + snoozed_until: source: type: conversation id: '403918091' @@ -4869,21 +5427,21 @@ paths: body: "

this is the message body

" author: type: admin - id: '991266404' - name: Ciaran169 Lee - email: admin169@email.com + id: '991266425' + name: Ciaran190 Lee + email: admin190@email.com attachments: [] - url: + url: redacted: false contacts: type: contact.list contacts: - type: contact - id: 64d36d2c45ceba405a02c602 + id: 64da44f971858de103653172 external_id: '70' - first_contact_reply: - admin_assignee_id: - team_assignee_id: + first_contact_reply: + admin_assignee_id: + team_assignee_id: open: false state: closed read: false @@ -4891,14 +5449,14 @@ paths: type: tag.list tags: [] priority: not_priority - sla_applied: - statistics: - conversation_rating: - teammates: - title: + sla_applied: + statistics: + conversation_rating: + teammates: + title: custom_attributes: {} topics: {} - ticket: + ticket: linked_objects: type: list data: [] @@ -4908,7 +5466,7 @@ paths: type: conversation_part.list conversation_parts: - type: conversation_part - id: '715388' + id: '717406' part_type: note body: |-

An Unordered HTML List

@@ -4923,28 +5481,28 @@ paths:
  • Tea
  • Milk
  • - created_at: 1691577646 - updated_at: 1691577646 - notified_at: 1691577646 - assigned_to: + created_at: 1692026107 + updated_at: 1692026107 + notified_at: 1692026107 + assigned_to: author: - id: '991266404' + id: '991266425' type: admin - name: Ciaran169 Lee - email: admin169@email.com + name: Ciaran190 Lee + email: admin190@email.com attachments: [] - external_id: + external_id: redacted: false metadata: {} total_count: 1 Admin quick_reply reply: value: type: conversation - id: '720477' - created_at: 1691577648 - updated_at: 1691577651 - waiting_since: - snoozed_until: + id: '722495' + created_at: 1692026108 + updated_at: 1692026109 + waiting_since: + snoozed_until: source: type: conversation id: '403918092' @@ -4953,21 +5511,21 @@ paths: body: "

    this is the message body

    " author: type: admin - id: '991266406' - name: Ciaran170 Lee - email: admin170@email.com + id: '991266427' + name: Ciaran191 Lee + email: admin191@email.com attachments: [] - url: + url: redacted: false contacts: type: contact.list contacts: - type: contact - id: 64d36d3045ceba405a02c603 + id: 64da44fb71858de103653173 external_id: '70' - first_contact_reply: - admin_assignee_id: - team_assignee_id: + first_contact_reply: + admin_assignee_id: + team_assignee_id: open: false state: closed read: false @@ -4975,14 +5533,14 @@ paths: type: tag.list tags: [] priority: not_priority - sla_applied: - statistics: - conversation_rating: - teammates: - title: + sla_applied: + statistics: + conversation_rating: + teammates: + title: custom_attributes: {} topics: {} - ticket: + ticket: linked_objects: type: list data: [] @@ -4992,31 +5550,31 @@ paths: type: conversation_part.list conversation_parts: - type: conversation_part - id: '715389' + id: '717407' part_type: quick_reply - body: - created_at: 1691577651 - updated_at: 1691577651 - notified_at: 1691577651 - assigned_to: + body: + created_at: 1692026109 + updated_at: 1692026109 + notified_at: 1692026109 + assigned_to: author: - id: '991266406' + id: '991266427' type: admin - name: Ciaran170 Lee - email: admin170@email.com + name: Ciaran191 Lee + email: admin191@email.com attachments: [] - external_id: + external_id: redacted: false metadata: {} total_count: 1 User last conversation reply: value: type: conversation - id: '720478' - created_at: 1691577654 - updated_at: 1691577656 - waiting_since: 1691577656 - snoozed_until: + id: '722496' + created_at: 1692026110 + updated_at: 1692026112 + waiting_since: 1692026112 + snoozed_until: source: type: conversation id: '403918093' @@ -5025,24 +5583,24 @@ paths: body: "

    this is the message body

    " author: type: admin - id: '991266408' - name: Ciaran171 Lee - email: admin171@email.com + id: '991266429' + name: Ciaran192 Lee + email: admin192@email.com attachments: [] - url: + url: redacted: false contacts: type: contact.list contacts: - type: contact - id: 64d36d3545ceba405a02c604 + id: 64da44fe71858de103653174 external_id: '70' first_contact_reply: - created_at: 1691577656 + created_at: 1692026112 type: conversation - url: - admin_assignee_id: - team_assignee_id: + url: + admin_assignee_id: + team_assignee_id: open: true state: open read: false @@ -5050,14 +5608,14 @@ paths: type: tag.list tags: [] priority: not_priority - sla_applied: - statistics: - conversation_rating: - teammates: - title: + sla_applied: + statistics: + conversation_rating: + teammates: + title: custom_attributes: {} topics: {} - ticket: + ticket: linked_objects: type: list data: [] @@ -5067,20 +5625,20 @@ paths: type: conversation_part.list conversation_parts: - type: conversation_part - id: '715390' + id: '717408' part_type: comment body: "

    Thanks again :)

    " - created_at: 1691577656 - updated_at: 1691577656 - notified_at: 1691577656 - assigned_to: + created_at: 1692026112 + updated_at: 1692026112 + notified_at: 1692026112 + assigned_to: author: - id: 64d36d3545ceba405a02c604 + id: 64da44fe71858de103653174 type: user name: Joe Bloggs email: joe@bloggs.com attachments: [] - external_id: + external_id: redacted: false metadata: {} total_count: 1 @@ -5094,7 +5652,7 @@ paths: Not found: value: type: error.list - request_id: 989f7478-a984-42ef-b3da-1f686789cbb8 + request_id: bc87b74d-c789-4a22-bacb-0546726f9a46 errors: - code: not_found message: Resource Not Found @@ -5108,7 +5666,7 @@ paths: Unauthorized: value: type: error.list - request_id: 1904b7ed-dba1-4015-85ff-ab2f60f18f5e + request_id: 84c9eefc-645d-42b6-8a10-d9835a794f6f errors: - code: unauthorized message: Access Token Invalid @@ -5122,7 +5680,7 @@ paths: API plan restricted: value: type: error.list - request_id: 4c889120-ae21-4098-9be5-6226ba908fb5 + request_id: fe16bb99-ad50-4804-a287-b5ba4cb35fdc errors: - code: api_plan_restricted message: Active subscription needed. @@ -5139,14 +5697,14 @@ paths: value: message_type: comment type: user - intercom_user_id: 64d36d2745ceba405a02c601 + intercom_user_id: 64da44f771858de103653171 body: Thanks again :) admin_note_reply: summary: Admin note reply value: message_type: note type: admin - admin_id: 991266404 + admin_id: 991266425 body: "

    An Unordered HTML List

    An Ordered HTML List

    \
    1. Coffee
    2. Tea
    3. Milk
    @@ -5156,25 +5714,25 @@ paths: value: message_type: quick_reply type: admin - admin_id: 991266406 + admin_id: 991266427 reply_options: - text: 'Yes' - uuid: 435a93d8-4414-485a-a8e0-b2b424949f0e + uuid: c51beef0-2667-407b-a5b3-16a5a950f0e1 - text: 'No' - uuid: 1334f9ad-94d6-47b3-956b-173216952922 + uuid: c4ec2bb8-3d28-4740-a69a-1761b99d2c9c user_last_conversation_reply: summary: User last conversation reply value: message_type: comment type: user - intercom_user_id: 64d36d3545ceba405a02c604 + intercom_user_id: 64da44fe71858de103653174 body: Thanks again :) not_found: summary: Not found value: message_type: comment type: user - intercom_user_id: 64d36d3a45ceba405a02c605 + intercom_user_id: 64da450171858de103653175 body: Thanks again :) "/conversations/{id}/parts": post: @@ -5208,11 +5766,11 @@ paths: Close a conversation: value: type: conversation - id: '720482' - created_at: 1691577667 - updated_at: 1691577669 - waiting_since: - snoozed_until: + id: '722500' + created_at: 1692026120 + updated_at: 1692026124 + waiting_since: + snoozed_until: source: type: conversation id: '403918097' @@ -5221,21 +5779,21 @@ paths: body: "

    this is the message body

    " author: type: admin - id: '991266416' - name: Ciaran175 Lee - email: admin175@email.com + id: '991266437' + name: Ciaran196 Lee + email: admin196@email.com attachments: [] - url: + url: redacted: false contacts: type: contact.list contacts: - type: contact - id: 64d36d4345ceba405a02c608 + id: 64da450771858de103653178 external_id: '70' - first_contact_reply: - admin_assignee_id: - team_assignee_id: + first_contact_reply: + admin_assignee_id: + team_assignee_id: open: false state: closed read: false @@ -5243,14 +5801,14 @@ paths: type: tag.list tags: [] priority: not_priority - sla_applied: - statistics: - conversation_rating: - teammates: - title: + sla_applied: + statistics: + conversation_rating: + teammates: + title: custom_attributes: {} topics: {} - ticket: + ticket: linked_objects: type: list data: [] @@ -5260,31 +5818,31 @@ paths: type: conversation_part.list conversation_parts: - type: conversation_part - id: '715391' + id: '717409' part_type: close body: "

    Goodbye :)

    " - created_at: 1691577669 - updated_at: 1691577669 - notified_at: 1691577669 - assigned_to: + created_at: 1692026124 + updated_at: 1692026124 + notified_at: 1692026124 + assigned_to: author: - id: '991266416' + id: '991266437' type: admin - name: Ciaran175 Lee - email: admin175@email.com + name: Ciaran196 Lee + email: admin196@email.com attachments: [] - external_id: + external_id: redacted: false metadata: {} total_count: 1 Snooze a conversation: value: type: conversation - id: '720483' - created_at: 1691577672 - updated_at: 1691577675 - waiting_since: - snoozed_until: 1691581274 + id: '722501' + created_at: 1692026126 + updated_at: 1692026127 + waiting_since: + snoozed_until: 1692029727 source: type: conversation id: '403918098' @@ -5293,21 +5851,21 @@ paths: body: "

    this is the message body

    " author: type: admin - id: '991266418' - name: Ciaran176 Lee - email: admin176@email.com + id: '991266439' + name: Ciaran197 Lee + email: admin197@email.com attachments: [] - url: + url: redacted: false contacts: type: contact.list contacts: - type: contact - id: 64d36d4745ceba405a02c609 + id: 64da450e71858de103653179 external_id: '70' - first_contact_reply: - admin_assignee_id: - team_assignee_id: + first_contact_reply: + admin_assignee_id: + team_assignee_id: open: true state: snoozed read: false @@ -5315,14 +5873,14 @@ paths: type: tag.list tags: [] priority: not_priority - sla_applied: - statistics: - conversation_rating: - teammates: - title: + sla_applied: + statistics: + conversation_rating: + teammates: + title: custom_attributes: {} topics: {} - ticket: + ticket: linked_objects: type: list data: [] @@ -5332,31 +5890,31 @@ paths: type: conversation_part.list conversation_parts: - type: conversation_part - id: '715392' + id: '717410' part_type: snoozed - body: - created_at: 1691577675 - updated_at: 1691577675 - notified_at: 1691577675 - assigned_to: + body: + created_at: 1692026127 + updated_at: 1692026127 + notified_at: 1692026127 + assigned_to: author: - id: '991266418' + id: '991266439' type: admin - name: Ciaran176 Lee - email: admin176@email.com + name: Ciaran197 Lee + email: admin197@email.com attachments: [] - external_id: + external_id: redacted: false metadata: {} total_count: 1 Open a conversation: value: type: conversation - id: '720488' - created_at: 1691577676 - updated_at: 1691577689 - waiting_since: - snoozed_until: + id: '722506' + created_at: 1692026126 + updated_at: 1692026155 + waiting_since: + snoozed_until: source: type: conversation id: '403918099' @@ -5365,21 +5923,21 @@ paths: body: "

    this is the message body

    " author: type: admin - id: '991266420' - name: Ciaran177 Lee - email: admin177@email.com + id: '991266441' + name: Ciaran198 Lee + email: admin198@email.com attachments: [] - url: + url: redacted: false contacts: type: contact.list contacts: - type: contact - id: 64d36d5245ceba405a02c60e + id: 64da452771858de10365317e external_id: '74' - first_contact_reply: - admin_assignee_id: - team_assignee_id: + first_contact_reply: + admin_assignee_id: + team_assignee_id: open: true state: open read: true @@ -5387,14 +5945,14 @@ paths: type: tag.list tags: [] priority: not_priority - sla_applied: - statistics: - conversation_rating: - teammates: + sla_applied: + statistics: + conversation_rating: + teammates: title: '' custom_attributes: {} topics: {} - ticket: + ticket: linked_objects: type: list data: [] @@ -5404,31 +5962,31 @@ paths: type: conversation_part.list conversation_parts: - type: conversation_part - id: '715394' + id: '717412' part_type: open - body: - created_at: 1691577689 - updated_at: 1691577689 - notified_at: 1691577689 - assigned_to: + body: + created_at: 1692026155 + updated_at: 1692026155 + notified_at: 1692026155 + assigned_to: author: - id: '991266420' + id: '991266441' type: admin - name: Ciaran177 Lee - email: admin177@email.com + name: Ciaran198 Lee + email: admin198@email.com attachments: [] - external_id: + external_id: redacted: false metadata: {} total_count: 1 Assign a conversation: value: type: conversation - id: '720492' - created_at: 1691577691 - updated_at: 1691577692 - waiting_since: - snoozed_until: + id: '722510' + created_at: 1692026157 + updated_at: 1692026158 + waiting_since: + snoozed_until: source: type: conversation id: '403918102' @@ -5437,21 +5995,21 @@ paths: body: "

    this is the message body

    " author: type: admin - id: '991266422' - name: Ciaran178 Lee - email: admin178@email.com + id: '991266443' + name: Ciaran199 Lee + email: admin199@email.com attachments: [] - url: + url: redacted: false contacts: type: contact.list contacts: - type: contact - id: 64d36d5a45ceba405a02c611 + id: 64da452c71858de103653181 external_id: '70' - first_contact_reply: - admin_assignee_id: 991266422 - team_assignee_id: + first_contact_reply: + admin_assignee_id: 991266443 + team_assignee_id: open: true state: open read: false @@ -5459,14 +6017,14 @@ paths: type: tag.list tags: [] priority: not_priority - sla_applied: - statistics: - conversation_rating: - teammates: - title: + sla_applied: + statistics: + conversation_rating: + teammates: + title: custom_attributes: {} topics: {} - ticket: + ticket: linked_objects: type: list data: [] @@ -5476,22 +6034,22 @@ paths: type: conversation_part.list conversation_parts: - type: conversation_part - id: '715395' + id: '717413' part_type: assign_and_reopen - body: - created_at: 1691577692 - updated_at: 1691577692 - notified_at: 1691577692 + body: + created_at: 1692026158 + updated_at: 1692026158 + notified_at: 1692026158 assigned_to: type: admin - id: '991266422' + id: '991266443' author: - id: '991266422' + id: '991266443' type: admin - name: Ciaran178 Lee - email: admin178@email.com + name: Ciaran199 Lee + email: admin199@email.com attachments: [] - external_id: + external_id: redacted: false metadata: {} total_count: 1 @@ -5505,7 +6063,7 @@ paths: Not found: value: type: error.list - request_id: 3a29642a-a04c-4c66-9ddc-be1d8efaedc0 + request_id: 31a10f32-b921-4640-9da5-ce0e5aba68ff errors: - code: not_found message: Resource Not Found @@ -5519,7 +6077,7 @@ paths: Unauthorized: value: type: error.list - request_id: 7c598fe5-2a86-4dc6-b820-0ec446ea8821 + request_id: 916c47f5-1e28-455e-8e31-6909ec3abcb9 errors: - code: unauthorized message: Access Token Invalid @@ -5533,7 +6091,7 @@ paths: API plan restricted: value: type: error.list - request_id: e1d8dde4-6b0c-482e-8264-a1a1d35680cf + request_id: 94949f45-7a4a-4c33-b5c3-842ed25ccef7 errors: - code: api_plan_restricted message: Active subscription needed. @@ -5554,32 +6112,32 @@ paths: value: message_type: close type: admin - admin_id: 991266416 + admin_id: 991266437 body: Goodbye :) snooze_a_conversation: summary: Snooze a conversation value: message_type: snoozed - admin_id: 991266418 - snoozed_until: 1691581274 + admin_id: 991266439 + snoozed_until: 1692029727 open_a_conversation: summary: Open a conversation value: message_type: open - admin_id: 991266420 + admin_id: 991266441 assign_a_conversation: summary: Assign a conversation value: message_type: assignment type: admin - admin_id: 991266422 - assignee_id: 991266422 + admin_id: 991266443 + assignee_id: 991266443 not_found: summary: Not found value: message_type: close type: admin - admin_id: 991266424 + admin_id: 991266445 body: Goodbye :) "/conversations/{id}/run_assignment_rules": post: @@ -5610,11 +6168,11 @@ paths: Assign a conversation using assignment rules: value: type: conversation - id: '720496' - created_at: 1691577705 - updated_at: 1691577707 - waiting_since: - snoozed_until: + id: '722514' + created_at: 1692026404 + updated_at: 1692026405 + waiting_since: + snoozed_until: source: type: conversation id: '403918106' @@ -5623,21 +6181,21 @@ paths: body: "

    this is the message body

    " author: type: admin - id: '991266430' - name: Ciaran182 Lee - email: admin182@email.com + id: '991266451' + name: Ciaran203 Lee + email: admin203@email.com attachments: [] - url: + url: redacted: false contacts: type: contact.list contacts: - type: contact - id: 64d36d6845ceba405a02c615 + id: 64da462371858de103653185 external_id: '70' - first_contact_reply: - admin_assignee_id: - team_assignee_id: + first_contact_reply: + admin_assignee_id: + team_assignee_id: open: false state: closed read: false @@ -5645,14 +6203,14 @@ paths: type: tag.list tags: [] priority: not_priority - sla_applied: - statistics: - conversation_rating: - teammates: - title: + sla_applied: + statistics: + conversation_rating: + teammates: + title: custom_attributes: {} topics: {} - ticket: + ticket: linked_objects: type: list data: [] @@ -5662,22 +6220,22 @@ paths: type: conversation_part.list conversation_parts: - type: conversation_part - id: '715396' + id: '717414' part_type: default_assignment - body: - created_at: 1691577707 - updated_at: 1691577707 - notified_at: 1691577707 + body: + created_at: 1692026405 + updated_at: 1692026405 + notified_at: 1692026405 assigned_to: type: nobody_admin - id: + id: author: - id: '991266431' + id: '991266452' type: bot name: Operator - email: operator+this_is_an_id340_that_should_be_at_least_@intercom.io + email: operator+this_is_an_id382_that_should_be_at_least_@intercom.io attachments: [] - external_id: + external_id: redacted: false metadata: {} total_count: 1 @@ -5691,7 +6249,7 @@ paths: Not found: value: type: error.list - request_id: 2ef64456-dfcb-42ee-a236-a6a284326c60 + request_id: cb392583-d9e7-46f9-95f2-fb059456c98d errors: - code: not_found message: Resource Not Found @@ -5705,7 +6263,7 @@ paths: Unauthorized: value: type: error.list - request_id: f349575f-e6d7-48fa-b16a-d895b502bc5e + request_id: 3c5d957a-7b59-4042-8e64-f2c1c39b7bbf errors: - code: unauthorized message: Access Token Invalid @@ -5719,7 +6277,7 @@ paths: API plan restricted: value: type: error.list - request_id: 0fdbedd3-579b-4cfc-b477-65b8b836274b + request_id: 336cd69e-52b0-4942-a5f3-a3139ab60a68 errors: - code: api_plan_restricted message: Active subscription needed. @@ -5758,7 +6316,7 @@ paths: value: customers: - type: user - id: 64d36d7545ceba405a02c619 + id: 64da462c71858de103653189 schema: "$ref": "#/components/schemas/conversation" '404': @@ -5769,7 +6327,7 @@ paths: Not found: value: type: error.list - request_id: 890e1f2d-e889-4d34-aa29-8b7dfb20fe7c + request_id: e621e6cb-d862-4e16-a66c-170d2d7844e3 errors: - code: not_found message: Resource Not Found @@ -5783,7 +6341,7 @@ paths: Unauthorized: value: type: error.list - request_id: 6ab87d0c-5c6b-4343-ac08-d305aa2f5edb + request_id: 0f285de6-ad53-4536-abb9-bb31a3e9998f errors: - code: unauthorized message: Access Token Invalid @@ -5797,7 +6355,7 @@ paths: API plan restricted: value: type: error.list - request_id: 1211ebb3-6e37-48c9-ba3b-2ca50c13a220 + request_id: fa7d1c20-af76-410e-9017-6c559e9a4d42 errors: - code: api_plan_restricted message: Active subscription needed. @@ -5812,15 +6370,15 @@ paths: attach_a_contact_to_a_conversation: summary: Attach a contact to a conversation value: - admin_id: 991266438 + admin_id: 991266459 customer: - intercom_user_id: 64d36d7545ceba405a02c619 + intercom_user_id: 64da462c71858de103653189 not_found: summary: Not found value: - admin_id: 991266440 + admin_id: 991266461 customer: - intercom_user_id: 64d36d7845ceba405a02c61a + intercom_user_id: 64da486371858de10365318a "/conversations/{conversation_id}/customers/{contact_id}": delete: summary: Detach a contact from a group conversation @@ -5861,7 +6419,7 @@ paths: value: customers: - type: user - id: 64d36d8d45ceba405a02c624 + id: 64da487471858de103653194 schema: "$ref": "#/components/schemas/conversation" '404': @@ -5872,14 +6430,14 @@ paths: Conversation not found: value: type: error.list - request_id: c928df93-26a2-4d83-a8bc-326b17537f8b + request_id: 4989de38-4de2-433e-8f92-005b9ea90a28 errors: - code: not_found message: Resource Not Found Contact not found: value: type: error.list - request_id: 11ec5464-c1d8-4564-9822-4844ab009801 + request_id: 8c50bd41-6df6-4c3f-96e2-a1f757057570 errors: - code: not_found message: User Not Found @@ -5893,7 +6451,7 @@ paths: Last customer: value: type: error.list - request_id: 1659d6cb-76f9-4538-9521-3fcc7cf22634 + request_id: b49287a3-b526-4362-8c13-3c3fef42578b errors: - code: parameter_invalid message: Removing the last customer is not allowed @@ -5907,7 +6465,7 @@ paths: Unauthorized: value: type: error.list - request_id: c5a6cf07-5ad4-4994-9f4f-c9e0eff24309 + request_id: 7345d82a-0133-4a93-878e-5611fada673d errors: - code: unauthorized message: Access Token Invalid @@ -5921,7 +6479,7 @@ paths: API plan restricted: value: type: error.list - request_id: ad4970bc-d9f5-4842-b253-9655348293a7 + request_id: 4288148b-b8c5-496e-af55-8e054131c8ca errors: - code: api_plan_restricted message: Active subscription needed. @@ -5936,27 +6494,27 @@ paths: detach_a_contact_from_a_group_conversation: summary: Detach a contact from a group conversation value: - admin_id: 991266446 + admin_id: 991266467 customer: - intercom_user_id: 64d36d8245ceba405a02c61d + intercom_user_id: 64da486c71858de10365318d conversation_not_found: summary: Conversation not found value: - admin_id: 991266448 + admin_id: 991266469 customer: - intercom_user_id: 64d36d8f45ceba405a02c625 + intercom_user_id: 64da487671858de103653195 contact_not_found: summary: Contact not found value: - admin_id: 991266450 + admin_id: 991266471 customer: - intercom_user_id: 64d36d9d45ceba405a02c62c + intercom_user_id: 64da488071858de10365319c last_customer: summary: Last customer value: - admin_id: 991266452 + admin_id: 991266473 customer: - intercom_user_id: 64d36daa45ceba405a02c633 + intercom_user_id: 64da488971858de1036531a3 "/conversations/redact": post: summary: Redact a conversation part @@ -5983,11 +6541,11 @@ paths: Redact a conversation part: value: type: conversation - id: '720552' - created_at: 1691577806 - updated_at: 1691577809 - waiting_since: 1691577807 - snoozed_until: + id: '722570' + created_at: 1692027044 + updated_at: 1692027047 + waiting_since: 1692027045 + snoozed_until: source: type: conversation id: '403918132' @@ -5996,24 +6554,24 @@ paths: body: "

    this is the message body

    " author: type: admin - id: '991266458' - name: Ciaran196 Lee - email: admin196@email.com + id: '991266479' + name: Ciaran217 Lee + email: admin217@email.com attachments: [] - url: + url: redacted: false contacts: type: contact.list contacts: - type: contact - id: 64d36dcd45ceba405a02c648 + id: 64da48a471858de1036531b8 external_id: '70' first_contact_reply: - created_at: 1691577807 + created_at: 1692027045 type: conversation - url: - admin_assignee_id: - team_assignee_id: + url: + admin_assignee_id: + team_assignee_id: open: true state: open read: true @@ -6021,14 +6579,14 @@ paths: type: tag.list tags: [] priority: not_priority - sla_applied: - statistics: - conversation_rating: - teammates: - title: + sla_applied: + statistics: + conversation_rating: + teammates: + title: custom_attributes: {} topics: {} - ticket: + ticket: linked_objects: type: list data: [] @@ -6038,20 +6596,20 @@ paths: type: conversation_part.list conversation_parts: - type: conversation_part - id: '715404' + id: '717422' part_type: comment body: "

    This message was deleted

    " - created_at: 1691577807 - updated_at: 1691577809 - notified_at: 1691577807 - assigned_to: + created_at: 1692027045 + updated_at: 1692027047 + notified_at: 1692027045 + assigned_to: author: - id: 64d36dcd45ceba405a02c648 + id: 64da48a471858de1036531b8 type: user name: Joe Bloggs email: joe@bloggs.com attachments: [] - external_id: + external_id: redacted: true metadata: {} total_count: 1 @@ -6065,7 +6623,7 @@ paths: Not found: value: type: error.list - request_id: c3b328db-de9f-41ac-a10d-75884638e8eb + request_id: e72b438d-f3a2-48ac-90c1-47b81f2c93f7 errors: - code: conversation_part_or_message_not_found message: Conversation part or message not found @@ -6079,7 +6637,7 @@ paths: Unauthorized: value: type: error.list - request_id: 9d3bf704-30f1-4c0b-9851-1e9279b194d9 + request_id: 2cd462e1-2156-4958-8de6-472bd5ed3ac8 errors: - code: unauthorized message: Access Token Invalid @@ -6095,8 +6653,8 @@ paths: summary: Redact a conversation part value: type: conversation_part - conversation_id: 720552 - conversation_part_id: 715404 + conversation_id: 722570 + conversation_part_id: 717422 not_found: summary: Not found value: @@ -6130,20 +6688,20 @@ paths: successful: value: type: ticket - id: '720555' - ticket_id: '717399' + id: '722573' + ticket_id: '719417' ticket_attributes: {} ticket_state: submitted ticket_type: type: ticket_type - id: '771885' + id: '773903' name: my-ticket-type-1 description: my ticket type description is awesome. icon: "\U0001F981" - workspace_id: this_is_an_id374_that_should_be_at_least_ + workspace_id: this_is_an_id416_that_should_be_at_least_ archived: false - created_at: 1691577822 - updated_at: 1691577822 + created_at: 1692027055 + updated_at: 1692027055 is_internal: false ticket_type_attributes: type: list @@ -6153,40 +6711,40 @@ paths: type: contact.list contacts: - type: contact - id: 64d36dd945ceba405a02c64b + id: 64da48ac71858de1036531bb external_id: '70' admin_assignee_id: '0' team_assignee_id: '0' - created_at: 1691577817 - updated_at: 1691577823 + created_at: 1692027052 + updated_at: 1692027055 ticket_parts: type: ticket_part.list ticket_parts: - type: ticket_part - id: '715406' + id: '717424' part_type: comment body: "

    Comment for message

    " - created_at: 1691577817 - updated_at: 1691577817 + created_at: 1692027052 + updated_at: 1692027052 author: - id: 64d36dd945ceba405a02c64b + id: 64da48ac71858de1036531bb type: user name: Joe Bloggs email: joe@bloggs.com attachments: [] redacted: false - type: ticket_part - id: '715407' + id: '717425' part_type: ticket_state_updated_by_admin ticket_state: submitted previous_ticket_state: submitted - created_at: 1691577823 - updated_at: 1691577823 + created_at: 1692027055 + updated_at: 1692027055 author: - id: '991266468' + id: '991266489' type: bot name: Operator - email: operator+this_is_an_id374_that_should_be_at_least_@intercom.io + email: operator+this_is_an_id416_that_should_be_at_least_@intercom.io attachments: [] redacted: false total_count: 2 @@ -6208,7 +6766,7 @@ paths: Bad request: value: type: error.list - request_id: 4d86ad2e-be58-4487-8905-8c987ec550e5 + request_id: 41da9e67-9dce-41ab-9782-7728525970ae errors: - code: parameter_invalid message: Ticket type is not a customer ticket type @@ -6223,11 +6781,11 @@ paths: successful: summary: successful value: - ticket_type_id: '771885' + ticket_type_id: '773903' bad_request: summary: Bad request value: - ticket_type_id: '771886' + ticket_type_id: '773904' "/data_attributes": get: summary: List all data attributes @@ -6409,9 +6967,9 @@ paths: ui_writable: false custom: true archived: false - admin_id: '991266476' - created_at: 1691577830 - updated_at: 1691577830 + admin_id: '991266497' + created_at: 1692027059 + updated_at: 1692027059 model: company - type: data_attribute name: id @@ -6478,7 +7036,7 @@ paths: Unauthorized: value: type: error.list - request_id: 6a316ec3-1b3d-49c2-987e-09fafdec823b + request_id: cc7c4e20-ce4c-4bb8-bea5-3335f9a6dc1c errors: - code: unauthorized message: Access Token Invalid @@ -6513,9 +7071,9 @@ paths: ui_writable: false custom: true archived: false - admin_id: '991266478' - created_at: 1691577832 - updated_at: 1691577832 + admin_id: '991266499' + created_at: 1692027060 + updated_at: 1692027060 model: company schema: "$ref": "#/components/schemas/data_attribute" @@ -6527,7 +7085,7 @@ paths: Same name already exists: value: type: error.list - request_id: 4cfe1554-3d10-42df-9656-95de61604344 + request_id: e25b6db2-6287-4a1d-aea5-1dfc0e8512b3 errors: - code: parameter_invalid message: You already have 'The One Ring' in your company data. @@ -6535,7 +7093,7 @@ paths: Invalid name: value: type: error.list - request_id: 1cc4a102-4ea5-4f10-9d18-14705c5ad465 + request_id: b261b52d-7e29-4e98-a9b4-6176f8d5f450 errors: - code: parameter_invalid message: Your name for this attribute must only contain alphanumeric @@ -6543,7 +7101,7 @@ paths: Attribute already exists: value: type: error.list - request_id: 9a46bc6b-b459-4224-844c-4de8186deb5c + request_id: 438d3f8d-e23c-4f48-a4ef-6df7c349ff46 errors: - code: parameter_invalid message: You already have 'The One Ring' in your company data. @@ -6551,14 +7109,14 @@ paths: Invalid Data Type: value: type: error.list - request_id: a5902547-00ca-4a74-8a28-24b63cbc6480 + request_id: 1b285f2d-30fe-4a5d-ba9f-9007e35804d1 errors: - code: parameter_invalid message: Data Type isn't an option Too few options for list: value: type: error.list - request_id: 27ae89e0-f556-4e06-a3d9-ccc0822cc63a + request_id: 6054d030-5ebe-41aa-9f6a-1dcfbdef7cb4 errors: - code: parameter_invalid message: The Data Attribute model field must be either contact @@ -6573,7 +7131,7 @@ paths: Unauthorized: value: type: error.list - request_id: 1dcdc3c0-a3bd-4041-833f-a5eda436569e + request_id: f0863fec-e132-4106-9d11-4be9dbb08e54 errors: - code: unauthorized message: Access Token Invalid @@ -6666,9 +7224,9 @@ paths: ui_writable: false custom: true archived: false - admin_id: '991266485' - created_at: 1691577837 - updated_at: 1691577838 + admin_id: '991266506' + created_at: 1692027063 + updated_at: 1692027064 model: company schema: "$ref": "#/components/schemas/data_attribute" @@ -6680,7 +7238,7 @@ paths: Too few options in list: value: type: error.list - request_id: 8f9a9a21-725e-4cc3-8c95-fac2faee0bb6 + request_id: dc6ad0ee-4243-494b-b2f8-fbdf6c2e7ac0 errors: - code: parameter_invalid message: Options isn't an array @@ -6694,7 +7252,7 @@ paths: Attribute Not Found: value: type: error.list - request_id: 311fcdf3-1a8c-4fc7-9a28-96d8f56cc22e + request_id: 56e5dc99-0713-49c2-89a4-08b4a8eb6dc9 errors: - code: field_not_found message: We couldn't find that data attribute to update @@ -6708,7 +7266,7 @@ paths: Has Dependant Object: value: type: error.list - request_id: 48f713b2-23d1-40a3-bda1-68f599a95c26 + request_id: b236bcfc-a607-40eb-82be-d4a6df0b6e4e errors: - code: data_invalid message: The Data Attribute you are trying to archive has a @@ -6723,7 +7281,7 @@ paths: Unauthorized: value: type: error.list - request_id: bbb0946f-f16e-4fee-bfae-9e5ce17e2d44 + request_id: 91ea5c35-2294-4815-a1c5-48354cfd458c errors: - code: unauthorized message: Access Token Invalid @@ -6842,7 +7400,7 @@ paths: Unauthorized: value: type: error.list - request_id: 152e5399-070d-4790-b4b3-d4d8f39fb664 + request_id: 0d22b197-529f-4c26-b3eb-33bbde12c0f0 errors: - code: unauthorized message: Access Token Invalid @@ -6929,7 +7487,7 @@ paths: pages: next: http://api.intercom.test/events?next page email: user24@email.com - intercom_user_id: 64d36dfe45ceba405a02c661 + intercom_user_id: 64da48c171858de1036531d1 user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 schema: "$ref": "#/components/schemas/data_event_summary" @@ -6941,7 +7499,7 @@ paths: Unauthorized: value: type: error.list - request_id: c0759a6e-44f2-41ef-a7dd-5473a08dd3bc + request_id: ac277e96-87af-475d-a4c9-266c45f6e7a2 errors: - code: unauthorized message: Access Token Invalid @@ -6972,7 +7530,7 @@ paths: Unauthorized: value: type: error.list - request_id: e323b74e-8b87-405b-a968-7886681604b8 + request_id: 0c001172-d951-4956-8308-0a397d2e3594 errors: - code: unauthorized message: Access Token Invalid @@ -7016,7 +7574,7 @@ paths: examples: successful: value: - job_identifier: rl6rl1cws4hu05xj + job_identifier: lmjaifc7acmppou7 status: pending download_url: '' download_expires_at: '' @@ -7031,8 +7589,8 @@ paths: successful: summary: successful value: - created_at_after: 1691559857 - created_at_before: 1691577857 + created_at_after: 1692009075 + created_at_before: 1692027075 "/export/content/data/{job_identifier}": get: summary: Show content data export @@ -7066,7 +7624,7 @@ paths: examples: successful: value: - job_identifier: 2qzekdpi9qj73ssj + job_identifier: rgumnup0bzkchdqf status: pending download_url: '' download_expires_at: '' @@ -7098,7 +7656,7 @@ paths: examples: successful: value: - job_identifier: vi6daz9aulndi4qv + job_identifier: kg2f33p08iq6obw6 status: canceled download_url: '' download_expires_at: '' @@ -7160,31 +7718,31 @@ paths: value: type: user_message id: '403918143' - created_at: 1691577915 + created_at: 1692027107 body: heyy message_type: inapp - conversation_id: '720568' + conversation_id: '722586' lead message created: value: type: user_message id: '403918144' - created_at: 1691577917 + created_at: 1692027108 body: heyy message_type: inapp - conversation_id: '720569' + conversation_id: '722587' admin message created: value: type: admin_message - id: '474237' - created_at: 1691577920 + id: '476255' + created_at: 1692027110 subject: heyy body: heyy message_type: inapp owner: type: admin - id: '991266514' - name: Ciaran239 Lee - email: admin239@email.com + id: '991266535' + name: Ciaran260 Lee + email: admin260@email.com away_mode_enabled: false away_mode_reassign: false schema: @@ -7197,14 +7755,14 @@ paths: No body supplied for message: value: type: error.list - request_id: c4dc99ff-3972-4a1c-a36e-b9f97e38c077 + request_id: 63a5427f-d6dd-48a3-a4ab-b544fa9398f7 errors: - code: parameter_invalid message: Body is required No body supplied for email message: value: type: error.list - request_id: aac0a564-f177-4166-be41-bc2e00327520 + request_id: 9132c4ec-6ab9-4128-8f2a-ad27722c43d6 errors: - code: parameter_invalid message: Body is required @@ -7218,7 +7776,7 @@ paths: No subject supplied for email message: value: type: error.list - request_id: f6398562-b61d-472f-ab28-bc71bbee88bb + request_id: b3ee9896-d98e-4413-8f86-e93a49aa7192 errors: - code: parameter_not_found message: No subject supplied for email message @@ -7232,7 +7790,7 @@ paths: Unauthorized: value: type: error.list - request_id: 553bf546-3118-46e9-a420-b85e8f0b8ec7 + request_id: 2407fe66-a2b0-4039-9f27-35eaef9e4da2 errors: - code: unauthorized message: Access Token Invalid @@ -7246,7 +7804,7 @@ paths: API plan restricted: value: type: error.list - request_id: 3df69b46-8f86-4b09-9738-07434012e645 + request_id: 88307eb5-eb64-4e28-9634-0b5d0d4e1281 errors: - code: api_plan_restricted message: Active subscription needed. @@ -7263,7 +7821,7 @@ paths: value: from: type: user - id: 64d36e3b45ceba405a02c6b6 + id: 64da48e371858de103653226 body: heyy referer: https://twitter.com/bob lead_message_created: @@ -7271,7 +7829,7 @@ paths: value: from: type: lead - id: 64d36e3d45ceba405a02c6b7 + id: 64da48e471858de103653227 body: heyy referer: https://twitter.com/bob admin_message_created: @@ -7279,10 +7837,10 @@ paths: value: from: type: admin - id: '991266514' + id: '991266535' to: type: user - id: 64d36e3f45ceba405a02c6b8 + id: 64da48e571858de103653228 message_type: conversation body: heyy no_body_supplied_for_message: @@ -7290,19 +7848,19 @@ paths: value: from: type: admin - id: '991266515' + id: '991266536' to: type: user - id: 64d36e4145ceba405a02c6b9 + id: 64da48e671858de103653229 message_type: inapp - body: + body: subject: heyy no_subject_supplied_for_email_message: summary: No subject supplied for email message value: from: type: admin - id: '991266516' + id: '991266537' to: type: user user_id: '70' @@ -7313,12 +7871,12 @@ paths: value: from: type: admin - id: '991266517' + id: '991266538' to: type: user - id: 64d36e4245ceba405a02c6bb + id: 64da48e771858de10365322b message_type: email - body: + body: subject: heyy "/news/news_items": get: @@ -7347,41 +7905,41 @@ paths: total_pages: 1 type: pages data: - - id: '402591' + - id: '404610' type: news-item - workspace_id: this_is_an_id446_that_should_be_at_least_ + workspace_id: this_is_an_id488_that_should_be_at_least_ title: We have news body: "

    Hello there,

    " - sender_id: 991266522 + sender_id: 991266545 state: draft labels: [] - cover_image_url: + cover_image_url: reactions: - - - - - - - - + - + - + - + - deliver_silently: false - created_at: 1691577926 - updated_at: 1691577926 + created_at: 1692027114 + updated_at: 1692027114 newsfeed_assignments: [] - - id: '402592' + - id: '404609' type: news-item - workspace_id: this_is_an_id446_that_should_be_at_least_ + workspace_id: this_is_an_id488_that_should_be_at_least_ title: We have news body: "

    Hello there,

    " - sender_id: 991266524 + sender_id: 991266543 state: draft labels: [] - cover_image_url: + cover_image_url: reactions: - - - - - - - - + - + - + - + - deliver_silently: false - created_at: 1691577926 - updated_at: 1691577926 + created_at: 1692027113 + updated_at: 1692027113 newsfeed_assignments: [] total_count: 2 schema: @@ -7394,7 +7952,7 @@ paths: Unauthorized: value: type: error.list - request_id: 75acd857-d823-4bfd-99f9-2bad7c9ec7f8 + request_id: 65d68d3a-3497-4552-8cff-df14a51ce697 errors: - code: unauthorized message: Access Token Invalid @@ -7419,26 +7977,26 @@ paths: examples: successful: value: - id: '402595' + id: '404613' type: news-item - workspace_id: this_is_an_id450_that_should_be_at_least_ + workspace_id: this_is_an_id492_that_should_be_at_least_ title: Halloween is here! body: "

    New costumes in store for this spooky season

    " - sender_id: 991266531 + sender_id: 991266552 state: live labels: - New - Product - Update - cover_image_url: + cover_image_url: reactions: - "\U0001F606" - "\U0001F605" deliver_silently: true - created_at: 1691577930 - updated_at: 1691577930 + created_at: 1692027116 + updated_at: 1692027116 newsfeed_assignments: - - newsfeed_id: 407638 + - newsfeed_id: 409656 published_at: 1664638214 schema: "$ref": "#/components/schemas/news_item" @@ -7450,7 +8008,7 @@ paths: Unauthorized: value: type: error.list - request_id: b52bc11a-4949-46d7-a751-a01a0ee7492e + request_id: 67315920-29f9-47aa-885f-16afa690a462 errors: - code: unauthorized message: Access Token Invalid @@ -7471,14 +8029,14 @@ paths: - Product - Update - New - sender_id: 991266531 + sender_id: 991266552 deliver_silently: true reactions: - "\U0001F606" - "\U0001F605" state: live newsfeed_assignments: - - newsfeed_id: 407638 + - newsfeed_id: 409656 published_at: 1664638214 "/news/news_items/{id}": get: @@ -7507,26 +8065,26 @@ paths: examples: successful: value: - id: '402596' + id: '404614' type: news-item - workspace_id: this_is_an_id454_that_should_be_at_least_ + workspace_id: this_is_an_id496_that_should_be_at_least_ title: We have news body: "

    Hello there,

    " - sender_id: 991266534 + sender_id: 991266555 state: live labels: [] - cover_image_url: + cover_image_url: reactions: - - - - - - - - + - + - + - + - deliver_silently: false - created_at: 1691577933 - updated_at: 1691577933 + created_at: 1692027118 + updated_at: 1692027118 newsfeed_assignments: - - newsfeed_id: 407640 - published_at: 1691577933 + - newsfeed_id: 409658 + published_at: 1692027118 schema: "$ref": "#/components/schemas/news_item" '404': @@ -7537,7 +8095,7 @@ paths: News Item Not Found: value: type: error.list - request_id: '06936c60-8e97-448b-8eef-bd5ddb27ff74' + request_id: b526759e-4bda-4342-9918-cad0254e4112 errors: - code: not_found message: Resource Not Found @@ -7551,7 +8109,7 @@ paths: Unauthorized: value: type: error.list - request_id: '0749bb76-992b-40d0-be39-490e8fb9835a' + request_id: cc2a4e43-6114-4335-8d2e-2c8b7fbf9b7e errors: - code: unauthorized message: Access Token Invalid @@ -7582,21 +8140,21 @@ paths: examples: successful: value: - id: '402599' + id: '404617' type: news-item - workspace_id: this_is_an_id460_that_should_be_at_least_ + workspace_id: this_is_an_id502_that_should_be_at_least_ title: Christmas is here! body: "

    New gifts in store for the jolly season

    " - sender_id: 991266542 + sender_id: 991266563 state: live labels: [] - cover_image_url: + cover_image_url: reactions: - "\U0001F61D" - "\U0001F602" deliver_silently: false - created_at: 1691577936 - updated_at: 1691577937 + created_at: 1692027120 + updated_at: 1692027120 newsfeed_assignments: [] schema: "$ref": "#/components/schemas/news_item" @@ -7608,7 +8166,7 @@ paths: News Item Not Found: value: type: error.list - request_id: d4b271c2-a97b-49f7-b3e6-1c8b4dee6df3 + request_id: acff2614-7879-4285-9f09-e9282fe18f6a errors: - code: not_found message: Resource Not Found @@ -7622,7 +8180,7 @@ paths: Unauthorized: value: type: error.list - request_id: 7ce3a989-f0ab-4165-bfe3-7c6f432ef402 + request_id: c3c901d8-81eb-496f-a431-c03c424e69c3 errors: - code: unauthorized message: Access Token Invalid @@ -7639,7 +8197,7 @@ paths: value: title: Christmas is here! body: "

    New gifts in store for the jolly season

    " - sender_id: 991266542 + sender_id: 991266563 reactions: - "\U0001F61D" - "\U0001F602" @@ -7648,7 +8206,7 @@ paths: value: title: Christmas is here! body: "

    New gifts in store for the jolly season

    " - sender_id: 991266545 + sender_id: 991266566 reactions: - "\U0001F61D" - "\U0001F602" @@ -7678,7 +8236,7 @@ paths: examples: successful: value: - id: '402602' + id: '404620' object: news-item deleted: true schema: @@ -7691,7 +8249,7 @@ paths: News Item Not Found: value: type: error.list - request_id: e7cb5ade-d789-4fd4-aed3-0cc711138cab + request_id: e655402d-df13-4708-867f-0b4de2efb457 errors: - code: not_found message: Resource Not Found @@ -7705,7 +8263,7 @@ paths: Unauthorized: value: type: error.list - request_id: 70ac2427-b22b-4ae6-9a64-bc4057b4a4b2 + request_id: 6f7deacf-6245-4907-a93b-f6bfd82322b5 errors: - code: unauthorized message: Access Token Invalid @@ -7758,7 +8316,7 @@ paths: Unauthorized: value: type: error.list - request_id: 03a3689c-684d-493b-b26b-654181385e59 + request_id: 76a6e6b4-7b8f-4bb4-81d0-8d4d191e8a5d errors: - code: unauthorized message: Access Token Invalid @@ -7791,16 +8349,16 @@ paths: total_pages: 1 type: pages data: - - id: '407653' + - id: '409671' type: newsfeed name: Visitor Feed - created_at: 1691577945 - updated_at: 1691577945 - - id: '407654' + created_at: 1692027126 + updated_at: 1692027126 + - id: '409672' type: newsfeed name: Visitor Feed - created_at: 1691577945 - updated_at: 1691577945 + created_at: 1692027126 + updated_at: 1692027126 total_count: 2 schema: "$ref": "#/components/schemas/paginated_response" @@ -7812,7 +8370,7 @@ paths: Unauthorized: value: type: error.list - request_id: ed60f2f4-8851-4403-9db7-6f742858e9af + request_id: 41392079-a065-4f46-8227-554bc1ddcd06 errors: - code: unauthorized message: Access Token Invalid @@ -7846,11 +8404,11 @@ paths: examples: successful: value: - id: '407657' + id: '409675' type: newsfeed name: Visitor Feed - created_at: 1691577946 - updated_at: 1691577946 + created_at: 1692027127 + updated_at: 1692027127 schema: "$ref": "#/components/schemas/newsfeed" '401': @@ -7861,7 +8419,7 @@ paths: Unauthorized: value: type: error.list - request_id: 684819d9-1823-4ec7-aef5-ae7d38bf6b05 + request_id: 7cfa94bc-6484-44f7-96ea-1e581fa5a542 errors: - code: unauthorized message: Access Token Invalid @@ -7895,16 +8453,16 @@ paths: Note found: value: type: note - id: '409674' - created_at: 1690886752 + id: '411692' + created_at: 1691335930 contact: type: contact - id: 64d36e6145ceba405a02c6c6 + id: 64da48fa71858de103653236 author: type: admin - id: '991266561' - name: Ciaran286 Lee - email: admin286@email.com + id: '991266582' + name: Ciaran307 Lee + email: admin307@email.com away_mode_enabled: false away_mode_reassign: false body: "

    This is a note.

    " @@ -7918,7 +8476,7 @@ paths: Note not found: value: type: error.list - request_id: 020be4f8-3096-4207-8195-b9afd7b2308b + request_id: b0b2265a-ed17-4b68-9544-d60d56f315b2 errors: - code: not_found message: Resource Not Found @@ -7932,7 +8490,7 @@ paths: Unauthorized: value: type: error.list - request_id: a81b0035-d3da-4a9a-b504-7b0f99d5d6f6 + request_id: cdaad4d4-2c30-4d1e-8ac0-29c12a882f73 errors: - code: unauthorized message: Access Token Invalid @@ -7968,16 +8526,16 @@ paths: type: segment.list segments: - type: segment - id: 64d36e6845ceba405a02c6ce - name: Jane segment - created_at: 1691577960 - updated_at: 1691577960 + id: 64da48ff71858de10365323d + name: John segment + created_at: 1692027135 + updated_at: 1692027135 person_type: user - type: segment - id: 64d36e6845ceba405a02c6cd - name: John segment - created_at: 1691577960 - updated_at: 1691577960 + id: 64da48ff71858de10365323e + name: Jane segment + created_at: 1692027135 + updated_at: 1692027135 person_type: user schema: "$ref": "#/components/schemas/segment_list" @@ -7989,7 +8547,7 @@ paths: Unauthorized: value: type: error.list - request_id: 1c549779-f3f8-4925-9927-5da9ff20cb6d + request_id: 6dc2fcb7-0147-43a2-9de3-89e9cc394a7e errors: - code: unauthorized message: Access Token Invalid @@ -8023,10 +8581,10 @@ paths: Successful response: value: type: segment - id: 64d36e6b45ceba405a02c6d1 + id: 64da490071858de103653241 name: John segment - created_at: 1691577963 - updated_at: 1691577963 + created_at: 1692027136 + updated_at: 1692027136 person_type: user schema: "$ref": "#/components/schemas/segment" @@ -8038,7 +8596,7 @@ paths: Segment not found: value: type: error.list - request_id: 86036a00-4496-49d9-99b5-1024ae394b0e + request_id: bb4e81c2-eec5-4726-a2bb-e21b39f4c917 errors: - code: not_found message: Resource Not Found @@ -8052,7 +8610,7 @@ paths: Unauthorized: value: type: error.list - request_id: 5fb30cef-0614-4daa-8497-75cbc462d3c7 + request_id: 1d8ec2a2-8c0d-4506-a59c-ae6233e9ea8f errors: - code: unauthorized message: Access Token Invalid @@ -8082,7 +8640,7 @@ paths: type: list data: - type: subscription - id: '445013' + id: '447031' state: live consent_type: opt_out default_translation: @@ -8105,7 +8663,7 @@ paths: Unauthorized: value: type: error.list - request_id: 6247f083-11d3-42b8-956b-b81d320c3b37 + request_id: a552dea2-cdee-4b4a-a1f5-a457e0ff936d errors: - code: unauthorized message: Access Token Invalid @@ -8135,7 +8693,7 @@ paths: examples: successful: value: - url: http://via.intercom.io/msgr/4b6e2af1-3174-4b60-825a-089e64df7572 + url: http://via.intercom.io/msgr/7f99fce2-cd2e-4dc4-825d-d371c73f92c1 type: phone_call_redirect schema: "$ref": "#/components/schemas/phone_switch" @@ -8168,7 +8726,7 @@ paths: Unauthorized: value: type: error.list - request_id: 59ae1b8e-8f61-40a7-927a-c0365b783915 + request_id: 1a061db6-ec83-4324-b103-a16c809b49de errors: - code: unauthorized message: Access Token Invalid @@ -8231,7 +8789,7 @@ paths: type: list data: - type: tag - id: '324930' + id: '326948' name: Manual tag 1 schema: "$ref": "#/components/schemas/tag_list" @@ -8243,7 +8801,7 @@ paths: Unauthorized: value: type: error.list - request_id: 0eee9b98-cf80-41cf-bc95-b56b02493674 + request_id: 96ed11e5-20ec-4ae8-995e-ca21d4bbc777 errors: - code: unauthorized message: Access Token Invalid @@ -8282,7 +8840,7 @@ paths: Action successful: value: type: tag - id: '324933' + id: '326951' name: test schema: "$ref": "#/components/schemas/tag" @@ -8294,7 +8852,7 @@ paths: Invalid parameters: value: type: error.list - request_id: 908f2ea9-4375-467e-ba46-ecdaf76b9179 + request_id: a31d2d79-7ba3-49d0-973f-e9b287dd5ac7 errors: - code: parameter_invalid message: invalid tag parameters @@ -8308,14 +8866,14 @@ paths: Company not found: value: type: error.list - request_id: 7b359aaa-0be0-4531-b688-f5c9da2f103f + request_id: d36b0776-0577-4be0-a39c-10e195f31e47 errors: - code: company_not_found message: Company Not Found User not found: value: type: error.list - request_id: 28e27ed3-9f19-455c-9f36-51f6de7d18cb + request_id: f8d2d8ca-5b8d-4a3e-b9cc-6fc9e78086e6 errors: - code: not_found message: User Not Found @@ -8329,7 +8887,7 @@ paths: Unauthorized: value: type: error.list - request_id: a5364086-b92c-4f0f-a13a-dcbeaee857c3 + request_id: b66358b8-2f47-4eab-91ca-3682b08e08a1 errors: - code: unauthorized message: Access Token Invalid @@ -8395,7 +8953,7 @@ paths: Tag found: value: type: tag - id: '324941' + id: '326959' name: Manual tag schema: "$ref": "#/components/schemas/tag" @@ -8407,7 +8965,7 @@ paths: Tag not found: value: type: error.list - request_id: 16db320d-a377-4a0d-9352-053c159074f9 + request_id: c71892a6-4449-4d77-b039-058f41688f3c errors: - code: not_found message: Resource Not Found @@ -8421,7 +8979,7 @@ paths: Unauthorized: value: type: error.list - request_id: 9679bcd0-c2ae-4af1-b0b2-c6bfe9ef5a02 + request_id: 402ca31c-b606-40b4-be0f-c4534a66aa2e errors: - code: unauthorized message: Access Token Invalid @@ -8457,7 +9015,7 @@ paths: Resource not found: value: type: error.list - request_id: d38f058a-e594-4137-b7ec-54875c577a67 + request_id: 6afdb02d-4a1e-411b-949d-35b1d56034ce errors: - code: not_found message: Resource Not Found @@ -8471,7 +9029,7 @@ paths: Tag has dependent objects: value: type: error.list - request_id: 39b7def9-997a-44c6-8a35-a518d1dfe083 + request_id: 40292d0f-f481-4d7e-ab47-b98ec18a9f61 errors: - code: tag_has_dependent_objects message: 'Unable to delete Tag with dependent objects. Segments: @@ -8486,7 +9044,7 @@ paths: Unauthorized: value: type: error.list - request_id: afaa1aa5-50ce-4667-be1a-9ef6ed9d9836 + request_id: e4fc4fdd-d5cf-44a9-b83b-daa41c52b711 errors: - code: unauthorized message: Access Token Invalid @@ -8524,7 +9082,7 @@ paths: Unauthorized: value: type: error.list - request_id: cbca54bc-4de8-40a2-8fdd-3c7c26dcb696 + request_id: 90db50de-c09c-40f6-b338-3d4a812fb23b errors: - code: unauthorized message: Access Token Invalid @@ -8559,7 +9117,7 @@ paths: successful: value: type: team - id: '991266605' + id: '991266626' name: team 1 admin_ids: [] schema: @@ -8572,7 +9130,7 @@ paths: Team not found: value: type: error.list - request_id: 05faf1ce-4ebc-463f-8f9b-366bb0042dfc + request_id: d7614002-5d6d-4928-b29c-f34b676fd06c errors: - code: team_not_found message: Team not found @@ -8586,7 +9144,7 @@ paths: Unauthorized: value: type: error.list - request_id: 30513cf0-0018-4b04-b002-0c158123e114 + request_id: ed290c5a-990a-4371-bcde-b62b3220d47f errors: - code: unauthorized message: Access Token Invalid @@ -8620,7 +9178,7 @@ paths: value: type: ticket_type_attribute id: '165495' - workspace_id: this_is_an_id552_that_should_be_at_least_ + workspace_id: this_is_an_id594_that_should_be_at_least_ name: Attribute Title description: Attribute Description data_type: string @@ -8632,10 +9190,10 @@ paths: visible_on_create: true visible_to_contacts: true default: false - ticket_type_id: 771887 + ticket_type_id: 773905 archived: false - created_at: 1691578003 - updated_at: 1691578003 + created_at: 1692027160 + updated_at: 1692027160 schema: "$ref": "#/components/schemas/ticket_type_attribute" '401': @@ -8646,7 +9204,7 @@ paths: Unauthorized: value: type: error.list - request_id: 5565119d-d578-4024-8661-77f68f5643a2 + request_id: 0753b413-e584-482f-bfcc-4738b00fedab errors: - code: unauthorized message: Access Token Invalid @@ -8700,7 +9258,7 @@ paths: value: type: ticket_type_attribute id: '165496' - workspace_id: this_is_an_id556_that_should_be_at_least_ + workspace_id: this_is_an_id598_that_should_be_at_least_ name: name description: New Attribute Description data_type: string @@ -8710,10 +9268,10 @@ paths: visible_on_create: false visible_to_contacts: false default: false - ticket_type_id: 771889 + ticket_type_id: 773907 archived: false - created_at: 1691578005 - updated_at: 1691578005 + created_at: 1692027161 + updated_at: 1692027162 schema: "$ref": "#/components/schemas/ticket_type_attribute" '401': @@ -8724,7 +9282,7 @@ paths: Unauthorized: value: type: error.list - request_id: 11c3b360-55e7-4a66-8856-0d7ef137e458 + request_id: aafc58a4-ea40-4f19-a265-df9a072e3900 errors: - code: unauthorized message: Access Token Invalid @@ -8762,35 +9320,35 @@ paths: type: list data: - type: ticket_type - id: '771891' + id: '773909' name: Bug Report description: Bug Report Template icon: "\U0001F39F️" - workspace_id: this_is_an_id560_that_should_be_at_least_ + workspace_id: this_is_an_id602_that_should_be_at_least_ archived: false - created_at: 1691578006 - updated_at: 1691578006 + created_at: 1692027163 + updated_at: 1692027163 is_internal: false ticket_type_attributes: type: list data: - type: ticket_type_attribute id: '165497' - workspace_id: this_is_an_id560_that_should_be_at_least_ + workspace_id: this_is_an_id602_that_should_be_at_least_ name: name description: description data_type: string - input_options: + input_options: order: 0 required_to_create: false required_to_create_for_contacts: false visible_on_create: false visible_to_contacts: false default: false - ticket_type_id: 771891 + ticket_type_id: 773909 archived: false - created_at: 1691578006 - updated_at: 1691578006 + created_at: 1692027163 + updated_at: 1692027163 category: Customer schema: "$ref": "#/components/schemas/ticket_type_list" @@ -8802,7 +9360,7 @@ paths: Unauthorized: value: type: error.list - request_id: dd6a05ff-247e-44f7-8c12-7c912a793dc8 + request_id: c1af62b5-81bf-4a75-938e-08993e0999e9 errors: - code: unauthorized message: Access Token Invalid @@ -8830,14 +9388,14 @@ paths: Ticket type created: value: type: ticket_type - id: '771894' + id: '773912' name: Customer Issue description: Customer Report Template icon: "\U0001F39F️" - workspace_id: this_is_an_id564_that_should_be_at_least_ + workspace_id: this_is_an_id606_that_should_be_at_least_ archived: false - created_at: 1691578008 - updated_at: 1691578008 + created_at: 1692027164 + updated_at: 1692027164 is_internal: false ticket_type_attributes: type: list @@ -8853,7 +9411,7 @@ paths: Unauthorized: value: type: error.list - request_id: 76a1e92f-350e-47da-bea9-e6ff5a07ffcc + request_id: fcd94cb3-3fa8-4d59-9a9c-c8127ace791d errors: - code: unauthorized message: Access Token Invalid @@ -8898,35 +9456,35 @@ paths: Ticket type found: value: type: ticket_type - id: '771896' + id: '773914' name: Bug Report description: Bug Report Template icon: "\U0001F39F️" - workspace_id: this_is_an_id568_that_should_be_at_least_ + workspace_id: this_is_an_id610_that_should_be_at_least_ archived: false - created_at: 1691578009 - updated_at: 1691578009 + created_at: 1692027165 + updated_at: 1692027165 is_internal: false ticket_type_attributes: type: list data: - type: ticket_type_attribute id: '165501' - workspace_id: this_is_an_id568_that_should_be_at_least_ + workspace_id: this_is_an_id610_that_should_be_at_least_ name: name description: description data_type: string - input_options: + input_options: order: 0 required_to_create: false required_to_create_for_contacts: false visible_on_create: false visible_to_contacts: false default: false - ticket_type_id: 771896 + ticket_type_id: 773914 archived: false - created_at: 1691578009 - updated_at: 1691578009 + created_at: 1692027165 + updated_at: 1692027165 category: Customer schema: "$ref": "#/components/schemas/ticket_type" @@ -8938,7 +9496,7 @@ paths: Unauthorized: value: type: error.list - request_id: 4378294d-fe3e-4490-ab6c-ea1099cf66e5 + request_id: 5745abd1-dc38-4d29-b51e-73f895b4b002 errors: - code: unauthorized message: Access Token Invalid @@ -8970,35 +9528,35 @@ paths: Ticket type updated: value: type: ticket_type - id: '771898' + id: '773916' name: Bug Report 2 description: Bug Report Template icon: "\U0001F39F️" - workspace_id: this_is_an_id572_that_should_be_at_least_ + workspace_id: this_is_an_id614_that_should_be_at_least_ archived: false - created_at: 1691578011 - updated_at: 1691578011 + created_at: 1692027166 + updated_at: 1692027166 is_internal: false ticket_type_attributes: type: list data: - type: ticket_type_attribute id: '165503' - workspace_id: this_is_an_id572_that_should_be_at_least_ + workspace_id: this_is_an_id614_that_should_be_at_least_ name: name description: description data_type: string - input_options: + input_options: order: 0 required_to_create: false required_to_create_for_contacts: false visible_on_create: false visible_to_contacts: false default: false - ticket_type_id: 771898 + ticket_type_id: 773916 archived: false - created_at: 1691578011 - updated_at: 1691578011 + created_at: 1692027166 + updated_at: 1692027166 category: Customer schema: "$ref": "#/components/schemas/ticket_type" @@ -9010,7 +9568,7 @@ paths: Unauthorized: value: type: error.list - request_id: 5cfa852b-df33-496b-9228-e618433cafa9 + request_id: '040049a2-2fdf-4a09-9d62-cdbf0957d7f0' errors: - code: unauthorized message: Access Token Invalid @@ -9056,22 +9614,22 @@ paths: User reply: value: type: ticket_part - id: '715410' + id: '717428' part_type: comment body: "

    Thanks again :)

    " - created_at: 1691578016 - updated_at: 1691578016 + created_at: 1692027168 + updated_at: 1692027168 author: - id: 64d36e9f45ceba405a02c700 + id: 64da492071858de103653270 type: user - name: + name: email: user28@email.com attachments: [] redacted: false Admin note reply: value: type: ticket_part - id: '715412' + id: '717430' part_type: note body: |-

    An Unordered HTML List

    @@ -9086,27 +9644,27 @@ paths:
  • Tea
  • Milk
  • - created_at: 1691578021 - updated_at: 1691578021 + created_at: 1692027172 + updated_at: 1692027172 author: - id: '991266632' + id: '991266653' type: admin - name: Ciaran351 Lee - email: admin351@email.com + name: Ciaran372 Lee + email: admin372@email.com attachments: [] redacted: false Admin quick_reply reply: value: type: ticket_part - id: '715414' + id: '717432' part_type: quick_reply - created_at: 1691578025 - updated_at: 1691578025 + created_at: 1692027175 + updated_at: 1692027175 author: - id: '991266637' + id: '991266658' type: admin - name: Ciaran355 Lee - email: admin355@email.com + name: Ciaran376 Lee + email: admin376@email.com attachments: [] redacted: false schema: @@ -9119,7 +9677,7 @@ paths: Not found: value: type: error.list - request_id: 1560ec99-acb3-4269-b4d8-6f4036f7692b + request_id: 6d1720f4-2318-48b0-8f4f-6fabb786ae89 errors: - code: not_found message: Resource Not Found @@ -9133,7 +9691,7 @@ paths: Unauthorized: value: type: error.list - request_id: 5dc9b27b-ffa8-4cf1-b33c-606cabc8d740 + request_id: 8edde80f-f186-4dd2-b150-a8d0af7e74bc errors: - code: unauthorized message: Access Token Invalid @@ -9150,14 +9708,14 @@ paths: value: message_type: comment type: user - intercom_user_id: 64d36e9f45ceba405a02c700 + intercom_user_id: 64da492071858de103653270 body: Thanks again :) admin_note_reply: summary: Admin note reply value: message_type: note type: admin - admin_id: 991266632 + admin_id: 991266653 body: "

    An Unordered HTML List

    An Ordered HTML List

    \
    1. Coffee
    2. Tea
    3. Milk
    @@ -9167,18 +9725,18 @@ paths: value: message_type: quick_reply type: admin - admin_id: 991266637 + admin_id: 991266658 reply_options: - text: 'Yes' - uuid: 2c10e5c9-8c7a-4970-9466-3ae22afd8474 + uuid: 67d25672-ec84-4dc8-8961-ba948c2eeefd - text: 'No' - uuid: 8362fb6d-da37-4299-bbb2-9562890696fd + uuid: 18737b9b-0ed9-47ea-bb8e-453bc093112f not_found: summary: Not found value: message_type: comment type: user - intercom_user_id: 64d36eac45ceba405a02c703 + intercom_user_id: 64da492871858de103653273 body: Thanks again :) "/tickets/{ticket_id}/tags": post: @@ -9210,7 +9768,7 @@ paths: successful: value: type: tag - id: '324949' + id: '326967' name: Manual tag schema: "$ref": "#/components/schemas/tag" @@ -9222,7 +9780,7 @@ paths: Ticket not found: value: type: error.list - request_id: ab91d416-b307-4147-8372-4ec862e5fb40 + request_id: 0e39e3ac-2c30-40af-8ccf-59b268234dc3 errors: - code: ticket_not_found message: Ticket not found @@ -9236,7 +9794,7 @@ paths: Unauthorized: value: type: error.list - request_id: 90367b33-09e7-4975-94a0-0a8d77a31d35 + request_id: 23a0c8a7-f7ee-4d4a-bf93-ed080a1f79d1 errors: - code: unauthorized message: Access Token Invalid @@ -9265,13 +9823,13 @@ paths: successful: summary: successful value: - id: 324949 - admin_id: 991266647 + id: 326967 + admin_id: 991266668 ticket_not_found: summary: Ticket not found value: - id: 324950 - admin_id: 991266650 + id: 326968 + admin_id: 991266671 "/tickets/{ticket_id}/tags/{id}": delete: summary: Remove tag from a ticket @@ -9309,7 +9867,7 @@ paths: successful: value: type: tag - id: '324952' + id: '326970' name: Manual tag schema: "$ref": "#/components/schemas/tag" @@ -9321,14 +9879,14 @@ paths: Ticket not found: value: type: error.list - request_id: bf954fe0-26df-40a0-b207-7d633c740107 + request_id: 898c92c0-e44e-4c0c-99c2-435ed4be77bd errors: - code: ticket_not_found message: Ticket not found Tag not found: value: type: error.list - request_id: 1bf4ab84-7213-4a33-918d-adfd856efc74 + request_id: 185a6cfb-ac22-4110-b5e7-cb044c7ddc2d errors: - code: tag_not_found message: Tag not found @@ -9342,7 +9900,7 @@ paths: Unauthorized: value: type: error.list - request_id: c8ae8a03-e019-4f01-a121-95ca09bdef53 + request_id: d90cc4e1-9ae2-4da7-b1a1-6da6b8dc73d6 errors: - code: unauthorized message: Access Token Invalid @@ -9365,15 +9923,15 @@ paths: successful: summary: successful value: - admin_id: 991266656 + admin_id: 991266677 ticket_not_found: summary: Ticket not found value: - admin_id: 991266659 + admin_id: 991266680 tag_not_found: summary: Tag not found value: - admin_id: 991266662 + admin_id: 991266683 "/tickets": post: summary: Create a ticket @@ -9394,86 +9952,86 @@ paths: Successful response: value: type: ticket - id: '720581' - ticket_id: '717410' + id: '722599' + ticket_id: '719428' ticket_attributes: title: example description: there is a problem ticket_state: submitted ticket_type: type: ticket_type - id: '771912' + id: '773930' name: my-ticket-type-15 description: my ticket type description is awesome. icon: "\U0001F981" - workspace_id: this_is_an_id600_that_should_be_at_least_ + workspace_id: this_is_an_id642_that_should_be_at_least_ archived: false - created_at: 1691578048 - updated_at: 1691578048 + created_at: 1692027193 + updated_at: 1692027193 is_internal: false ticket_type_attributes: type: list data: - type: ticket_type_attribute id: '165513' - workspace_id: this_is_an_id600_that_should_be_at_least_ + workspace_id: this_is_an_id642_that_should_be_at_least_ name: title description: ola data_type: string - input_options: + input_options: order: 0 required_to_create: true required_to_create_for_contacts: false visible_on_create: true visible_to_contacts: false default: false - ticket_type_id: 771912 + ticket_type_id: 773930 archived: false - created_at: 1691578048 - updated_at: 1691578048 + created_at: 1692027193 + updated_at: 1692027193 - type: ticket_type_attribute id: '165514' - workspace_id: this_is_an_id600_that_should_be_at_least_ + workspace_id: this_is_an_id642_that_should_be_at_least_ name: description description: ola data_type: string - input_options: + input_options: order: 0 required_to_create: true required_to_create_for_contacts: false visible_on_create: true visible_to_contacts: false default: false - ticket_type_id: 771912 + ticket_type_id: 773930 archived: false - created_at: 1691578049 - updated_at: 1691578049 + created_at: 1692027193 + updated_at: 1692027193 category: Back-office contacts: type: contact.list contacts: - type: contact - id: 64d36ec145ceba405a02c70c + id: 64da493971858de10365327c external_id: '70' admin_assignee_id: '0' team_assignee_id: '0' - created_at: 1691578050 - updated_at: 1691578050 + created_at: 1692027194 + updated_at: 1692027194 ticket_parts: type: ticket_part.list ticket_parts: - type: ticket_part - id: '715415' + id: '717433' part_type: ticket_state_updated_by_admin ticket_state: submitted previous_ticket_state: submitted - created_at: 1691578050 - updated_at: 1691578050 + created_at: 1692027194 + updated_at: 1692027194 author: - id: '991266674' + id: '991266695' type: bot name: Operator - email: operator+this_is_an_id600_that_should_be_at_least_@intercom.io + email: operator+this_is_an_id642_that_should_be_at_least_@intercom.io attachments: [] redacted: false total_count: 1 @@ -9495,7 +10053,7 @@ paths: Unauthorized: value: type: error.list - request_id: acd0666e-c197-4df0-9915-cbcfdf835780 + request_id: 91a51a26-e716-450b-97ea-d82e87f01da3 errors: - code: unauthorized message: Access Token Invalid @@ -9510,9 +10068,9 @@ paths: successful_response: summary: Successful response value: - ticket_type_id: 771912 + ticket_type_id: 773930 contacts: - - id: 64d36ec145ceba405a02c70c + - id: 64da493971858de10365327c ticket_attributes: title: example description: there is a problem @@ -9542,156 +10100,156 @@ paths: Successful response: value: type: ticket - id: '720582' - ticket_id: '717411' + id: '722600' + ticket_id: '719429' ticket_attributes: title: example description: there is a problem ticket_state: in_progress ticket_type: type: ticket_type - id: '771914' + id: '773932' name: my-ticket-type-17 description: my ticket type description is awesome. icon: "\U0001F981" - workspace_id: this_is_an_id604_that_should_be_at_least_ + workspace_id: this_is_an_id646_that_should_be_at_least_ archived: false - created_at: 1691578053 - updated_at: 1691578053 + created_at: 1692027196 + updated_at: 1692027196 is_internal: false ticket_type_attributes: type: list data: - type: ticket_type_attribute id: '165518' - workspace_id: this_is_an_id604_that_should_be_at_least_ + workspace_id: this_is_an_id646_that_should_be_at_least_ name: title description: ola data_type: string - input_options: + input_options: order: 0 required_to_create: true required_to_create_for_contacts: false visible_on_create: true visible_to_contacts: false default: false - ticket_type_id: 771914 + ticket_type_id: 773932 archived: false - created_at: 1691578053 - updated_at: 1691578053 + created_at: 1692027196 + updated_at: 1692027196 - type: ticket_type_attribute id: '165519' - workspace_id: this_is_an_id604_that_should_be_at_least_ + workspace_id: this_is_an_id646_that_should_be_at_least_ name: description description: ola data_type: string - input_options: + input_options: order: 0 required_to_create: true required_to_create_for_contacts: false visible_on_create: true visible_to_contacts: false default: false - ticket_type_id: 771914 + ticket_type_id: 773932 archived: false - created_at: 1691578053 - updated_at: 1691578053 + created_at: 1692027196 + updated_at: 1692027196 category: Back-office contacts: type: contact.list contacts: - type: contact - id: 64d36ec545ceba405a02c70d - external_id: 7aad631e-a988-466d-b2d0-b5e9a1167912 - admin_assignee_id: '991266688' + id: 64da493d71858de10365327d + external_id: 4665c03f-3728-46e2-8300-f36c2f5aa68b + admin_assignee_id: '991266709' team_assignee_id: '0' - created_at: 1691578054 - updated_at: 1691578058 + created_at: 1692027197 + updated_at: 1692027202 ticket_parts: type: ticket_part.list ticket_parts: - type: ticket_part - id: '715416' + id: '717434' part_type: ticket_state_updated_by_admin ticket_state: submitted previous_ticket_state: submitted - created_at: 1691578054 - updated_at: 1691578054 + created_at: 1692027198 + updated_at: 1692027198 author: - id: '991266686' + id: '991266707' type: admin - name: Ciaran395 Lee - email: admin395@email.com + name: Ciaran416 Lee + email: admin416@email.com attachments: [] redacted: false - type: ticket_part - id: '715417' + id: '717435' part_type: ticket_attribute_updated_by_admin - created_at: 1691578056 - updated_at: 1691578056 + created_at: 1692027200 + updated_at: 1692027200 author: - id: '991266687' + id: '991266708' type: bot name: Operator - email: operator+this_is_an_id604_that_should_be_at_least_@intercom.io + email: operator+this_is_an_id646_that_should_be_at_least_@intercom.io attachments: [] redacted: false - type: ticket_part - id: '715418' + id: '717436' part_type: ticket_attribute_updated_by_admin - created_at: 1691578057 - updated_at: 1691578057 + created_at: 1692027201 + updated_at: 1692027201 author: - id: '991266687' + id: '991266708' type: bot name: Operator - email: operator+this_is_an_id604_that_should_be_at_least_@intercom.io + email: operator+this_is_an_id646_that_should_be_at_least_@intercom.io attachments: [] redacted: false - type: ticket_part - id: '715419' + id: '717437' part_type: ticket_state_updated_by_admin ticket_state: in_progress previous_ticket_state: submitted - created_at: 1691578057 - updated_at: 1691578057 + created_at: 1692027201 + updated_at: 1692027201 author: - id: '991266687' + id: '991266708' type: bot name: Operator - email: operator+this_is_an_id604_that_should_be_at_least_@intercom.io + email: operator+this_is_an_id646_that_should_be_at_least_@intercom.io attachments: [] redacted: false - type: ticket_part - id: '715420' + id: '717438' part_type: assignment - created_at: 1691578057 - updated_at: 1691578057 + created_at: 1692027202 + updated_at: 1692027202 assigned_to: type: admin - id: '991266688' + id: '991266709' author: - id: '991266686' + id: '991266707' type: admin - name: Ciaran395 Lee - email: admin395@email.com + name: Ciaran416 Lee + email: admin416@email.com attachments: [] redacted: false - type: ticket_part - id: '715421' + id: '717439' part_type: snoozed - created_at: 1691578058 - updated_at: 1691578058 + created_at: 1692027202 + updated_at: 1692027202 author: - id: '991266687' + id: '991266708' type: bot name: Operator - email: operator+this_is_an_id604_that_should_be_at_least_@intercom.io + email: operator+this_is_an_id646_that_should_be_at_least_@intercom.io attachments: [] redacted: false total_count: 6 open: true - snoozed_until: 1691683200 + snoozed_until: 1692115200 linked_objects: type: list data: [] @@ -9709,14 +10267,14 @@ paths: Admin not found: value: type: error.list - request_id: e4d6a21e-9e31-4808-84d8-bb0fe3c68f57 + request_id: 3f3a47b2-d4a5-4216-aa31-4ca83490e0dd errors: - code: assignee_not_found message: Assignee not found Assignee not found: value: type: error.list - request_id: f51b3529-6562-44ac-855d-078923594c23 + request_id: 93980e77-0678-4339-9c71-0b7483b870d4 errors: - code: assignee_not_found message: Assignee not found @@ -9728,7 +10286,7 @@ paths: Unauthorized: value: type: error.list - request_id: 38a8466b-1219-49cf-89fa-e9bc6466e670 + request_id: 967c0a46-7f1b-41a7-a20b-e9a2278d4c9c errors: - code: unauthorized message: Access Token Invalid @@ -9748,8 +10306,8 @@ paths: description: there is a problem state: in_progress assignment: - admin_id: '991266686' - assignee_id: '991266688' + admin_id: '991266707' + assignee_id: '991266709' open: true snoozed_until: 1673609604 admin_not_found: @@ -9761,7 +10319,7 @@ paths: state: in_progress assignment: admin_id: '123' - assignee_id: '991266696' + assignee_id: '991266717' assignee_not_found: summary: Assignee not found value: @@ -9770,7 +10328,7 @@ paths: description: there is a problem state: in_progress assignment: - admin_id: '991266702' + admin_id: '991266723' assignee_id: '456' get: summary: Retrieve a ticket @@ -9797,86 +10355,86 @@ paths: Ticket found: value: type: ticket - id: '720585' - ticket_id: '717414' + id: '722603' + ticket_id: '719432' ticket_attributes: title: attribute_value - description: + description: ticket_state: submitted ticket_type: type: ticket_type - id: '771918' + id: '773936' name: my-ticket-type-21 description: my ticket type description is awesome. icon: "\U0001F981" - workspace_id: this_is_an_id612_that_should_be_at_least_ + workspace_id: this_is_an_id654_that_should_be_at_least_ archived: false - created_at: 1691578069 - updated_at: 1691578069 + created_at: 1692027209 + updated_at: 1692027209 is_internal: false ticket_type_attributes: type: list data: - type: ticket_type_attribute id: '165529' - workspace_id: this_is_an_id612_that_should_be_at_least_ + workspace_id: this_is_an_id654_that_should_be_at_least_ name: title description: ola data_type: string - input_options: + input_options: order: 0 required_to_create: true required_to_create_for_contacts: false visible_on_create: true visible_to_contacts: false default: false - ticket_type_id: 771918 + ticket_type_id: 773936 archived: false - created_at: 1691578069 - updated_at: 1691578069 + created_at: 1692027209 + updated_at: 1692027209 - type: ticket_type_attribute id: '165530' - workspace_id: this_is_an_id612_that_should_be_at_least_ + workspace_id: this_is_an_id654_that_should_be_at_least_ name: description description: ola data_type: string - input_options: + input_options: order: 0 required_to_create: true required_to_create_for_contacts: false visible_on_create: true visible_to_contacts: false default: false - ticket_type_id: 771918 + ticket_type_id: 773936 archived: false - created_at: 1691578069 - updated_at: 1691578069 + created_at: 1692027210 + updated_at: 1692027210 category: Back-office contacts: type: contact.list contacts: - type: contact - id: 64d36ed645ceba405a02c710 - external_id: '08143b93-e652-40f1-b48e-b7a64cda6067' + id: 64da494a71858de103653280 + external_id: 9f5525e8-9347-4e3e-8c32-42b09211ea43 admin_assignee_id: '0' team_assignee_id: '0' - created_at: 1691578070 - updated_at: 1691578071 + created_at: 1692027210 + updated_at: 1692027211 ticket_parts: type: ticket_part.list ticket_parts: - type: ticket_part - id: '715424' + id: '717442' part_type: ticket_state_updated_by_admin ticket_state: submitted previous_ticket_state: submitted - created_at: 1691578071 - updated_at: 1691578071 + created_at: 1692027211 + updated_at: 1692027211 author: - id: '991266715' + id: '991266736' type: admin - name: Ciaran421 Lee - email: admin421@email.com + name: Ciaran442 Lee + email: admin442@email.com attachments: [] redacted: false total_count: 1 @@ -9898,7 +10456,7 @@ paths: Unauthorized: value: type: error.list - request_id: 3235b35f-e092-4cad-a7b5-33bad20e2137 + request_id: fa44b925-7929-4c58-b8c0-39a358060750 errors: - code: unauthorized message: Access Token Invalid @@ -9962,86 +10520,86 @@ paths: total_count: 1 tickets: - type: ticket - id: '720586' - ticket_id: '717415' + id: '722604' + ticket_id: '719433' ticket_attributes: title: attribute_value - description: + description: ticket_state: submitted ticket_type: type: ticket_type - id: '771920' + id: '773938' name: my-ticket-type-23 description: my ticket type description is awesome. icon: "\U0001F981" - workspace_id: this_is_an_id616_that_should_be_at_least_ + workspace_id: this_is_an_id658_that_should_be_at_least_ archived: false - created_at: 1691578074 - updated_at: 1691578074 + created_at: 1692027214 + updated_at: 1692027214 is_internal: false ticket_type_attributes: type: list data: - type: ticket_type_attribute id: '165534' - workspace_id: this_is_an_id616_that_should_be_at_least_ + workspace_id: this_is_an_id658_that_should_be_at_least_ name: title description: ola data_type: string - input_options: + input_options: order: 0 required_to_create: true required_to_create_for_contacts: false visible_on_create: true visible_to_contacts: false default: false - ticket_type_id: 771920 + ticket_type_id: 773938 archived: false - created_at: 1691578074 - updated_at: 1691578074 + created_at: 1692027214 + updated_at: 1692027214 - type: ticket_type_attribute id: '165535' - workspace_id: this_is_an_id616_that_should_be_at_least_ + workspace_id: this_is_an_id658_that_should_be_at_least_ name: description description: ola data_type: string - input_options: + input_options: order: 0 required_to_create: true required_to_create_for_contacts: false visible_on_create: true visible_to_contacts: false default: false - ticket_type_id: 771920 + ticket_type_id: 773938 archived: false - created_at: 1691578074 - updated_at: 1691578074 + created_at: 1692027214 + updated_at: 1692027214 category: Back-office contacts: type: contact.list contacts: - type: contact - id: 64d36edb45ceba405a02c711 - external_id: f8fe3b37-7fbe-4a76-ac5b-be115f239293 + id: 64da494f71858de103653281 + external_id: 69075684-dd2b-434e-99d1-25fd3af0a8cb admin_assignee_id: '0' team_assignee_id: '0' - created_at: 1691578075 - updated_at: 1691578076 + created_at: 1692027215 + updated_at: 1692027216 ticket_parts: type: ticket_part.list ticket_parts: - type: ticket_part - id: '715425' + id: '717443' part_type: ticket_state_updated_by_admin ticket_state: submitted previous_ticket_state: submitted - created_at: 1691578076 - updated_at: 1691578076 + created_at: 1692027216 + updated_at: 1692027216 author: - id: '991266728' + id: '991266749' type: admin - name: Ciaran433 Lee - email: admin433@email.com + name: Ciaran454 Lee + email: admin454@email.com attachments: [] redacted: false total_count: 1 @@ -10069,15 +10627,15 @@ paths: value: - field: id operator: "=" - value: '720586' + value: '722604' - operator: OR value: - field: id operator: "=" - value: '720586' + value: '722604' - field: id operator: "=" - value: '720586' + value: '722604' "/visitors": put: summary: Update a visitor @@ -10104,31 +10662,31 @@ paths: successful: value: type: visitor - id: 64d36f3c45ceba405a02c7fd + id: 64da499271858de10365336d user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 anonymous: true email: '' - phone: + phone: name: Gareth Bale - pseudonym: Mint Cello + pseudonym: Yellow Poodle avatar: type: avatar - image_url: https://static.intercomassets.com/app/pseudonym_avatars_2019/mint-cello.png - app_id: this_is_an_id620_that_should_be_at_least_ + image_url: https://static.intercomassets.com/app/pseudonym_avatars_2019/yellow-poodle.png + app_id: this_is_an_id662_that_should_be_at_least_ companies: type: company.list companies: [] location_data: {} - last_request_at: - created_at: 1691578172 - remote_created_at: 1691578172 - signed_up_at: 1691578172 - updated_at: 1691578172 + last_request_at: + created_at: 1692027282 + remote_created_at: 1692027282 + signed_up_at: 1692027282 + updated_at: 1692027282 session_count: 0 social_profiles: type: social_profile.list social_profiles: [] - owner_id: + owner_id: unsubscribed_from_emails: false marked_email_as_spam: false has_hard_bounced: false @@ -10139,13 +10697,13 @@ paths: type: segment.list segments: [] custom_attributes: {} - referrer: - utm_campaign: - utm_content: - utm_medium: - utm_source: - utm_term: - do_not_track: + referrer: + utm_campaign: + utm_content: + utm_medium: + utm_source: + utm_term: + do_not_track: schema: "$ref": "#/components/schemas/visitor" '404': @@ -10156,7 +10714,7 @@ paths: visitor Not Found: value: type: error.list - request_id: f10c99a5-5beb-48fc-a615-7343e1fbac70 + request_id: 6610fcca-d230-49fa-88ad-c0c4753a8a76 errors: - code: not_found message: Visitor Not Found @@ -10170,7 +10728,7 @@ paths: Unauthorized: value: type: error.list - request_id: ee533561-41f2-4b68-88f4-e11169256ed0 + request_id: c6f29fe2-ffc9-491c-a2b6-09a8e4ffd3d3 errors: - code: unauthorized message: Access Token Invalid @@ -10185,7 +10743,7 @@ paths: successful: summary: successful value: - id: 64d36f3c45ceba405a02c7fd + id: 64da499271858de10365336d name: Gareth Bale visitor_not_found: summary: visitor Not Found @@ -10218,31 +10776,31 @@ paths: successful: value: type: visitor - id: 64d36f3f45ceba405a02c800 + id: 64da499471858de103653370 user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 anonymous: true email: '' - phone: - name: - pseudonym: + phone: + name: + pseudonym: avatar: type: avatar - image_url: - app_id: this_is_an_id626_that_should_be_at_least_ + image_url: + app_id: this_is_an_id668_that_should_be_at_least_ companies: type: company.list companies: [] location_data: {} - last_request_at: - created_at: 1691578175 - remote_created_at: 1691578175 - signed_up_at: 1691578175 - updated_at: 1691578175 + last_request_at: + created_at: 1692027284 + remote_created_at: 1692027284 + signed_up_at: 1692027284 + updated_at: 1692027284 session_count: 0 social_profiles: type: social_profile.list social_profiles: [] - owner_id: + owner_id: unsubscribed_from_emails: false marked_email_as_spam: false has_hard_bounced: false @@ -10253,13 +10811,13 @@ paths: type: segment.list segments: [] custom_attributes: {} - referrer: - utm_campaign: - utm_content: - utm_medium: - utm_source: - utm_term: - do_not_track: + referrer: + utm_campaign: + utm_content: + utm_medium: + utm_source: + utm_term: + do_not_track: schema: "$ref": "#/components/schemas/visitor" '404': @@ -10270,7 +10828,7 @@ paths: Visitor not found: value: type: error.list - request_id: b432dd24-a1b6-4529-81d9-66532547d5d8 + request_id: fd6a0b83-0cab-421d-8a07-3745b8958881 errors: - code: not_found message: Visitor Not Found @@ -10284,7 +10842,7 @@ paths: Unauthorized: value: type: error.list - request_id: 921e4f0a-a904-49d9-ae5f-543c0c816ffb + request_id: 84aa4680-a971-4557-b0a8-33d9a0cf6546 errors: - code: unauthorized message: Access Token Invalid @@ -10318,31 +10876,31 @@ paths: successful: value: type: visitor - id: 64d36f4145ceba405a02c803 + id: 64da499571858de103653373 user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 anonymous: true email: '' - phone: - name: - pseudonym: + phone: + name: + pseudonym: avatar: type: avatar - image_url: - app_id: this_is_an_id632_that_should_be_at_least_ + image_url: + app_id: this_is_an_id674_that_should_be_at_least_ companies: type: company.list companies: [] location_data: {} - last_request_at: - created_at: 1691578177 - remote_created_at: 1691578177 - signed_up_at: 1691578177 - updated_at: 1691578177 + last_request_at: + created_at: 1692027285 + remote_created_at: 1692027285 + signed_up_at: 1692027285 + updated_at: 1692027285 session_count: 0 social_profiles: type: social_profile.list social_profiles: [] - owner_id: + owner_id: unsubscribed_from_emails: false marked_email_as_spam: false has_hard_bounced: false @@ -10353,13 +10911,13 @@ paths: type: segment.list segments: [] custom_attributes: {} - referrer: - utm_campaign: - utm_content: - utm_medium: - utm_source: - utm_term: - do_not_track: + referrer: + utm_campaign: + utm_content: + utm_medium: + utm_source: + utm_term: + do_not_track: schema: "$ref": "#/components/schemas/visitor" '404': @@ -10370,7 +10928,7 @@ paths: Visitor not found: value: type: error.list - request_id: 9ee3d573-0ce5-4176-a3fb-6d3aa7f249fd + request_id: cf203f2c-8598-4fc3-994c-8f8c965fd865 errors: - code: not_found message: Visitor Not Found @@ -10384,7 +10942,7 @@ paths: Unauthorized: value: type: error.list - request_id: 991a683c-89fd-482a-8017-fe85f2060e18 + request_id: 6a65d8ac-73a6-4c25-a603-5d0c38ebdbc8 errors: - code: unauthorized message: Access Token Invalid @@ -10417,31 +10975,31 @@ paths: successful: value: type: visitor - id: 64d36f4445ceba405a02c806 + id: 64da499771858de103653376 user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 anonymous: true email: '' - phone: - name: - pseudonym: + phone: + name: + pseudonym: avatar: type: avatar - image_url: - app_id: this_is_an_id638_that_should_be_at_least_ + image_url: + app_id: this_is_an_id680_that_should_be_at_least_ companies: type: company.list companies: [] location_data: {} - last_request_at: - created_at: 1691578180 - remote_created_at: 1691578180 - signed_up_at: 1691578180 - updated_at: 1691578181 + last_request_at: + created_at: 1692027287 + remote_created_at: 1692027287 + signed_up_at: 1692027287 + updated_at: 1692027287 session_count: 0 social_profiles: type: social_profile.list social_profiles: [] - owner_id: + owner_id: unsubscribed_from_emails: false marked_email_as_spam: false has_hard_bounced: false @@ -10452,13 +11010,13 @@ paths: type: segment.list segments: [] custom_attributes: {} - referrer: - utm_campaign: - utm_content: - utm_medium: - utm_source: - utm_term: - do_not_track: + referrer: + utm_campaign: + utm_content: + utm_medium: + utm_source: + utm_term: + do_not_track: schema: "$ref": "#/components/schemas/visitor_deleted_object" '404': @@ -10469,7 +11027,7 @@ paths: Visitor Not Found: value: type: error.list - request_id: 56d72c1d-23a9-473b-ae24-5b3a84fc00b5 + request_id: e353e9bc-dea9-4cba-aa70-6215f354a6c3 errors: - code: not_found message: User Not Found @@ -10483,7 +11041,7 @@ paths: Unauthorized: value: type: error.list - request_id: e43eee4e-5271-4a0f-ba5b-877b07ee59e6 + request_id: 4ce81f3d-e996-4e68-b3b2-4b88367f4cc7 errors: - code: unauthorized message: Access Token Invalid @@ -10514,31 +11072,31 @@ paths: successful: value: type: visitor - id: 64d36f4745ceba405a02c809 + id: 64da499871858de103653379 user_id: 3ecf64d0-9ed1-4e9f-88e1-da7d6e6782f3 anonymous: true email: '' - phone: - name: - pseudonym: Lime Astronaut + phone: + name: + pseudonym: Charcoal Cello avatar: type: avatar - image_url: https://static.intercomassets.com/app/pseudonym_avatars_2019/lime-astronaut.png - app_id: this_is_an_id644_that_should_be_at_least_ + image_url: https://static.intercomassets.com/app/pseudonym_avatars_2019/charcoal-cello.png + app_id: this_is_an_id686_that_should_be_at_least_ companies: type: company.list companies: [] location_data: {} - last_request_at: - created_at: 1691578183 - remote_created_at: 1691578184 - signed_up_at: 1691578184 - updated_at: 1691578184 + last_request_at: + created_at: 1692027288 + remote_created_at: 1692027289 + signed_up_at: 1692027289 + updated_at: 1692027289 session_count: 0 social_profiles: type: social_profile.list social_profiles: [] - owner_id: + owner_id: unsubscribed_from_emails: false marked_email_as_spam: false has_hard_bounced: false @@ -10549,13 +11107,13 @@ paths: type: segment.list segments: [] custom_attributes: {} - referrer: - utm_campaign: - utm_content: - utm_medium: - utm_source: - utm_term: - do_not_track: + referrer: + utm_campaign: + utm_content: + utm_medium: + utm_source: + utm_term: + do_not_track: schema: "$ref": "#/components/schemas/contact" '401': @@ -10566,7 +11124,7 @@ paths: Unauthorized: value: type: error.list - request_id: 63d471c0-d2b8-4707-904a-c0de00173d4d + request_id: d8b1cdf2-5c59-4d8a-9128-f6823df0cb88 errors: - code: unauthorized message: Access Token Invalid @@ -11176,7 +11734,7 @@ components: type: string description: The type of object - `article_content` . enum: - - + - - article_content example: article_content title: @@ -11289,7 +11847,7 @@ components: type: string description: The type of object - article_translated_content. enum: - - + - - article_translated_content example: article_translated_content ar: @@ -12550,6 +13108,97 @@ components: type: boolean description: Whether the contact is archived or not. example: false + content_import_source: + title: Content Import Source + type: object + x-tags: + - AI Content + description: An external source for External Pages that you add to your Fin + Content Library. + nullable: false + properties: + type: + type: string + description: Always external_page + enum: + - content_import_source + default: content_import_source + example: content_import_source + id: + type: integer + description: The unique identifier for the content import source which is + given by Intercom. + example: 1234 + last_synced_at: + type: integer + format: date-time + description: The time when the content import source was last synced. + example: 1672928610 + sync_behavior: + type: string + description: If you intend to create or update External Pages via the API, + this should be set to `api`. + enum: + - api + - automatic + - manual + example: api + status: + type: string + description: The status of the content import source. + enum: + - active + - deactivated + default: active + example: active + url: + type: string + description: The URL of the root of the external source. + example: https://help.example.com/ + created_at: + type: integer + format: date-time + description: The time when the content import source was created. + example: 1672928359 + updated_at: + type: integer + format: date-time + description: The time when the content import source was last updated. + example: 1672928610 + required: + - id + - type + - url + - sync_behavior + - status + - created_at + - updated_at + - last_synced_at + content_import_sources_list: + title: Content Import Sources + type: object + x-tags: + - AI Content + description: This will return a list of the content import sources for the App. + nullable: false + properties: + type: + type: string + description: The type of the object - `list`. + enum: + - list + example: list + pages: + "$ref": "#/components/schemas/pages_link" + total_count: + type: integer + description: A count of the total number of content import sources. + example: 1 + data: + type: array + description: An array of Content Import Source objects + items: + "$ref": "#/components/schemas/content_import_source" conversation: title: Conversation type: object @@ -12899,7 +13548,7 @@ components: nullable: true description: The URL where the conversation was started. For Twitter, Email, and Bots, this will be blank. - example: + example: redacted: type: boolean description: Whether or not the source message has been redacted. Only applicable @@ -13245,6 +13894,34 @@ components: - required: - role title: Create contact with role + create_content_import_source_request: + title: Create Content Import Source Payload + type: object + description: You can add an Content Import Source to your Fin Content Library. + nullable: false + properties: + sync_behavior: + type: string + description: If you intend to create or update External Pages via the API, + this should be set to `api`. + enum: + - api + example: api + status: + type: string + description: The status of the content import source. + enum: + - active + - deactivated + default: active + example: active + url: + type: string + description: The URL of the content import source. + example: https://help.example.com + required: + - sync_behavior + - url create_conversation_request: description: Conversations are how you can communicate with users in Intercom. They are created when a contact replies to an outbound message, or when one @@ -13435,6 +14112,53 @@ components: required: - created_at_after - created_at_before + create_external_page_request: + title: Create External Page Payload + type: object + description: You can add an External Page to your Fin Content Library. + nullable: false + properties: + title: + type: string + description: The title of the external page. + example: Getting started with... + html: + type: string + description: The body of the external page in HTML. + example: "

    Hello world!

    " + url: + type: string + description: The URL of the external page. + example: https://help.example.com/en/articles/1234-getting-started + fin_availability: + type: boolean + description: Whether the external page should be used to answer questions + by Fin. + default: true + example: true + locale: + type: string + description: Always en + enum: + - en + default: en + example: en + source_id: + type: integer + description: The unique identifier for the source of the external page which + was given by Intercom. + example: 1234 + external_id: + type: string + description: The identifier for the external page which was given by the + source. Must be unique for the source. + example: '5678' + required: + - title + - html + - url + - locale + - source_id create_message_request: description: You can create a message type: object @@ -14396,6 +15120,112 @@ components: required: - type - errors + external_page: + title: External Page + type: object + x-tags: + - AI Content + description: External pages that you have added to your Fin Content Library. + nullable: false + properties: + type: + type: string + description: Always external_page + enum: + - external_page + default: external_page + example: external_page + id: + type: string + description: The unique identifier for the external page which is given + by Intercom. + example: '1234' + title: + type: string + description: The title of the external page. + example: Getting started with... + html: + type: string + description: The body of the external page in HTML. + example: "

    Hello world!

    " + url: + type: string + description: The URL of the external page. + example: https://help.example.com/en/articles/1234-getting-started + fin_availability: + type: boolean + description: Whether the external page should be used to answer questions + by Fin. + example: true + locale: + type: string + description: Always en + enum: + - en + default: en + example: en + source_id: + type: integer + description: The unique identifier for the source of the external page which + was given by Intercom. + example: 1234 + external_id: + type: string + description: The identifier for the external page which was given by the + source. Must be unique for the source. + example: '5678' + created_at: + type: integer + format: date-time + description: The time when the external page was created. + example: 1672928359 + updated_at: + type: integer + format: date-time + description: The time when the external page was last updated. + example: 1672928610 + last_ingested_at: + type: integer + format: date-time + description: The time when the external page was last ingested. + example: 1672928610 + required: + - id + - type + - title + - html + - url + - fin_availability + - locale + - source_id + - created_at + - updated_at + - last_ingested_at + external_pages_list: + title: External Pages + type: object + x-tags: + - AI Content + description: This will return a list of external pages for the App. + nullable: false + properties: + type: + type: string + description: The type of the object - `list`. + enum: + - list + example: list + pages: + "$ref": "#/components/schemas/pages_link" + total_count: + type: integer + description: A count of the total number of external pages. + example: 1 + data: + type: array + description: An array of External Page objects + items: + "$ref": "#/components/schemas/external_page" file_attribute: title: File type: object @@ -14439,7 +15269,7 @@ components: type: string description: The type of object - `group_content` . enum: - - + - - group_content example: group_content name: @@ -14462,7 +15292,7 @@ components: description: The type of object - group_translated_content. nullable: true enum: - - + - - group_translated_content example: group_translated_content ar: @@ -14680,7 +15510,7 @@ components: - Customer - Back-office - Tracker - - + - example: Customer linked_object_list: title: Linked Objects @@ -16449,6 +17279,37 @@ components: type: object nullable: true description: The custom attributes which are set for the contact + update_content_import_source_request: + title: Create Content Import Source Payload + type: object + description: You can modify a Content Import Source of your Fin Content Library. + nullable: false + properties: + sync_behavior: + type: string + description: If you intend to create or update External Pages via the API, + this should be set to `api`. You can not change the value to or from api. + enum: + - api + - automated + - manual + example: api + status: + type: string + description: The status of the content import source. + enum: + - active + - deactivated + default: active + example: active + url: + type: string + description: The URL of the content import source. This may only be different + from the existing value if the sync behavior is API. + example: https://help.example.com + required: + - sync_behavior + - url update_conversation_request: title: Update Conversation Request type: object @@ -16482,6 +17343,53 @@ components: example: - option1 - option2 + update_external_page_request: + title: Update External Page Payload + type: object + description: You can update an External Page in your Fin Content Library. + nullable: false + properties: + title: + type: string + description: The title of the external page. + example: Getting started with... + html: + type: string + description: The body of the external page in HTML. + example: "

    Hello world!

    " + url: + type: string + description: The URL of the external page. + example: https://help.example.com/en/articles/1234-getting-started + fin_availability: + type: boolean + description: Whether the external page should be used to answer questions + by Fin. + default: true + example: true + locale: + type: string + description: Always en + enum: + - en + default: en + example: en + source_id: + type: integer + description: The unique identifier for the source of the external page which + was given by Intercom. + example: 1234 + external_id: + type: string + description: The identifier for the external page which was given by the + source. Must be unique for the source. + example: '5678' + required: + - title + - html + - url + - locale + - source_id update_section_request: description: You can update a Section type: object @@ -16956,6 +17864,8 @@ security: tags: - name: Admins description: Everything about your Admins +- name: AI Content + description: Everything about your AI content - name: Articles description: Everything about your Articles - name: Companies