> For the complete documentation index, see [llms.txt](https://docs.truedat.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.truedat.io/v8.9/api-integrations/connectors-management-apis/jobs.md).

# Jobs

## Search available job filters

> Returns the available filter values (aggregations) for job searches.\
> \
> \*\*Only administrators\*\* and service accounts receive facet values. Any other caller receives an empty object (\`data: {}\`) instead of a \`403 Forbidden\`.\
> \
> \*\*Request body (all fields optional):\*\*\
> \- \`filters\` (optional, object) – Current filter criteria, used to compute the aggregation scope.\
> \- \`must\` (optional, object) – Mandatory conditions combined with AND.\
> \
> For admin and service callers, the response lists the distinct values and counts the caller can still select for each facet given the current search context. When both \`filters\` and \`must\` are omitted, the endpoint returns the available values without additional narrowing.\
> \
> The exact set of facets returned depends on the search implementation and on the caller's permission scope over the underlying sources.<br>

```json
{"openapi":"3.0.0","info":{"title":"td-cx","version":"Truedat 8.11.0"},"paths":{"/api/job_filters/search":{"post":{"description":"Returns the available filter values (aggregations) for job searches.\n\n**Only administrators** and service accounts receive facet values. Any other caller receives an empty object (`data: {}`) instead of a `403 Forbidden`.\n\n**Request body (all fields optional):**\n- `filters` (optional, object) – Current filter criteria, used to compute the aggregation scope.\n- `must` (optional, object) – Mandatory conditions combined with AND.\n\nFor admin and service callers, the response lists the distinct values and counts the caller can still select for each facet given the current search context. When both `filters` and `must` are omitted, the endpoint returns the available values without additional narrowing.\n\nThe exact set of facets returned depends on the search implementation and on the caller's permission scope over the underlying sources.\n","operationId":"TdCxWeb.JobFilterController.search","parameters":[],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/JobFilterSearchRequest"}}},"description":"Job filter search request","required":false},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/JobFilterSearchResponse"}}},"description":"Job filter search response"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxUnauthorizedResponse"}}},"description":"Unauthorized"},"422":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxUnprocessableEntityResponse"}}},"description":"Unprocessable Entity"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxInternalServerErrorResponse"}}},"description":"Internal Server Error"}},"summary":"Search available job filters","tags":["Jobs"]}}},"components":{"schemas":{"JobFilterSearchRequest":{"additionalProperties":true,"properties":{"filters":{"additionalProperties":true,"description":"Current filters","nullable":true,"type":"object"},"must":{"additionalProperties":true,"description":"Must conditions","nullable":true,"type":"object"}},"title":"JobFilterSearchRequest","type":"object"},"JobFilterSearchResponse":{"additionalProperties":false,"properties":{"data":{"additionalProperties":{"additionalProperties":false,"properties":{"buckets":{"items":{"additionalProperties":false,"properties":{"count":{"type":"integer"},"key":{"type":"string"}},"required":["key"],"type":"object"},"type":"array"},"values":{"items":{"type":"string"},"type":"array"}},"required":["buckets","values"],"type":"object"},"description":"Aggregated filter values (keyed by filter field)","type":"object"}},"required":["data"],"title":"JobFilterSearchResponse","type":"object"},"TdCxUnauthorizedResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxUnauthorizedResponse","type":"object"},"TdCxUnprocessableEntityResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxUnprocessableEntityResponse","type":"object"},"TdCxInternalServerErrorResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxInternalServerErrorResponse","type":"object"}}}}
```

## Search jobs

> Searches jobs against the jobs Elasticsearch index using the request body.\
> \
> Requires administrative priveleges (\*\*administrator or service account\*\*)\
> \
> \*\*Request body:\*\*\
> \- \`query\` (optional, string) – Full-text search across job fields.\
> \- \`page\` (optional, integer, default \`0\`) – Page number.\
> \- \`size\` (optional, integer, default \`50\`, maximum \`100\`) – Page size.\
> \- \`must\` (optional, object) – Mandatory filters combined with AND.\
> \- \`filters\` (optional, object) – Exact-match criteria.\
> \
> \*\*Response:\*\* Includes an \`x-total-count\` header with the total number of matching jobs. For non-admin/service callers, \`data\` is an empty array and \`x-total-count\` is \`0\`.\
> \
> The maximum page size is enforced by the schema, not by the controller. The listing is capped at the value supplied in \`size\` per page; there is no additional limit inside the search module.<br>

```json
{"openapi":"3.0.0","info":{"title":"td-cx","version":"Truedat 8.11.0"},"paths":{"/api/jobs/search":{"post":{"description":"Searches jobs against the jobs Elasticsearch index using the request body.\n\nRequires administrative priveleges (**administrator or service account**)\n\n**Request body:**\n- `query` (optional, string) – Full-text search across job fields.\n- `page` (optional, integer, default `0`) – Page number.\n- `size` (optional, integer, default `50`, maximum `100`) – Page size.\n- `must` (optional, object) – Mandatory filters combined with AND.\n- `filters` (optional, object) – Exact-match criteria.\n\n**Response:** Includes an `x-total-count` header with the total number of matching jobs. For non-admin/service callers, `data` is an empty array and `x-total-count` is `0`.\n\nThe maximum page size is enforced by the schema, not by the controller. The listing is capped at the value supplied in `size` per page; there is no additional limit inside the search module.\n","operationId":"TdCxWeb.JobController.search","parameters":[],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/JobSearchRequest"}}},"description":"Job search request","required":false},"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/JobSearchResponse"}}},"description":"Job search response"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxUnauthorizedResponse"}}},"description":"Unauthorized"},"403":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxForbiddenResponse"}}},"description":"Forbidden"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxInternalServerErrorResponse"}}},"description":"Internal Server Error"}},"summary":"Search jobs","tags":["Jobs"]}}},"components":{"schemas":{"JobSearchRequest":{"additionalProperties":true,"properties":{"filters":{"additionalProperties":true,"description":"Filter criteria","nullable":true,"type":"object"},"must":{"additionalProperties":true,"description":"Must conditions","nullable":true,"type":"object"},"page":{"default":0,"description":"Page number (0-indexed). If omitted, the default is 0.","nullable":true,"type":"integer"},"query":{"description":"Search query text","nullable":true,"type":"string"},"size":{"default":50,"description":"Number of jobs per page. If omitted, the default is 50; the maximum is 100.","maximum":100,"minimum":1,"nullable":true,"type":"integer"}},"title":"JobSearchRequest","type":"object"},"JobSearchResponse":{"additionalProperties":false,"properties":{"data":{"description":"List of jobs matching the search","items":{"$ref":"#/components/schemas/Job"},"type":"array"}},"required":["data"],"title":"JobSearchResponse","type":"object"},"Job":{"additionalProperties":false,"properties":{"_embedded":{"additionalProperties":false,"nullable":true,"properties":{"events":{"items":{"additionalProperties":true,"type":"object"},"nullable":true,"type":"array"},"source":{"properties":{"active":{"nullable":true,"type":"boolean"},"external_id":{"type":"string"},"id":{"type":"integer"},"type":{"type":"string"}},"required":["id","external_id","type"],"type":"object"}},"type":"object"},"end_date":{"description":"End timestamp","format":"date-time","nullable":true,"type":"string"},"external_id":{"description":"Job external identifier","type":"string"},"id":{"description":"Job internal ID","nullable":true,"type":"integer"},"inserted_at":{"description":"Creation timestamp","format":"date-time","nullable":true,"type":"string"},"message":{"description":"Status message","nullable":true,"type":"string"},"source":{"additionalProperties":false,"nullable":true,"properties":{"external_id":{"type":"string"},"type":{"type":"string"}},"required":["external_id","type"],"type":"object"},"source_id":{"description":"Source internal ID","nullable":true,"type":"integer"},"start_date":{"description":"Start timestamp","format":"date-time","nullable":true,"type":"string"},"status":{"description":"Job status","nullable":true,"type":"string"},"type":{"description":"Job type","nullable":true,"type":"string"},"updated_at":{"description":"Last update timestamp","format":"date-time","nullable":true,"type":"string"}},"required":["external_id"],"title":"Job","type":"object"},"TdCxUnauthorizedResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxUnauthorizedResponse","type":"object"},"TdCxForbiddenResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxForbiddenResponse","type":"object"},"TdCxInternalServerErrorResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxInternalServerErrorResponse","type":"object"}}}}
```

## Reindex all jobs

> Starts a background job to reindex all jobs in the search index. The endpoint returns \`202 Accepted\` immediately after the task is queued.\
> \
> Requires administrative privileges (\*\*administrator or service account\*\*).\
> \
> Jobs become searchable as the background job completes. Search results may be temporarily incomplete while the index is being rebuilt.<br>

```json
{"openapi":"3.0.0","info":{"title":"td-cx","version":"Truedat 8.11.0"},"paths":{"/api/jobs/search/reindex_all":{"get":{"description":"Starts a background job to reindex all jobs in the search index. The endpoint returns `202 Accepted` immediately after the task is queued.\n\nRequires administrative privileges (**administrator or service account**).\n\nJobs become searchable as the background job completes. Search results may be temporarily incomplete while the index is being rebuilt.\n","operationId":"TdCxWeb.SearchController.reindex_all","parameters":[],"responses":{"202":{"description":"Accepted"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxUnauthorizedResponse"}}},"description":"Unauthorized"},"403":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxForbiddenResponse"}}},"description":"Forbidden"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxInternalServerErrorResponse"}}},"description":"Internal Server Error"}},"summary":"Reindex all jobs","tags":["Jobs"]}}},"components":{"schemas":{"TdCxUnauthorizedResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxUnauthorizedResponse","type":"object"},"TdCxForbiddenResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxForbiddenResponse","type":"object"},"TdCxInternalServerErrorResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxInternalServerErrorResponse","type":"object"}}}}
```

## Get a job by external ID

> Fetches a single job by its external ID, including its source and available events.\
> \
> Requires the \*\*'Execute structure profiling'\*\* permission. The check is global: the caller must hold the permission in at least one domain. Administrators and service accounts are always allowed.<br>

```json
{"openapi":"3.0.0","info":{"title":"td-cx","version":"Truedat 8.11.0"},"paths":{"/api/jobs/{external_id}":{"get":{"description":"Fetches a single job by its external ID, including its source and available events.\n\nRequires the **'Execute structure profiling'** permission. The check is global: the caller must hold the permission in at least one domain. Administrators and service accounts are always allowed.\n","operationId":"TdCxWeb.JobController.show","parameters":[{"description":"Job external ID","in":"path","name":"external_id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/JobShowResponse"}}},"description":"Job"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxUnauthorizedResponse"}}},"description":"Unauthorized"},"403":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxForbiddenResponse"}}},"description":"Forbidden"},"404":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxNotFoundResponse"}}},"description":"Not found"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxInternalServerErrorResponse"}}},"description":"Internal Server Error"}},"summary":"Get a job by external ID","tags":["Jobs"]}}},"components":{"schemas":{"JobShowResponse":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Job"}},"required":["data"],"title":"JobShowResponse","type":"object"},"Job":{"additionalProperties":false,"properties":{"_embedded":{"additionalProperties":false,"nullable":true,"properties":{"events":{"items":{"additionalProperties":true,"type":"object"},"nullable":true,"type":"array"},"source":{"properties":{"active":{"nullable":true,"type":"boolean"},"external_id":{"type":"string"},"id":{"type":"integer"},"type":{"type":"string"}},"required":["id","external_id","type"],"type":"object"}},"type":"object"},"end_date":{"description":"End timestamp","format":"date-time","nullable":true,"type":"string"},"external_id":{"description":"Job external identifier","type":"string"},"id":{"description":"Job internal ID","nullable":true,"type":"integer"},"inserted_at":{"description":"Creation timestamp","format":"date-time","nullable":true,"type":"string"},"message":{"description":"Status message","nullable":true,"type":"string"},"source":{"additionalProperties":false,"nullable":true,"properties":{"external_id":{"type":"string"},"type":{"type":"string"}},"required":["external_id","type"],"type":"object"},"source_id":{"description":"Source internal ID","nullable":true,"type":"integer"},"start_date":{"description":"Start timestamp","format":"date-time","nullable":true,"type":"string"},"status":{"description":"Job status","nullable":true,"type":"string"},"type":{"description":"Job type","nullable":true,"type":"string"},"updated_at":{"description":"Last update timestamp","format":"date-time","nullable":true,"type":"string"}},"required":["external_id"],"title":"Job","type":"object"},"TdCxUnauthorizedResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxUnauthorizedResponse","type":"object"},"TdCxForbiddenResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxForbiddenResponse","type":"object"},"TdCxNotFoundResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxNotFoundResponse","type":"object"},"TdCxInternalServerErrorResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxInternalServerErrorResponse","type":"object"}}}}
```

## List jobs for a source

> Returns all jobs associated with a source. The query is run against the jobs search index and is scoped to the specified source's external ID. If the source has no jobs, the response contains an empty list.\
> \
> Requires administrative privileges (\*\*administrator or service account\*\*).\
> \
> The underlying search is capped at 10,000 results. No pagination is offered through this endpoint; use the general job search for paginated listing.<br>

```json
{"openapi":"3.0.0","info":{"title":"td-cx","version":"Truedat 8.11.0"},"paths":{"/api/sources/{source_external_id}/jobs":{"get":{"description":"Returns all jobs associated with a source. The query is run against the jobs search index and is scoped to the specified source's external ID. If the source has no jobs, the response contains an empty list.\n\nRequires administrative privileges (**administrator or service account**).\n\nThe underlying search is capped at 10,000 results. No pagination is offered through this endpoint; use the general job search for paginated listing.\n","operationId":"TdCxWeb.JobController.index","parameters":[{"description":"Source external ID","in":"path","name":"source_external_id","required":true,"schema":{"type":"string"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/JobIndexResponse"}}},"description":"Jobs"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxUnauthorizedResponse"}}},"description":"Unauthorized"},"403":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxForbiddenResponse"}}},"description":"Forbidden"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxInternalServerErrorResponse"}}},"description":"Internal Server Error"}},"summary":"List jobs for a source","tags":["Jobs"]}}},"components":{"schemas":{"JobIndexResponse":{"additionalProperties":false,"properties":{"data":{"description":"List of jobs for the source","items":{"$ref":"#/components/schemas/Job"},"type":"array"}},"required":["data"],"title":"JobIndexResponse","type":"object"},"Job":{"additionalProperties":false,"properties":{"_embedded":{"additionalProperties":false,"nullable":true,"properties":{"events":{"items":{"additionalProperties":true,"type":"object"},"nullable":true,"type":"array"},"source":{"properties":{"active":{"nullable":true,"type":"boolean"},"external_id":{"type":"string"},"id":{"type":"integer"},"type":{"type":"string"}},"required":["id","external_id","type"],"type":"object"}},"type":"object"},"end_date":{"description":"End timestamp","format":"date-time","nullable":true,"type":"string"},"external_id":{"description":"Job external identifier","type":"string"},"id":{"description":"Job internal ID","nullable":true,"type":"integer"},"inserted_at":{"description":"Creation timestamp","format":"date-time","nullable":true,"type":"string"},"message":{"description":"Status message","nullable":true,"type":"string"},"source":{"additionalProperties":false,"nullable":true,"properties":{"external_id":{"type":"string"},"type":{"type":"string"}},"required":["external_id","type"],"type":"object"},"source_id":{"description":"Source internal ID","nullable":true,"type":"integer"},"start_date":{"description":"Start timestamp","format":"date-time","nullable":true,"type":"string"},"status":{"description":"Job status","nullable":true,"type":"string"},"type":{"description":"Job type","nullable":true,"type":"string"},"updated_at":{"description":"Last update timestamp","format":"date-time","nullable":true,"type":"string"}},"required":["external_id"],"title":"Job","type":"object"},"TdCxUnauthorizedResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxUnauthorizedResponse","type":"object"},"TdCxForbiddenResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxForbiddenResponse","type":"object"},"TdCxInternalServerErrorResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxInternalServerErrorResponse","type":"object"}}}}
```

## Create a job for a source

> Creates a job for a source.\
> \
> Requires the \*\*'Execute structure profiling'\*\* permission. The check is global: the caller must hold the permission in at least one domain. Administrators and service accounts are always allowed.\
> \
> \*\*Request body:\*\*\
> \- \`job\` (required) – Object containing:\
> &#x20; \- \`type\` (required, string) – Job type.\
> &#x20; \- \`parameters\` (optional, object) – Job-specific parameters.<br>

```json
{"openapi":"3.0.0","info":{"title":"td-cx","version":"Truedat 8.11.0"},"paths":{"/api/sources/{source_external_id}/jobs":{"post":{"description":"Creates a job for a source.\n\nRequires the **'Execute structure profiling'** permission. The check is global: the caller must hold the permission in at least one domain. Administrators and service accounts are always allowed.\n\n**Request body:**\n- `job` (required) – Object containing:\n  - `type` (required, string) – Job type.\n  - `parameters` (optional, object) – Job-specific parameters.\n","operationId":"TdCxWeb.JobController.create","parameters":[{"description":"Source external ID","in":"path","name":"source_external_id","required":true,"schema":{"type":"string"}}],"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/JobCreateRequest"}}},"description":"Job","required":false},"responses":{"201":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/JobShowResponse"}}},"description":"Created"},"401":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxUnauthorizedResponse"}}},"description":"Unauthorized"},"403":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxForbiddenResponse"}}},"description":"Forbidden"},"404":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxNotFoundResponse"}}},"description":"Not found"},"422":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxUnprocessableEntityResponse"}}},"description":"Unprocessable Entity"},"500":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TdCxInternalServerErrorResponse"}}},"description":"Internal Server Error"}},"summary":"Create a job for a source","tags":["Jobs"]}}},"components":{"schemas":{"JobCreateRequest":{"additionalProperties":false,"properties":{"job":{"additionalProperties":false,"properties":{"parameters":{"additionalProperties":true,"description":"Job parameters","nullable":true,"type":"object"},"type":{"description":"Job type","type":"string"}},"required":["type"],"type":"object"}},"required":["job"],"title":"JobCreateRequest","type":"object"},"JobShowResponse":{"additionalProperties":false,"properties":{"data":{"$ref":"#/components/schemas/Job"}},"required":["data"],"title":"JobShowResponse","type":"object"},"Job":{"additionalProperties":false,"properties":{"_embedded":{"additionalProperties":false,"nullable":true,"properties":{"events":{"items":{"additionalProperties":true,"type":"object"},"nullable":true,"type":"array"},"source":{"properties":{"active":{"nullable":true,"type":"boolean"},"external_id":{"type":"string"},"id":{"type":"integer"},"type":{"type":"string"}},"required":["id","external_id","type"],"type":"object"}},"type":"object"},"end_date":{"description":"End timestamp","format":"date-time","nullable":true,"type":"string"},"external_id":{"description":"Job external identifier","type":"string"},"id":{"description":"Job internal ID","nullable":true,"type":"integer"},"inserted_at":{"description":"Creation timestamp","format":"date-time","nullable":true,"type":"string"},"message":{"description":"Status message","nullable":true,"type":"string"},"source":{"additionalProperties":false,"nullable":true,"properties":{"external_id":{"type":"string"},"type":{"type":"string"}},"required":["external_id","type"],"type":"object"},"source_id":{"description":"Source internal ID","nullable":true,"type":"integer"},"start_date":{"description":"Start timestamp","format":"date-time","nullable":true,"type":"string"},"status":{"description":"Job status","nullable":true,"type":"string"},"type":{"description":"Job type","nullable":true,"type":"string"},"updated_at":{"description":"Last update timestamp","format":"date-time","nullable":true,"type":"string"}},"required":["external_id"],"title":"Job","type":"object"},"TdCxUnauthorizedResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxUnauthorizedResponse","type":"object"},"TdCxForbiddenResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxForbiddenResponse","type":"object"},"TdCxNotFoundResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxNotFoundResponse","type":"object"},"TdCxUnprocessableEntityResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxUnprocessableEntityResponse","type":"object"},"TdCxInternalServerErrorResponse":{"properties":{"errors":{"properties":{"detail":{"type":"string"}},"type":"object"}},"title":"TdCxInternalServerErrorResponse","type":"object"}}}}
```
