-
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.
Signed-off-by: George J Padayatti <george.padayatti@igrant.io>
- Loading branch information
1 parent
ebd1426
commit 2f572be
Showing
3 changed files
with
151 additions
and
0 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
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,73 @@ | ||
description: READ - Data sharing UI | ||
operationId: serviceReadDataSharingUi | ||
parameters: | ||
- name: baseUrl | ||
in: query | ||
description: Base URL for the consent API | ||
required: true | ||
schema: | ||
type: string | ||
- name: dataAgreementId | ||
in: query | ||
description: ID for data agreement | ||
required: true | ||
schema: | ||
type: string | ||
- name: accessToken | ||
in: query | ||
description: Access token for authentication | ||
required: false | ||
schema: | ||
type: string | ||
- name: apiKey | ||
in: query | ||
description: API key for authorization | ||
required: false | ||
schema: | ||
type: string | ||
- name: individualId | ||
in: query | ||
description: ID for the individual | ||
required: false | ||
schema: | ||
type: string | ||
- name: thirdPartyOrgName | ||
in: query | ||
description: Name of the third-party organization | ||
required: true | ||
schema: | ||
type: string | ||
- name: thirdPartyOrgLogoImageUrl | ||
in: query | ||
description: URL for the third-party organization's logo image | ||
required: false | ||
schema: | ||
type: string | ||
- name: dataSharingUiRedirectUrl | ||
in: query | ||
description: Redirect URL for data sharing UI | ||
required: true | ||
schema: | ||
type: string | ||
- name: authorisationCode | ||
in: query | ||
description: Authorization code | ||
required: false | ||
schema: | ||
type: string | ||
- name: authorisationRedirectUrl | ||
in: query | ||
description: Redirect URL for authorization | ||
required: false | ||
schema: | ||
type: string | ||
responses: | ||
"200": | ||
description: Ok | ||
"400": | ||
description: bad input parameter | ||
security: | ||
- BearerAuth: [] | ||
summary: READ - Data sharing UI | ||
tags: | ||
- service |