Class UpdateHoldDaysRequest
Properties
| Field/Tag Name | Value | Required | Notes |
|---|---|---|---|
| custServProviderId | Y | Partner Id | |
| entity_id | Y | Merchant Id | |
| request_email | Y | Registered at ProfitStars; email format | |
| location_id | Y | Location Id | |
| location_name | N | Location Name | |
| processing_system | ACH Image__IRD | Y | |
| credit_hold_days | Y | ||
| debit_hold_days | Y | ||
| subject | N | text(255) | |
| description | N | text (long) | |
| case_reason | Application Special Circumstances, Update Bank Account Information, Update Business Information, | N |
Example UpdateHoldDaysRequest
Input Method: XML
<xml>
<request_email>none@example.com</request_email>
<custServProviderId>######</custServProviderId>
<entity_id>######</entity_id>
<location_id>#######</location_id>
<location_name>Location 1</location_name>
<processing_system>ACH</processing_system>
<credit_hold_days>4</credit_hold_days>
<debit_hold_days>4</debit_hold_days>
<subject></subject>
<description></description>
<case_reason></case_reason>
</xml>
Input Method: JSON
{
"custServProviderId": "######",
"entity_id": "######",
"request_email": "none@example.com",
"location_id": "#######",
"location_name": "Location2",
"processing_system": "ACH",
"credit_hold_days": "4",
"debit_hold_days": "4",
"case_reason": "",
"subject": "",
"description": ""
}