Class AddContactRequest
Properties
| Field/Tag Name | Value | Required | Notes |
|---|---|---|---|
| custServProviderId | Y | Partner Id | |
| entity_id | Y | Merchant Id | |
| request_email | Y | Registered at ProfitStars; email format | |
| contact_type | Owner Director Officer Primary Contact Secondary Contact Compliance | Y | |
| contact_name | Y | ||
| contact_title | Y | ||
| contact_bus_phone | Y | ||
| contact_bus_phone_ext | N | ||
| contact_bus_fax | N | ||
| contact_email | N | ||
| contact_pin | N | ||
| contact_address_same_as_entity | '0' = False '1' = True | Y | |
| contact_address_1 | N | If 'contact_address_same_as_entity ' = TRUE, then submitted value will be ignored | |
| contact_address_2 | N | If 'contact_address_same_as_entity ' = TRUE, then submitted value will be ignored | |
| contact_city | N | If 'contact_address_same_as_entity ' = TRUE, then submitted value will be ignored | |
| contact_state_or_region | N | If 'contact_address_same_as_entity ' = TRUE, then submitted value will be ignored | |
| contact_postal_code | N | If 'contact_address_same_as_entity ' = TRUE, then submitted value will be ignored | |
| contact_enabled | Y | ||
| date_of_birth | N | YYYY-MM-DD | |
| ssn | N | Format: ###-##-#### | |
| dl_state | N | Required if ' dl_number ' is populated | |
| dl_number | N | Required if ' dl_state ' is populated | |
| residential_address_1 | N | ||
| residential_address_2 | N | ||
| residential_city | N | ||
| residential_state_or_region | N | ||
| residential_state_postal_code | N | ||
| subject | N | text(255) | |
| description | N | text (long) | |
| case_reason | Update Business Information | N |
Example AddContactRequest
Input Method: XML
<xml>
<request_email>none@example.com</request_email>
<custServProviderId>######</custServProviderId>
<entity_id>######</entity_id>
<contact_type>Officer</contact_type>
<contact_name>John Doe</contact_name>
<contact_title>CEO</contact_title>
<contact_bus_phone>999-999-9999</contact_bus_phone>
<contact_bus_phone_ext>9999</contact_bus_phone_ext>
<contact_bus_fax>999-999-9999</contact_bus_fax>
<contact_email>none@example.com</contact_email>
<contact_pin>9999</contact_pin>
<contact_address_same_as_entity>0</contact_address_same_as_entity>
<contact_address_1>123 Main</contact_address_1>
<contact_address_2>STE 999</contact_address_2>
<contact_city>Dallas</contact_city>
<contact_state_or_region>TX</contact_state_or_region>
<contact_postal_code>75201</contact_postal_code>
<contact_enabled>1</contact_enabled>
<date_of_birth>1975-05-05</date_of_birth>
<ssn>###-##-####</ssn>
<dl_state>TX</dl_state>
<dl_number>99999999</dl_number>
<residential_address_1>456 Main</residential_address_1>
<residential_address_2></residential_address_2>
<residential_city>Dallas</residential_city>
<residential_state_or_region>TX</residential_state_or_region>
<residential_state_postal_code>75201</residential_state_postal_code>
<subject></subject>
<description></description>
<case_reason></case_reason>
</xml>
Input Method: JSON
{
"custServProviderId": "######",
"request_email": "none@example.com",
"entity_id": "######",
"contact_type": "Officer",
"contact_name": "John Doe",
"contact_title": "CEO",
"contact_bus_phone": "999-999-9999",
"contact_bus_phone_ext": "9999",
"contact_bus_fax": "999-999-9999",
"contact_email": "none@example.com",
"contact_pin": "9999",
"contact_address_same_as_entity": "0",
"contact_address_1": "123 Main",
"contact_address_2": "STE 999",
"contact_city": "Dallas",
"contact_state_or_region": "TX",
"contact_postal_code": "75201",
"contact_enabled": "1",
"date_of_birth": "1975-05-05",
"ssn": "###-##-####",
"dl_state": "TX",
"dl_number": "9999999",
"residential_address_1": "456 Main",
"residential_address_2": "",
"residential_city": "Dallas",
"residential_state_or_region": "TX",
"residential_state_postal_code": "75201",
"subject": "",
"description": "",
"case_reason": ""
}