# listIntegrationDiagnostics

Source: /openapi/thomas-federated.openapi.json

## Operation

| Method | URL |
|---|---|
| GET | https://staging-api.thomas.co/v1/integration-diagnostics |

| Field | Value |
|---|---|
| operationId | listIntegrationDiagnostics |
| method | GET |
| server | https://staging-api.thomas.co/v1 |
| path | /integration-diagnostics |
| tags | `Partner Diagnostics` |
| summary | List this API client's integration diagnostics |
| badges | None |

## Request Parameters

| Name | In | Required | Schema | Description |
|---|---|---|---|---|
| limit | query | false | integer | Narrow the page. Defaults to 25, which is also the maximum. |
| cursor | query | false | string | The `nextCursor` from a previous page. Omit for the newest page. |

## Request Body

None.

## Responses

| Status | Description | Schema refs |
|---|---|---|
| 200 | One bounded page of integration diagnostics | #/components/schemas/IntegrationDiagnosticListResponseDto |
| 400 | The `cursor` was not issued by this operation, or `limit` is not a positive integer no greater than 25. | #/components/schemas/ApiErrorResponseDto |
| 401 | Invalid or missing authentication token (AUTH_TOKEN_INVALID) | #/components/schemas/ApiErrorResponseDto |
| 403 | Only a provisioned, active Partner-owned API client may call this operation. A suspended or deactivated Partner collapses into this same refusal. | #/components/schemas/ApiErrorResponseDto |
| 429 | Rate limit exceeded. | #/components/schemas/ApiErrorResponseDto |
| 503 | The durable diagnostic projection could not be read. Retry the request. | #/components/schemas/ApiErrorResponseDto |

### Response 429 headers

| Name | Description | Schema |
|---|---|---|
| Retry-After | Seconds until the rate-limit block expires before retrying. | {"type":"integer","minimum":0} |
| RateLimit-Limit | Configured request limit for the active rate-limit window. | {"type":"integer"} |
| RateLimit-Remaining | Requests remaining in the active rate-limit window; zero when blocked. | {"type":"integer"} |
| RateLimit-Reset | Seconds until the rate-limit block expires. | {"type":"integer","minimum":0} |

## Artifact Examples

### Response 400 example

```json
{
  "statusCode": 400,
  "message": "The diagnostics cursor is not a cursor this operation issued",
  "error": "INTEGRATION_DIAGNOSTIC_CURSOR_INVALID"
}
```

### Response 401 example

```json
{
  "statusCode": 401,
  "message": "Invalid or missing authentication token",
  "error": "AUTH_TOKEN_INVALID"
}
```

### Response 403 example

```json
{
  "statusCode": 403,
  "message": "API client is not permitted to call this operation",
  "error": "PRINCIPAL_TYPE_NOT_ALLOWED"
}
```

### Response 429 example

```json
{
  "statusCode": 429,
  "message": "ThrottlerException: Too Many Requests",
  "error": "HTTP_TOO_MANY_REQUESTS"
}
```

### Response 503 example

```json
{
  "statusCode": 503,
  "message": "Integration diagnostics are temporarily unavailable",
  "error": "INTEGRATION_DIAGNOSTICS_UNAVAILABLE"
}
```
