> ## 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 default information by batch

> Gets default information for corner stores

<ResponseExample>
  ```json Response theme={null}
  {
      "paymentDefaults": [
          {
              "userId": "3b275b2f-3b40-4ff2-86ff-2499de0cdcfa",
              "paymentDefaultAmount": 200,
              "paymentDefaultCreatedDate": "2024-01-01T00:00:00Z",
              "paymentDefaultPaidDate": "2024-01-01T00:00:00Z",
              "externalId": "12345"
          }
      ],
      "totalPages": 1,
      "totalElements": 1,
      "last": true,
      "first": true
  }
  ```
</ResponseExample>

## Body

<ParamField query="page" type="string" default="1" required>
  Page number
</ParamField>

## Response

<ResponseField name="cornerStores" type="array">
  <Expandable title="Corner store properties">
    <ParamField body="userId" type="string">
      Propaga's user id
    </ParamField>

    <ParamField body="paymentDefaultAmount" type="number">
      Default amount
    </ParamField>

    <ParamField body="paymentDefaultCreatedDate" type="string">
      Date when the default was created
    </ParamField>

    <ParamField body="paymentDefaultPaidDate" type="string">
      Date when the default was paid
    </ParamField>

    <ParamField body="externalId" type="string">
      Wholesaler's customer ID
    </ParamField>
  </Expandable>
</ResponseField>

<ResponseField name="totalPages" type="number">
  Total number of pages
</ResponseField>

<ResponseField name="totalElements" type="number">
  Total number of elements
</ResponseField>

<ResponseField name="last" type="boolean">
  Indicates if it is the last page
</ResponseField>

<ResponseField name="first" type="boolean">
  Indicates if it is the first page
</ResponseField>
