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, Ben selects the “Standard
Processing” profile that offers competitive rates for his expected transaction
volume. He adds this to his application during the creation process.
Copy
Ask AI
mutation AcceptorApplicationCreate($input: AcceptorApplicationCreateInput!) { createAcceptorApplication(input: $input) { acceptorApplication { id applicationStatus billingProfile { billingProfileId name } } }}