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

# Create a weblink to view the Pages of a Dispute Document

This call returns one link per document page in order to consult them. These links are available for 10 minutes.

### Path parameters

<ParamField path="DisputeDocumentId" type="string">
  The unique identifier of the dispute document.
</ParamField>

### Responses

<AccordionGroup>
  <Accordion title="200">
    <ResponseField name="Array (Dispute Document Pages)" type="array">
      The list of Dispute Document Pages created by the platform.

      <Expandable title="properties">
        <ResponseField name="Object (Page)" type="object">
          The dispute document page created by the platform.
        </ResponseField>
      </Expandable>
    </ResponseField>
  </Accordion>
</AccordionGroup>

<ResponseExample>
  ```json 200 theme={null}
  [
      {
          "Url": "https://api.sandbox.mangopay.com/public/documents/c2a145/consult/L0D3y1QRad0Oos6rYlkG0Q59VG",
          "ExpirationDate": 1673362529
      },
      {
          "Url": "https://api.sandbox.mangopay.com/public/documents/c2a145/consult/DB8MOWLgP21jMIe6VKGGP9EMyA",
          "ExpirationDate": 1673362529
      }
  ]  

  ```
</ResponseExample>
