Class UpdateMerchantAddressRequest
If an element is left BLANK, the existing value in SmartPay will be overwritten with an empty or blank value.
Properties
| Field/Tag Name | Value | Required | Notes |
|---|---|---|---|
| custServProviderId | Y | Partner Id | |
| entity_id | Y | Merchant Id | |
| request_email | Y | Registered at ProfitStars; email format | |
| address_1 | Y | ||
| address_2 | N | ||
| city | Y | ||
| state_or_region | Y | USPS state abbreviations for US and Canada. Format is XX. | |
| postal_code | Y | ||
| business_phone | Y | ||
| business_phone_ext | N | ||
| business_fax | N | ||
| customer_service_phone | Y | ||
| customer_service_phone_ext | N | ||
| customer_service_email | N | ||
| subject | N | text(255) | |
| description | N | text (long) | |
| case_reason | Update Business Information | N |
Example UpdateMerchantAddressRequest
Input Method: XML
<xml>
<custServProviderId>######</custServProviderId>
<entity_id>######</entity_id>
<request_email>none@example.com</request_email>
<address_1>123 Main</address_1>
<address_2></address_2>
<city>Dallas</city>
<state_or_region>TX</state_or_region>
<postal_code>75021</postal_code>
<business_phone>123-456-7899</business_phone>
<business_phone_ext></business_phone_ext>
<business_fax></business_fax>
<customer_service_phone>123-456-7899</customer_service_phone>
<customer_service_phone_ext></customer_service_phone_ext>
<customer_service_email></customer_service_email>
<subject></subject>
<description></description>
<case_reason></case_reason>
</xml>
Input Method: JSON
{
"custServProviderId": "######",
"entity_id": "######",
"request_email": "none@example.com",
"address_1": "123 Main",
"address_2": "",
"city": "Dallas",
"state_or_region": "TX",
"postal_code": "75201",
"business_phone": "123-456-7899",
"business_phone_ext": "",
"business_fax": "",
"customer_service_phone": "123-456-7899",
"customer_service_phone_ext": "",
"customer_service_email": "",
"case_reason": "",
"subject": "",
"description": ""
}