-
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 <[email protected]>
- Loading branch information
1 parent
537b834
commit 34eca94
Showing
10 changed files
with
316 additions
and
321 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
33 changes: 0 additions & 33 deletions
33
openapi/v2023.8.1/paths/config/dataAttributes/getDataAttributeByID.yaml
This file was deleted.
Oops, something went wrong.
109 changes: 109 additions & 0 deletions
109
openapi/v2023.8.1/paths/config/dataAttributes/getUpdateAndDeleteDataAttributeByID.yaml
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,109 @@ | ||
get: | ||
tags: | ||
- config | ||
description: Get data attribute by ID | ||
parameters: | ||
- name: orgId | ||
in: path | ||
required: true | ||
schema: | ||
type: string | ||
- name: templateID | ||
in: path | ||
required: true | ||
schema: | ||
type: string | ||
responses: | ||
"201": | ||
description: Created | ||
content: | ||
application/json: | ||
schema: | ||
required: | ||
- OrgID | ||
- Template | ||
type: object | ||
properties: | ||
OrgID: | ||
type: string | ||
Template: | ||
$ref: "../../../definitions/config/DataAttribute.yaml" | ||
deprecated: false | ||
security: | ||
- BearerAuth: [] | ||
put: | ||
tags: | ||
- config | ||
description: Update data attribute by id | ||
parameters: | ||
- name: orgId | ||
in: path | ||
required: true | ||
schema: | ||
type: string | ||
- name: templateId | ||
in: path | ||
required: true | ||
schema: | ||
type: string | ||
requestBody: | ||
content: | ||
application/json: | ||
schema: | ||
required: | ||
- Consent | ||
- PurposeIDs | ||
type: object | ||
properties: | ||
Consent: | ||
type: string | ||
PurposeIDs: | ||
type: array | ||
items: | ||
type: string | ||
required: true | ||
responses: | ||
"201": | ||
description: Created | ||
content: | ||
application/json: | ||
schema: | ||
required: | ||
- Organization | ||
type: object | ||
properties: | ||
Organization: | ||
$ref: "../../../definitions/onboarding/Organisation.yaml" | ||
deprecated: false | ||
security: | ||
- BearerAuth: [] | ||
delete: | ||
tags: | ||
- config | ||
description: Delete data attribute by id | ||
parameters: | ||
- name: orgId | ||
in: path | ||
required: true | ||
schema: | ||
type: string | ||
- name: templateId | ||
in: path | ||
required: true | ||
schema: | ||
type: string | ||
responses: | ||
"201": | ||
description: Created | ||
content: | ||
application/json: | ||
schema: | ||
required: | ||
- Organization | ||
type: object | ||
properties: | ||
Organization: | ||
$ref: "../../../definitions/onboarding/Organisation.yaml" | ||
deprecated: false | ||
security: | ||
- BearerAuth: [] |
Oops, something went wrong.