curl --request PUT \ --url https://api-staging.luladelivery.store/stores/company/{company_id}
Copy
{ "success": true}
Companies
Update Company
This endpoint updates an existing company’s information in the system. You can modify any company details including business information, contact details, address, and operational status. All fields are optional - only provide the fields you want to update.
PUT
https://api-staging.luladelivery.store
/
stores
/
company
/
{company_id}
Update Company
Copy
curl --request PUT \ --url https://api-staging.luladelivery.store/stores/company/{company_id}
Copy
{ "success": true}
This endpoint allows you to update any aspect of a company’s information. You only need to include the fields you want to modify in the request body. The system will update only the provided fields while keeping other information unchanged.
Partial Updates: You can update individual fields without affecting others. For example, to only update the company name, send just {"name": "New Company Name"}.
Address Updates: When updating address information, you can update individual address fields without providing the complete address object.
Status Changes: Be careful when changing company status, as it may affect:
Store operations and availability
Order processing capabilities
Integration with third-party services
Billing and subscription status
Validation: The system will validate all provided fields according to the same rules used during company creation. Invalid data will result in an error response.