UpdateMerchantAddress
- Method
- ExampleRequest
- ExampleResponse
UpdateMerchantAddress(UpdateMerchantAddressRequest)
Parameters
| TYPE | NAME | DESCRIPTION |
|---|---|---|
| UpdateMerchantAddressRequest | request |
Returns
| TYPE | DESCRIPTION |
|---|---|
| UpdateMerchantAddressResponse |
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": ""
}
Example UpdateMerchantAddressResponse
Response: XML
<UpdateMerchantAddressResponse>
<Success>true</Success>
<CaseNumber>01069730</CaseNumber>
<UpdateStatus>Address successfully updated.</UpdateStatus>
</UpdateMerchantAddressResponse>
Response: JSON
{
"Success": "true",
"CaseNumber": "01069731",
"UpdateStatus": "Address successfully updated."
}