From f6233a3fed318cda1b27d31dc7a05908d35c83a5 Mon Sep 17 00:00:00 2001 From: fcondor-ship-it Date: Fri, 27 Feb 2026 17:05:55 -0500 Subject: [PATCH] Update temp.json udpate --- docs/specs/temp.json | 9319 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 9282 insertions(+), 37 deletions(-) diff --git a/docs/specs/temp.json b/docs/specs/temp.json index 664ab5e..c46abe2 100644 --- a/docs/specs/temp.json +++ b/docs/specs/temp.json @@ -1,47 +1,5237 @@ { - "openapi": "3.0.2", + "openapi": "3.0.1", "info": { - "title": "example API", - "version": "TODO", - "description": "TODO" + "title": "Transfers Channel Microservice", + "version": "v1" }, "paths": { - "/groups/": { + "/transfer-ms": { + "get": { + "tags": [ + "HealthCheck" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success" + }, + "503": { + "description": "Server Error" + } + } + } + }, + "/transfer-ms/v1/ownaccount/history/list": { + "post": { + "tags": [ + "OwnAccountTransfers" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ListTransfersOwnAccountRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HistoryOwnAccountTransferResponseDtoBaseResponse" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/ownaccount/search": { + "post": { + "tags": [ + "OwnAccountTransfers" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SearchOwnAccountTransferHistoryRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/HistoryOwnAccountTransferResponseDtoBaseResponse" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/ownaccount/accounts/list": { + "post": { + "tags": [ + "OwnAccountTransfers" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ListAccountOwnAccountRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetAccountsQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/ownaccount/register": { + "post": { + "tags": [ + "OwnAccountTransfers" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/OwnAccountTransferOperationRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/OperationOwnAccountTransferResponseDtoBaseResponse" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/ownaccount/submit": { + "post": { + "tags": [ + "OwnAccountTransfers" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/OwnAccountTransferOperationRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/OperationOwnAccountTransferResponseDtoBaseResponse" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/ownaccount/view-detail": { + "post": { + "tags": [ + "OwnAccountTransfers" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ViewDetailTransferOwnAccountRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ViewDetailTransferOwnAccountQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/ownaccount/sendapprove": { + "post": { + "tags": [ + "OwnAccountTransfers" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/OwnAccountTransferOperationRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/OperationOwnAccountTransferResponseDtoBaseResponse" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/ownaccount/saved-operation/delete": { + "post": { + "tags": [ + "OwnAccountTransfers" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/OwnAccountTransferOperationRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/OperationOwnAccountTransferResponseDtoBaseResponse" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/ownaccount/approval": { + "post": { + "tags": [ + "OwnAccountTransfers" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalOwnAccountTransferRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalTransferOwnAccountCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/ownaccount/rejection": { + "post": { + "tags": [ + "OwnAccountTransfers" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RejectionOwnAccountTransferRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RejectionTransferOwnAccountCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers/exchangerate": { + "post": { + "tags": [ + "Transfers" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetExchangeRateQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers/limit/bcr": { + "post": { + "tags": [ + "Transfers" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetLimitBcrQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/favorite/list": { + "post": { + "tags": [ + "TransfersExternalFavorite" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetTransferExternalFavoriteQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/favorite/detail": { + "post": { + "tags": [ + "TransfersExternalFavorite" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DetailTransferExternalFavoriteRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DetailTransferExternalFavoriteQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/history/list": { + "post": { + "tags": [ + "TransfersExternalHistory" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ListTransferExternalHistoryRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetTransferExternalHistoryQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/history/search": { + "post": { + "tags": [ + "TransfersExternalHistory" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SearchTransferExternalHistoryRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SearchTransferExternalHistoryQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/history/detail": { + "post": { + "tags": [ + "TransfersExternalHistory" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DetailTransferExternalHistoryRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DetailIndividualTransferExternalHistoryQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/history-massive/detail": { + "post": { + "tags": [ + "TransfersExternalHistory" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DetailTransferExternalHistoryRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DetailMassiveTransferExternalHistoryQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/saved-operation/preview": { + "post": { + "tags": [ + "TransfersExternalHistory" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PreviewTransferExternalSavedOperationRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/PreviewTransferExternalSavedOperationQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/saved-operation/list": { + "post": { + "tags": [ + "TransfersExternalHistory" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ListTransferExternalSavedOperationRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetTransferExternalSavedOperationQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/saved-operation/search": { + "post": { + "tags": [ + "TransfersExternalHistory" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SearchTransferExternalSavedOperationRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SearchTransferExternalSavedOperationQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/currencies": { + "get": { + "tags": [ + "TransfersExternalHistory" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetTransferExternalCurrenciesQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/countries": { + "get": { + "tags": [ + "TransfersExternalHistory" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetTransferExternalCountriesQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/register": { + "post": { + "tags": [ + "TransfersExternalOperation" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterTransferExternalRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterTransferExternalCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/sendapprove": { + "post": { + "tags": [ + "TransfersExternalOperation" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendToApprovalTransferExternalRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendToApprovalTransferExternalCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/submit": { + "post": { + "tags": [ + "TransfersExternalOperation" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateAndApproveTransferExternalRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateAndApproveTransferExternalCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/view-detail": { + "post": { + "tags": [ + "TransfersExternalOperation" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ViewDetailTransferExternalRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ViewDetailTransferExternalQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/approval": { + "post": { + "tags": [ + "TransfersExternalOperation" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalTransferExternalRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalTransferExternalCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/rejection": { + "post": { + "tags": [ + "TransfersExternalOperation" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RejectionTransferExternalRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RejectionTransferExternalCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/saved-operation/delete": { + "post": { + "tags": [ + "TransfersExternalOperation" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DeleteSavedOperationTransferExternalRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DeleteSavedOperationTransferExternalCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/massive/saved-operation/delete": { + "post": { + "tags": [ + "TransfersExternalOperation" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DeleteSavedOperationTransferExternalRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DeleteSavedOperationMassiveTransferExternalCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/favorite/delete": { + "post": { + "tags": [ + "TransfersExternalOperation" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DeleteFavoriteTransferExternalRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DeleteFavoriteTransferExternalCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/upload-file": { + "post": { + "tags": [ + "TransfersExternalOperation" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/UploadFileTransferExternalRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/UploadFileTransferExternalCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/cancel-file": { + "post": { + "tags": [ + "TransfersExternalOperation" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CancelFileTransferExternalCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/register-massive": { + "post": { + "tags": [ + "TransfersExternalOperation" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterMassiveTransferExternalRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterMassiveTransferExternalCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/sendapprove-massive": { + "post": { + "tags": [ + "TransfersExternalOperation" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendToApprovalMassiveTransferExternalRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SendToApprovalMassiveTransferExternalCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/submit-massive": { + "post": { + "tags": [ + "TransfersExternalOperation" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateAndApproveMassiveTransferExternalRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateAndApproveMassiveTransferExternalCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/view-detail-massive": { + "post": { + "tags": [ + "TransfersExternalOperation" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ViewDetailMassiveTransferExternalRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ViewDetailMassiveTransferExternalQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/approval-massive": { + "post": { + "tags": [ + "TransfersExternalOperation" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalMassiveTransferExternalRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ApprovalMassiveTransferExternalCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-external/rejection-massive": { + "post": { + "tags": [ + "TransfersExternalOperation" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RejectionMassiveTransferExternalRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RejectionMassiveTransferExternalCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/history/list": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ListTransferThirdPartyHistoryRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetTransferThirdPartyHistoryQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/history/search": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SearchTransferThirdPartyHistoryRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/SearchTransferThirdPartyHistoryQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/favorite/list": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ListTransferThirdPartyFavoriteRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetTransferThirdPartyListFavoriteQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/account/validate": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ValidateAccountTransferThirdPartyRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetValidAccountTransferThirdPartyQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/account/list": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/GetAccountsTransferThirdPartyQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/register-later": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterTransferThirdPartyRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterLaterTransferThirdPartyCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/confirm": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterTransferThirdPartyRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ConfirmTransferThirdPartyCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/view-detail": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ViewDetailTransferThirdPartyRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ViewDetailTransferThirdPartyQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/createapprove": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterTransferThirdPartyRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateApproveTransferThirdPartyCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/history/detail": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DetailTransferThirdPartyHistoryRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DetailTransferThirdPartyHistoryQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/otherbanks/register-later": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterTransferOtherBanksThirdParyRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterLaterTransferThirdPartyCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/otherbanks/confirm": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterTransferOtherBanksThirdParyRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ConfirmTransferOtherBanksThirdPartyCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/otherbanks/view-detail": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ViewDetailTransferOtherBanksRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ViewDetailTransferOtherBanksQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/otherbanks/createapprove": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterTransferOtherBanksThirdParyRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateApproveTransferOtherBanksThirdPartyCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/bcr/register-later": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterTransferBcrThirdPartyRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterLaterTransferBcrThirdPartyCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/bcr/confirm": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterTransferBcrThirdPartyRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ConfirmTransferBcrThirdPartyCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/bcr/view-detail": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ViewDetailTransferBcrRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ViewDetailTransferBcrQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/bcr/createapprove": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterTransferBcrThirdPartyRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateApproveTransferBcrThirdPartyCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/massive/register-later": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterMassiveTransferThirdPartyRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterLaterTransferThirdPartyCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/massive/confirm": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterMassiveTransferThirdPartyRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ConfirmTransferOtherBanksThirdPartyCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/massive/createapprove": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/RegisterMassiveTransferThirdPartyRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/CreateApproveTransferOtherBanksThirdPartyCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/saved-operation/delete": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DeleteSavedOperationTransferThirdPartyRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DeleteSavedOperationTransferThirdPartyCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/favorite/delete": { + "post": { + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DeleteFavoriteTransferThirdPartyRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DeleteFavoriteTransferThirdPartyCommandResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + } + } + } + }, + "/transfer-ms/v1/transfers-thirdparty/favorite/detail": { "post": { - "operationId": "createGroup", - "parameters": [], + "tags": [ + "TransfersThirdParty" + ], + "parameters": [ + { + "name": "channelCode", + "in": "header", + "description": "Código del canal desde donde se origina la petición", + "schema": { + "type": "string" + } + }, + { + "name": "idTransaction", + "in": "header", + "description": "ID único de la transacción. Se generará si no se proporciona.", + "schema": { + "type": "string" + } + }, + { + "name": "ip", + "in": "header", + "description": "Dirección IP del cliente.", + "schema": { + "type": "string" + } + }, + { + "name": "device", + "in": "header", + "description": "Información del dispositivo del cliente.", + "schema": { + "type": "string" + } + } + ], "requestBody": { "content": { "application/json": { "schema": { - "required": [ - "members" - ], - "properties": { - "id": { - "type": "integer", - "readOnly": true - }, - "name": { - "type": "string", - "maxLength": 100 - }, - "members": { - "type": "array", - "items": { - "required": [], - "properties": { - "id": { - "type": "integer", - "readOnly": true - }, - "name": { - "type": "string", - "maxLength": 100 - } - } - } - } + "$ref": "#/components/schemas/DetailTransferThirdPartyHistoryRequestDto" + } + } + } + }, + "responses": { + "200": { + "description": "Success", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/DetailTransferThirdPartyFavoriteQueryResponseWrapper" + } + } + } + }, + "406": { + "description": "Not Acceptable", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" + } + } + } + }, + "415": { + "description": "Client Error", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ProblemDetails" } } } @@ -49,5 +5239,4060 @@ } } } - } -} \ No newline at end of file + }, + "components": { + "schemas": { + "AccountDto": { + "type": "object", + "properties": { + "description": { + "type": "string", + "nullable": true + }, + "number": { + "type": "string", + "nullable": true + }, + "balance": { + "type": "string", + "nullable": true + }, + "available": { + "type": "string", + "nullable": true + }, + "currency": { + "type": "string", + "nullable": true + }, + "symbolCurrency": { + "type": "string", + "nullable": true + }, + "chargeAccountNumber": { + "type": "string", + "nullable": true + }, + "chargeCurrency": { + "type": "string", + "nullable": true + }, + "chargeCurrencySymbolCurrency": { + "type": "string", + "nullable": true + }, + "creditAccountNumber": { + "type": "string", + "nullable": true + }, + "creditCurrency": { + "type": "string", + "nullable": true + }, + "creditCurrencySymbolCurrency": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "AdditionalInformationDto": { + "type": "object", + "properties": { + "branch": { + "type": "string", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "referenceCode": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ApprovalMassiveTransferExternalCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ApprovalTransferExternalMassiveResponseDto" + } + }, + "additionalProperties": false + }, + "ApprovalMassiveTransferExternalRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "ApprovalOwnAccountTransferRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "ApprovalTransferExternalCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ApprovalTransferExternalResponseDto" + } + }, + "additionalProperties": false + }, + "ApprovalTransferExternalMassiveResponseDto": { + "type": "object", + "properties": { + "registrationDate": { + "type": "string", + "nullable": true + }, + "referenceCode": { + "type": "string", + "nullable": true + }, + "fileNumRegisters": { + "type": "integer", + "format": "int32", + "nullable": true + } + }, + "additionalProperties": false + }, + "ApprovalTransferExternalRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "ApprovalTransferExternalResponseDto": { + "type": "object", + "properties": { + "status": { + "$ref": "#/components/schemas/OperationResponseDto" + } + }, + "additionalProperties": false + }, + "ApprovalTransferOwnAccountCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "BeneficiaryDto": { + "type": "object", + "properties": { + "accountNumber": { + "type": "string", + "nullable": true + }, + "name": { + "type": "string", + "nullable": true + }, + "country": { + "type": "string", + "nullable": true + }, + "nameCountry": { + "type": "string", + "nullable": true + }, + "city": { + "type": "string", + "nullable": true + }, + "address": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "CancelFileTransferExternalCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ConfirmTransferBcrThirdPartyCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/RegisterTransferThirdPartyResponseDto" + } + }, + "additionalProperties": false + }, + "ConfirmTransferOtherBanksThirdPartyCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ConfirmTransferThirdPartyResponseDto" + } + }, + "additionalProperties": false + }, + "ConfirmTransferThirdPartyCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ConfirmTransferThirdPartyResponseDto" + } + }, + "additionalProperties": false + }, + "ConfirmTransferThirdPartyResponseDto": { + "type": "object", + "properties": { + "transfer": { + "$ref": "#/components/schemas/TransferThirdPartyDto" + } + }, + "additionalProperties": false + }, + "ContactDto": { + "type": "object", + "properties": { + "fullName": { + "type": "string", + "nullable": true + }, + "email": { + "type": "string", + "nullable": true + }, + "phone": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "CountryDto": { + "type": "object", + "properties": { + "countryCode": { + "type": "string", + "nullable": true + }, + "countryName": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "CreateAndApproveMassiveTransferExternalCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/RegisterTransfersExternalResponseDto" + } + }, + "additionalProperties": false + }, + "CreateAndApproveMassiveTransferExternalRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "account": { + "$ref": "#/components/schemas/AccountDto" + }, + "contact": { + "$ref": "#/components/schemas/ContactDto" + }, + "fileUpload": { + "$ref": "#/components/schemas/FileUploadDto" + } + }, + "additionalProperties": false + }, + "CreateAndApproveTransferExternalCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/RegisterTransfersExternalResponseDto" + } + }, + "additionalProperties": false + }, + "CreateAndApproveTransferExternalRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transferExternal": { + "$ref": "#/components/schemas/TransferExternalDto" + }, + "account": { + "$ref": "#/components/schemas/AccountDto" + }, + "contact": { + "$ref": "#/components/schemas/ContactDto" + } + }, + "additionalProperties": false + }, + "CreateApproveTransferBcrThirdPartyCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/CreateApproveTransferThirdPartyResponseDto" + } + }, + "additionalProperties": false + }, + "CreateApproveTransferOtherBanksThirdPartyCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/CreateApproveTransferThirdPartyResponseDto" + } + }, + "additionalProperties": false + }, + "CreateApproveTransferThirdPartyCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/CreateApproveTransferThirdPartyResponseDto" + } + }, + "additionalProperties": false + }, + "CreateApproveTransferThirdPartyResponseDto": { + "type": "object", + "properties": { + "transfer": { + "$ref": "#/components/schemas/TransferThirdPartyDto" + } + }, + "additionalProperties": false + }, + "CurrencyDto": { + "type": "object", + "properties": { + "currencyCode": { + "type": "string", + "nullable": true + }, + "currencyName": { + "type": "string", + "nullable": true + }, + "currencySymbol": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "DeleteFavoriteTransferExternalCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/DeleteTransferExternalResponseDto" + } + }, + "additionalProperties": false + }, + "DeleteFavoriteTransferExternalRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "DeleteFavoriteTransferThirdPartyCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/DeleteTransferExternalResponseDto" + } + }, + "additionalProperties": false + }, + "DeleteFavoriteTransferThirdPartyRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "DeleteSavedOperationMassiveTransferExternalCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/DeleteTransferExternalResponseDto" + } + }, + "additionalProperties": false + }, + "DeleteSavedOperationTransferExternalCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/DeleteTransferExternalResponseDto" + } + }, + "additionalProperties": false + }, + "DeleteSavedOperationTransferExternalRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "DeleteSavedOperationTransferThirdPartyCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/DeleteTransferExternalResponseDto" + } + }, + "additionalProperties": false + }, + "DeleteSavedOperationTransferThirdPartyRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "DeleteTransferExternalResponseDto": { + "type": "object", + "properties": { + "status": { + "$ref": "#/components/schemas/OperationResponseDto" + } + }, + "additionalProperties": false + }, + "DetailIndividualTransferExternalHistoryQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/DetailIndividualTransferExternalResponseDto" + } + }, + "additionalProperties": false + }, + "DetailIndividualTransferExternalResponseDto": { + "type": "object", + "properties": { + "transfers": { + "$ref": "#/components/schemas/ExternalDetailIndividualDto" + } + }, + "additionalProperties": false + }, + "DetailMassiveTransferExternalHistoryQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/DetailMassiveTransferExternalResponseDto" + } + }, + "additionalProperties": false + }, + "DetailMassiveTransferExternalResponseDto": { + "type": "object", + "properties": { + "transfers": { + "$ref": "#/components/schemas/ExternalDetailMassiveDto" + } + }, + "additionalProperties": false + }, + "DetailTransferExternalFavoriteQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/DetailTransferExternalFavoriteResponseDto" + } + }, + "additionalProperties": false + }, + "DetailTransferExternalFavoriteRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "favorite": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "DetailTransferExternalFavoriteResponseDto": { + "type": "object", + "properties": { + "favorites": { + "$ref": "#/components/schemas/FavoriteExternalDto" + } + }, + "additionalProperties": false + }, + "DetailTransferExternalHistoryRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "DetailTransferThirdPartyFavoriteQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/DetailTransferThirdPartyResponseDto" + } + }, + "additionalProperties": false + }, + "DetailTransferThirdPartyHistoryQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/DetailTransferThirdPartyResponseDto" + } + }, + "additionalProperties": false + }, + "DetailTransferThirdPartyHistoryRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "DetailTransferThirdPartyResponseDto": { + "type": "object", + "properties": { + "transfer": { + "$ref": "#/components/schemas/TransferThirdPartyDto" + } + }, + "additionalProperties": false + }, + "EnterpriseDto": { + "type": "object", + "properties": { + "associateCode": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExchangeRateDto": { + "type": "object", + "properties": { + "buyRate": { + "type": "string", + "nullable": true + }, + "sellRate": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExternalDetailDto": { + "type": "object", + "properties": { + "creationDate": { + "type": "string", + "nullable": true + }, + "beneficiary": { + "type": "string", + "nullable": true + }, + "currencyAccountDestination": { + "type": "string", + "nullable": true + }, + "symbolCurrencyAccountDestination": { + "type": "string", + "nullable": true + }, + "amount": { + "type": "string", + "nullable": true + }, + "transferStatus": { + "type": "string", + "nullable": true + }, + "country": { + "type": "string", + "nullable": true + }, + "beneficiaryName": { + "type": "string", + "nullable": true + }, + "beneficiaryAccountNumber": { + "type": "string", + "nullable": true + }, + "beneficiaryAddress": { + "type": "string", + "nullable": true + }, + "branch": { + "type": "string", + "nullable": true + }, + "bankCodeType": { + "type": "string", + "nullable": true + }, + "bankCode": { + "type": "string", + "nullable": true + }, + "beneficiaryBankAddress": { + "type": "string", + "nullable": true + }, + "originAccountName": { + "type": "string", + "nullable": true + }, + "originAccountNumber": { + "type": "string", + "nullable": true + }, + "fullName": { + "type": "string", + "nullable": true + }, + "email": { + "type": "string", + "nullable": true + }, + "phone": { + "type": "string", + "nullable": true + }, + "chargeType": { + "type": "string", + "nullable": true + }, + "progrmanTransfer": { + "type": "string", + "nullable": true + }, + "referenceNumber": { + "type": "string", + "nullable": true + }, + "user": { + "type": "string", + "nullable": true + }, + "isMassive": { + "type": "boolean" + }, + "recordCount": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "city": { + "type": "string", + "nullable": true + }, + "status": { + "type": "string", + "nullable": true + }, + "numberPendingApprovals": { + "type": "string", + "nullable": true + }, + "registrationDate": { + "type": "string", + "nullable": true + }, + "registrationUser": { + "type": "string", + "nullable": true + }, + "firstSignatureDate": { + "type": "string", + "nullable": true + }, + "firstSignatureUser": { + "type": "string", + "nullable": true + }, + "secondSignatureDate": { + "type": "string", + "nullable": true + }, + "secondSignatureUser": { + "type": "string", + "nullable": true + }, + "details": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ExternalFileDetailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ExternalDetailIndividualDto": { + "type": "object", + "properties": { + "beneficiaryName": { + "type": "string", + "nullable": true + }, + "beneficiaryAccountNumber": { + "type": "string", + "nullable": true + }, + "beneficiaryAddress": { + "type": "string", + "nullable": true + }, + "branch": { + "type": "string", + "nullable": true + }, + "bankCodeType": { + "type": "string", + "nullable": true + }, + "bankCode": { + "type": "string", + "nullable": true + }, + "beneficiaryBankAddress": { + "type": "string", + "nullable": true + }, + "originAccountNumber": { + "type": "string", + "nullable": true + }, + "fullName": { + "type": "string", + "nullable": true + }, + "email": { + "type": "string", + "nullable": true + }, + "phone": { + "type": "string", + "nullable": true + }, + "chargeType": { + "type": "string", + "nullable": true + }, + "amount": { + "type": "string", + "nullable": true + }, + "symbolCurrencyAccountDestination": { + "type": "string", + "nullable": true + }, + "referenceNumber": { + "type": "string", + "nullable": true + }, + "user": { + "type": "string", + "nullable": true + }, + "city": { + "type": "string", + "nullable": true + }, + "country": { + "type": "string", + "nullable": true + }, + "originAccountName": { + "type": "string", + "nullable": true + }, + "nameBeneficiary": { + "type": "string", + "nullable": true + }, + "currencyCode": { + "type": "string", + "nullable": true + }, + "registrationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "transferExternal": { + "$ref": "#/components/schemas/TransferExternalDto" + }, + "account": { + "$ref": "#/components/schemas/AccountDto" + }, + "contact": { + "$ref": "#/components/schemas/ContactDto" + } + }, + "additionalProperties": false + }, + "ExternalDetailMassiveDto": { + "type": "object", + "properties": { + "originAccountNumber": { + "type": "string", + "nullable": true + }, + "referenceNumber": { + "type": "string", + "nullable": true + }, + "user": { + "type": "string", + "nullable": true + }, + "recordCount": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "originAccountName": { + "type": "string", + "nullable": true + }, + "details": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ExternalFileDetailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ExternalExpenseItemDto": { + "type": "object", + "properties": { + "documentType": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "detail": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExternalFileAmountDto": { + "type": "object", + "properties": { + "currencyName": { + "type": "string", + "nullable": true + }, + "currencyCode": { + "type": "string", + "nullable": true + }, + "currencySymbol": { + "type": "string", + "nullable": true + }, + "quantity": { + "type": "string", + "nullable": true + }, + "amount": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExternalFileDetailDto": { + "type": "object", + "properties": { + "remittanceType1": { + "type": "string", + "nullable": true + }, + "transferContact": { + "type": "string", + "nullable": true + }, + "transferContactPhone": { + "type": "string", + "nullable": true + }, + "transferContactExtension": { + "type": "string", + "nullable": true + }, + "transferContactEmail": { + "type": "string", + "nullable": true + }, + "beneficiaryBankRoute": { + "type": "string", + "nullable": true + }, + "confirmationNumber": { + "type": "string", + "nullable": true + }, + "beneficiaryName": { + "type": "string", + "nullable": true + }, + "transferCurrency": { + "type": "string", + "nullable": true + }, + "transferAmount": { + "type": "string", + "nullable": true + }, + "beneficiaryIbanAccount": { + "type": "string", + "nullable": true + }, + "beneficiaryBankName": { + "type": "string", + "nullable": true + }, + "beneficiaryBankCity": { + "type": "string", + "nullable": true + }, + "beneficiaryBankCountry": { + "type": "string", + "nullable": true + }, + "beneficiaryBankRouteCode": { + "type": "string", + "nullable": true + }, + "referenceNumber": { + "type": "string", + "nullable": true + }, + "remittanceType2": { + "type": "string", + "nullable": true + }, + "remittanceType3": { + "type": "string", + "nullable": true + }, + "operationDate": { + "type": "string", + "nullable": true + }, + "errorMessage": { + "type": "string", + "nullable": true + }, + "remittanceType4": { + "type": "string", + "nullable": true + }, + "intermediaryBankName": { + "type": "string", + "nullable": true + }, + "intermediaryBankCountry": { + "type": "string", + "nullable": true + }, + "beneficiaryMotherLastName": { + "type": "string", + "nullable": true + }, + "beneficiaryFatherLastName": { + "type": "string", + "nullable": true + }, + "beneficiaryAddressLine1": { + "type": "string", + "nullable": true + }, + "beneficiaryAddressLine2": { + "type": "string", + "nullable": true + }, + "beneficiaryCountry": { + "type": "string", + "nullable": true + }, + "beneficiaryType": { + "type": "string", + "nullable": true + }, + "beneficiaryBankAddress": { + "type": "string", + "nullable": true + }, + "intermediaryBankAccount": { + "type": "string", + "nullable": true + }, + "intermediaryBankRoute": { + "type": "string", + "nullable": true + }, + "intermediaryBankRouteCode": { + "type": "string", + "nullable": true + }, + "intermediaryBankCity": { + "type": "string", + "nullable": true + }, + "intermediaryBankAddress": { + "type": "string", + "nullable": true + }, + "correspondentCharges": { + "type": "string", + "nullable": true + }, + "remittanceDetail1": { + "type": "string", + "nullable": true + }, + "remittanceDetail2": { + "type": "string", + "nullable": true + }, + "remittanceDetail3": { + "type": "string", + "nullable": true + }, + "remittanceDetail4": { + "type": "string", + "nullable": true + }, + "beneficiaryBankBranch": { + "type": "string", + "nullable": true + }, + "postCreditInformation1": { + "type": "string", + "nullable": true + }, + "postCreditInformation2": { + "type": "string", + "nullable": true + }, + "debitAccount": { + "type": "string", + "nullable": true + }, + "additionalInstructions": { + "type": "string", + "nullable": true + }, + "additionalField1": { + "type": "string", + "nullable": true + }, + "additionalField2": { + "type": "string", + "nullable": true + }, + "additionalField3": { + "type": "string", + "nullable": true + }, + "additionalField4": { + "type": "string", + "nullable": true + }, + "rowSequence": { + "type": "string", + "nullable": true + }, + "accountCurrency": { + "type": "string", + "nullable": true + }, + "orderingCustomer": { + "type": "string", + "nullable": true + }, + "beneficiaryCountryCode": { + "type": "string", + "nullable": true + }, + "operationYear": { + "type": "string", + "nullable": true + }, + "operationDay": { + "type": "string", + "nullable": true + }, + "operationMonth": { + "type": "string", + "nullable": true + }, + "operationTime": { + "type": "string", + "nullable": true + }, + "inputYear": { + "type": "string", + "nullable": true + }, + "inputDay": { + "type": "string", + "nullable": true + }, + "inputMonth": { + "type": "string", + "nullable": true + }, + "debitAmount": { + "type": "string", + "nullable": true + }, + "processFlag": { + "type": "string", + "nullable": true + }, + "statusIbs": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ExternalFileResumeDto": { + "type": "object", + "properties": { + "recordCount": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "FavoriteDto": { + "type": "object", + "properties": { + "isFavorite": { + "type": "boolean" + }, + "referenceNumber": { + "type": "string", + "nullable": true + }, + "nameFavorite": { + "type": "string", + "nullable": true + }, + "transferType": { + "type": "string", + "nullable": true + }, + "transferCode": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "FavoriteExternalDto": { + "type": "object", + "properties": { + "isFavorite": { + "type": "boolean" + }, + "referenceNumber": { + "type": "string", + "nullable": true + }, + "nameFavorite": { + "type": "string", + "nullable": true + }, + "transferType": { + "type": "string", + "nullable": true + }, + "transferCode": { + "type": "string", + "nullable": true + }, + "nameBeneficiary": { + "type": "string", + "nullable": true + }, + "currencyCode": { + "type": "string", + "nullable": true + }, + "registrationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "transferExternal": { + "$ref": "#/components/schemas/TransferExternalDto" + }, + "account": { + "$ref": "#/components/schemas/AccountDto" + }, + "contact": { + "$ref": "#/components/schemas/ContactDto" + } + }, + "additionalProperties": false + }, + "FavoriteThirdPartyDto": { + "type": "object", + "properties": { + "isFavorite": { + "type": "boolean" + }, + "referenceNumber": { + "type": "string", + "nullable": true + }, + "nameFavorite": { + "type": "string", + "nullable": true + }, + "transferType": { + "type": "string", + "nullable": true + }, + "transferCode": { + "type": "string", + "nullable": true + }, + "nameBeneficiary": { + "type": "string", + "nullable": true + }, + "currencyCode": { + "type": "string", + "nullable": true + }, + "registrationDate": { + "type": "string", + "format": "date-time", + "nullable": true + } + }, + "additionalProperties": false + }, + "FileUploadDto": { + "type": "object", + "properties": { + "fileName": { + "type": "string", + "nullable": true + }, + "fileBase64": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "GetAccountsQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ListAccountsOwnAccountResponseDto" + } + }, + "additionalProperties": false + }, + "GetAccountsTransferThirdPartyQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ListAccountTransferThirdPartyResponseDto" + } + }, + "additionalProperties": false + }, + "GetExchangeRateQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/GetExchangeRateResponseDto" + } + }, + "additionalProperties": false + }, + "GetExchangeRateResponseDto": { + "type": "object", + "properties": { + "rate": { + "$ref": "#/components/schemas/ExchangeRateDto" + } + }, + "additionalProperties": false + }, + "GetLimitBcrQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/GetLimitBcrResponseDto" + } + }, + "additionalProperties": false + }, + "GetLimitBcrResponseDto": { + "type": "object", + "properties": { + "limitBcr": { + "$ref": "#/components/schemas/LimitBcrDto" + } + }, + "additionalProperties": false + }, + "GetTransferExternalCountriesQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ListTransferExternalCountryResponseDto" + } + }, + "additionalProperties": false + }, + "GetTransferExternalCurrenciesQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ListTransferExternalCurrencyResponseDto" + } + }, + "additionalProperties": false + }, + "GetTransferExternalFavoriteQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ListTransferExternalFavoriteResponseDto" + } + }, + "additionalProperties": false + }, + "GetTransferExternalHistoryQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ListTransferExternalHistoryResponseDto" + } + }, + "additionalProperties": false + }, + "GetTransferExternalSavedOperationQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ListTransferExternalSavedOperationResponseDto" + } + }, + "additionalProperties": false + }, + "GetTransferThirdPartyHistoryQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ListTransferThirdPartyHistoryResponseDto" + } + }, + "additionalProperties": false + }, + "GetTransferThirdPartyListFavoriteQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ListTransferThirdPartyFavoriteResponseDto" + } + }, + "additionalProperties": false + }, + "GetValidAccountTransferThirdPartyQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ValidateAccountTransferThirdPartyResponseDto" + } + }, + "additionalProperties": false + }, + "HistoryOwnAccountTransferResponseDto": { + "type": "object", + "properties": { + "transfers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/OwnAccountTransferDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "HistoryOwnAccountTransferResponseDtoBaseResponse": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/HistoryOwnAccountTransferResponseDto" + } + }, + "additionalProperties": false + }, + "IntermediaryBankDto": { + "type": "object", + "properties": { + "accountNumber": { + "type": "string", + "nullable": true + }, + "bankCodeType": { + "type": "string", + "nullable": true + }, + "bankCode": { + "type": "string", + "nullable": true + }, + "bankName": { + "type": "string", + "nullable": true + }, + "isIntermediaryBank": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "LimitBcrDto": { + "type": "object", + "properties": { + "minSoles": { + "type": "string", + "nullable": true + }, + "minDollars": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ListAccountOwnAccountRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + } + }, + "additionalProperties": false + }, + "ListAccountTransferThirdPartyResponseDto": { + "type": "object", + "properties": { + "accounts": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AccountDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ListAccountsOwnAccountResponseDto": { + "type": "object", + "properties": { + "accounts": { + "type": "array", + "items": { + "$ref": "#/components/schemas/AccountDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ListTransferExternalCountryResponseDto": { + "type": "object", + "properties": { + "countries": { + "type": "array", + "items": { + "$ref": "#/components/schemas/CountryDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ListTransferExternalCurrencyResponseDto": { + "type": "object", + "properties": { + "currencies": { + "type": "array", + "items": { + "$ref": "#/components/schemas/CurrencyDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ListTransferExternalFavoriteResponseDto": { + "type": "object", + "properties": { + "favorites": { + "type": "array", + "items": { + "$ref": "#/components/schemas/FavoriteExternalDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ListTransferExternalHistoryRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "search": { + "$ref": "#/components/schemas/SearchDto" + } + }, + "additionalProperties": false + }, + "ListTransferExternalHistoryResponseDto": { + "type": "object", + "properties": { + "transfers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ExternalDetailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ListTransferExternalSavedOperationRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + } + }, + "additionalProperties": false + }, + "ListTransferExternalSavedOperationResponseDto": { + "type": "object", + "properties": { + "savedOperations": { + "type": "array", + "items": { + "$ref": "#/components/schemas/SavedOperationDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ListTransferThirdPartyFavoriteRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + } + }, + "additionalProperties": false + }, + "ListTransferThirdPartyFavoriteResponseDto": { + "type": "object", + "properties": { + "favorites": { + "type": "array", + "items": { + "$ref": "#/components/schemas/FavoriteThirdPartyDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ListTransferThirdPartyHistoryRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + } + }, + "additionalProperties": false + }, + "ListTransferThirdPartyHistoryResponseDto": { + "type": "object", + "properties": { + "transfers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/TransferThirdPartyDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ListTransfersOwnAccountRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + } + }, + "additionalProperties": false + }, + "OperationOwnAccountTransferResponseDto": { + "type": "object", + "properties": { + "account": { + "$ref": "#/components/schemas/AccountDto" + }, + "transaction": { + "$ref": "#/components/schemas/TransactionDto" + }, + "operationResponse": { + "$ref": "#/components/schemas/OperationResponseDto" + } + }, + "additionalProperties": false + }, + "OperationOwnAccountTransferResponseDtoBaseResponse": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/OperationOwnAccountTransferResponseDto" + } + }, + "additionalProperties": false + }, + "OperationResponseDto": { + "type": "object", + "properties": { + "registrationDate": { + "type": "string", + "nullable": true + }, + "referenceCode": { + "type": "string", + "nullable": true + }, + "operationCode": { + "type": "string", + "nullable": true + }, + "rate": { + "type": "string", + "nullable": true + }, + "amountTotal": { + "type": "string", + "nullable": true + }, + "fileNumRegisters": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "user": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "OwnAccountTransferDto": { + "type": "object", + "properties": { + "account": { + "$ref": "#/components/schemas/AccountDto" + }, + "transaction": { + "$ref": "#/components/schemas/TransactionDto" + } + }, + "additionalProperties": false + }, + "OwnAccountTransferOperationRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "account": { + "$ref": "#/components/schemas/AccountDto" + }, + "transaction": { + "$ref": "#/components/schemas/TransactionDto" + } + }, + "additionalProperties": false + }, + "PayingBankDto": { + "type": "object", + "properties": { + "bankCodeType": { + "type": "string", + "nullable": true + }, + "bankCode": { + "type": "string", + "nullable": true + }, + "country": { + "type": "string", + "nullable": true + }, + "city": { + "type": "string", + "nullable": true + }, + "address": { + "type": "string", + "nullable": true + }, + "bankName": { + "type": "string", + "nullable": true + }, + "nameCountry": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "PreviewTransferExternalSavedOperationQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ListTransferExternalSavedOperationResponseDto" + } + }, + "additionalProperties": false + }, + "PreviewTransferExternalSavedOperationRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + } + }, + "additionalProperties": false + }, + "ProblemDetails": { + "type": "object", + "properties": { + "type": { + "type": "string", + "nullable": true + }, + "title": { + "type": "string", + "nullable": true + }, + "status": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "detail": { + "type": "string", + "nullable": true + }, + "instance": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": { } + }, + "RegisterLaterTransferBcrThirdPartyCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/RegisterTransferThirdPartyResponseDto" + } + }, + "additionalProperties": false + }, + "RegisterLaterTransferThirdPartyCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/RegisterTransferThirdPartyResponseDto" + } + }, + "additionalProperties": false + }, + "RegisterMassiveTransferExternalCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/RegisterTransfersExternalResponseDto" + } + }, + "additionalProperties": false + }, + "RegisterMassiveTransferExternalRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + } + }, + "additionalProperties": false + }, + "RegisterMassiveTransferThirdPartyRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RegisterTransferThirdPartyDto" + }, + "nullable": true + }, + "transferOtherBanks": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RegisterTransferOtherBanksThirdPartyDto" + }, + "nullable": true + }, + "transferBcr": { + "type": "array", + "items": { + "$ref": "#/components/schemas/RegisterTransferBcrThirdPartyDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "RegisterTransferBcrThirdPartyDto": { + "type": "object", + "properties": { + "accountOrigin": { + "type": "string", + "nullable": true + }, + "amount": { + "type": "string", + "nullable": true + }, + "currencyAmountCharge": { + "type": "string", + "nullable": true + }, + "accountDestination": { + "type": "string", + "nullable": true + }, + "currencyAccountDestination": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "isFavorite": { + "type": "boolean" + }, + "descriptionFavorite": { + "type": "string", + "nullable": true + }, + "currencyAccountOrigin": { + "type": "string", + "nullable": true + }, + "bankNameOrigin": { + "type": "string", + "nullable": true + }, + "bankNameDestination": { + "type": "string", + "nullable": true + }, + "isAccountHolder": { + "type": "boolean" + }, + "names": { + "type": "string", + "nullable": true + }, + "paternalSurname": { + "type": "string", + "nullable": true + }, + "maternalSurname": { + "type": "string", + "nullable": true + }, + "documentType": { + "type": "string", + "nullable": true + }, + "documentNumber": { + "type": "string", + "nullable": true + }, + "codeBank": { + "type": "string", + "nullable": true + }, + "codeAgency": { + "type": "string", + "nullable": true + }, + "checkDigit": { + "type": "string", + "nullable": true + }, + "contact": { + "type": "string", + "nullable": true + }, + "phone": { + "type": "string", + "nullable": true + }, + "email": { + "type": "string", + "nullable": true + }, + "dtptrf1": { + "type": "string", + "nullable": true + }, + "dtptrf2": { + "type": "string", + "nullable": true + }, + "dtptrf3": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "RegisterTransferBcrThirdPartyRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/RegisterTransferBcrThirdPartyDto" + } + }, + "additionalProperties": false + }, + "RegisterTransferExternalCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/RegisterTransfersExternalResponseDto" + } + }, + "additionalProperties": false + }, + "RegisterTransferExternalRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transferExternal": { + "$ref": "#/components/schemas/TransferExternalDto" + }, + "account": { + "$ref": "#/components/schemas/AccountDto" + }, + "contact": { + "$ref": "#/components/schemas/ContactDto" + } + }, + "additionalProperties": false + }, + "RegisterTransferOtherBanksThirdPartyDto": { + "type": "object", + "properties": { + "accountOrigin": { + "type": "string", + "nullable": true + }, + "amount": { + "type": "string", + "nullable": true + }, + "currencyAmountCharge": { + "type": "string", + "nullable": true + }, + "accountDestination": { + "type": "string", + "nullable": true + }, + "currencyAccountDestination": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "isFavorite": { + "type": "boolean" + }, + "descriptionFavorite": { + "type": "string", + "nullable": true + }, + "currencyAccountOrigin": { + "type": "string", + "nullable": true + }, + "bankNameOrigin": { + "type": "string", + "nullable": true + }, + "bankNameDestination": { + "type": "string", + "nullable": true + }, + "isAccountHolder": { + "type": "boolean" + }, + "names": { + "type": "string", + "nullable": true + }, + "paternalSurname": { + "type": "string", + "nullable": true + }, + "maternalSurname": { + "type": "string", + "nullable": true + }, + "documentType": { + "type": "string", + "nullable": true + }, + "documentNumber": { + "type": "string", + "nullable": true + }, + "codeBank": { + "type": "string", + "nullable": true + }, + "codeAgency": { + "type": "string", + "nullable": true + }, + "checkDigit": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "RegisterTransferOtherBanksThirdParyRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/RegisterTransferOtherBanksThirdPartyDto" + } + }, + "additionalProperties": false + }, + "RegisterTransferThirdPartyDto": { + "type": "object", + "properties": { + "accountOrigin": { + "type": "string", + "nullable": true + }, + "amount": { + "type": "string", + "nullable": true + }, + "currencyAmountCharge": { + "type": "string", + "nullable": true + }, + "accountDestination": { + "type": "string", + "nullable": true + }, + "currencyAccountDestination": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "isFavorite": { + "type": "boolean" + }, + "descriptionFavorite": { + "type": "string", + "nullable": true + }, + "dtptrf1": { + "type": "string", + "nullable": true + }, + "dtptrf2": { + "type": "string", + "nullable": true + }, + "dtptrf3": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "RegisterTransferThirdPartyRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/RegisterTransferThirdPartyDto" + } + }, + "additionalProperties": false + }, + "RegisterTransferThirdPartyResponseDto": { + "type": "object", + "properties": { + "transfer": { + "$ref": "#/components/schemas/TransferThirdPartyDto" + } + }, + "additionalProperties": false + }, + "RegisterTransfersExternalResponseDto": { + "type": "object", + "properties": { + "status": { + "$ref": "#/components/schemas/OperationResponseDto" + } + }, + "additionalProperties": false + }, + "RejectionMassiveTransferExternalCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/RejectionTransferExternalResponseDto" + } + }, + "additionalProperties": false + }, + "RejectionMassiveTransferExternalRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "RejectionOwnAccountTransferRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "RejectionTransferExternalCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/RejectionTransferExternalResponseDto" + } + }, + "additionalProperties": false + }, + "RejectionTransferExternalRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "RejectionTransferExternalResponseDto": { + "type": "object", + "properties": { + "status": { + "$ref": "#/components/schemas/OperationResponseDto" + } + }, + "additionalProperties": false + }, + "RejectionTransferOwnAccountCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "SavedOperationDto": { + "type": "object", + "properties": { + "referenceNumber": { + "type": "string", + "nullable": true + }, + "transferType": { + "type": "string", + "nullable": true + }, + "transferCode": { + "type": "string", + "nullable": true + }, + "nameBeneficiary": { + "type": "string", + "nullable": true + }, + "registrationDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "currencySymbol": { + "type": "string", + "nullable": true + }, + "currencyCode": { + "type": "string", + "nullable": true + }, + "amount": { + "type": "number", + "format": "double", + "nullable": true + } + }, + "additionalProperties": false + }, + "SearchDto": { + "type": "object", + "properties": { + "searchKey": { + "type": "string", + "nullable": true + }, + "startDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "endDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "currency": { + "type": "string", + "nullable": true + }, + "status": { + "type": "string", + "nullable": true + }, + "beneficiary": { + "type": "string", + "nullable": true + }, + "account": { + "type": "string", + "nullable": true + }, + "transferType": { + "type": "integer", + "format": "int32", + "nullable": true + }, + "operationType": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "SearchOwnAccountTransferHistoryRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "search": { + "$ref": "#/components/schemas/SearchDto" + } + }, + "additionalProperties": false + }, + "SearchTransferExternalHistoryQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ListTransferExternalHistoryResponseDto" + } + }, + "additionalProperties": false + }, + "SearchTransferExternalHistoryRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "search": { + "$ref": "#/components/schemas/SearchDto" + } + }, + "additionalProperties": false + }, + "SearchTransferExternalSavedOperationQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ListTransferExternalSavedOperationResponseDto" + } + }, + "additionalProperties": false + }, + "SearchTransferExternalSavedOperationRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "search": { + "$ref": "#/components/schemas/SearchDto" + } + }, + "additionalProperties": false + }, + "SearchTransferThirdPartyHistoryQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ListTransferThirdPartyHistoryResponseDto" + } + }, + "additionalProperties": false + }, + "SearchTransferThirdPartyHistoryRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "search": { + "$ref": "#/components/schemas/SearchDto" + } + }, + "additionalProperties": false + }, + "SendToApprovalMassiveTransferExternalCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/RegisterTransfersExternalResponseDto" + } + }, + "additionalProperties": false + }, + "SendToApprovalMassiveTransferExternalRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + } + }, + "additionalProperties": false + }, + "SendToApprovalTransferExternalCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/RegisterTransfersExternalResponseDto" + } + }, + "additionalProperties": false + }, + "SendToApprovalTransferExternalRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transferExternal": { + "$ref": "#/components/schemas/TransferExternalDto" + }, + "account": { + "$ref": "#/components/schemas/AccountDto" + }, + "contact": { + "$ref": "#/components/schemas/ContactDto" + } + }, + "additionalProperties": false + }, + "ServiceMessage": { + "type": "object", + "properties": { + "code": { + "type": "string", + "nullable": true + }, + "title": { + "type": "string", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "goBack": { + "type": "boolean" + }, + "returnPath": { + "type": "string", + "nullable": true + }, + "type": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ServiceMetadata": { + "type": "object", + "properties": { + "messages": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ServiceMessage" + }, + "nullable": true + }, + "totalRecords": { + "type": "integer", + "format": "int32" + }, + "transactionId": { + "type": "string", + "nullable": true + }, + "nextPageNumber": { + "type": "integer", + "format": "int32" + }, + "totalPages": { + "type": "integer", + "format": "int32" + }, + "result": { + "type": "boolean" + } + }, + "additionalProperties": false + }, + "TransactionDto": { + "type": "object", + "properties": { + "amount": { + "type": "string", + "nullable": true + }, + "type": { + "$ref": "#/components/schemas/TransactionType" + }, + "referenceNumber": { + "type": "string", + "nullable": true + }, + "operationCode": { + "type": "string", + "nullable": true + }, + "creationDate": { + "type": "string", + "nullable": true + }, + "beneficiary": { + "type": "string", + "nullable": true + }, + "rate": { + "type": "string", + "nullable": true + }, + "amountTotal": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "TransactionType": { + "enum": [ + 1, + 2 + ], + "type": "integer", + "format": "int32" + }, + "TransferDto": { + "type": "object", + "properties": { + "referenceNumber": { + "type": "string", + "nullable": true + }, + "creationDate": { + "type": "string", + "nullable": true + }, + "beneficiary": { + "type": "string", + "nullable": true + }, + "accountNumber": { + "type": "string", + "nullable": true + }, + "amount": { + "type": "string", + "nullable": true + }, + "nameTransferOrigin": { + "type": "string", + "nullable": true + }, + "accountNumberOrigin": { + "type": "string", + "nullable": true + }, + "currency": { + "type": "string", + "nullable": true + }, + "currencySymbol": { + "type": "string", + "nullable": true + }, + "message": { + "type": "string", + "nullable": true + }, + "status": { + "type": "string", + "nullable": true + }, + "statuName": { + "type": "string", + "nullable": true + }, + "numberApprovals": { + "type": "string", + "nullable": true + }, + "numapr": { + "type": "string", + "nullable": true + }, + "accountOrigin": { + "type": "string", + "nullable": true + }, + "accountDestination": { + "type": "string", + "nullable": true + }, + "currencyAccountOrigin": { + "type": "string", + "nullable": true + }, + "currencyAccountDestination": { + "type": "string", + "nullable": true + }, + "symbolCurrencyAccountDestination": { + "type": "string", + "nullable": true + }, + "symbolCurrencyAccountOrigin": { + "type": "string", + "nullable": true + }, + "transferStatus": { + "type": "string", + "nullable": true + }, + "country": { + "type": "string", + "nullable": true + }, + "typeTransfer": { + "type": "string", + "nullable": true + }, + "sameAccountHolder": { + "type": "string", + "nullable": true + }, + "bnfa1TRF": { + "type": "string", + "nullable": true + }, + "bnfa2TRF": { + "type": "string", + "nullable": true + }, + "bnfNamTrf": { + "type": "string", + "nullable": true + }, + "nombre": { + "type": "string", + "nullable": true + }, + "isCurrentLocal": { + "type": "string", + "nullable": true + }, + "entityid": { + "type": "string", + "nullable": true + }, + "ouser": { + "type": "string", + "nullable": true + }, + "vuser": { + "type": "string", + "nullable": true + }, + "sts": { + "type": "string", + "nullable": true + }, + "tamt": { + "type": "string", + "nullable": true + }, + "rate": { + "type": "string", + "nullable": true + }, + "bnfa3TRF": { + "type": "string", + "nullable": true + }, + "dtptrf1": { + "type": "string", + "nullable": true + }, + "dtptrf2": { + "type": "string", + "nullable": true + }, + "dtptrf3": { + "type": "string", + "nullable": true + }, + "itf": { + "type": "string", + "nullable": true + }, + "commission": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "nameBankOrigen": { + "type": "string", + "nullable": true + }, + "nameBankDestino": { + "type": "string", + "nullable": true + }, + "codeBank": { + "type": "string", + "nullable": true + }, + "codeAgency": { + "type": "string", + "nullable": true + }, + "checkDigit": { + "type": "string", + "nullable": true + }, + "bnkIdTrf": { + "type": "string", + "nullable": true + }, + "bnkbrn": { + "type": "string", + "nullable": true + }, + "tacc": { + "type": "string", + "nullable": true + }, + "tipoDoc": { + "type": "string", + "nullable": true + }, + "nroDoc": { + "type": "string", + "nullable": true + }, + "apemat": { + "type": "string", + "nullable": true + }, + "apepat": { + "type": "string", + "nullable": true + }, + "tipoDocDes": { + "type": "string", + "nullable": true + }, + "telb": { + "type": "string", + "nullable": true + }, + "isMassive": { + "type": "boolean" + }, + "descriptionFavorite": { + "type": "string", + "nullable": true + }, + "transferType": { + "type": "string", + "nullable": true + }, + "transferCode": { + "type": "string", + "nullable": true + }, + "nameFavorite": { + "type": "string", + "nullable": true + }, + "registrationDate": { + "type": "string", + "nullable": true + }, + "nameBeneficiary": { + "type": "string", + "nullable": true + }, + "currencyCode": { + "type": "string", + "nullable": true + }, + "amountCurrency": { + "type": "string", + "nullable": true + }, + "symbolAmountCurrency": { + "type": "string", + "nullable": true + }, + "numberPendingApprovals": { + "type": "string", + "nullable": true + }, + "registrationUser": { + "type": "string", + "nullable": true + }, + "firstSignatureDate": { + "type": "string", + "nullable": true + }, + "firstSignatureUser": { + "type": "string", + "nullable": true + }, + "secondSignatureDate": { + "type": "string", + "nullable": true + }, + "secondSignatureUser": { + "type": "string", + "nullable": true + }, + "operationNumber": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "TransferExternalDto": { + "type": "object", + "properties": { + "currency": { + "type": "string", + "nullable": true + }, + "amount": { + "type": "number", + "format": "double", + "nullable": true + }, + "expenseType": { + "type": "string", + "nullable": true + }, + "nameCurrency": { + "type": "string", + "nullable": true + }, + "beneficiary": { + "$ref": "#/components/schemas/BeneficiaryDto" + }, + "payingBank": { + "$ref": "#/components/schemas/PayingBankDto" + }, + "intermediaryBank": { + "$ref": "#/components/schemas/IntermediaryBankDto" + }, + "additionalInformation": { + "$ref": "#/components/schemas/AdditionalInformationDto" + }, + "externalExpenseItems": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ExternalExpenseItemDto" + }, + "nullable": true + }, + "favorite": { + "$ref": "#/components/schemas/FavoriteDto" + }, + "transferProgram": { + "$ref": "#/components/schemas/TransferProgramDto" + } + }, + "additionalProperties": false + }, + "TransferProgramDto": { + "type": "object", + "properties": { + "isProgrammed": { + "type": "boolean" + }, + "paymentDate": { + "type": "string", + "format": "date-time", + "nullable": true + } + }, + "additionalProperties": false + }, + "TransferThirdPartyDto": { + "type": "object", + "properties": { + "referenceNumber": { + "type": "string", + "nullable": true + }, + "creationDate": { + "type": "string", + "nullable": true + }, + "beneficiary": { + "type": "string", + "nullable": true + }, + "accountDestination": { + "type": "string", + "nullable": true + }, + "currencyAccountDestination": { + "type": "string", + "nullable": true + }, + "symbolCurrencyAccountDestination": { + "type": "string", + "nullable": true + }, + "amount": { + "type": "string", + "nullable": true + }, + "transferStatus": { + "type": "string", + "nullable": true + }, + "itf": { + "type": "string", + "nullable": true + }, + "commission": { + "type": "string", + "nullable": true + }, + "amountDebited": { + "type": "string", + "nullable": true + }, + "rate": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "accountOrigin": { + "type": "string", + "nullable": true + }, + "symbolCurrencyAccountOrigin": { + "type": "string", + "nullable": true + }, + "nameBankOrigen": { + "type": "string", + "nullable": true + }, + "nameBankDestino": { + "type": "string", + "nullable": true + }, + "typeTransfer": { + "type": "string", + "nullable": true + }, + "descriptionFavorite": { + "type": "string", + "nullable": true + }, + "amountCurrency": { + "type": "string", + "nullable": true + }, + "symbolAmountCurrency": { + "type": "string", + "nullable": true + }, + "operationNumber": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "UploadFileTransferExternalCommandResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/UploadFileTransferExternalResponseDto" + } + }, + "additionalProperties": false + }, + "UploadFileTransferExternalRequestDto": { + "type": "object", + "properties": { + "account": { + "$ref": "#/components/schemas/AccountDto" + }, + "contact": { + "$ref": "#/components/schemas/ContactDto" + }, + "fileUpload": { + "$ref": "#/components/schemas/FileUploadDto" + } + }, + "additionalProperties": false + }, + "UploadFileTransferExternalResponseDto": { + "type": "object", + "properties": { + "errorDetail": { + "type": "string", + "nullable": true + }, + "amountSummary": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ExternalFileAmountDto" + }, + "nullable": true + }, + "resume": { + "$ref": "#/components/schemas/ExternalFileResumeDto" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ExternalFileDetailDto" + }, + "nullable": true + } + }, + "additionalProperties": false + }, + "ValidAccountDto": { + "type": "object", + "properties": { + "typeTransfer": { + "type": "string", + "nullable": true + }, + "accountNumber": { + "type": "string", + "nullable": true + }, + "currency": { + "type": "string", + "nullable": true + }, + "accountHolderName": { + "type": "string", + "nullable": true + }, + "hasAccountSOL": { + "type": "boolean" + }, + "hasAccountUSD": { + "type": "boolean" + }, + "currencyName": { + "type": "string", + "nullable": true + }, + "bankName": { + "type": "string", + "nullable": true + }, + "cciNumber": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ValidateAccountTransferThirdPartyRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "account": { + "$ref": "#/components/schemas/ValidAccountDto" + } + }, + "additionalProperties": false + }, + "ValidateAccountTransferThirdPartyResponseDto": { + "type": "object", + "properties": { + "account": { + "$ref": "#/components/schemas/ValidAccountDto" + } + }, + "additionalProperties": false + }, + "ViewDetailMassiveTransferExternalQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ViewDetailMassiveTransferExternalResponseDto" + } + }, + "additionalProperties": false + }, + "ViewDetailMassiveTransferExternalRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "ViewDetailMassiveTransferExternalResponseDto": { + "type": "object", + "properties": { + "referenceNumber": { + "type": "string", + "nullable": true + }, + "transferType": { + "type": "string", + "nullable": true + }, + "status": { + "type": "string", + "nullable": true + }, + "numberPendingApprovals": { + "type": "string", + "nullable": true + }, + "registrationDate": { + "type": "string", + "nullable": true + }, + "registrationUser": { + "type": "string", + "nullable": true + }, + "firstSignatureDate": { + "type": "string", + "nullable": true + }, + "firstSignatureUser": { + "type": "string", + "nullable": true + }, + "secondSignatureDate": { + "type": "string", + "nullable": true + }, + "secondSignatureUser": { + "type": "string", + "nullable": true + }, + "beneficaryName": { + "type": "string", + "nullable": true + }, + "contactName": { + "type": "string", + "nullable": true + }, + "contactEmail": { + "type": "string", + "nullable": true + }, + "contactPhone": { + "type": "string", + "nullable": true + }, + "originAccountNumber": { + "type": "string", + "nullable": true + }, + "originAccountName": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ViewDetailTransferBcrQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ViewDetailTransferBcrResponseDto" + } + }, + "additionalProperties": false + }, + "ViewDetailTransferBcrRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "ViewDetailTransferBcrResponseDto": { + "type": "object", + "properties": { + "referenceNumber": { + "type": "string", + "nullable": true + }, + "transferType": { + "type": "string", + "nullable": true + }, + "status": { + "type": "string", + "nullable": true + }, + "numberPendingApprovals": { + "type": "string", + "nullable": true + }, + "registrationDate": { + "type": "string", + "nullable": true + }, + "registrationUser": { + "type": "string", + "nullable": true + }, + "firstSignatureDate": { + "type": "string", + "nullable": true + }, + "firstSignatureUser": { + "type": "string", + "nullable": true + }, + "secondSignatureDate": { + "type": "string", + "nullable": true + }, + "secondSignatureUser": { + "type": "string", + "nullable": true + }, + "originAccountNumber": { + "type": "string", + "nullable": true + }, + "originAccountName": { + "type": "string", + "nullable": true + }, + "destinationAccountNumber": { + "type": "string", + "nullable": true + }, + "destinationAccountName": { + "type": "string", + "nullable": true + }, + "currency": { + "type": "string", + "nullable": true + }, + "amount": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "itf": { + "type": "string", + "nullable": true + }, + "comission": { + "type": "string", + "nullable": true + }, + "holderName": { + "type": "string", + "nullable": true + }, + "holderDocument": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ViewDetailTransferExternalQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ViewDetailTransferExternalResponseDto" + } + }, + "additionalProperties": false + }, + "ViewDetailTransferExternalRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "ViewDetailTransferExternalResponseDto": { + "type": "object", + "properties": { + "referenceNumber": { + "type": "string", + "nullable": true + }, + "transferType": { + "type": "string", + "nullable": true + }, + "status": { + "type": "string", + "nullable": true + }, + "numberPendingApprovals": { + "type": "string", + "nullable": true + }, + "registrationDate": { + "type": "string", + "nullable": true + }, + "registrationUser": { + "type": "string", + "nullable": true + }, + "firstSignatureDate": { + "type": "string", + "nullable": true + }, + "firstSignatureUser": { + "type": "string", + "nullable": true + }, + "secondSignatureDate": { + "type": "string", + "nullable": true + }, + "secondSignatureUser": { + "type": "string", + "nullable": true + }, + "currency": { + "type": "string", + "nullable": true + }, + "amount": { + "type": "string", + "nullable": true + }, + "originAccountNumber": { + "type": "string", + "nullable": true + }, + "originAccountName": { + "type": "string", + "nullable": true + }, + "contactFullName": { + "type": "string", + "nullable": true + }, + "contactEmail": { + "type": "string", + "nullable": true + }, + "contactPhone": { + "type": "string", + "nullable": true + }, + "chargeType": { + "type": "string", + "nullable": true + }, + "beneficiaryName": { + "type": "string", + "nullable": true + }, + "beneficiaryAccount": { + "type": "string", + "nullable": true + }, + "beneficiaryAddress": { + "type": "string", + "nullable": true + }, + "bankName": { + "type": "string", + "nullable": true + }, + "bankCode": { + "type": "string", + "nullable": true + }, + "bankAddress": { + "type": "string", + "nullable": true + }, + "bankCity": { + "type": "string", + "nullable": true + }, + "bankCounty": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ViewDetailTransferOtherBanksQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ViewDetailTransferOtherBanksResponseDto" + } + }, + "additionalProperties": false + }, + "ViewDetailTransferOtherBanksRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "ViewDetailTransferOtherBanksResponseDto": { + "type": "object", + "properties": { + "referenceNumber": { + "type": "string", + "nullable": true + }, + "transferType": { + "type": "string", + "nullable": true + }, + "status": { + "type": "string", + "nullable": true + }, + "numberPendingApprovals": { + "type": "string", + "nullable": true + }, + "registrationDate": { + "type": "string", + "nullable": true + }, + "registrationUser": { + "type": "string", + "nullable": true + }, + "firstSignatureDate": { + "type": "string", + "nullable": true + }, + "firstSignatureUser": { + "type": "string", + "nullable": true + }, + "secondSignatureDate": { + "type": "string", + "nullable": true + }, + "secondSignatureUser": { + "type": "string", + "nullable": true + }, + "originAccountNumber": { + "type": "string", + "nullable": true + }, + "originAccountName": { + "type": "string", + "nullable": true + }, + "destinationAccountNumber": { + "type": "string", + "nullable": true + }, + "destinationAccountName": { + "type": "string", + "nullable": true + }, + "currency": { + "type": "string", + "nullable": true + }, + "amount": { + "type": "string", + "nullable": true + }, + "exchangeRate": { + "type": "string", + "nullable": true + }, + "totalTransfer": { + "type": "string", + "nullable": true + }, + "currencyTotalTransfer": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + }, + "itf": { + "type": "string", + "nullable": true + }, + "comission": { + "type": "string", + "nullable": true + }, + "holderName": { + "type": "string", + "nullable": true + }, + "holderDocument": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ViewDetailTransferOwnAccountQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ViewDetailTransferOwnAccountResponseDto" + } + }, + "additionalProperties": false + }, + "ViewDetailTransferOwnAccountRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "ViewDetailTransferOwnAccountResponseDto": { + "type": "object", + "properties": { + "referenceNumber": { + "type": "string", + "nullable": true + }, + "transferType": { + "type": "string", + "nullable": true + }, + "status": { + "type": "string", + "nullable": true + }, + "numberPendingApprovals": { + "type": "string", + "nullable": true + }, + "registrationDate": { + "type": "string", + "nullable": true + }, + "registrationUser": { + "type": "string", + "nullable": true + }, + "firstSignatureDate": { + "type": "string", + "nullable": true + }, + "firstSignatureUser": { + "type": "string", + "nullable": true + }, + "secondSignatureDate": { + "type": "string", + "nullable": true + }, + "secondSignatureUser": { + "type": "string", + "nullable": true + }, + "originAccountNumber": { + "type": "string", + "nullable": true + }, + "originAccountName": { + "type": "string", + "nullable": true + }, + "destinationAccountNumber": { + "type": "string", + "nullable": true + }, + "destinationAccountName": { + "type": "string", + "nullable": true + }, + "currency": { + "type": "string", + "nullable": true + }, + "amount": { + "type": "string", + "nullable": true + }, + "exchangeRate": { + "type": "string", + "nullable": true + }, + "totalTransfer": { + "type": "string", + "nullable": true + }, + "currencyTotalTransfer": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + }, + "ViewDetailTransferThirdPartyQueryResponseWrapper": { + "type": "object", + "properties": { + "meta": { + "$ref": "#/components/schemas/ServiceMetadata" + }, + "data": { + "$ref": "#/components/schemas/ViewDetailTransferThirdPartyResponseDto" + } + }, + "additionalProperties": false + }, + "ViewDetailTransferThirdPartyRequestDto": { + "type": "object", + "properties": { + "enterprise": { + "$ref": "#/components/schemas/EnterpriseDto" + }, + "transfer": { + "$ref": "#/components/schemas/TransferDto" + } + }, + "additionalProperties": false + }, + "ViewDetailTransferThirdPartyResponseDto": { + "type": "object", + "properties": { + "referenceNumber": { + "type": "string", + "nullable": true + }, + "transferType": { + "type": "string", + "nullable": true + }, + "status": { + "type": "string", + "nullable": true + }, + "numberPendingApprovals": { + "type": "string", + "nullable": true + }, + "registrationDate": { + "type": "string", + "nullable": true + }, + "registrationUser": { + "type": "string", + "nullable": true + }, + "firstSignatureDate": { + "type": "string", + "nullable": true + }, + "firstSignatureUser": { + "type": "string", + "nullable": true + }, + "secondSignatureDate": { + "type": "string", + "nullable": true + }, + "secondSignatureUser": { + "type": "string", + "nullable": true + }, + "originAccountNumber": { + "type": "string", + "nullable": true + }, + "originAccountName": { + "type": "string", + "nullable": true + }, + "destinationAccountNumber": { + "type": "string", + "nullable": true + }, + "destinationAccountName": { + "type": "string", + "nullable": true + }, + "currency": { + "type": "string", + "nullable": true + }, + "amount": { + "type": "string", + "nullable": true + }, + "exchangeRate": { + "type": "string", + "nullable": true + }, + "totalTransfer": { + "type": "string", + "nullable": true + }, + "currencyTotalTransfer": { + "type": "string", + "nullable": true + }, + "description": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + } + }, + "securitySchemes": { + "Bearer": { + "type": "apiKey", + "description": "Please enter 'Bearer' followed by a space and then your token.", + "name": "Authorization", + "in": "header" + } + } + }, + "security": [ + { + "Bearer": [ ] + } + ] +}