API / Resource
Use case / Master data sync
Patch Resource
Partially update an existing resource.
patch/v1/resources/resource/{resource_id}
Path parameters
resource_idstring uuid required
Request body
Example request
{
"locale": "en",
"integrations": {
"addsecure1234": {
"active": true,
"object_id": "1234"
}
},
"driver": {
"date_of_birth": "2025-04-10",
"phone_number": "+32412345678"
}
}Response
Successful Response
Example response
{
"locale": "en",
"integrations": {
"addsecure1234": {
"active": true,
"object_id": "1234"
}
},
"billing_entity": {
"legal_name": "Qargo BV",
"vat_number": "NL123456789B01",
"code": "QARGO",
"company_registration_number": "12345678"
},
"is_external_resource": true,
"driver": {
"date_of_birth": "2025-04-10",
"phone_number": "+32412345678"
}
}