You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Enqueues ticket creation for asynchronous processing, returning if the job was enqueued successfully to be processed. We attempt to perform a best-effort validation on inputs before tasks are enqueued. If the given parameters are incorrect, we won't enqueue the job.
@@ -17622,6 +17684,44 @@ components:
17622
17684
description: An array of Help Center objects
17623
17685
items:
17624
17686
"$ref": "#/components/schemas/help_center"
17687
+
jobs:
17688
+
title: Jobs
17689
+
type: object
17690
+
x-tags:
17691
+
- Jobs
17692
+
description: Jobs are tasks that are processed asynchronously by the Intercom system after being enqueued via the API. This allows for efficient handling of operations that may take time to complete, such as data imports or exports. You can check the status of your jobs to monitor their progress and ensure they are completed successfully.
17693
+
properties:
17694
+
type:
17695
+
type: string
17696
+
description: The type of the object
17697
+
enum:
17698
+
- job
17699
+
example: job
17700
+
id:
17701
+
type: string
17702
+
description: The id of the job that's currently being processed or has completed.
17703
+
example: success
17704
+
status:
17705
+
type: string
17706
+
description: The status of the job execution.
17707
+
enum:
17708
+
- pending
17709
+
- success
17710
+
- failed
17711
+
resource_type:
17712
+
type: string
17713
+
description: The type of resource created during job execution.
17714
+
example: ticket
17715
+
resource_id:
17716
+
type: string
17717
+
description: The id of the resource created during job execution (e.g. ticket id)
17718
+
example: 20
17719
+
resource_url:
17720
+
type: string
17721
+
description: The url of the resource created during job exeuction. Use this url to fetch the resource.
17722
+
example: http://api.intercom.io/tickets/20
17723
+
required:
17724
+
- id
17625
17725
intercom_version:
17626
17726
description: Intercom API version.</br>By default, it's equal to the version
0 commit comments