v1
latestOpenAPI 3.0.02026-07-2494288373.8 KBCompanies
Update a company
Updates the company with the given ID.
patch/v1/companies/{id}
Path parameters
idstring uuid required
Id of the company
Request body
Example request
{
"banking_information": {
"iban": "FR7630006000011234567890189",
"bic": "AGRIFRPPXXX"
},
"custom_properties": {
"custom_text": "Custom properties text",
"custom_boolean": true,
"custom_date": "2012-12-12",
"custom_countries": [
"FR"
],
"custom_choices": [
"option1",
"option2"
],
"custom_numeric": 12.3,
"custom_property": null
}
}Response
Returns information of the updated company
ℹ️ Click to see full payload
Example response
{
"banking_information": {
"iban": "FR7630006000011234567890189",
"bic": "AGRIFRPPXXX"
},
"custom_properties": {
"custom_text": "Custom properties text",
"custom_boolean": true,
"custom_date": "2012-12-12",
"custom_countries": [
"FR"
],
"custom_choices": [
"option1",
"option2"
],
"custom_numeric": 12.3,
"custom_property": null
}
}