Individual accounts

Our CRM handles accounts corresponding to a single contact, typically private individuals that are their own billable entities.

In order to mark a specific Account as individual:

  1. Ensure you created an Account
  2. Ensure you created a single Contact for this Account
  3. Execute the following mutation that marks the Account as "Individual":

Example

mutation {
  account{
    makeIndividual(input:{
      accountId:"T3JnYW5pc2F0aW9uOjE="
    }) {
      account{
        isIndividual
      }
      errors{
        label
        message 
        value
      }
    }
  }
}

The isIndividual field in the return value will be true.