---
title: "ServiceUnavailableError"
url: "https://dev.developer-internal.sanofi.com/apis/plta-permissions-api-cbz/versions/88cdfef8-3b56-44ca-883d-5b15378e5a3a/schemas/ServiceUnavailableError"
---

> Full API specification: https://dev.developer-internal.sanofi.com/apis/plta-permissions-api-cbz/versions/88cdfef8-3b56-44ca-883d-5b15378e5a3a.md

# ServiceUnavailableError

The service is temporarily unavailable, often due to maintenance or overload. The client should retry the request after the time indicated in the retry-after header.

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Permission Administration API
  version: 1.5.0
servers:
  - url: https://dev.api.sanofi.com/permissions
components:
  schemas:
    ServiceUnavailableError:
      description: The service is temporarily unavailable, often due to maintenance or
        overload. The client should retry the request after the time indicated
        in the retry-after header.
      properties:
        debugId:
          description: A unique request identifier for correlation purposes. [Trace
            Context RFC](https://www.w3.org/TR/trace-context/)
          example: 00-0af7651916cd43dd8448eb211c80319c-00f067aa0ba902b7-01
          type: string
        details:
          description: More information about the specific problem
          type: object
        status:
          description: HTTP status code
          enum:
            - 503
          type: number
        title:
          description: Human-readable identifier
          example: Service Unavailable
          type: string
        type:
          description: URI that identifies the type of error that occurred
          example: https://backstage.prod.accelerator.sanofi/docs/default/component/sanofi-accelerator-api-rules/errors-service-unavailable
          type: string
      required:
        - type
        - title
        - status
        - debugId
        - details
      type: object
```
