APIs para descargar reportes TXT
Obtener reportes
Recurso para obtener los reportes disponibles de un comercio.
GET
https://gateway.increase.app/card/v2/reports
Headers
Content-Type: application/json
Authorization: <access_token>
Tenant: <país>
Parámetro | Tipo | Descripción |
---|---|---|
created_at_from | String con formato ISO 8601 como timestamp | Fecha de creación "desde" en Increase . Se ordena de más nuevo a más viejo. Ejemplo: 2019-03-15T14:47:10-03:00 |
created_at_to | String con formato ISO 8601 como timestamp | Fecha de creación en Increase hasta. Se ordena de más reciente a más viejo. |
curl --include \
--header "Content-Type: application/json" \
--header "Tenant: argentina" \
--header "X-Auth-Token: <tu_access_token>" \
'https://gateway.increase.app/card/v2/reports'
Success response
{
"data": [
{
"id": "7ca36c6d-a6dd-47b6-8e80-9239eceeae10",
"filename": "2019/12/04 12:30 - Liquidaciones detalladas - 02/12/2019 - 02/12/2019.txt",
"type": "Reports::DetailedPayment",
"status": "finished",
"created_at": "2019-12-04T12:30:08-03:00",
"last_download_at": "2019-12-04T12:30:11-03:00"
},
{
"id": "0f4f9457-fea4-435a-9bc2-b3063b27603c",
"filename": "2019/12/03 13:33 - Transacciones - 02/12/2019 - 02/12/2019.txt",
"type": "Reports::Transaction",
"status": "finished",
"created_at": "2019-12-03T13:33:26-03:00",
"last_download_at": "2019-12-03T13:34:08-03:00"
}
]
}
Descargar reporte
Recurso para descargar un reporte disponible de un comercio.
GET
https://gateway.increase.app/card/v2/reports/<id>/download_link
Headers
Content-Type: application/json
Authorization: <access_token>
Tenant: <país>
curl --include \
--header "Content-Type: application/json" \
--header "Tenant: argentina" \
--header "X-Auth-Token: <tu_access_token>" \
'https://gateway.increase.app/card/v2/reports'
Parámetro obligatorio | Tipo | Descripción |
---|---|---|
ID | Integer | Id del reporte que quieres descargar. Ejemplo: 7ca36c6d-a6dd-47b6-8e80-9239eceeae10 |
Success response
{
"download_link": "link"
}