Update the organization's address
Body
Business address of your company. It is used for various administrative purposes within Canopy. For example, it appears on borrowers' PDF statements.
-
address_line_one
string Required Address line one.
-
address_line_two
string Address line two.
-
address_city
string Address city.
-
address_state
string Address state.
-
address_zip
string Required Reporter address, five digit zipcode or nine digit 'ZIP+4'.
-
address_name
string Address name
PUT
/organization/address
curl \
-X PUT https://sandbox-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"
}
Request examples
{
"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 examples (200)
{
"message": "string"
}
Response examples (200)
{
"message": "string"
}