openapi: 3.0.4 info: title: Pie Insurance Quote Api Appetite QuotePdf API version: v1 servers: - url: https://api.post-prod.pieinsurance.com/api/v1 security: - bearer: [] tags: - name: QuotePdf paths: /QuotePdf/{quoteId}: get: tags: - QuotePdf parameters: - name: quoteId in: path required: true schema: type: string format: uuid responses: '500': description: Internal Server Error '501': description: Not Implemented '502': description: Bad Gateway '503': description: Service Unavailable '504': description: Gateway Timeout '505': description: HTTP Version Not Supported '404': description: Not Found content: text/plain: schema: $ref: '#/components/schemas/ProblemDetails' application/json: schema: $ref: '#/components/schemas/ProblemDetails' text/json: schema: $ref: '#/components/schemas/ProblemDetails' application/xml: schema: $ref: '#/components/schemas/ProblemDetails' text/xml: schema: $ref: '#/components/schemas/ProblemDetails' security: - bearer: [] components: schemas: ProblemDetails: type: object properties: type: type: string nullable: true title: type: string nullable: true status: type: integer format: int32 nullable: true detail: type: string nullable: true instance: type: string nullable: true extensions: type: object additionalProperties: nullable: true nullable: true additionalProperties: false securitySchemes: bearer: type: http description: JWT Authorization header using the Bearer scheme. Enter token scheme: Bearer