Skip to main content

Using Propaga API to notify delivery

When the order is delivered to the client, you can notify Propaga via our API using the following call:
curl --request PUT \
  --url https://staging-api.propaga.io/v1/transaction/{transactionId} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "transactionAmount": 1234,
  "status": "delivery"
}'
If there is a change in the order amount at the time of delivery, the interest to be paid will be recalculated.
The customer will have 15 days to make their payment from the date of this notification.
A transaction can be notified as delivered only once.