Skip to main content

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.

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.
ScenarioA 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.
WarningIf accountStatus returns ON_HOLD , an error occurred during the boarding process. Please contact Tesouro support for assistance.
query AcceptorApplication($input: AcceptorApplicationInput!) {
  acceptorApplications(input: $input) {
    items {
      applicationStatus
      accountStatus
      acceptorId
      cardAcceptorId
    }
  }
}
{
  "data": {
    "acceptorApplications": {
      "items": [
        {
          "applicationStatus": "APPROVED",
          "accountStatus": "ONBOARDED",
          "acceptorId": "df0de758-2aef-4ccb-8cd3-28069531f68f",
          "cardAcceptorId": "ca_456def"
        }
      ]
    }
  }
}