When creating customers to the endpoint below, it sometimes shows the customer with the checkbox "Skicka fakturor per e-post" (Send Invoices By Email in English UI I assume?). https://integration.visma.net/API/controller/api/v1/customer The JSON sent in the request looks somethine like below, the "sendInvoicesByEmail" is hardcoded to true in all cases. It seems random when the checkbox is selected or not. {
"name":{
"value":"Name Namesson"
},
"corporateId":{
"value":"20000101-1234"
},
"mainAddress":{
"value":{
"addressLine1":{
"value":"c/o Name Namesson"
},
"addressLine2":{
"value":"Street 123"
},
"postalCode":{
"value":"12345"
},
"city":{
"value":"City"
},
"countryId":{
"value":"se"
}
}
},
"mainContact":{
"value":{
"name":{
"value":"Name Namesson"
},
"email":{
"value":"name.namesson@email.se"
},
"phone_1":{
"value":"070-123 45 67"
}
}
},
"invoiceAddress":{
"value":{
"addressLine1":{
"value":"c/o Name Namesson"
},
"addressLine2":{
"value":"Street 123"
},
"postalCode":{
"value":"12345"
},
"city":{
"value":"City"
},
"countryId":{
"value":"se"
}
}
},
"invoiceContact":{
"value":{
"name":{
"value":"Name Namesson"
},
"email":{
"value":"name.namesson@email.se"
},
"phone_1":{
"value":"070-123 45 67"
}
}
},
"deliveryAddress":{
"value":{
"addressLine1":{
"value":"Name Namesson"
},
"addressLine2":{
"value":"Street 123"
},
"postalCode":{
"value":"12345"
},
"city":{
"value":"City"
},
"countryId":{
"value":"se"
}
}
},
"deliveryContact":{
"value":{
"addressLine1":{
"value":"c/o Name Namesson"
},
"addressLine2":{
"value":"Street 123"
},
"postalCode":{
"value":"12345"
},
"city":{
"value":"City"
},
"countryId":{
"value":"se"
}
}
},
"location":{
"countryId":"se"
},
"currencyId":{
"value":"SEK"
},
"sendInvoicesByEmail":{
"value":true
},
"attributeLines":[
{
"attributeId":{
"value":"AR100"
},
"attributeValue":{
"value":"name.namesson@email.se"
}
},
{
"attributeId":{
"value":"AR101"
},
"attributeValue":{
"value":"name2.namesson2@email.se"
}
}
]
} Examples in the UI: https://pasteboard.co/ZW7h5OUBO7Q9.png https://pasteboard.co/HYFU7u8JQ5qj.png
... View more