Revert "complete rac check"

This reverts commit 78a1b573d5.
This commit is contained in:
Azeez Muibi
2025-05-09 13:52:18 +01:00
parent 78a1b573d5
commit 6638fcabde
9 changed files with 30 additions and 690 deletions
-60
View File
@@ -1,60 +0,0 @@
{
"post": {
"tags": ["CompleteRACcheck"],
"summary": "Complete Risk Acceptance Criteria check",
"description": "This request is used to check if a customer passes the Complete Bank Risk Acceptance Criteria",
"operationId": "completeRACcheck",
"requestBody": {
"description": "Complete RAC check request details",
"content": {
"application/json": {
"schema": {
"$ref": "../schemas/CompleteRACcheckRequest.json"
}
},
"application/xml": {
"schema": {
"$ref": "../schemas/CompleteRACcheckRequest.json"
}
},
"application/x-www-form-urlencoded": {
"schema": {
"$ref": "../schemas/CompleteRACcheckRequest.json"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "Complete RAC Check Successful",
"content": {
"application/json": {
"schema": {
"$ref": "../schemas/CompleteRACcheckResponse.json"
}
},
"application/xml": {
"schema": {
"$ref": "../schemas/CompleteRACcheckResponse.json"
}
}
}
},
"400": {
"description": "Invalid request parameters"
},
"401": {
"description": "Authentication failed"
},
"500": {
"description": "Internal server error"
}
},
"security": [
{
"basic_auth": []
}
]
}
}