API Completadas

Este endpoint devuelve todas las ordenes completadas en una fecha especifica.

Create a new user

GET/https://{{merchant}}.pagoralia.com/api/conciliacion?fecha={{date}}&token={{token}}

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Body

Name
Type
Description

merchant

string

nombre del merchant

date

string

fecha especifica ej: AAAAMMDD

token

string

token único de autorización

Response

[
  {
    "creacion": "2024-02-03 23:27:10",
    "pagado": "2024-02-03 23:30:03",
    "cliente": "710-1",
    "refenre": "57770",
    "monto": 550,
    "medio": "Visa"
  },
  {
    "creacion": "2024-02-03 22:56:45",
    "pagado": "2024-02-03 23:00:04",
    "cliente": "1253-1",
    "refenre": "57760",
    "monto": 550,
    "medio": "Visa"
  },
  {
    "creacion": "2024-02-03 22:08:08",
    "pagado": "2024-02-04 15:55:15",
    "cliente": "309-1",
    "refenre": "57748",
    "monto": 550,
    "medio": "OXXO"
  }
  ]

Last updated