Yes, here is the question I need to set customerNo not on the Visma side. Also, I need to set orderNo using order_create API. But Visma doesn't provide this possibility, although based on the API it should be possible. As an example making: mutation UseCompany {
useCompany(no: 132456) {
associate_create(values: { name: "Some name", customerNo: 12600 }) {
items {
associateNo
name
}
}
}
} I get: Error: Field value can only be allocated automatically, in accordance to choice in Company data..
... View more