> ## Documentation Index
> Fetch the complete documentation index at: https://docs.propaga.mx/llms.txt
> Use this file to discover all available pages before exploring further.

# Notify delivery

> How can you notify if the transaction was deliveried?

# 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:

```jsx theme={null}
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"
}'
```

<Note>
  If there is a change in the order amount at the time of delivery, the interest to be paid will be recalculated.
</Note>

<Note>
  The customer will have 15 days to make their payment from the date of this notification.
</Note>

<Warning>
  A transaction can be notified as delivered only once.
</Warning>
