Requires write_taxes access scope. Also: The caller must be a tax calculations app.

Allows tax app configurations for tax partners.


Configures whether the tax app is correctly configured and ready to be used.


Was this section helpful?

The updated tax app configuration.

The list of errors that occurred from executing the mutation.


Was this section helpful?
Hide code
Mutation reference
Copy
mutation taxAppConfigure($ready: Boolean!) {
  taxAppConfigure(ready: $ready) {
    taxAppConfiguration {
      # TaxAppConfiguration fields
    }
    userErrors {
      field
      message
    }
  }
}
Hide code
Input
Copy
{
  "ready": true
}