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

# Get transactions pending to notify delivery or cancellation

> Gets a list of transactions pending to notify delivery or cancellation

<RequestExample>
  ```bash Request theme={null}
  curl 
  --location  
  --request GET 'https://staging-api.propaga.io/v1/transaction/pending' \
  --header 'Authorization: <your_awesome_token>'
  --header 'Content-Type: application/json'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
      "transactions": [
          {
              "id": "420a82ce-fe69-4d26-92d5-8b914e433ad5",
              "cornerStoreId": "aaff0a3c-df63-4ed8-bf0c-2b4f06be3580",
              "wholesalerTransactionId": "1234567890",
              "totalAmount": 123,
              "interests": 12,
              "IVAAmount": 10,
              "totalAmountWithInterests": 145,
              "movementDate": "2025-01-01T17:46:57.465Z",
              "deliveryDate": "2025-01-01T19:00:00.000Z"
          }
      ]
  }
  ```
</ResponseExample>

## Response

<ResponseField name="transactionId" type="string">
  Propaga's transaction id
</ResponseField>

<ResponseField name="cornerStoreId" type="string">
  Propaga's corner store id
</ResponseField>

<ResponseField name="wholesalerTransactionId" type="string">
  Wholesaler's transaction ID
</ResponseField>

<ResponseField name="totalAmount" type="number">
  Total amount of the transaction
</ResponseField>

<ResponseField name="interests" type="number">
  Interests amount
</ResponseField>

<ResponseField name="IVAAmount" type="number">
  IVA amount
</ResponseField>

<ResponseField name="totalAmountWithInterests" type="number">
  Total amount with interests
</ResponseField>

<ResponseField name="movementDate" type="string">
  Date and time of the creation of the transaction
</ResponseField>

<ResponseField name="deliveryDate" type="string">
  Estimated date of delivery
</ResponseField>
