Class VelocityRequest
A Velocity Request will update velocity for an existing merchant and location. This request is used in tandem with GETs to obtain the unique velocity setting ID (vsid) to populate this request.
Properties
| Field/Tag Name | Value | Required | Notes |
|---|---|---|---|
| custServProviderId | Y | Partner Id | |
| request_email | Y | Registered at Jack Henry; email format | |
| customer_name | Y | Merchant Name; alphanumeric (50) | |
| entity_id | Y | Merchant Id | |
| location_id | Y | alphanumeric; Unique ID | |
| location_name | Y | Unique Location Name | |
| operation_type | Sale, Credit, Refund | Y | Case sensitive. The value will be retrieved from a GET. |
| vsid | Y | Unique Velocity ID. The value will be retrieved from a GET. | |
| merchant_first_name | N | IF any merchant notification field is populated, all 4 must be populated | |
| merchant_last_name | N | IF any merchant notification field is populated, all 4 must be populated | |
| merchant_email | N | Email format: IF any merchant notification field is populated, all 4 must be populated | |
| merchant_phone | N | ###-###-####; IF any merchant notification field is populated, all 4 must be populated | |
| max_single_trans_amount | Y* | numeric | |
| max_single_day_count | Y* | numeric | |
| max_single_day_amount | Y* | numeric | |
| max_period_count | Y* | numeric | |
| max_period_amount | Y* | numeric | |
| subject | N | Text(255) | |
| description | N | Text(long) | |
| case_reason | Application Special Circumstances, Update Bank Account Information, Update Business Information | N | This is an optional field to explain the reason. |
Example VelocityRequest
Input Method: XML
<xml>
<custServProviderId>######</custServProviderId>
<entity_id>######</entity_id>
<customer_name>Sample Test</customer_name>
<request_email>none@example.com</request_email>
<merchant_first_name></merchant_first_name>
<merchant_last_name></merchant_last_name>
<merchant_email></merchant_email>
<merchant_phone></merchant_phone>
<location_name>Test Location</location_name>
<location_id>########</location_id>
<operation_type>Sale</operation_type>
<vsid>#######</vsid>
<max_single_trans_amount>1500</max_single_trans_amount>
<max_single_day_count>1500</max_single_day_count>
<max_single_day_amount>15000</max_single_day_amount>
<max_period_count>15000</max_period_count>
<max_period_amount>150000</max_period_amount>
<case_reason></case_reason>
<subject></subject>
<description></description>
</xml>