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.

Once you’ve identified the appropriate billing profile, you can add it to your acceptor application using the createAcceptorApplication mutation. Include the billingProfileId in your application input.
ScenarioAfter reviewing the available billing profiles, a developer at Clearpath Payments selects the “Standard Processing” profile that offers competitive rates for Maple Street Coffee’s expected transaction volume. They add this to the application during the creation process.
mutation AcceptorApplicationCreate($input: AcceptorApplicationCreateInput!) {
  createAcceptorApplication(input: $input) {
    acceptorApplication {
      id
      applicationStatus
      billingProfile {
        billingProfileId
        name
      }
    }
  }
}
{
  "data": {
    "createAcceptorApplication": {
      "acceptorApplication": {
        "id": "60c66576-0caf-4dd1-8c66-fccae049f0fd",
        "applicationStatus": "CREATED",
        "billingProfile": {
          "billingProfileId": "bda72262-0efd-4a24-91de-26e2dcd0c576",
          "name": "Standard Interchange Plus"
        }
      }
    }
  }
}