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

# View application

> Query acceptor application details and status using the acceptorApplications GraphQL query to review submitted data.

After creating an application, you can retrieve its details using the `acceptorApplications` query. This is useful for checking the current status, reviewing submitted data, or displaying application information to your users.

<Callout icon="clapperboard-play" color="#6938EF" type="scenario">
  **Scenario**

  A developer at Clearpath Payments wants to check the status of the submitted Maple Street Coffee application and review the details provided. They use the query to fetch the application by ID.
</Callout>

<Danger type="info">
  **Warning**

  If `accountStatus` returns ON\_HOLD , an error occurred during the boarding
  process. Please contact Tesouro support for assistance.
</Danger>

<RequestExample>
  ```graphql Operation lines theme={null}
  query AcceptorApplication($input: AcceptorApplicationInput!) {
    acceptorApplications(input: $input) {
      items {
        applicationStatus
        accountStatus
        acceptorId
        cardAcceptorId
      }
    }
  }
  ```

  ```json Variables lines theme={null}
  {
    "input": {
      "where": {
        "id": {
          "eq": "ba607ced-23c5-499b-bc6d-16d2480d2eab"
        }
      },
      "paging": {
        "skip": 0,
        "take": 1
      }
    }
  }
  ```
</RequestExample>

<ResponseExample>
  ```json Response lines theme={null}
  {
    "data": {
      "acceptorApplications": {
        "items": [
          {
            "applicationStatus": "APPROVED",
            "accountStatus": "ONBOARDED",
            "acceptorId": "df0de758-2aef-4ccb-8cd3-28069531f68f",
            "cardAcceptorId": "ca_456def"
          }
        ]
      }
    }
  }
  ```
</ResponseExample>
