Skip to content

Conciliation

Allows to obtain reconciliations in payku.

Base URL: https://app.payku.cl/ (Default server) · https://des.payku.cl/ (Sandbox server)
POST/api/conciliation

Allows you to obtain bank reconciliations of the money generated by your account and deposited by payku in the days corresponding to your payment.

Request body

ParameterTypeDescription
date_initrequired string

Start date range:

  • Cannot be greater than the current date.
  • It cannot be greater than the end date.
  • The range of the start date and end date must not be greater than 30 days.
Example: 2022-10-20
date_endrequired string

End date range:

  • Cannot be greater than the current date.
  • Cannot be less than the start date.
  • The range of the start date and end date must not be greater than 30 days.
Example: 2022-10-21
Ventana de terminal
curl -X POST \
https://BASE-URL/api/conciliation \
-H 'Accept: application/json, text/plain, */*' \
-H 'Authorization: Bearer PUBLIC-TOKEN' \
-H 'Content-Type: application/json' \
-H 'Host: BASE-URL' \
-d '{
"date_init": "2022-10-20",
"date_end": "2022-10-21"
}'

Responses

200
{
"conciliation": [
{
"id": "107999",
"created_at": "2019-10-25 14:10:03",
"amount_available": 98745,
"amount_deposit": 0,
"status": "pending",
"destiny": "wallet",
"currency": "CLP",
"wallet": null,
"transaction": [
{
"transaction_id": "rsyt68j4dhg6k8j54ut698dt6hj84",
"payment_key": "pra934939d607922f9e",
"order": "6544",
"start": "2020-12-16 15:10:33",
"end": "2020-12-16 15:10:36",
"deposit_date": "2022-10-05",
"amount": 250000,
"fee": 15000,
"amount_deposit": 235000,
"media": "Webpay"
}
]
}
]
}
Response fields
ParameterTypeDescription
conciliation array of objects
id string

Conciliation identifier created by Payku.

Example: 107999
created_at string

Registration date.

Example: 2019-10-25 14:10:03
amount_available int

Amount available.

Example: 98745
amount_deposit int

Amount deposited.

Example: 0
status string

Conciliation status. The possible statuses you can get are as follows:

  • pending
  • paid_out
  • deteined
  • returned
Example: pending
destiny string

Destination of the liquidation.

Example: wallet
currency string

Currency.

Example: CLP
wallet string

Digital wallet payku.

transaction array of objects
transaction_id string

Transaction identifier created by Payku.

Example: rsyt68j4dhg6k8j54ut698dt6hj84
payment_key string

Identifier of payment created by Payku.

Example: pra934939d607922f9e
order string

Order identifier.

Example: 6544
start string

Start of the transaction.

Example: 2020-12-16 15:10:33
end string

End of transaction.

Example: 2020-12-16 15:10:36
deposit_date string

Date on which the deposit will be made to the client.

Example: 2022-10-05
amount string

Monto de la transacción.

Example: 250000
fee string

Comisión general.

Example: 15000
amount_deposit int

Customer deposit amount.

Example: 235000
media string

payment method, used by the user.

Example: Webpay