generated from pagopa/template-payments-java-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
950d341
commit dd048d3
Showing
3 changed files
with
107 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
openapi: 3.0.1 | ||
info: | ||
title: API Documentation | ||
description: OpenAPI documentation | ||
version: 1.0.0 | ||
servers: | ||
- url: "http://localhost:8080" | ||
description: Generated server url | ||
paths: | ||
/organizations: | ||
get: | ||
tags: | ||
- Organizations | ||
summary: "Retrieve the list of organizations" | ||
operationId: getOrganizations | ||
security: | ||
- bearerAuth: [ ] | ||
responses: | ||
'200': | ||
description: OK | ||
content: | ||
application/json: | ||
schema: | ||
type: array | ||
items: | ||
$ref: '#/components/schemas/OrganizationDTO' | ||
'401': | ||
description: Unauthorized - Missing or invalid token | ||
'403': | ||
description: Forbidden - Access denied | ||
'500': | ||
description: Internal Server Error | ||
/info/brokerConfig: | ||
get: | ||
tags: | ||
- ConfigFe | ||
summary: "Retrieve application information for FE" | ||
operationId: getBrokerConfig | ||
security: | ||
- bearerAuth: [ ] | ||
responses: | ||
'200': | ||
description: OK | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/ConfigFE' | ||
'401': | ||
description: Unauthorized - Missing or invalid token | ||
'403': | ||
description: Forbidden - Access denied | ||
'500': | ||
description: Internal Server Error | ||
components: | ||
securitySchemes: | ||
bearerAuth: | ||
type: http | ||
scheme: bearer | ||
bearerFormat: JWT | ||
schemas: | ||
OrganizationDTO: | ||
type: object | ||
properties: | ||
orgId: | ||
type: string | ||
description: Organization ID | ||
name: | ||
type: string | ||
description: Organization name | ||
role: | ||
type: string | ||
description: Organization role | ||
logo: | ||
type: string | ||
format: base64 | ||
description: Base64 encoded logo of the organization | ||
ConfigFE: | ||
type: object | ||
properties: | ||
headerAssistanceUrl: | ||
type: string | ||
description: URL for header assistance | ||
logoFooterImg: | ||
type: string | ||
description: URL for footer logo image | ||
footerDescText: | ||
type: string | ||
description: Description text for the footer | ||
footerPrivacyInfoUrl: | ||
type: string | ||
description: URL for privacy information in the footer | ||
footerGDPRUrl: | ||
type: string | ||
description: URL for GDPR information in the footer | ||
footerTermsCondUrl: | ||
type: string | ||
description: URL for terms and conditions in the footer | ||
footerAccessibilityUrl: | ||
type: string | ||
description: URL for accessibility information in the footer | ||
brokerId: | ||
type: string | ||
description: Broker ID | ||
canManageUsers: | ||
type: boolean | ||
description: Indicates if the user can manage other users |
This file was deleted.
Oops, something went wrong.