swagger: '2.0'
info:
title: "SIFCO_REST_API"
version: "1.0"
description: "La presente documentación busca detallar los métodos que permite ejecutar este **Web Services**, como es Registrar o Modificar las Referencias Bancarias de un cliente en la **Aplicación SIFCO WEB** ."
termsOfService: "https://sifco.org/sobre-nosotros/"
contact:
email: "soporte@sifco.org"
license:
name: "Apache 2.0"
url: "http://www.apache.org/licenses/LICENSE-2.0.html"
host: "<SERVER>"
schemes:
- https
- http
basePath: /<APPDIR>/rest
tags:
- name: "TClRefBancarias"
externalDocs:
description: "Manual SIFCO"
url: "https://sifco.atlassian.net/wiki/x/FADU"
produces:
- application/json
paths:
/TClRefBancarias/{ClCliCod}:
get:
tags:
- TClRefBancarias
operationId: "GetTClRefBancarias"
summary: "Consultar las Referencias Bancarias de un Cliente en el Sistema"
parameters:
- in: header
name: Content-Type
type: "string"
required: true
default: application/json
- in: header
name: Authorization
type: "string"
required: true
default: OAuth <Access Token>
- in: header
name: GENEXUS-AGENT
type: "string"
required: true
default: SmartDevice Application
- name: "ClCliCod"
in: "path"
description: "Código del Cliente"
required: true
type: "integer"
format: "int64"
responses:
200:
description: "Successful operation"
schema:
$ref: "#/definitions/TClRefBancarias"
400:
description: "Bad request"
schema:
$ref: "#/definitions/GxJsonError"
401:
description: "Not Authenticated"
schema:
$ref: "#/definitions/GxJsonError"
404:
description: "Data with the specified key could not be found"
schema:
$ref: "#/definitions/GxJsonError"
500:
description: "Internal server error"
schema:
$ref: "#/definitions/GxJsonError"
post:
tags:
- TClRefBancarias
operationId: "InsertTClRefBancarias"
summary: "Insertar las Referencias Bancarias de un Cliente en el Sistema"
parameters:
- in: header
name: Content-Type
type: "string"
required: true
default: application/json
- in: header
name: Authorization
type: "string"
required: true
default: OAuth <Access Token>
- in: header
name: GENEXUS-AGENT
type: "string"
required: true
default: SmartDevice Application
- name: "ClCliCod"
in: "path"
description: "Código del Cliente"
required: true
type: "integer"
format: "int64"
- name: "TClRefBancarias"
in: "body"
description: "SDT of TClRefBancarias"
required: false
schema:
$ref: "#/definitions/TClRefBancarias"
responses:
200:
description: "Successful operation"
schema:
$ref: "#/definitions/TClRefBancarias"
201:
description: "Created"
schema:
$ref: "#/definitions/TClRefBancarias"
400:
description: "Bad request"
schema:
$ref: "#/definitions/GxJsonError"
401:
description: "Not Authenticated"
schema:
$ref: "#/definitions/GxJsonError"
404:
description: "Data with the specified key could not be found"
schema:
$ref: "#/definitions/GxJsonError"
500:
description: "Internal server error"
schema:
$ref: "#/definitions/GxJsonError"
put:
tags:
- TClRefBancarias
operationId: "UpdateTClRefBancarias"
summary: "Actualizar las Referencias Bancarias de un Cliente en el Sistema"
parameters:
- in: header
name: Content-Type
type: "string"
required: true
default: application/json
- in: header
name: Authorization
type: "string"
required: true
default: OAuth <Access Token>
- in: header
name: GENEXUS-AGENT
type: "string"
required: true
default: SmartDevice Application
- name: "ClCliCod"
in: "path"
description: "Código del Cliente"
required: true
type: "integer"
format: "int64"
- name: "TClRefBancarias"
in: "body"
description: "SDT of TClRefBancarias"
required: true
schema:
$ref: "#/definitions/TClRefBancarias"
responses:
200:
description: "Successful operation"
schema:
$ref: "#/definitions/TClRefBancarias"
400:
description: "Bad request"
schema:
$ref: "#/definitions/GxJsonError"
401:
description: "Not Authenticated"
schema:
$ref: "#/definitions/GxJsonError"
404:
description: "Not found"
schema:
$ref: "#/definitions/GxJsonError"
409:
description: "TClRefBancarias was changed"
500:
description: "Internal server error"
schema:
$ref: "#/definitions/GxJsonError"
delete:
tags:
- TClRefBancarias
operationId: "DeleteTClRefBancarias"
summary: "Eliminar las Referencias Bancarias de un Cliente en el Sistema"
parameters:
- in: header
name: Content-Type
type: "string"
required: true
default: application/json
- in: header
name: Authorization
type: "string"
required: true
default: OAuth <Access Token>
- in: header
name: GENEXUS-AGENT
type: "string"
required: true
default: SmartDevice Application
- name: "ClCliCod"
in: "path"
description: "Código del Cliente"
required: true
type: "integer"
format: "int64"
responses:
200:
description: "Successful operation"
schema:
$ref: "#/definitions/TClRefBancarias"
204:
description: "Successful operation"
schema:
$ref: "#/definitions/TClRefBancarias"
400:
description: "Bad request"
schema:
$ref: "#/definitions/GxJsonError"
401:
description: "Not Authenticated"
schema:
$ref: "#/definitions/GxJsonError"
404:
description: "Not found"
schema:
$ref: "#/definitions/GxJsonError"
500:
description: "Internal server error"
schema:
$ref: "#/definitions/GxJsonError"
security:
- OAuth2: []
ApiKeyAuth1: []
securityDefinitions:
OAuth2:
type: oauth2
flow: password
tokenUrl: https://test.sifco.org/DemoCoopGT/oauth/access_token
scopes:
Execute: Permite el metodo tipo GET
Insert: Permite el metodo tipo POST
Update: Permite el metodo tipo PUT
Delete: Permite el metodo tipo DELETE
FullControl: Permite el manejo de los Cuatro Metodos GET, POST, PUT,DELETE, sobre el Web Service
ApiKeyAuth1:
type: apiKey
in: header
name: granttype
definitions:
TClRefBancarias:
properties:
ClCliCod:
description: Código del Cliente
type: "integer"
format: "int64"
ClNomSocio:
description: Nombre del Cliente
type: "string"
RefBanUlt:
description: Ultima Referencia Bancaria
type: "integer"
format: "int32"
gx_md5_hash:
description: gx_md5_hash is an identifier for a specific version of a resource, it is used for optimistic concurrency check. It is required for update and delete operations and ignored on insert.
type: "string"
Level1:
$ref: "#/definitions/TClRefBancarias.Level1Item"
required:
- ClCliCod
TClRefBancarias.Level1Item:
properties:
RefBanCor:
description: Referencia Bancaria
type: "integer"
format: "int32"
ApBanCod:
description: Codigo Banco
type: "integer"
format: "int32"
ApBanNombre:
description: Nombre
type: "string"
RefBanTCta:
description: Tipo de Cuenta
type: "integer"
format: "int32"
RefBanNCta:
description: Número de la Cuenta
type: "string"
RefBanEstatus:
description: Estatus de la Referencia Banca
type: "string"
required:
- RefBanCor
x-gx-level: "TClRefBancarias"
GxJsonError:
properties:
error:
$ref: "#/definitions/GxJsonError.error"
GxJsonError.error:
properties:
code:
description: Codigo de Error
type: "string"
message:
description: Mensaje de Error
type: "string"
x-gx-level: "GxJsonError" |