Skip to content

Commit

Permalink
Upd: Read data sharing UI
Browse files Browse the repository at this point in the history
Signed-off-by: George J Padayatti <[email protected]>
  • Loading branch information
georgepadayatti committed Nov 12, 2023
1 parent ebd1426 commit 42600e8
Show file tree
Hide file tree
Showing 3 changed files with 139 additions and 0 deletions.
69 changes: 69 additions & 0 deletions openapi/v2023.11.1/bundled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4063,6 +4063,75 @@ paths:
- BearerAuth: []
tags:
- service
/service/data-sharing:
get:
description: READ - Data sharing UI
operationId: serviceReadDataSharingUi
parameters:
- 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
/audit/admin/logs:
get:
operationId: auditAdminLogs
Expand Down
3 changes: 3 additions & 0 deletions openapi/v2023.11.1/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,9 @@ paths:
/service/image/{imageId}:
get:
$ref: ./paths/serviceReadOrganisationImage.yaml
/service/data-sharing:
get:
$ref: ./paths/serviceReadDataSharingUi.yaml
/audit/admin/logs:
get:
$ref: ./paths/auditAdminLogs.yaml
Expand Down
67 changes: 67 additions & 0 deletions openapi/v2023.11.1/paths/serviceReadDataSharingUi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
description: READ - Data sharing UI
operationId: serviceReadDataSharingUi
parameters:
- 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

0 comments on commit 42600e8

Please sign in to comment.