-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add AML tags * Update openapi/paths/tags@{tag}@aml-checks.yaml Co-authored-by: Chris <[email protected]> * Update openapi/paths/tags@{tag}@aml-checks.yaml Co-authored-by: Chris <[email protected]> * Update openapi/paths/tags@{tag}@aml-checks.yaml Co-authored-by: Chris <[email protected]> * Update openapi/paths/tags@{tag}@aml-checks@{amlCheckId}.yaml Co-authored-by: Chris <[email protected]> * Update openapi/paths/tags@{tag}@aml-checks@{amlCheckId}.yaml Co-authored-by: Chris <[email protected]> * Add AML check tags * Add AML check tags * Fix messages for async operations, remove excess title attribute from requestBody * Update openapi/paths/tags@{tag}@kyc-documents.yaml Co-authored-by: Alexander Shkarpetin <[email protected]> --------- Co-authored-by: Chris <[email protected]> Co-authored-by: Alexander Shkarpetin <[email protected]>
- Loading branch information
1 parent
5be26f9
commit 572930b
Showing
6 changed files
with
144 additions
and
8 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,80 @@ | ||
parameters: | ||
- $ref: ../components/parameters/tag.yaml | ||
post: | ||
x-products: | ||
- Core | ||
tags: | ||
- Tags | ||
summary: Tag a list of AML checks | ||
operationId: PostTagAmlCheckCollection | ||
x-sdk-operation-name: tagAmlChecks | ||
description: |- | ||
Tags a list of AML checks. | ||
If an AML check in the list already has the specified tag applied, the AML check is ignored. | ||
This is an asynchronous operation. | ||
requestBody: | ||
required: true | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
required: | ||
- amlCheckIds | ||
properties: | ||
amlCheckIds: | ||
description: List of AML check IDs to tag. | ||
type: array | ||
minItems: 1 | ||
maxItems: 1000 | ||
items: | ||
type: string | ||
example: aml_chk_0YV7JHY705C6DA487BFTAA33V8 | ||
responses: | ||
'204': | ||
description: AML checks tagging process has been scheduled. | ||
'401': | ||
$ref: ../components/responses/Unauthorized.yaml | ||
'403': | ||
$ref: ../components/responses/Forbidden.yaml | ||
'422': | ||
$ref: ../components/responses/ValidationError.yaml | ||
delete: | ||
x-products: | ||
- Core | ||
tags: | ||
- Tags | ||
summary: Untag a list of AML checks | ||
operationId: DeleteTagAmlCheckCollection | ||
x-sdk-operation-name: untagAmlChecks | ||
description: |- | ||
Untags a list of AML checks. | ||
If an AML check in the list does not have the specified tag applied, the AML check is ignored. | ||
This is an asynchronous operation. | ||
requestBody: | ||
required: true | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
required: | ||
- amlCheckIds | ||
properties: | ||
amlCheckIds: | ||
description: List of AML check IDs to tag. | ||
type: array | ||
minItems: 1 | ||
maxItems: 1000 | ||
items: | ||
type: string | ||
example: aml_chk_0YV7JHY705C6DA487BFTAA33V8 | ||
responses: | ||
'204': | ||
description: AML checks untagging process has been scheduled. | ||
'401': | ||
$ref: ../components/responses/Unauthorized.yaml | ||
'403': | ||
$ref: ../components/responses/Forbidden.yaml | ||
'422': | ||
$ref: ../components/responses/ValidationError.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,50 @@ | ||
parameters: | ||
- $ref: ../components/parameters/tag.yaml | ||
- name: amlCheckId | ||
in: path | ||
description: ID of the AML check to tag. | ||
required: true | ||
schema: | ||
type: string | ||
post: | ||
x-products: | ||
- Core | ||
tags: | ||
- Tags | ||
summary: Tag an AML check | ||
operationId: PostTagAmlCheck | ||
x-sdk-operation-name: tagAmlCheck | ||
description: |- | ||
Tags an AML check. | ||
If a AML check in the list does not have the specified tag applied, the AML check is ignored. | ||
responses: | ||
'204': | ||
description: AML check tagged. | ||
'401': | ||
$ref: ../components/responses/Unauthorized.yaml | ||
'403': | ||
$ref: ../components/responses/Forbidden.yaml | ||
'404': | ||
$ref: ../components/responses/NotFound.yaml | ||
delete: | ||
x-products: | ||
- Core | ||
tags: | ||
- Tags | ||
summary: Untag an AML check | ||
operationId: DeleteTagAmlCheck | ||
x-sdk-operation-name: untagAmlCheck | ||
description: |- | ||
Untags an AML check. | ||
If a AML check in the list does not have the specified tag applied, the AML check is ignored. | ||
responses: | ||
'204': | ||
description: AML check untagged. | ||
'401': | ||
$ref: ../components/responses/Unauthorized.yaml | ||
'403': | ||
$ref: ../components/responses/Forbidden.yaml | ||
'404': | ||
$ref: ../components/responses/NotFound.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
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