Update the organization's address

PUT /organization/address

Body

Business address of your company. It is used for various administrative purposes within Canopy. For example, it appears on borrowers' PDF statements.

Responses

  • 200 object

    Successfully updated organization address

PUT /organization/address
curl \
 -X PUT https://<your_environment_name>-uat-api.canopyservicing.com/organization/address \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"address_line_one":"12 Strawberry Road","address_line_two":"Suite 101","address_city":"Atlanta","address_state":"GA","address_zip":"99999-1000","address_name":"Disneyland"}'
Request example
{
  "address_line_one": "12 Strawberry Road",
  "address_line_two": "Suite 101",
  "address_city": "Atlanta",
  "address_state": "GA",
  "address_zip": "99999-1000",
  "address_name": "Disneyland"
}
Response example (200)
{
  "message": "string"
}