Patching Entities
Edit Data of the Entity (Company) via API
Updating Entity information: through the PATCH endpoint
To easily update a variety of properties pertaining to your entities, you can use our PATCH endpoint. The sent data will simply be a collection of the properties you wish to update and their new value.
PATCH Existing Entities Endpoint Details
- HTTP Method: PATCH
- Endpoint:
/v1/einvoices/registrations/{registrationID}
- Body:
{ "CompanyName": "Tech Corp", "CommercialName": "Tech Corp", "TaxDeductable": null, "TaxLiable": false, "IBAN": "BE1234567890", "BIC": "BBRUBEBB", "Mobile": "+320499999999", "Phone": "3224609999", "Email": "[email protected]", "ContactFirstName": "Jane", "ContactLastName": "Doe", "Language": "EN", "Street": "Tech street", "StreetNumber": "2", "Box": "Floor 2", "Zipcode": "1000", "City": "Tech City", "CountryCode": "BE" }
The body of your request may contain 1 or many properties that you wish to patch for the given entity. Only the properties mentioned in the body can be patched.
If other data need to be modified, this can be done in the MyBillit user interface by the partner.
Updated about 15 hours ago