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
22cb08ef
Commit
22cb08ef
authored
May 10, 2019
by
Cristian_Camargo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Agragados 3 nuevos servicios
parent
9bd890a8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
210 additions
and
0 deletions
+210
-0
credito-tarjeta.json
apigee/credito-tarjeta.json
+210
-0
No files found.
apigee/credito-tarjeta.json
View file @
22cb08ef
...
...
@@ -457,6 +457,123 @@
]
}
},
"/v2/credito/bolsillos/abono/debito"
:
{
"get"
:
{
"tags"
:
[
"cols-credito-bolsillo"
],
"summary"
:
"Consulta pago en abono de la tarjeta débito."
,
"description"
:
"Consulta pago en abono de la tarjeta débito."
,
"operationId"
:
"abonoDebito"
,
"parameters"
:
[
{
"name"
:
"numTarjeta"
,
"in"
:
"query"
,
"description"
:
"Numero de la tarjeta del cliente."
,
"required"
:
true
,
"schema"
:
{
"type"
:
"number"
}
},
{
"name"
:
"codBolsillo"
,
"in"
:
"query"
,
"description"
:
"Codigo de bolsillo."
,
"required"
:
true
,
"schema"
:
{
"type"
:
"string"
}
}
],
"responses"
:
{
"200"
:
{
"description"
:
"Operación exitosa"
,
"content"
:
{
"application/json"
:
{
"schema"
:
{
"$ref"
:
"#/components/schemas/consultaAbonoDebitoResponse"
}
}
}
},
"400"
:
{
"description"
:
"Estado inválido"
}
},
"security"
:
[
{
"apigee_auth"
:
[
"write:apigee"
,
"read:apigee"
]
}
]
}
},
"/v2/credito/bolsillos/saldo/debito"
:
{
"get"
:
{
"tags"
:
[
"cols-credito-bolsillo"
],
"summary"
:
"Saldo de la tarjeta débito."
,
"description"
:
"Saldo de la tarjeta débito."
,
"operationId"
:
"saldoDebito"
,
"parameters"
:
[
{
"name"
:
"tipoId"
,
"in"
:
"query"
,
"description"
:
"Tipo Documento."
,
"required"
:
true
,
"schema"
:
{
"type"
:
"number"
}
},
{
"name"
:
"numId"
,
"in"
:
"query"
,
"description"
:
"Número de documento."
,
"required"
:
true
,
"schema"
:
{
"type"
:
"number"
}
},
{
"name"
:
"codBolsillo"
,
"in"
:
"query"
,
"description"
:
"Codigo de bolsillo."
,
"required"
:
true
,
"schema"
:
{
"type"
:
"string"
}
}
],
"responses"
:
{
"200"
:
{
"description"
:
"Operación exitosa"
,
"content"
:
{
"application/json"
:
{
"schema"
:
{
"$ref"
:
"#/components/schemas/consultaSaldoDebitoResponse"
}
}
}
},
"400"
:
{
"description"
:
"Estado inválido"
}
},
"security"
:
[
{
"apigee_auth"
:
[
"write:apigee"
,
"read:apigee"
]
}
]
}
}
},
"externalDocs"
:
{
"description"
:
"Encontrar más información en EnterpriseArchitect"
,
...
...
@@ -703,12 +820,32 @@
},
"mora"
:
{
"$ref"
:
"#/components/schemas/mora"
},
"abono"
:
{
"$ref"
:
"#/components/schemas/abono"
}
},
"xml"
:
{
"name"
:
"tarjetaCompleto"
}
},
"abono"
:
{
"type"
:
"object"
,
"properties"
:
{
"valor"
:
{
"type"
:
"string"
,
"description"
:
"Valor del abono"
},
"fecha"
:
{
"type"
:
"string"
,
"format"
:
"date-time"
,
"description"
:
"Fecha del abono"
}
},
"xml"
:
{
"name"
:
"abono"
}
},
"tarjeta"
:
{
"type"
:
"object"
,
"properties"
:
{
...
...
@@ -1141,6 +1278,43 @@
"name"
:
"consultaPagoBolsillo"
}
},
"consultaSaldoDebitoResponse"
:
{
"type"
:
"object"
,
"required"
:
[
"resultado"
],
"properties"
:
{
"resultado"
:
{
"type"
:
"array"
,
"xml"
:
{
"name"
:
"resultado"
},
"items"
:
{
"$ref"
:
"#/components/schemas/resultado"
}
},
"consultaSaldoDebito"
:
{
"type"
:
"array"
,
"items"
:
{
"$ref"
:
"#/components/schemas/SaldoDebito"
}
}
}
},
"SaldoDebito"
:{
"type"
:
"object"
,
"properties"
:{
"fecha"
:
{
"type"
:
"string"
,
"format"
:
"date-time"
,
"description"
:
"Fecha actual."
},
"tarjeta"
:{
"$ref"
:
"#/components/schemas/tarjetaCompleto"
}
}
},
"consultaPagoBolsilloResponse"
:
{
"type"
:
"object"
,
"required"
:
[
...
...
@@ -1164,6 +1338,42 @@
}
}
},
"consultaAbonoDebitoResponse"
:
{
"type"
:
"object"
,
"required"
:
[
"resultado"
],
"properties"
:
{
"resultado"
:
{
"type"
:
"array"
,
"xml"
:
{
"name"
:
"resultado"
},
"items"
:
{
"$ref"
:
"#/components/schemas/resultado"
}
},
"bolsilloDebito"
:
{
"type"
:
"array"
,
"items"
:
{
"$ref"
:
"#/components/schemas/abonoBolsillo"
}
}
}
},
"abonoBolsillo"
:
{
"type"
:
"object"
,
"properties"
:
{
"establecimiento"
:{
"type"
:
"string"
,
"description"
:
"Establecimiento"
},
"tatjeta"
:{
"$ref"
:
"#/components/schemas/tarjetaCompleto"
}
}
},
"consultaPagoBolsilloDebitoResponse"
:
{
"type"
:
"object"
,
"required"
:
[
...
...
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