API Reference

Update a company applying for a Paintbrush Loan.

This endpoint allows you to update information on a company you have previously created using the ID Paintbrush provided to you for that company.

You can send only the fields you want to update; sending a null value will not delete any information on the user.

If a user has updated information on the company themselves within the Paintbrush Loan application, the information provided by the partner will be disregarded. For example, if a user has added the company's address at 124 Conch Street, Bikini Bottom, Pacific Ocean, and you send an update saying that the company's address is in the Atlantic Ocean, Paintbrush will give a 200 response to acknowledge the receipt of the information but ignore this data in favor of the user's own data.

Sample request

{
  "name": null,
  "DBA": null,
  "industry": null,
  "description": null,
  "email": null,
  "phone": null,
  "address1": null,
  "address2": null,
  "city": null,
  "state": null,
  "zip": null,
  "ein": "123456789",
  "type": "LLC",
  "unpaidDebt": {
    "existingDebt": true,
    "amount": 9388.53,
    "verified": true
  }
}
Language