Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
swagger
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
external
swagger
Commits
17d6eb53
Commit
17d6eb53
authored
Mar 07, 2019
by
Edwin Ferreira
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update credito-tarjeta.json
parent
d405f103
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
167 additions
and
2 deletions
+167
-2
credito-tarjeta.json
apigee/credito-tarjeta.json
+167
-2
No files found.
apigee/credito-tarjeta.json
View file @
17d6eb53
...
@@ -91,7 +91,61 @@
...
@@ -91,7 +91,61 @@
}
}
]
]
}
}
},
"/v1/credito/bolsillos/movimiento"
:
{
"get"
:
{
"tags"
:
[
"cols-credito-bolsillo"
],
"summary"
:
"Consulta de movimiento"
,
"description"
:
"Obtener informacion de los movimientos"
,
"operationId"
:
"obtenerMovimiento"
,
"parameters"
:
[
{
"name"
:
"numTarjeta"
,
"in"
:
"query"
,
"description"
:
"Numero de la tarjeta de credito."
,
"required"
:
true
,
"schema"
:
{
"type"
:
"string"
}
},
{
"name"
:
"codBolsillo"
,
"in"
:
"query"
,
"description"
:
"Codigo del bolsillo."
,
"required"
:
true
,
"schema"
:
{
"type"
:
"string"
}
}
],
"responses"
:
{
"200"
:
{
"description"
:
"Operación exitosa"
,
"content"
:
{
"application/json"
:
{
"schema"
:
{
"$ref"
:
"#/components/schemas/obtenerMovimientoResponse"
}
}
}
},
"400"
:
{
"description"
:
"Estado inválido"
}
},
"security"
:
[
{
"apigee_auth"
:
[
"write:apigee"
,
"read:apigee"
]
}
]
}
}
}
},
},
"externalDocs"
:
{
"externalDocs"
:
{
"description"
:
"Encontrar más información en EnterpriseArchitect"
,
"description"
:
"Encontrar más información en EnterpriseArchitect"
,
...
@@ -119,11 +173,11 @@
...
@@ -119,11 +173,11 @@
"type"
:
"object"
,
"type"
:
"object"
,
"properties"
:
{
"properties"
:
{
"tipo"
:
{
"tipo"
:
{
"type"
:
"
number
"
,
"type"
:
"
string
"
,
"description"
:
"Tipo de tarjeta"
"description"
:
"Tipo de tarjeta"
},
},
"numero"
:
{
"numero"
:
{
"type"
:
"
number
"
,
"type"
:
"
string
"
,
"description"
:
"Numero de tarjeta"
"description"
:
"Numero de tarjeta"
},
},
"activacion"
:
{
"activacion"
:
{
...
@@ -184,6 +238,117 @@
...
@@ -184,6 +238,117 @@
}
}
}
}
}
}
},
"movimiento"
:
{
"type"
:
"object"
,
"properties"
:
{
"tipo"
:
{
"type"
:
"string"
,
"description"
:
"Tipo de movimiento."
},
"codigo"
:
{
"type"
:
"string"
,
"description"
:
"Codigo de movimiento."
}
},
"xml"
:
{
"name"
:
"movimiento"
}
},
"plazo"
:
{
"type"
:
"object"
,
"properties"
:
{
"pendiente"
:
{
"type"
:
"string"
,
"description"
:
"Plazo pendiente."
}
},
"xml"
:
{
"name"
:
"plazo"
}
},
"transaccion"
:
{
"type"
:
"object"
,
"properties"
:
{
"valor"
:
{
"type"
:
"string"
,
"description"
:
"Valor de transaccion."
},
"fecha"
:
{
"type"
:
"string"
,
"description"
:
"Fecha de transaccion."
},
"vencimiento"
:
{
"type"
:
"string"
,
"description"
:
"Plazo de transaccion."
}
},
"xml"
:
{
"name"
:
"transaccion"
}
},
"movimientoBolsillo"
:
{
"type"
:
"object"
,
"properties"
:
{
"tarjeta"
:
{
"$ref"
:
"#/components/schemas/tarjeta"
},
"movimiento"
:
{
"$ref"
:
"#/components/schemas/movimiento"
},
"plazo"
:
{
"$ref"
:
"#/components/schemas/plazo"
},
"transaccion"
:
{
"$ref"
:
"#/components/schemas/transaccion"
},
"oficina"
:
{
"type"
:
"string"
,
"description"
:
"Oficina."
},
"establecimiento"
:
{
"type"
:
"string"
,
"description"
:
"Establecimiento."
},
"idAmparador"
:
{
"type"
:
"string"
,
"description"
:
"Id amparador."
},
"saldoPendiente"
:
{
"type"
:
"string"
,
"description"
:
"Saldo pendiente."
},
"tasaInteres"
:
{
"type"
:
"string"
,
"description"
:
"Tasa de interes."
}
},
"xml"
:
{
"name"
:
"obtenerMovimiento"
}
},
"obtenerMovimientoResponse"
:
{
"type"
:
"object"
,
"required"
:
[
"resultado"
],
"properties"
:
{
"resultado"
:
{
"type"
:
"array"
,
"xml"
:
{
"name"
:
"resultado"
},
"items"
:
{
"$ref"
:
"#/components/schemas/resultado"
}
},
"movimientoBolsillo"
:
{
"type"
:
"array"
,
"items"
:
{
"$ref"
:
"#/components/schemas/movimientoBolsillo"
}
}
}
}
}
},
},
"requestBodies"
:
{},
"requestBodies"
:
{},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment