Invoice Summary
The following Invoice Summary APIs allows users to view, retrieve, pay, adjust the invoices.
1. Invoice Records¶
Description
The invoiceRecords endpoint allows users to fetch the existing Invoice information.
Request
Endpoint
/ui/v1/invoiceRecords
Method
POST
Header
Content-Type: application/json
| ELEMENT | DESCRIPTION |
|---|---|
| startDate | Required Start Date to fetch the invoices from |
| endDate | Required End Date to fetch the invoices till that date |
| dateType name | Required Name of the Date Type ex: DUE, INVOICE,PAID |
| dateType value | Optional Value of the Date Type ex: DUE, INVOICE,PAID |
| merchantId | Required specific code used for each merchant |
Request Body
{
"startDate": "2021-03-23",
"endDate": "2021-03-30",
"invoiceStatus": [],
"customerType": [],
"dateType": {
"name": "DUE",
"value": "Due"
},
"customerId": [],
"paidByUserId": [],
"merchantId": ["1"]
}
Response
{
"records": null,
"recordCount": null,
"message": {
"code": "9999",
"type": {
"value": "Informational",
"name": "INFORMATIONAL"
},
"text": null,
"include_i_icon": false,
"description": "No records were found that match the filter criteria you entered."
}
}
2. Mark As Paid¶
Description
The markAsPaidStatus endpoint allows user to mark an Unpaid Invoice to Paid.
Request
Endpoint
/ui/v1/markAsPaidStatus
Method
POST
Header
Content-Type: application/json
Request Body
{
"id": 6384,
"invoiceNumber": "1111",
"createdDateTime": 1604957997000,
"lastUpdatedDateTime": null,
"invoiceDate": 1604898000000,
"paidDate": null,
"dueDate": 1607490000000,
"terms": 30,
"aging": 0,
"invoiceAmount": {
"amount": 33.93,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"paidAmount": null,
"amountDue": {
"amount": 33.93,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"createdUserId": 65,
"lastModifiedUserId": "65",
"invoiceStatus": {
"value": "Unpaid",
"name": "PAID_OFFLINE"
},
"customerId": 6043,
"invoiceBatchId": null,
"paidByUserId": null,
"merchantId": 1,
"customerType": {
"value": "Patient",
"name": "PATIENT"
},
"waiveReasonOnLateFees": null,
"waiveLateFeesByPercentage": null,
"waivedByUserId": null,
"waivedDate": null,
"memo": "Mark As Paid",
"amountAdjustedReason": null,
"customerNumber": "1000",
"customerName": "Xyz Abc",
"merchantName": "ABC Business",
"paidByUserName": null,
"message": null,
"geolocation": null,
"channelId": null,
"roleType": null,
"paymentAction": null,
"addressLine1": null,
"addressLine2": null,
"city": null,
"state": null,
"zipCode": null,
"phone": null,
"merchantCode": null
}
Response
{
"id": 6384,
"invoiceNumber": "1111",
"createdDateTime": 1604957997000,
"lastUpdatedDateTime": null,
"invoiceDate": 1604898000000,
"paidDate": null,
"dueDate": 1607490000000,
"terms": 30,
"aging": 0,
"invoiceAmount": {
"amount": 33.93,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"paidAmount": {
"amount": 33.93,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"amountDue": {
"amount": 0.00,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"createdUserId": 65,
"lastModifiedUserId": 65,
"invoiceStatus": {
"value": "Paid Offline",
"name": "PAID_OFFLINE"
},
"customerId": 6043,
"invoiceBatchId": null,
"paidByUserId": null,
"merchantId": 1,
"customerType": {
"value": "Patient",
"name": "PATIENT"
},
"waiveReasonOnLateFees": null,
"waiveLateFeesByPercentage": null,
"waivedByUserId": null,
"waivedDate": null,
"memo": "Mark As Paid",
"amountAdjustedReason": null,
"customerNumber": "1000",
"customerName": "Xyz Abc",
"merchantName": "ABC Business",
"paidByUserName": null,
"message": {
"code": "80",
"type": {
"value": "Success",
"name": "SUCCESS"
},
"text": null,
"include_i_icon": false,
"description": "The Invoice <strong>1111</strong> has been Marked as Paid successfully."
},
"geolocation": null,
"channelId": null,
"roleType": null,
"paymentAction": null,
"addressLine1": null,
"addressLine2": null,
"city": null,
"state": null,
"zipCode": null,
"phone": null,
"merchantCode": null
}
3. Mark As Partially Paid¶
Description
The markAsPartiallyPaidStatus endpoint allows users to pay the invoices partially.
Request
Endpoint
/ui/v1/markAsPartiallyPaidStatus
Method
POST
Header
Content-Type: application/json
Request Body
{
"id": 6385,
"invoiceNumber": "1112",
"createdDateTime": 1604957997000,
"lastUpdatedDateTime": null,
"invoiceDate": 1604898000000,
"paidDate": null,
"dueDate": 1607490000000,
"terms": 30,
"aging": 0,
"invoiceAmount": {
"amount": 225,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"paidAmount": {
"amount": "100.00"
},
"amountDue": {
"amount": 225,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"createdUserId": 65,
"lastModifiedUserId": "65",
"invoiceStatus": {
"value": "Unpaid",
"name": "PARTIALLY_PAID_OFFLINE"
},
"customerId": 6044,
"invoiceBatchId": null,
"paidByUserId": null,
"merchantId": 1,
"customerType": {
"value": "Patient",
"name": "PATIENT"
},
"waiveReasonOnLateFees": null,
"waiveLateFeesByPercentage": null,
"waivedByUserId": null,
"waivedDate": null,
"memo": "Mark As Partially paid",
"amountAdjustedReason": null,
"customerNumber": "1001",
"customerName": "Patient Test",
"merchantName": "ABC Business",
"paidByUserName": null,
"message": null,
"geolocation": null,
"channelId": null,
"roleType": null,
"paymentAction": null,
"addressLine1": null,
"addressLine2": null,
"city": null,
"state": null,
"zipCode": null,
"phone": null,
"merchantCode": null
}
Response
{
"id": 6385,
"invoiceNumber": "1112",
"createdDateTime": 1604957997000,
"lastUpdatedDateTime": null,
"invoiceDate": 1604898000000,
"paidDate": null,
"dueDate": 1607490000000,
"terms": 30,
"aging": 0,
"invoiceAmount": {
"amount": 225,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"paidAmount": {
"amount": 100.00,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"amountDue": {
"amount": 125.00,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"createdUserId": 65,
"lastModifiedUserId": 65,
"invoiceStatus": {
"value": "Partially Paid Offline",
"name": "PARTIALLY_PAID_OFFLINE"
},
"customerId": 6044,
"invoiceBatchId": null,
"paidByUserId": null,
"merchantId": 1,
"customerType": {
"value": "Patient",
"name": "PATIENT"
},
"waiveReasonOnLateFees": null,
"waiveLateFeesByPercentage": null,
"waivedByUserId": null,
"waivedDate": null,
"memo": "Mark As Partially paid",
"amountAdjustedReason": null,
"customerNumber": "1001",
"customerName": "Patient Test",
"merchantName": "ABC Business",
"paidByUserName": null,
"message": {
"code": "137",
"type": {
"value": "Success",
"name": "SUCCESS"
},
"text": null,
"include_i_icon": false,
"description": "The Invoice <strong>1112</strong> has been Marked as Partially Paid successfully."
},
"geolocation": null,
"channelId": null,
"roleType": null,
"paymentAction": null,
"addressLine1": null,
"addressLine2": null,
"city": null,
"state": null,
"zipCode": null,
"phone": null,
"merchantCode": null
}
4. Mark As Unpaid¶
Description
The markAsUnpaid endpoint allows users to mark an paid invoice to Unpaid
Request
Endpoint
/ui/v1/markAsUnpaid
Method
POST
Header
Content-Type: application/json
Request Body
{
"id": 6385,
"invoiceNumber": "1112",
"createdDateTime": 1604957997000,
"lastUpdatedDateTime": null,
"invoiceDate": 1604898000000,
"paidDate": null,
"dueDate": 1607490000000,
"terms": 30,
"aging": 0,
"invoiceAmount": {
"amount": 225,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"paidAmount": {
"amount": 225,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"amountDue": {
"amount": 0,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"createdUserId": 65,
"lastModifiedUserId": "65",
"invoiceStatus": {
"value": "Paid Offline",
"name": "UNPAID"
},
"customerId": 6044,
"invoiceBatchId": null,
"paidByUserId": null,
"merchantId": 1,
"customerType": {
"value": "Patient",
"name": "PATIENT"
},
"waiveReasonOnLateFees": null,
"waiveLateFeesByPercentage": null,
"waivedByUserId": null,
"waivedDate": null,
"memo": "Mark As Unpaid",
"amountAdjustedReason": null,
"customerNumber": "1001",
"customerName": "Patient Test",
"merchantName": "ABC Business",
"paidByUserName": null,
"message": null,
"geolocation": null,
"channelId": null,
"roleType": null,
"paymentAction": null,
"addressLine1": null,
"addressLine2": null,
"city": null,
"state": null,
"zipCode": null,
"phone": null,
"merchantCode": null
}
Response
{
"id": 6385,
"invoiceNumber": "1112",
"createdDateTime": 1604957997000,
"lastUpdatedDateTime": null,
"invoiceDate": 1604898000000,
"paidDate": null,
"dueDate": 1607490000000,
"terms": 30,
"aging": 0,
"invoiceAmount": {
"amount": 225,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"paidAmount": {
"amount": 0.00,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"amountDue": {
"amount": 225,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"createdUserId": 65,
"lastModifiedUserId": 65,
"invoiceStatus": {
"value": "Unpaid",
"name": "UNPAID"
},
"customerId": 6044,
"invoiceBatchId": null,
"paidByUserId": null,
"merchantId": 1,
"customerType": {
"value": "Patient",
"name": "PATIENT"
},
"waiveReasonOnLateFees": null,
"waiveLateFeesByPercentage": null,
"waivedByUserId": null,
"waivedDate": null,
"memo": "Mark As Unpaid",
"amountAdjustedReason": null,
"customerNumber": "1001",
"customerName": "Patient Test",
"merchantName": "ABC Business",
"paidByUserName": null,
"message": {
"code": "81",
"type": {
"value": "Success",
"name": "SUCCESS"
},
"text": null,
"include_i_icon": false,
"description": "The Invoice <strong>1112</strong> has been Marked as Unpaid successfully."
},
"geolocation": null,
"channelId": null,
"roleType": null,
"paymentAction": null,
"addressLine1": null,
"addressLine2": null,
"city": null,
"state": null,
"zipCode": null,
"phone": null,
"merchantCode": null
}
5. Adjust Balance¶
Description
The adjustInvoiceAmount endpoint allows users to adjust the balance of the invoices.
Request
Endpoint
/ui/v1/adjustInvoiceAmount
Method
POST
Header
Content-Type: application/json
Request Body
{
"id": 6385,
"invoiceNumber": "1112",
"createdDateTime": 1604957997000,
"lastUpdatedDateTime": null,
"invoiceDate": 1604898000000,
"paidDate": null,
"dueDate": 1607490000000,
"terms": 30,
"aging": 0,
"invoiceAmount": {
"amount": 225,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"paidAmount": {
"amount": 0,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"amountDue": {
"amount": "100.00",
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"createdUserId": 65,
"lastModifiedUserId": "65",
"invoiceStatus": {
"value": "Unpaid",
"name": "UNPAID"
},
"customerId": 6044,
"invoiceBatchId": null,
"paidByUserId": null,
"merchantId": 1,
"customerType": {
"value": "Patient",
"name": "PATIENT"
},
"waiveReasonOnLateFees": null,
"waiveLateFeesByPercentage": null,
"waivedByUserId": null,
"waivedDate": null,
"memo": "Mark As Unpaid",
"amountAdjustedReason": "Adjust",
"customerNumber": "1001",
"customerName": "Patient Test",
"merchantName": "ABC Business",
"paidByUserName": null,
"message": null,
"geolocation": null,
"channelId": null,
"roleType": null,
"paymentAction": null,
"addressLine1": null,
"addressLine2": null,
"city": null,
"state": null,
"zipCode": null,
"phone": null,
"merchantCode": null
}
Response
{
"id": 6385,
"invoiceNumber": "1112",
"createdDateTime": 1604957997000,
"lastUpdatedDateTime": null,
"invoiceDate": 1604898000000,
"paidDate": null,
"dueDate": 1607490000000,
"terms": 30,
"aging": 0,
"invoiceAmount": {
"amount": 100.00,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"paidAmount": {
"amount": 0,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"amountDue": {
"amount": 100.00,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608267267000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"createdUserId": 65,
"lastModifiedUserId": 65,
"invoiceStatus": {
"value": "Unpaid",
"name": "UNPAID"
},
"customerId": 6044,
"invoiceBatchId": null,
"paidByUserId": null,
"merchantId": 1,
"customerType": {
"value": "Patient",
"name": "PATIENT"
},
"waiveReasonOnLateFees": null,
"waiveLateFeesByPercentage": null,
"waivedByUserId": null,
"waivedDate": null,
"memo": "Mark As Unpaid",
"amountAdjustedReason": "Adjust",
"customerNumber": "1001",
"customerName": "Patient Test",
"merchantName": "ABC Business",
"paidByUserName": null,
"message": {
"code": "151",
"type": {
"value": "Success",
"name": "SUCCESS"
},
"text": null,
"include_i_icon": false,
"description": "The Balance has been adjusted successfully."
},
"geolocation": null,
"channelId": null,
"roleType": null,
"paymentAction": null,
"addressLine1": null,
"addressLine2": null,
"city": null,
"state": null,
"zipCode": null,
"phone": null,
"merchantCode": null
}
6. Invoice Detail¶
Description
The invoiceDetail endpoint allows users to view the details of the invoices.
Request
Endpoint
/ui/v1/invoiceDetail?invoiceid=id
Note
Replace id with the internal id of the invoice.
Method
POST
Header
Content-Type: application/json
Request Body
{
"invoiceId": 137
}
Response
{
"id": 137,
"invoiceNumber": "500000051",
"createdDateTime": 1591980624000,
"lastUpdatedDateTime": 1607112324000,
"invoiceDate": 1591934400000,
"paidDate": null,
"dueDate": 1591848000000,
"terms": 30,
"aging": 0,
"invoiceAmount": {
"amount": 2000.000,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608316900000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"paidAmount": {
"amount": 0.000,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608316900000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"amountDue": {
"amount": 2000.000,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"numOfDecimalPlaces": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1608316900000,
"isoNumericCode": "840",
"isoCountryCode": "840"
}
},
"createdUserId": 231,
"lastModifiedUserId": 218,
"invoiceStatus": {
"value": "Unpaid",
"name": "UNPAID"
},
"customerId": 64,
"invoiceBatchId": null,
"paidByUserId": null,
"merchantId": 3,
"customerType": {
"value": "Business",
"name": "BUSINESS"
},
"waiveReasonOnLateFees": null,
"waiveLateFeesByPercentage": null,
"waivedByUserId": null,
"waivedDate": null,
"memo": "Mark the invoice as Unpaid",
"amountAdjustedReason": null,
"customerNumber": "500020",
"customerName": "KK Health Care",
"merchantName": null,
"paidByUserName": null,
"message": null,
"geolocation": null,
"channelId": null,
"roleType": null,
"paymentAction": null,
"addressLine1": null,
"addressLine2": null,
"city": null,
"state": null,
"zipCode": null,
"phone": null,
"merchantCode": null
}
6. Send Invoice Notification¶
Description
The sendInvoiceNotification endpoint allows the admin users to send the invoice notification to the customer stating that the invoice is due.
Request
Endpoint
/ui/v1/sendInvoiceNotification
Method
POST
Header
Content-Type: application/json
Request Body
{
"id": 36735,
"invoiceNumber": "GPC-47",
"invoiceDescription": null,
"createdDateTime": 1746648148000,
"lastUpdatedDateTime": null,
"invoiceDate": 1744084800000,
"paidDate": null,
"dueDate": 1738386000000,
"terms": 0,
"aging": 0,
"invoiceAmount": {
"amount": 150,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"currencyExponent": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1754426845000,
"isoNumericCode": "840",
"isoCountryCode": "840",
"alpha2CountryCode": "US"
}
},
"paidAmount": {
"amount": 0,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"currencyExponent": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1754426845000,
"isoNumericCode": "840",
"isoCountryCode": "840",
"alpha2CountryCode": "US"
}
},
"amountDue": {
"amount": 150,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"currencyExponent": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1754426845000,
"isoNumericCode": "840",
"isoCountryCode": "840",
"alpha2CountryCode": "US"
}
},
"createdUserId": 65,
"lastModifiedUserId": 65,
"invoiceStatus": {
"name": "UNPAID"
},
"invoiceType": {
"name": "FILE_UPLOAD"
},
"customer": {
"id": 9942,
"customerNumber": "40000",
"customerName": "Patient Monitor",
"customerStatus": {
"name": "ACTIVE"
},
"pointOfContact": null,
"pointOfContactJobTitle": null,
"pointOfContactDepartment": null,
"createdUserId": 65,
"lastModifiedUserId": 65,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1635184073000,
"customerBatchId": null,
"outstandingBalance": null,
"customerProperties": [
{
"id": 137,
"propertyType": {
"name": "POSTDUE"
},
"propertyName": "1",
"propertyDescription": "Post due",
"propertyStringValue": null,
"propertyIntValue": 1,
"propertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 65,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1729529666000,
"lastUpdatedDateTime": 1772055013000,
"merchant": {
"id": 1,
"merchantName": "ABC Business",
"merchantDescription": "ABC Business",
"addressLine1": "ABC Inc.",
"addressLine2": "Suite 360",
"addressLine3": null,
"city": "Johns Creek",
"state": "GA",
"zipCode": "30097",
"country": "USA",
"mailingAddressLine1": "12000 Abc Rd",
"mailingAddressLine2": "Suite 360",
"mailingAddressLine3": null,
"mailingCity": "Johns Creek",
"mailingState": "GA",
"mailingZipCode": "30097-1412",
"mailingCountry": "USA",
"pointOfContact": "Administrator",
"pointOfContactJobTitle": null,
"pointOfContactDepartment": null,
"pointOfContactEmail": "info-test@abc.com",
"pointOfContactPhone": "6787400263",
"pointOfContactMobile": "6785143610",
"pointOfContactFax": "6789921941",
"lastModifiedUserId": 1,
"addressVerificationCheckInd": false,
"cardVerificationCheckForCNPTransactionsInd": true,
"cardVerificationCheckForTokenizedTransactionsInd": false,
"loyaltyRewardsEnabledInd": false,
"initialLoyaltyRewardsNumber": 10000000000001,
"passwordNeverExpiresInd": false,
"passwordExpirationDays": 90,
"passwordExpirationWarningDays": 5,
"onetimePasscodeValdtyTimePeriod": 10,
"phoneCountryCallingCodeId": 1,
"mobileCountryCallingCodeId": 1,
"faxCountryCallingCodeId": 1,
"billingPresentmentEnabledInd": true,
"displayInvoiceNumberInPaymentsModule": true,
"adhocInvoicesEnabledInd": true,
"displayMemoInPaymentsModule": true,
"displayFolioInformationInPaymentsModule": false,
"recurringPaymentsEnabledInd": false,
"productsAndServicesEnabledInd": false,
"namePrefix": {
"value": "Fr",
"locale": "en_US",
"name": "FATHER"
},
"nameSuffix": {
"value": "MD",
"name": "DOCTOR_OF_MEDICINE"
},
"displayDigitalSignatureForCardPresentTransactions": false,
"displayDigitalSignatureForCardNotPresentTransactions": false,
"paymentTokenizationEnabledInd": true,
"paymentsBatchAuthorizationEnabledInd": false,
"paymentsBatchProcessingEnabledInd": false,
"allowPaymentsWithoutLoggingIn": true,
"allowUsersToSelfEnrollInd": true,
"allowMultiCurrencyPricingInd": false,
"allowDynamicCurrencyConversionInd": false,
"mobilePhoneCarrierType": {
"emailDomain": "NUMBER@txt.att.net,NUMBER@mms.att.net",
"value": "AT&T",
"countryCode": "USA",
"name": "ATT"
},
"cardPresentTransactionsEnabledInd": false,
"defaultCurrencyCode": "USD",
"settlementCurrencyCode": "USD",
"allowPreAuthorizationTransactionInd": false,
"allowSaleTransactionInd": true,
"allowZeroDollarAuthTransactionInd": false,
"softDescriptorsEnabledInd": false,
"softDescriptorMerchantName": "ABCSOFTWARE",
"softDescriptorProductDescription": "INCIDENTL",
"merchantStatus": {
"name": "ACTIVE"
},
"merchantURL": "https://abc-business-test.payvela.com/ui/resources/login",
"merchantDisplayTitle": "ABC Business",
"merchantCode": "abc-business",
"brandingDirectory": "abc-business",
"sessionIdleTime": 900,
"sessionTimeoutTime": 20,
"keepaliveInterval": 300,
"customerSupportInformation": "+1-877-858-7200 (MON - FRI 8:00 AM - 8:00 PM ET)",
"merchantBccEmailAddress": "abcd@gmail.com",
"abuseEmailAddress": "abuse@abc.com",
"locale": {
"name": "en_US"
},
"lateFeesEnabledInd": false,
"lateFeesType": {
"name": "PERCENTAGE"
},
"lateFeesTier1FromNumOfDays": 1,
"lateFeesTier1ToNumOfDays": 30,
"lateFeesTier2FromNumOfDays": 31,
"lateFeesTier2ToNumOfDays": 60,
"lateFeesTier3FromNumOfDays": 61,
"lateFeesTier3ToNumOfDays": 90,
"tier1LateFees": 0,
"tier2LateFees": 3,
"tier3LateFees": 6,
"waiveTheLateFeesEnabledInd": true,
"maxNumOfTimesPerYearLateFeeCanBeWaived": {
"name": "ONCE"
},
"paymentApplicationURL": "https://abc-business-test.payvela.com/ui/resources/login",
"giftCardsEnabledInd": false,
"minBookingNumberLength": 10,
"maxBookingNumberLength": 10,
"allowPartialPaymentsForInvoicesInd": false,
"convenienceFeesEnabledInd": false,
"creditCardsConvFeesType": {
"name": "PERCENTAGE"
},
"creditCardsConvFees": 3.25,
"industryType": {
"name": "BUSINESS_TO_BUSINESS"
},
"displayHealthcareFieldsOnHSAFSAPaymentMethods": false,
"displayChartOnDashboard": false,
"reportsModuleEnabledInd": true,
"displayLastXDaysOfPaymentTokensForCardOnFile": 45,
"chartsDisplayTransactionRevenue": {
"name": "NONE"
},
"chartsGroupByPaymentMethods": {
"name": "NONE"
},
"chartsGroupByTransactionTypes": {
"name": "NONE"
},
"chartsGroupByProductsAndServices": {
"name": "NONE"
},
"chartsDateRangeType": {
"name": "TODAY"
},
"numOfDaysBetweenCheckinAndCurrentDate": 3,
"smsSubscriptionType": {
"name": "FREE_VIA_SMTP"
},
"cardPresentManualEntryOnlyTransactionsEnabledInd": false,
"cardNotPresentTransactionsEnabledInd": true,
"splitPaymentsEnabledInd": true,
"accountLookupEnabledInd": false,
"nextGenHpiLocationLookup": "ABC Business",
"billingEmailRequiredForPayments": false,
"cardholderNameRequiredForTransactions": true,
"textMessageType": {
"name": "SMS"
},
"billingEnabledInd": true,
"billingRevenueShareByPercentage": 0,
"installmentPaymentsEnabledInd": false,
"minNumberOfInstallments": 2,
"maxNumberOfInstallments": 36,
"settledTransactionsReportEnabledInd": true,
"sendSettledTransactionsReportViaEmailEnabled": true,
"summaryByTypeReportEnabledInd": true,
"transactionSummaryReportEnabledInd": true,
"settledTxnsReportEmailRecipients": "abcd@gmail.com",
"offlinePaymentActionsOnInvoicesEnabledInd": true,
"qrCodeEnabledInd": false,
"dateFormat": {
"value": "yyyy-MM-dd",
"name": "YYYY_MM_DD"
},
"dateTimeFormat": {
"value": "yyyy-MM-dd hh:mm a zzz",
"name": "YYYY_MM_DD_HH_MM_A_ZZZ"
},
"logoutSingleSignOnTime": 10,
"reconciliationPlatformName": {
"value": "Intuit QuickBooks",
"industryType": "ECOMMERCE",
"name": "INTUIT_QUICKBOOKS"
},
"employerIdentificationNumber": "12-2543645",
"autoReconciliationEnabledInd": false,
"customerSummaryEnabledInd": true,
"surchargesEnabledInd": false,
"surchargesByPercentage": 1,
"onlineReceiptLinkEnabledInd": false,
"maxNumOfFailedOneTimePasscodeAttempts": 3,
"apiAccessEnabledInd": true,
"enableDigitalIdOnMakeAPaymentPageInd": false,
"barcodeScanningEnabledInd": false,
"autoReconciliationFeesEnabledInd": false,
"paperlessBillingEnabledInd": false,
"multipleQuantityListingAllowedInd": false,
"multipleProductsAndServicesAllowedInd": false,
"processFullCaptureFundsInd": false,
"paymentTokenPreferenceType": {
"name": "ACCOUNT_HOLDER_NAME"
},
"minimumPasswordLength": 11,
"retainAmountOnAccountLookupInd": false,
"merchantProperties": [
{
"id": 3,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "PURGE_ENABLED",
"propertyDescription": "Is payment tokens purge enabled",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": false,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
},
{
"id": 4,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "RETENTION_DAYS",
"propertyDescription": "# of days to retain payment tokens",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": null,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
}
],
"merchantBillings": [],
"merchantBillingModel2s": [
{
"id": 41,
"monthlyMinimumFee": 65,
"electronicStatementPerTransmission": 0.5,
"tier1LowerLimitAmount": 0.01,
"tier1UpperLimitAmount": 100000,
"tier1ProcessingFees": 1,
"tier2LowerLimitAmount": 100000.01,
"tier2UpperLimitAmount": 250000,
"tier2ProcessingFees": 0.875,
"tier3LowerLimitAmount": 250000.01,
"tier3UpperLimitAmount": 500000,
"tier3ProcessingFees": 0.75,
"tier4LowerLimitAmount": 5000000.01,
"tier4ProcessingFees": 0.625,
"merchantVolumeDiscountByPercentage": 0,
"advancedMDMonthlySubscriptionFees": null,
"athenahealthAPIConsumptionFees": null,
"athenahealthConnectionMonthlyServiceFees": null,
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1748788692000,
"lastUpdatedDateTime": 1772781989000,
"autoReconciliationFees": null,
"adhocInvoicesMonthlyPrintingProductionFees": 350
}
],
"minNumOfLowercaseAlphabetsInPassword": 1,
"minNumOfUppercaseAlphabetsInPassword": 1,
"minNumOfNumericsInPassword": 1,
"minNumOfSpecialCharactersInPassword": 1,
"passwordHistoryCount": 25,
"maxNumOfInactiveDaysForUser": 90,
"signUpUsersMaximumAllowedLoginDays": 99999,
"serverTimeZone": {
"value": "America/New York",
"tzIdentifier": "America/New_York",
"utcOffsetSDT": "−05:00",
"utcOffsetDST": "−04:00",
"tzAbbreSDT": "EST",
"tzAbbreDST": "EDT",
"name": "AMERICA_NEW_YORK"
},
"merchantTimeZone": {
"value": "Eastern Time (US & Canada)",
"offset": "-05:00",
"name": "EASTERN_TIME"
},
"exportDailyTransactionsSftpInd": false,
"deskoDocumentScanningInd": false,
"exportSFTPDirectoryName": "velaaa",
"manifestationFileOriginationType": {
"name": "NONE"
},
"maxNumberOfInvoices": 20,
"message": null,
"address": null,
"fullName": null,
"activeUserCount": null,
"activeCustomerCount": null,
"paymentTokenPurgeEnabledInd": false,
"paymentTokenPurgeDays": null,
"language": null,
"assignedCurrencies": null,
"echeckConvFees": 1.99,
"echeckConvFeesType": {
"name": "FLAT"
},
"emvcompliantTransactionType": {
"name": "RELAXED"
}
},
"message": null
},
{
"id": 138,
"propertyType": {
"name": "PREDUE"
},
"propertyName": "1",
"propertyDescription": "Pre due",
"propertyStringValue": null,
"propertyIntValue": 1,
"propertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 65,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1729529666000,
"lastUpdatedDateTime": 1772055013000,
"merchant": {
"id": 1,
"merchantName": "ABC Business",
"merchantDescription": "ABC Business",
"addressLine1": "ABC Inc.",
"addressLine2": "Suite 360",
"addressLine3": null,
"city": "Johns Creek",
"state": "GA",
"zipCode": "30097",
"country": "USA",
"mailingAddressLine1": "12000 Abc Rd",
"mailingAddressLine2": "Suite 360",
"mailingAddressLine3": null,
"mailingCity": "Johns Creek",
"mailingState": "GA",
"mailingZipCode": "30097-1412",
"mailingCountry": "USA",
"pointOfContact": "Administrator",
"pointOfContactJobTitle": null,
"pointOfContactDepartment": null,
"pointOfContactEmail": "info-test@abc.com",
"pointOfContactPhone": "6787400263",
"pointOfContactMobile": "6785143610",
"pointOfContactFax": "6789921941",
"lastModifiedUserId": 1,
"addressVerificationCheckInd": false,
"cardVerificationCheckForCNPTransactionsInd": true,
"cardVerificationCheckForTokenizedTransactionsInd": false,
"loyaltyRewardsEnabledInd": false,
"initialLoyaltyRewardsNumber": 10000000000001,
"passwordNeverExpiresInd": false,
"passwordExpirationDays": 90,
"passwordExpirationWarningDays": 5,
"onetimePasscodeValdtyTimePeriod": 10,
"phoneCountryCallingCodeId": 1,
"mobileCountryCallingCodeId": 1,
"faxCountryCallingCodeId": 1,
"billingPresentmentEnabledInd": true,
"displayInvoiceNumberInPaymentsModule": true,
"adhocInvoicesEnabledInd": true,
"displayMemoInPaymentsModule": true,
"displayFolioInformationInPaymentsModule": false,
"recurringPaymentsEnabledInd": false,
"productsAndServicesEnabledInd": false,
"namePrefix": {
"value": "Fr",
"locale": "en_US",
"name": "FATHER"
},
"nameSuffix": {
"value": "MD",
"name": "DOCTOR_OF_MEDICINE"
},
"displayDigitalSignatureForCardPresentTransactions": false,
"displayDigitalSignatureForCardNotPresentTransactions": false,
"paymentTokenizationEnabledInd": true,
"paymentsBatchAuthorizationEnabledInd": false,
"paymentsBatchProcessingEnabledInd": false,
"allowPaymentsWithoutLoggingIn": true,
"allowUsersToSelfEnrollInd": true,
"allowMultiCurrencyPricingInd": false,
"allowDynamicCurrencyConversionInd": false,
"mobilePhoneCarrierType": {
"emailDomain": "NUMBER@txt.att.net,NUMBER@mms.att.net",
"value": "AT&T",
"countryCode": "USA",
"name": "ATT"
},
"cardPresentTransactionsEnabledInd": false,
"defaultCurrencyCode": "USD",
"settlementCurrencyCode": "USD",
"allowPreAuthorizationTransactionInd": false,
"allowSaleTransactionInd": true,
"allowZeroDollarAuthTransactionInd": false,
"softDescriptorsEnabledInd": false,
"softDescriptorMerchantName": "ABCSOFTWARE",
"softDescriptorProductDescription": "INCIDENTL",
"merchantStatus": {
"name": "ACTIVE"
},
"merchantURL": "https://abc-business-test.payvela.com/ui/resources/login",
"merchantDisplayTitle": "ABC Business",
"merchantCode": "abc-business",
"brandingDirectory": "abc-business",
"sessionIdleTime": 900,
"sessionTimeoutTime": 20,
"keepaliveInterval": 300,
"customerSupportInformation": "+1-877-858-7200 (MON - FRI 8:00 AM - 8:00 PM ET)",
"merchantBccEmailAddress": "abcd@gmail.com",
"abuseEmailAddress": "abuse@abc.com",
"locale": {
"name": "en_US"
},
"lateFeesEnabledInd": false,
"lateFeesType": {
"name": "PERCENTAGE"
},
"lateFeesTier1FromNumOfDays": 1,
"lateFeesTier1ToNumOfDays": 30,
"lateFeesTier2FromNumOfDays": 31,
"lateFeesTier2ToNumOfDays": 60,
"lateFeesTier3FromNumOfDays": 61,
"lateFeesTier3ToNumOfDays": 90,
"tier1LateFees": 0,
"tier2LateFees": 3,
"tier3LateFees": 6,
"waiveTheLateFeesEnabledInd": true,
"maxNumOfTimesPerYearLateFeeCanBeWaived": {
"name": "ONCE"
},
"paymentApplicationURL": "https://abc-business-test.payvela.com/ui/resources/login",
"giftCardsEnabledInd": false,
"minBookingNumberLength": 10,
"maxBookingNumberLength": 10,
"allowPartialPaymentsForInvoicesInd": false,
"convenienceFeesEnabledInd": false,
"creditCardsConvFeesType": {
"name": "PERCENTAGE"
},
"creditCardsConvFees": 3.25,
"industryType": {
"name": "BUSINESS_TO_BUSINESS"
},
"displayHealthcareFieldsOnHSAFSAPaymentMethods": false,
"displayChartOnDashboard": false,
"reportsModuleEnabledInd": true,
"displayLastXDaysOfPaymentTokensForCardOnFile": 45,
"chartsDisplayTransactionRevenue": {
"name": "NONE"
},
"chartsGroupByPaymentMethods": {
"name": "NONE"
},
"chartsGroupByTransactionTypes": {
"name": "NONE"
},
"chartsGroupByProductsAndServices": {
"name": "NONE"
},
"chartsDateRangeType": {
"name": "TODAY"
},
"numOfDaysBetweenCheckinAndCurrentDate": 3,
"smsSubscriptionType": {
"name": "FREE_VIA_SMTP"
},
"cardPresentManualEntryOnlyTransactionsEnabledInd": false,
"cardNotPresentTransactionsEnabledInd": true,
"splitPaymentsEnabledInd": true,
"accountLookupEnabledInd": false,
"nextGenHpiLocationLookup": "ABC Business",
"billingEmailRequiredForPayments": false,
"cardholderNameRequiredForTransactions": true,
"textMessageType": {
"name": "SMS"
},
"billingEnabledInd": true,
"billingRevenueShareByPercentage": 0,
"installmentPaymentsEnabledInd": false,
"minNumberOfInstallments": 2,
"maxNumberOfInstallments": 36,
"settledTransactionsReportEnabledInd": true,
"sendSettledTransactionsReportViaEmailEnabled": true,
"summaryByTypeReportEnabledInd": true,
"transactionSummaryReportEnabledInd": true,
"settledTxnsReportEmailRecipients": "abcd@gmail.com",
"offlinePaymentActionsOnInvoicesEnabledInd": true,
"qrCodeEnabledInd": false,
"dateFormat": {
"value": "yyyy-MM-dd",
"name": "YYYY_MM_DD"
},
"dateTimeFormat": {
"value": "yyyy-MM-dd hh:mm a zzz",
"name": "YYYY_MM_DD_HH_MM_A_ZZZ"
},
"logoutSingleSignOnTime": 10,
"reconciliationPlatformName": {
"value": "Intuit QuickBooks",
"industryType": "ECOMMERCE",
"name": "INTUIT_QUICKBOOKS"
},
"employerIdentificationNumber": "12-2543645",
"autoReconciliationEnabledInd": false,
"customerSummaryEnabledInd": true,
"surchargesEnabledInd": false,
"surchargesByPercentage": 1,
"onlineReceiptLinkEnabledInd": false,
"maxNumOfFailedOneTimePasscodeAttempts": 3,
"apiAccessEnabledInd": true,
"enableDigitalIdOnMakeAPaymentPageInd": false,
"barcodeScanningEnabledInd": false,
"autoReconciliationFeesEnabledInd": false,
"paperlessBillingEnabledInd": false,
"multipleQuantityListingAllowedInd": false,
"multipleProductsAndServicesAllowedInd": false,
"processFullCaptureFundsInd": false,
"paymentTokenPreferenceType": {
"name": "ACCOUNT_HOLDER_NAME"
},
"minimumPasswordLength": 11,
"retainAmountOnAccountLookupInd": false,
"merchantProperties": [
{
"id": 3,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "PURGE_ENABLED",
"propertyDescription": "Is payment tokens purge enabled",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": false,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
},
{
"id": 4,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "RETENTION_DAYS",
"propertyDescription": "# of days to retain payment tokens",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": null,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
}
],
"merchantBillings": [],
"merchantBillingModel2s": [
{
"id": 41,
"monthlyMinimumFee": 65,
"electronicStatementPerTransmission": 0.5,
"tier1LowerLimitAmount": 0.01,
"tier1UpperLimitAmount": 100000,
"tier1ProcessingFees": 1,
"tier2LowerLimitAmount": 100000.01,
"tier2UpperLimitAmount": 250000,
"tier2ProcessingFees": 0.875,
"tier3LowerLimitAmount": 250000.01,
"tier3UpperLimitAmount": 500000,
"tier3ProcessingFees": 0.75,
"tier4LowerLimitAmount": 5000000.01,
"tier4ProcessingFees": 0.625,
"merchantVolumeDiscountByPercentage": 0,
"advancedMDMonthlySubscriptionFees": null,
"athenahealthAPIConsumptionFees": null,
"athenahealthConnectionMonthlyServiceFees": null,
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1748788692000,
"lastUpdatedDateTime": 1772781989000,
"autoReconciliationFees": null,
"adhocInvoicesMonthlyPrintingProductionFees": 350
}
],
"minNumOfLowercaseAlphabetsInPassword": 1,
"minNumOfUppercaseAlphabetsInPassword": 1,
"minNumOfNumericsInPassword": 1,
"minNumOfSpecialCharactersInPassword": 1,
"passwordHistoryCount": 25,
"maxNumOfInactiveDaysForUser": 90,
"signUpUsersMaximumAllowedLoginDays": 99999,
"serverTimeZone": {
"value": "America/New York",
"tzIdentifier": "America/New_York",
"utcOffsetSDT": "−05:00",
"utcOffsetDST": "−04:00",
"tzAbbreSDT": "EST",
"tzAbbreDST": "EDT",
"name": "AMERICA_NEW_YORK"
},
"merchantTimeZone": {
"value": "Eastern Time (US & Canada)",
"offset": "-05:00",
"name": "EASTERN_TIME"
},
"exportDailyTransactionsSftpInd": false,
"deskoDocumentScanningInd": false,
"exportSFTPDirectoryName": "velaaa",
"manifestationFileOriginationType": {
"name": "NONE"
},
"maxNumberOfInvoices": 20,
"message": null,
"address": null,
"fullName": null,
"activeUserCount": null,
"activeCustomerCount": null,
"paymentTokenPurgeEnabledInd": false,
"paymentTokenPurgeDays": null,
"language": null,
"assignedCurrencies": null,
"echeckConvFees": 1.99,
"echeckConvFeesType": {
"name": "FLAT"
},
"emvcompliantTransactionType": {
"name": "RELAXED"
}
},
"message": null
},
{
"id": 141,
"propertyType": {
"name": "PREDUE"
},
"propertyName": "3",
"propertyDescription": "Pre-due 2 days",
"propertyStringValue": null,
"propertyIntValue": 2,
"propertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 65,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1746648061000,
"lastUpdatedDateTime": 1772055013000,
"merchant": {
"id": 1,
"merchantName": "ABC Business",
"merchantDescription": "ABC Business",
"addressLine1": "ABC Inc.",
"addressLine2": "Suite 360",
"addressLine3": null,
"city": "Johns Creek",
"state": "GA",
"zipCode": "30097",
"country": "USA",
"mailingAddressLine1": "12000 Abc Rd",
"mailingAddressLine2": "Suite 360",
"mailingAddressLine3": null,
"mailingCity": "Johns Creek",
"mailingState": "GA",
"mailingZipCode": "30097-1412",
"mailingCountry": "USA",
"pointOfContact": "Administrator",
"pointOfContactJobTitle": null,
"pointOfContactDepartment": null,
"pointOfContactEmail": "info-test@abc.com",
"pointOfContactPhone": "6787400263",
"pointOfContactMobile": "6785143610",
"pointOfContactFax": "6789921941",
"lastModifiedUserId": 1,
"addressVerificationCheckInd": false,
"cardVerificationCheckForCNPTransactionsInd": true,
"cardVerificationCheckForTokenizedTransactionsInd": false,
"loyaltyRewardsEnabledInd": false,
"initialLoyaltyRewardsNumber": 10000000000001,
"passwordNeverExpiresInd": false,
"passwordExpirationDays": 90,
"passwordExpirationWarningDays": 5,
"onetimePasscodeValdtyTimePeriod": 10,
"phoneCountryCallingCodeId": 1,
"mobileCountryCallingCodeId": 1,
"faxCountryCallingCodeId": 1,
"billingPresentmentEnabledInd": true,
"displayInvoiceNumberInPaymentsModule": true,
"adhocInvoicesEnabledInd": true,
"displayMemoInPaymentsModule": true,
"displayFolioInformationInPaymentsModule": false,
"recurringPaymentsEnabledInd": false,
"productsAndServicesEnabledInd": false,
"namePrefix": {
"value": "Fr",
"locale": "en_US",
"name": "FATHER"
},
"nameSuffix": {
"value": "MD",
"name": "DOCTOR_OF_MEDICINE"
},
"displayDigitalSignatureForCardPresentTransactions": false,
"displayDigitalSignatureForCardNotPresentTransactions": false,
"paymentTokenizationEnabledInd": true,
"paymentsBatchAuthorizationEnabledInd": false,
"paymentsBatchProcessingEnabledInd": false,
"allowPaymentsWithoutLoggingIn": true,
"allowUsersToSelfEnrollInd": true,
"allowMultiCurrencyPricingInd": false,
"allowDynamicCurrencyConversionInd": false,
"mobilePhoneCarrierType": {
"emailDomain": "NUMBER@txt.att.net,NUMBER@mms.att.net",
"value": "AT&T",
"countryCode": "USA",
"name": "ATT"
},
"cardPresentTransactionsEnabledInd": false,
"defaultCurrencyCode": "USD",
"settlementCurrencyCode": "USD",
"allowPreAuthorizationTransactionInd": false,
"allowSaleTransactionInd": true,
"allowZeroDollarAuthTransactionInd": false,
"softDescriptorsEnabledInd": false,
"softDescriptorMerchantName": "ABCSOFTWARE",
"softDescriptorProductDescription": "INCIDENTL",
"merchantStatus": {
"name": "ACTIVE"
},
"merchantURL": "https://abc-business-test.payvela.com/ui/resources/login",
"merchantDisplayTitle": "ABC Business",
"merchantCode": "abc-business",
"brandingDirectory": "abc-business",
"sessionIdleTime": 900,
"sessionTimeoutTime": 20,
"keepaliveInterval": 300,
"customerSupportInformation": "+1-877-858-7200 (MON - FRI 8:00 AM - 8:00 PM ET)",
"merchantBccEmailAddress": "abcd@gmail.com",
"abuseEmailAddress": "abuse@abc.com",
"locale": {
"name": "en_US"
},
"lateFeesEnabledInd": false,
"lateFeesType": {
"name": "PERCENTAGE"
},
"lateFeesTier1FromNumOfDays": 1,
"lateFeesTier1ToNumOfDays": 30,
"lateFeesTier2FromNumOfDays": 31,
"lateFeesTier2ToNumOfDays": 60,
"lateFeesTier3FromNumOfDays": 61,
"lateFeesTier3ToNumOfDays": 90,
"tier1LateFees": 0,
"tier2LateFees": 3,
"tier3LateFees": 6,
"waiveTheLateFeesEnabledInd": true,
"maxNumOfTimesPerYearLateFeeCanBeWaived": {
"name": "ONCE"
},
"paymentApplicationURL": "https://abc-business-test.payvela.com/ui/resources/login",
"giftCardsEnabledInd": false,
"minBookingNumberLength": 10,
"maxBookingNumberLength": 10,
"allowPartialPaymentsForInvoicesInd": false,
"convenienceFeesEnabledInd": false,
"creditCardsConvFeesType": {
"name": "PERCENTAGE"
},
"creditCardsConvFees": 3.25,
"industryType": {
"name": "BUSINESS_TO_BUSINESS"
},
"displayHealthcareFieldsOnHSAFSAPaymentMethods": false,
"displayChartOnDashboard": false,
"reportsModuleEnabledInd": true,
"displayLastXDaysOfPaymentTokensForCardOnFile": 45,
"chartsDisplayTransactionRevenue": {
"name": "NONE"
},
"chartsGroupByPaymentMethods": {
"name": "NONE"
},
"chartsGroupByTransactionTypes": {
"name": "NONE"
},
"chartsGroupByProductsAndServices": {
"name": "NONE"
},
"chartsDateRangeType": {
"name": "TODAY"
},
"numOfDaysBetweenCheckinAndCurrentDate": 3,
"smsSubscriptionType": {
"name": "FREE_VIA_SMTP"
},
"cardPresentManualEntryOnlyTransactionsEnabledInd": false,
"cardNotPresentTransactionsEnabledInd": true,
"splitPaymentsEnabledInd": true,
"accountLookupEnabledInd": false,
"nextGenHpiLocationLookup": "ABC Business",
"billingEmailRequiredForPayments": false,
"cardholderNameRequiredForTransactions": true,
"textMessageType": {
"name": "SMS"
},
"billingEnabledInd": true,
"billingRevenueShareByPercentage": 0,
"installmentPaymentsEnabledInd": false,
"minNumberOfInstallments": 2,
"maxNumberOfInstallments": 36,
"settledTransactionsReportEnabledInd": true,
"sendSettledTransactionsReportViaEmailEnabled": true,
"summaryByTypeReportEnabledInd": true,
"transactionSummaryReportEnabledInd": true,
"settledTxnsReportEmailRecipients": "abcd@gmail.com",
"offlinePaymentActionsOnInvoicesEnabledInd": true,
"qrCodeEnabledInd": false,
"dateFormat": {
"value": "yyyy-MM-dd",
"name": "YYYY_MM_DD"
},
"dateTimeFormat": {
"value": "yyyy-MM-dd hh:mm a zzz",
"name": "YYYY_MM_DD_HH_MM_A_ZZZ"
},
"logoutSingleSignOnTime": 10,
"reconciliationPlatformName": {
"value": "Intuit QuickBooks",
"industryType": "ECOMMERCE",
"name": "INTUIT_QUICKBOOKS"
},
"employerIdentificationNumber": "12-2543645",
"autoReconciliationEnabledInd": false,
"customerSummaryEnabledInd": true,
"surchargesEnabledInd": false,
"surchargesByPercentage": 1,
"onlineReceiptLinkEnabledInd": false,
"maxNumOfFailedOneTimePasscodeAttempts": 3,
"apiAccessEnabledInd": true,
"enableDigitalIdOnMakeAPaymentPageInd": false,
"barcodeScanningEnabledInd": false,
"autoReconciliationFeesEnabledInd": false,
"paperlessBillingEnabledInd": false,
"multipleQuantityListingAllowedInd": false,
"multipleProductsAndServicesAllowedInd": false,
"processFullCaptureFundsInd": false,
"paymentTokenPreferenceType": {
"name": "ACCOUNT_HOLDER_NAME"
},
"minimumPasswordLength": 11,
"retainAmountOnAccountLookupInd": false,
"merchantProperties": [
{
"id": 3,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "PURGE_ENABLED",
"propertyDescription": "Is payment tokens purge enabled",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": false,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
},
{
"id": 4,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "RETENTION_DAYS",
"propertyDescription": "# of days to retain payment tokens",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": null,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
}
],
"merchantBillings": [],
"merchantBillingModel2s": [
{
"id": 41,
"monthlyMinimumFee": 65,
"electronicStatementPerTransmission": 0.5,
"tier1LowerLimitAmount": 0.01,
"tier1UpperLimitAmount": 100000,
"tier1ProcessingFees": 1,
"tier2LowerLimitAmount": 100000.01,
"tier2UpperLimitAmount": 250000,
"tier2ProcessingFees": 0.875,
"tier3LowerLimitAmount": 250000.01,
"tier3UpperLimitAmount": 500000,
"tier3ProcessingFees": 0.75,
"tier4LowerLimitAmount": 5000000.01,
"tier4ProcessingFees": 0.625,
"merchantVolumeDiscountByPercentage": 0,
"advancedMDMonthlySubscriptionFees": null,
"athenahealthAPIConsumptionFees": null,
"athenahealthConnectionMonthlyServiceFees": null,
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1748788692000,
"lastUpdatedDateTime": 1772781989000,
"autoReconciliationFees": null,
"adhocInvoicesMonthlyPrintingProductionFees": 350
}
],
"minNumOfLowercaseAlphabetsInPassword": 1,
"minNumOfUppercaseAlphabetsInPassword": 1,
"minNumOfNumericsInPassword": 1,
"minNumOfSpecialCharactersInPassword": 1,
"passwordHistoryCount": 25,
"maxNumOfInactiveDaysForUser": 90,
"signUpUsersMaximumAllowedLoginDays": 99999,
"serverTimeZone": {
"value": "America/New York",
"tzIdentifier": "America/New_York",
"utcOffsetSDT": "−05:00",
"utcOffsetDST": "−04:00",
"tzAbbreSDT": "EST",
"tzAbbreDST": "EDT",
"name": "AMERICA_NEW_YORK"
},
"merchantTimeZone": {
"value": "Eastern Time (US & Canada)",
"offset": "-05:00",
"name": "EASTERN_TIME"
},
"exportDailyTransactionsSftpInd": false,
"deskoDocumentScanningInd": false,
"exportSFTPDirectoryName": "velaaa",
"manifestationFileOriginationType": {
"name": "NONE"
},
"maxNumberOfInvoices": 20,
"message": null,
"address": null,
"fullName": null,
"activeUserCount": null,
"activeCustomerCount": null,
"paymentTokenPurgeEnabledInd": false,
"paymentTokenPurgeDays": null,
"language": null,
"assignedCurrencies": null,
"echeckConvFees": 1.99,
"echeckConvFeesType": {
"name": "FLAT"
},
"emvcompliantTransactionType": {
"name": "RELAXED"
}
},
"message": null
},
{
"id": 140,
"propertyType": {
"name": "POSTDUE"
},
"propertyName": "4",
"propertyDescription": "Past Due",
"propertyStringValue": null,
"propertyIntValue": 2,
"propertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 65,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1746648061000,
"lastUpdatedDateTime": 1772055013000,
"merchant": {
"id": 1,
"merchantName": "ABC Business",
"merchantDescription": "ABC Business",
"addressLine1": "ABC Inc.",
"addressLine2": "Suite 360",
"addressLine3": null,
"city": "Johns Creek",
"state": "GA",
"zipCode": "30097",
"country": "USA",
"mailingAddressLine1": "12000 Abc Rd",
"mailingAddressLine2": "Suite 360",
"mailingAddressLine3": null,
"mailingCity": "Johns Creek",
"mailingState": "GA",
"mailingZipCode": "30097-1412",
"mailingCountry": "USA",
"pointOfContact": "Administrator",
"pointOfContactJobTitle": null,
"pointOfContactDepartment": null,
"pointOfContactEmail": "info-test@abc.com",
"pointOfContactPhone": "6787400263",
"pointOfContactMobile": "6785143610",
"pointOfContactFax": "6789921941",
"lastModifiedUserId": 1,
"addressVerificationCheckInd": false,
"cardVerificationCheckForCNPTransactionsInd": true,
"cardVerificationCheckForTokenizedTransactionsInd": false,
"loyaltyRewardsEnabledInd": false,
"initialLoyaltyRewardsNumber": 10000000000001,
"passwordNeverExpiresInd": false,
"passwordExpirationDays": 90,
"passwordExpirationWarningDays": 5,
"onetimePasscodeValdtyTimePeriod": 10,
"phoneCountryCallingCodeId": 1,
"mobileCountryCallingCodeId": 1,
"faxCountryCallingCodeId": 1,
"billingPresentmentEnabledInd": true,
"displayInvoiceNumberInPaymentsModule": true,
"adhocInvoicesEnabledInd": true,
"displayMemoInPaymentsModule": true,
"displayFolioInformationInPaymentsModule": false,
"recurringPaymentsEnabledInd": false,
"productsAndServicesEnabledInd": false,
"namePrefix": {
"value": "Fr",
"locale": "en_US",
"name": "FATHER"
},
"nameSuffix": {
"value": "MD",
"name": "DOCTOR_OF_MEDICINE"
},
"displayDigitalSignatureForCardPresentTransactions": false,
"displayDigitalSignatureForCardNotPresentTransactions": false,
"paymentTokenizationEnabledInd": true,
"paymentsBatchAuthorizationEnabledInd": false,
"paymentsBatchProcessingEnabledInd": false,
"allowPaymentsWithoutLoggingIn": true,
"allowUsersToSelfEnrollInd": true,
"allowMultiCurrencyPricingInd": false,
"allowDynamicCurrencyConversionInd": false,
"mobilePhoneCarrierType": {
"emailDomain": "NUMBER@txt.att.net,NUMBER@mms.att.net",
"value": "AT&T",
"countryCode": "USA",
"name": "ATT"
},
"cardPresentTransactionsEnabledInd": false,
"defaultCurrencyCode": "USD",
"settlementCurrencyCode": "USD",
"allowPreAuthorizationTransactionInd": false,
"allowSaleTransactionInd": true,
"allowZeroDollarAuthTransactionInd": false,
"softDescriptorsEnabledInd": false,
"softDescriptorMerchantName": "ABCSOFTWARE",
"softDescriptorProductDescription": "INCIDENTL",
"merchantStatus": {
"name": "ACTIVE"
},
"merchantURL": "https://abc-business-test.payvela.com/ui/resources/login",
"merchantDisplayTitle": "ABC Business",
"merchantCode": "abc-business",
"brandingDirectory": "abc-business",
"sessionIdleTime": 900,
"sessionTimeoutTime": 20,
"keepaliveInterval": 300,
"customerSupportInformation": "+1-877-858-7200 (MON - FRI 8:00 AM - 8:00 PM ET)",
"merchantBccEmailAddress": "abcd@gmail.com",
"abuseEmailAddress": "abuse@abc.com",
"locale": {
"name": "en_US"
},
"lateFeesEnabledInd": false,
"lateFeesType": {
"name": "PERCENTAGE"
},
"lateFeesTier1FromNumOfDays": 1,
"lateFeesTier1ToNumOfDays": 30,
"lateFeesTier2FromNumOfDays": 31,
"lateFeesTier2ToNumOfDays": 60,
"lateFeesTier3FromNumOfDays": 61,
"lateFeesTier3ToNumOfDays": 90,
"tier1LateFees": 0,
"tier2LateFees": 3,
"tier3LateFees": 6,
"waiveTheLateFeesEnabledInd": true,
"maxNumOfTimesPerYearLateFeeCanBeWaived": {
"name": "ONCE"
},
"paymentApplicationURL": "https://abc-business-test.payvela.com/ui/resources/login",
"giftCardsEnabledInd": false,
"minBookingNumberLength": 10,
"maxBookingNumberLength": 10,
"allowPartialPaymentsForInvoicesInd": false,
"convenienceFeesEnabledInd": false,
"creditCardsConvFeesType": {
"name": "PERCENTAGE"
},
"creditCardsConvFees": 3.25,
"industryType": {
"name": "BUSINESS_TO_BUSINESS"
},
"displayHealthcareFieldsOnHSAFSAPaymentMethods": false,
"displayChartOnDashboard": false,
"reportsModuleEnabledInd": true,
"displayLastXDaysOfPaymentTokensForCardOnFile": 45,
"chartsDisplayTransactionRevenue": {
"name": "NONE"
},
"chartsGroupByPaymentMethods": {
"name": "NONE"
},
"chartsGroupByTransactionTypes": {
"name": "NONE"
},
"chartsGroupByProductsAndServices": {
"name": "NONE"
},
"chartsDateRangeType": {
"name": "TODAY"
},
"numOfDaysBetweenCheckinAndCurrentDate": 3,
"smsSubscriptionType": {
"name": "FREE_VIA_SMTP"
},
"cardPresentManualEntryOnlyTransactionsEnabledInd": false,
"cardNotPresentTransactionsEnabledInd": true,
"splitPaymentsEnabledInd": true,
"accountLookupEnabledInd": false,
"nextGenHpiLocationLookup": "ABC Business",
"billingEmailRequiredForPayments": false,
"cardholderNameRequiredForTransactions": true,
"textMessageType": {
"name": "SMS"
},
"billingEnabledInd": true,
"billingRevenueShareByPercentage": 0,
"installmentPaymentsEnabledInd": false,
"minNumberOfInstallments": 2,
"maxNumberOfInstallments": 36,
"settledTransactionsReportEnabledInd": true,
"sendSettledTransactionsReportViaEmailEnabled": true,
"summaryByTypeReportEnabledInd": true,
"transactionSummaryReportEnabledInd": true,
"settledTxnsReportEmailRecipients": "abcd@gmail.com",
"offlinePaymentActionsOnInvoicesEnabledInd": true,
"qrCodeEnabledInd": false,
"dateFormat": {
"value": "yyyy-MM-dd",
"name": "YYYY_MM_DD"
},
"dateTimeFormat": {
"value": "yyyy-MM-dd hh:mm a zzz",
"name": "YYYY_MM_DD_HH_MM_A_ZZZ"
},
"logoutSingleSignOnTime": 10,
"reconciliationPlatformName": {
"value": "Intuit QuickBooks",
"industryType": "ECOMMERCE",
"name": "INTUIT_QUICKBOOKS"
},
"employerIdentificationNumber": "12-2543645",
"autoReconciliationEnabledInd": false,
"customerSummaryEnabledInd": true,
"surchargesEnabledInd": false,
"surchargesByPercentage": 1,
"onlineReceiptLinkEnabledInd": false,
"maxNumOfFailedOneTimePasscodeAttempts": 3,
"apiAccessEnabledInd": true,
"enableDigitalIdOnMakeAPaymentPageInd": false,
"barcodeScanningEnabledInd": false,
"autoReconciliationFeesEnabledInd": false,
"paperlessBillingEnabledInd": false,
"multipleQuantityListingAllowedInd": false,
"multipleProductsAndServicesAllowedInd": false,
"processFullCaptureFundsInd": false,
"paymentTokenPreferenceType": {
"name": "ACCOUNT_HOLDER_NAME"
},
"minimumPasswordLength": 11,
"retainAmountOnAccountLookupInd": false,
"merchantProperties": [
{
"id": 3,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "PURGE_ENABLED",
"propertyDescription": "Is payment tokens purge enabled",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": false,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
},
{
"id": 4,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "RETENTION_DAYS",
"propertyDescription": "# of days to retain payment tokens",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": null,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
}
],
"merchantBillings": [],
"merchantBillingModel2s": [
{
"id": 41,
"monthlyMinimumFee": 65,
"electronicStatementPerTransmission": 0.5,
"tier1LowerLimitAmount": 0.01,
"tier1UpperLimitAmount": 100000,
"tier1ProcessingFees": 1,
"tier2LowerLimitAmount": 100000.01,
"tier2UpperLimitAmount": 250000,
"tier2ProcessingFees": 0.875,
"tier3LowerLimitAmount": 250000.01,
"tier3UpperLimitAmount": 500000,
"tier3ProcessingFees": 0.75,
"tier4LowerLimitAmount": 5000000.01,
"tier4ProcessingFees": 0.625,
"merchantVolumeDiscountByPercentage": 0,
"advancedMDMonthlySubscriptionFees": null,
"athenahealthAPIConsumptionFees": null,
"athenahealthConnectionMonthlyServiceFees": null,
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1748788692000,
"lastUpdatedDateTime": 1772781989000,
"autoReconciliationFees": null,
"adhocInvoicesMonthlyPrintingProductionFees": 350
}
],
"minNumOfLowercaseAlphabetsInPassword": 1,
"minNumOfUppercaseAlphabetsInPassword": 1,
"minNumOfNumericsInPassword": 1,
"minNumOfSpecialCharactersInPassword": 1,
"passwordHistoryCount": 25,
"maxNumOfInactiveDaysForUser": 90,
"signUpUsersMaximumAllowedLoginDays": 99999,
"serverTimeZone": {
"value": "America/New York",
"tzIdentifier": "America/New_York",
"utcOffsetSDT": "−05:00",
"utcOffsetDST": "−04:00",
"tzAbbreSDT": "EST",
"tzAbbreDST": "EDT",
"name": "AMERICA_NEW_YORK"
},
"merchantTimeZone": {
"value": "Eastern Time (US & Canada)",
"offset": "-05:00",
"name": "EASTERN_TIME"
},
"exportDailyTransactionsSftpInd": false,
"deskoDocumentScanningInd": false,
"exportSFTPDirectoryName": "velaaa",
"manifestationFileOriginationType": {
"name": "NONE"
},
"maxNumberOfInvoices": 20,
"message": null,
"address": null,
"fullName": null,
"activeUserCount": null,
"activeCustomerCount": null,
"paymentTokenPurgeEnabledInd": false,
"paymentTokenPurgeDays": null,
"language": null,
"assignedCurrencies": null,
"echeckConvFees": 1.99,
"echeckConvFeesType": {
"name": "FLAT"
},
"emvcompliantTransactionType": {
"name": "RELAXED"
}
},
"message": null
}
],
"namePrefix": null,
"nameSuffix": null,
"merchant": {
"id": 1,
"merchantName": "ABC Business",
"merchantDescription": "ABC Business",
"addressLine1": "ABC Inc.",
"addressLine2": "Suite 360",
"addressLine3": null,
"city": "Johns Creek",
"state": "GA",
"zipCode": "30097",
"country": "USA",
"mailingAddressLine1": "12000 Abc Rd",
"mailingAddressLine2": "Suite 360",
"mailingAddressLine3": null,
"mailingCity": "Johns Creek",
"mailingState": "GA",
"mailingZipCode": "30097-1412",
"mailingCountry": "USA",
"pointOfContact": "Administrator",
"pointOfContactJobTitle": null,
"pointOfContactDepartment": null,
"pointOfContactEmail": "info-test@abc.com",
"pointOfContactPhone": "6787400263",
"pointOfContactMobile": "6785143610",
"pointOfContactFax": "6789921941",
"lastModifiedUserId": 1,
"addressVerificationCheckInd": false,
"cardVerificationCheckForCNPTransactionsInd": true,
"cardVerificationCheckForTokenizedTransactionsInd": false,
"loyaltyRewardsEnabledInd": false,
"initialLoyaltyRewardsNumber": 10000000000001,
"passwordNeverExpiresInd": false,
"passwordExpirationDays": 90,
"passwordExpirationWarningDays": 5,
"onetimePasscodeValdtyTimePeriod": 10,
"phoneCountryCallingCodeId": 1,
"mobileCountryCallingCodeId": 1,
"faxCountryCallingCodeId": 1,
"billingPresentmentEnabledInd": true,
"displayInvoiceNumberInPaymentsModule": true,
"adhocInvoicesEnabledInd": true,
"displayMemoInPaymentsModule": true,
"displayFolioInformationInPaymentsModule": false,
"recurringPaymentsEnabledInd": false,
"productsAndServicesEnabledInd": false,
"namePrefix": {
"value": "Fr",
"locale": "en_US",
"name": "FATHER"
},
"nameSuffix": {
"value": "MD",
"name": "DOCTOR_OF_MEDICINE"
},
"displayDigitalSignatureForCardPresentTransactions": false,
"displayDigitalSignatureForCardNotPresentTransactions": false,
"paymentTokenizationEnabledInd": true,
"paymentsBatchAuthorizationEnabledInd": false,
"paymentsBatchProcessingEnabledInd": false,
"allowPaymentsWithoutLoggingIn": true,
"allowUsersToSelfEnrollInd": true,
"allowMultiCurrencyPricingInd": false,
"allowDynamicCurrencyConversionInd": false,
"mobilePhoneCarrierType": {
"emailDomain": "NUMBER@txt.att.net,NUMBER@mms.att.net",
"value": "AT&T",
"countryCode": "USA",
"name": "ATT"
},
"cardPresentTransactionsEnabledInd": false,
"defaultCurrencyCode": "USD",
"settlementCurrencyCode": "USD",
"allowPreAuthorizationTransactionInd": false,
"allowSaleTransactionInd": true,
"allowZeroDollarAuthTransactionInd": false,
"softDescriptorsEnabledInd": false,
"softDescriptorMerchantName": "ABCSOFTWARE",
"softDescriptorProductDescription": "INCIDENTL",
"merchantStatus": {
"name": "ACTIVE"
},
"merchantURL": "https://abc-business-test.payvela.com/ui/resources/login",
"merchantDisplayTitle": "ABC Business",
"merchantCode": "abc-business",
"brandingDirectory": "abc-business",
"sessionIdleTime": 900,
"sessionTimeoutTime": 20,
"keepaliveInterval": 300,
"customerSupportInformation": "+1-877-858-7200 (MON - FRI 8:00 AM - 8:00 PM ET)",
"merchantBccEmailAddress": "abcd@gmail.com",
"abuseEmailAddress": "abuse@abc.com",
"locale": {
"name": "en_US"
},
"lateFeesEnabledInd": false,
"lateFeesType": {
"name": "PERCENTAGE"
},
"lateFeesTier1FromNumOfDays": 1,
"lateFeesTier1ToNumOfDays": 30,
"lateFeesTier2FromNumOfDays": 31,
"lateFeesTier2ToNumOfDays": 60,
"lateFeesTier3FromNumOfDays": 61,
"lateFeesTier3ToNumOfDays": 90,
"tier1LateFees": 0,
"tier2LateFees": 3,
"tier3LateFees": 6,
"waiveTheLateFeesEnabledInd": true,
"maxNumOfTimesPerYearLateFeeCanBeWaived": {
"name": "ONCE"
},
"paymentApplicationURL": "https://abc-business-test.payvela.com/ui/resources/login",
"giftCardsEnabledInd": false,
"minBookingNumberLength": 10,
"maxBookingNumberLength": 10,
"allowPartialPaymentsForInvoicesInd": false,
"convenienceFeesEnabledInd": false,
"creditCardsConvFeesType": {
"name": "PERCENTAGE"
},
"creditCardsConvFees": 3.25,
"industryType": {
"name": "BUSINESS_TO_BUSINESS"
},
"displayHealthcareFieldsOnHSAFSAPaymentMethods": false,
"displayChartOnDashboard": false,
"reportsModuleEnabledInd": true,
"displayLastXDaysOfPaymentTokensForCardOnFile": 45,
"chartsDisplayTransactionRevenue": {
"name": "NONE"
},
"chartsGroupByPaymentMethods": {
"name": "NONE"
},
"chartsGroupByTransactionTypes": {
"name": "NONE"
},
"chartsGroupByProductsAndServices": {
"name": "NONE"
},
"chartsDateRangeType": {
"name": "TODAY"
},
"numOfDaysBetweenCheckinAndCurrentDate": 3,
"smsSubscriptionType": {
"name": "FREE_VIA_SMTP"
},
"cardPresentManualEntryOnlyTransactionsEnabledInd": false,
"cardNotPresentTransactionsEnabledInd": true,
"splitPaymentsEnabledInd": true,
"accountLookupEnabledInd": false,
"nextGenHpiLocationLookup": "ABC Business",
"billingEmailRequiredForPayments": false,
"cardholderNameRequiredForTransactions": true,
"textMessageType": {
"name": "SMS"
},
"billingEnabledInd": true,
"billingRevenueShareByPercentage": 0,
"installmentPaymentsEnabledInd": false,
"minNumberOfInstallments": 2,
"maxNumberOfInstallments": 36,
"settledTransactionsReportEnabledInd": true,
"sendSettledTransactionsReportViaEmailEnabled": true,
"summaryByTypeReportEnabledInd": true,
"transactionSummaryReportEnabledInd": true,
"settledTxnsReportEmailRecipients": "abcd@gmail.com",
"offlinePaymentActionsOnInvoicesEnabledInd": true,
"qrCodeEnabledInd": false,
"dateFormat": {
"value": "yyyy-MM-dd",
"name": "YYYY_MM_DD"
},
"dateTimeFormat": {
"value": "yyyy-MM-dd hh:mm a zzz",
"name": "YYYY_MM_DD_HH_MM_A_ZZZ"
},
"logoutSingleSignOnTime": 10,
"reconciliationPlatformName": {
"value": "Intuit QuickBooks",
"industryType": "ECOMMERCE",
"name": "INTUIT_QUICKBOOKS"
},
"employerIdentificationNumber": "12-2543645",
"autoReconciliationEnabledInd": false,
"customerSummaryEnabledInd": true,
"surchargesEnabledInd": false,
"surchargesByPercentage": 1,
"onlineReceiptLinkEnabledInd": false,
"maxNumOfFailedOneTimePasscodeAttempts": 3,
"apiAccessEnabledInd": true,
"enableDigitalIdOnMakeAPaymentPageInd": false,
"barcodeScanningEnabledInd": false,
"autoReconciliationFeesEnabledInd": false,
"paperlessBillingEnabledInd": false,
"multipleQuantityListingAllowedInd": false,
"multipleProductsAndServicesAllowedInd": false,
"processFullCaptureFundsInd": false,
"paymentTokenPreferenceType": {
"name": "ACCOUNT_HOLDER_NAME"
},
"minimumPasswordLength": 11,
"retainAmountOnAccountLookupInd": false,
"merchantProperties": [
{
"id": 3,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "PURGE_ENABLED",
"propertyDescription": "Is payment tokens purge enabled",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": false,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
},
{
"id": 4,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "RETENTION_DAYS",
"propertyDescription": "# of days to retain payment tokens",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": null,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
}
],
"merchantBillings": [],
"merchantBillingModel2s": [
{
"id": 41,
"monthlyMinimumFee": 65,
"electronicStatementPerTransmission": 0.5,
"tier1LowerLimitAmount": 0.01,
"tier1UpperLimitAmount": 100000,
"tier1ProcessingFees": 1,
"tier2LowerLimitAmount": 100000.01,
"tier2UpperLimitAmount": 250000,
"tier2ProcessingFees": 0.875,
"tier3LowerLimitAmount": 250000.01,
"tier3UpperLimitAmount": 500000,
"tier3ProcessingFees": 0.75,
"tier4LowerLimitAmount": 5000000.01,
"tier4ProcessingFees": 0.625,
"merchantVolumeDiscountByPercentage": 0,
"advancedMDMonthlySubscriptionFees": null,
"athenahealthAPIConsumptionFees": null,
"athenahealthConnectionMonthlyServiceFees": null,
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1748788692000,
"lastUpdatedDateTime": 1772781989000,
"autoReconciliationFees": null,
"adhocInvoicesMonthlyPrintingProductionFees": 350
}
],
"minNumOfLowercaseAlphabetsInPassword": 1,
"minNumOfUppercaseAlphabetsInPassword": 1,
"minNumOfNumericsInPassword": 1,
"minNumOfSpecialCharactersInPassword": 1,
"passwordHistoryCount": 25,
"maxNumOfInactiveDaysForUser": 90,
"signUpUsersMaximumAllowedLoginDays": 99999,
"serverTimeZone": {
"value": "America/New York",
"tzIdentifier": "America/New_York",
"utcOffsetSDT": "−05:00",
"utcOffsetDST": "−04:00",
"tzAbbreSDT": "EST",
"tzAbbreDST": "EDT",
"name": "AMERICA_NEW_YORK"
},
"merchantTimeZone": {
"value": "Eastern Time (US & Canada)",
"offset": "-05:00",
"name": "EASTERN_TIME"
},
"exportDailyTransactionsSftpInd": false,
"deskoDocumentScanningInd": false,
"exportSFTPDirectoryName": "velaaa",
"manifestationFileOriginationType": {
"name": "NONE"
},
"maxNumberOfInvoices": 20,
"message": null,
"address": null,
"fullName": null,
"activeUserCount": null,
"activeCustomerCount": null,
"paymentTokenPurgeEnabledInd": false,
"paymentTokenPurgeDays": null,
"language": null,
"assignedCurrencies": null,
"echeckConvFees": 1.99,
"echeckConvFeesType": {
"name": "FLAT"
},
"emvcompliantTransactionType": {
"name": "RELAXED"
}
},
"customerType": {
"name": "BUSINESS"
},
"numOfTimesPerYearLateFeesIsWaived": null,
"firstWaivedDateTime": null,
"lastWaivedDateTime": null,
"pointOfContactEmail": "madhavi@datumtg.com",
"pointOfContactPhone": null,
"pointOfContactMobile": "4704131411",
"pointOfContactFax": null,
"phoneCountryCallingCodeId": null,
"mobileCountryCallingCodeId": 1,
"faxCountryCallingCodeId": null,
"mobilePhoneCarrierType": {
"emailDomain": "NUMBER@txt.att.net,NUMBER@mms.att.net",
"value": "AT&T",
"countryCode": "USA",
"name": "ATT"
},
"dateOfBirth": null,
"textMessageType": {
"name": "SMS"
},
"gender": null,
"country": "USA",
"addressLine1": null,
"addressLine2": null,
"addressLine3": null,
"city": null,
"state": null,
"zipCode": null,
"enrollmentStatus": {
"name": "ENROLLED"
},
"digitalSignature": null,
"paperlessBillingEnrollmentChangeDateTime": null,
"paperlessBillingEnrollmentInd": false,
"encryptedIdentityInfo": "qyCnLk6nn8P8cI3mQh724FZovfNsNEjeNP8kBG01J/ePuFnl40LTX/3LYOSLfxyOqrZxA+X1Betjbophqd4HOJy4jkYiSZRec/CRwyByTSiql9hYI88O8cFYFrZKDgWTgGou7UBhSGkttlQMjOP+v45f9cQ7lK4aj07UoLmU/rdoODilqdvS1XXx++lHjQNipu8gu4fZnW4L/B8l2DEB0uGzYuP5EL5lVyfLIyvAH1idl+vFoAdpcUAA7fO/HRS2Qp1EIbGMdWUZGFYYqPMIG8h1uruLORgVnnzavQsX0tdVa4gmOzYVz2zsxByOqcR3ej9obnOFaPiNdS3dSeZh//AXB8KjhmeGycewSCeSWY9292rUvE6KK0PxVZKPO5W7RWRSQP2IWswhmfMSJhsrdVj3SfOt1IcdgdI9BHVDg49N344VAMn8rYx5+chF5cgKEX2f255hV7p9Nz5rybcaFJARIg4tscpm1OcVAuM7PM55zkaQjXmw91Z4/Mr2vR6YanW2WaXusvCqsL1uQkWPr/gXbInqHEwJxcRG2RS+gJ62GlVWJDHG8vAe2HRZnA+jAFKo+B1fLMHqKOty0RbpNWxzRkKPpmwVAL6Co9iyh0KZUKtugP9/GXbRoPrlZ63rnwh8ptlLhdCXaPlCn2m0Evv1yNJ008Z+zijtcZeqiwNvvdZaanBLXZJAHUSUME1T8WNpmsFHJoYPDFvs03mXl0Yk3dkweqXBvRd6ju9U0FR6Q5CysqUyV5Jv5QBe2Qv5U2slkBSiM9/9W5mMDqyhNpIXEAoXp9/U9jfECOmiwp0rXjTnUW+oeLYLYjtUIvtqFpMKC+yCKyEalL/nHTXEppVNlAnyYEJVubpZUG86bOov6Vka/qNWWS897Fe+O3/drhpgYCXqLYcgcQ2jEJJINDn59C5xWC85RHZlIEGzMu+H0m07MZs0VXxE5x9cOmamkrBcthDJnmG75G6bZyLzoenEWrP7A8Yi0EJR0KYCCwpeOYtvrPuXp7QxSFeZs6pY+o7qSnaBV+pQgmY8mCEOt7WF8qfl+YtTYr6CDU6/6RJurzpu0VCNKvgY5pKaYsKGBxR7oDWlOmYotLqYAHwImg==",
"checkInDate": null,
"checkOutDate": null,
"roomNumber": null,
"bookingNumber": null,
"documentType": null,
"nationality": null,
"groupName": null,
"encryptedGeolocationInfo": null,
"fnrhReservationId": null,
"responseMsg": null,
"responseCode": null,
"numberOfAdultGuests": 0,
"numberOfChildrenGuests": 0,
"actualCheckInDateTime": null,
"actualCheckOutDateTime": null,
"message": null,
"identityInfo": null,
"address": null,
"fullName": null,
"activeUserCount": null,
"unpaidInvoiceCount": null,
"dateOfBirthString": "",
"checkInDateString": "",
"checkOutDateString": "",
"createdDateString": "",
"merchantId": null,
"departmentId": 0,
"documentTypeText": "",
"genderText": "",
"locale": null,
"createdUserName": null
},
"invoiceBatchId": null,
"paidByUserId": null,
"merchant": {
"id": 1,
"merchantName": "ABC Business",
"merchantDescription": "ABC Business",
"addressLine1": "ABC Inc.",
"addressLine2": "Suite 360",
"addressLine3": null,
"city": "Johns Creek",
"state": "GA",
"zipCode": "30097",
"country": "USA",
"mailingAddressLine1": "12000 Abc Rd",
"mailingAddressLine2": "Suite 360",
"mailingAddressLine3": null,
"mailingCity": "Johns Creek",
"mailingState": "GA",
"mailingZipCode": "30097-1412",
"mailingCountry": "USA",
"pointOfContact": "Administrator",
"pointOfContactJobTitle": null,
"pointOfContactDepartment": null,
"pointOfContactEmail": "info-test@abc.com",
"pointOfContactPhone": "6787400263",
"pointOfContactMobile": "6785143610",
"pointOfContactFax": "6789921941",
"lastModifiedUserId": 1,
"addressVerificationCheckInd": false,
"cardVerificationCheckForCNPTransactionsInd": true,
"cardVerificationCheckForTokenizedTransactionsInd": false,
"loyaltyRewardsEnabledInd": false,
"initialLoyaltyRewardsNumber": 10000000000001,
"passwordNeverExpiresInd": false,
"passwordExpirationDays": 90,
"passwordExpirationWarningDays": 5,
"onetimePasscodeValdtyTimePeriod": 10,
"phoneCountryCallingCodeId": 1,
"mobileCountryCallingCodeId": 1,
"faxCountryCallingCodeId": 1,
"billingPresentmentEnabledInd": true,
"displayInvoiceNumberInPaymentsModule": true,
"adhocInvoicesEnabledInd": true,
"displayMemoInPaymentsModule": true,
"displayFolioInformationInPaymentsModule": false,
"recurringPaymentsEnabledInd": false,
"productsAndServicesEnabledInd": false,
"namePrefix": {
"value": "Fr",
"locale": "en_US",
"name": "FATHER"
},
"nameSuffix": {
"value": "MD",
"name": "DOCTOR_OF_MEDICINE"
},
"displayDigitalSignatureForCardPresentTransactions": false,
"displayDigitalSignatureForCardNotPresentTransactions": false,
"paymentTokenizationEnabledInd": true,
"paymentsBatchAuthorizationEnabledInd": false,
"paymentsBatchProcessingEnabledInd": false,
"allowPaymentsWithoutLoggingIn": true,
"allowUsersToSelfEnrollInd": true,
"allowMultiCurrencyPricingInd": false,
"allowDynamicCurrencyConversionInd": false,
"mobilePhoneCarrierType": {
"emailDomain": "NUMBER@txt.att.net,NUMBER@mms.att.net",
"value": "AT&T",
"countryCode": "USA",
"name": "ATT"
},
"cardPresentTransactionsEnabledInd": false,
"defaultCurrencyCode": "USD",
"settlementCurrencyCode": "USD",
"allowPreAuthorizationTransactionInd": false,
"allowSaleTransactionInd": true,
"allowZeroDollarAuthTransactionInd": false,
"softDescriptorsEnabledInd": false,
"softDescriptorMerchantName": "ABCSOFTWARE",
"softDescriptorProductDescription": "INCIDENTL",
"merchantStatus": {
"name": "ACTIVE"
},
"merchantURL": "https://abc-business-test.payvela.com/ui/resources/login",
"merchantDisplayTitle": "ABC Business",
"merchantCode": "abc-business",
"brandingDirectory": "abc-business",
"sessionIdleTime": 900,
"sessionTimeoutTime": 20,
"keepaliveInterval": 300,
"customerSupportInformation": "+1-877-858-7200 (MON - FRI 8:00 AM - 8:00 PM ET)",
"merchantBccEmailAddress": "abcd@gmail.com",
"abuseEmailAddress": "abuse@abc.com",
"locale": {
"name": "en_US"
},
"lateFeesEnabledInd": false,
"lateFeesType": {
"name": "PERCENTAGE"
},
"lateFeesTier1FromNumOfDays": 1,
"lateFeesTier1ToNumOfDays": 30,
"lateFeesTier2FromNumOfDays": 31,
"lateFeesTier2ToNumOfDays": 60,
"lateFeesTier3FromNumOfDays": 61,
"lateFeesTier3ToNumOfDays": 90,
"tier1LateFees": 0,
"tier2LateFees": 3,
"tier3LateFees": 6,
"waiveTheLateFeesEnabledInd": true,
"maxNumOfTimesPerYearLateFeeCanBeWaived": {
"name": "ONCE"
},
"paymentApplicationURL": "https://abc-business-test.payvela.com/ui/resources/login",
"giftCardsEnabledInd": false,
"minBookingNumberLength": 10,
"maxBookingNumberLength": 10,
"allowPartialPaymentsForInvoicesInd": false,
"convenienceFeesEnabledInd": false,
"creditCardsConvFeesType": {
"name": "PERCENTAGE"
},
"creditCardsConvFees": 3.25,
"industryType": {
"name": "BUSINESS_TO_BUSINESS"
},
"displayHealthcareFieldsOnHSAFSAPaymentMethods": false,
"displayChartOnDashboard": false,
"reportsModuleEnabledInd": true,
"displayLastXDaysOfPaymentTokensForCardOnFile": 45,
"chartsDisplayTransactionRevenue": {
"name": "NONE"
},
"chartsGroupByPaymentMethods": {
"name": "NONE"
},
"chartsGroupByTransactionTypes": {
"name": "NONE"
},
"chartsGroupByProductsAndServices": {
"name": "NONE"
},
"chartsDateRangeType": {
"name": "TODAY"
},
"numOfDaysBetweenCheckinAndCurrentDate": 3,
"smsSubscriptionType": {
"name": "FREE_VIA_SMTP"
},
"cardPresentManualEntryOnlyTransactionsEnabledInd": false,
"cardNotPresentTransactionsEnabledInd": true,
"splitPaymentsEnabledInd": true,
"accountLookupEnabledInd": false,
"nextGenHpiLocationLookup": "ABC Business",
"billingEmailRequiredForPayments": false,
"cardholderNameRequiredForTransactions": true,
"textMessageType": {
"name": "SMS"
},
"billingEnabledInd": true,
"billingRevenueShareByPercentage": 0,
"installmentPaymentsEnabledInd": false,
"minNumberOfInstallments": 2,
"maxNumberOfInstallments": 36,
"settledTransactionsReportEnabledInd": true,
"sendSettledTransactionsReportViaEmailEnabled": true,
"summaryByTypeReportEnabledInd": true,
"transactionSummaryReportEnabledInd": true,
"settledTxnsReportEmailRecipients": "abcd@gmail.com",
"offlinePaymentActionsOnInvoicesEnabledInd": true,
"qrCodeEnabledInd": false,
"dateFormat": {
"value": "yyyy-MM-dd",
"name": "YYYY_MM_DD"
},
"dateTimeFormat": {
"value": "yyyy-MM-dd hh:mm a zzz",
"name": "YYYY_MM_DD_HH_MM_A_ZZZ"
},
"logoutSingleSignOnTime": 10,
"reconciliationPlatformName": {
"value": "Intuit QuickBooks",
"industryType": "ECOMMERCE",
"name": "INTUIT_QUICKBOOKS"
},
"employerIdentificationNumber": "12-2543645",
"autoReconciliationEnabledInd": false,
"customerSummaryEnabledInd": true,
"surchargesEnabledInd": false,
"surchargesByPercentage": 1,
"onlineReceiptLinkEnabledInd": false,
"maxNumOfFailedOneTimePasscodeAttempts": 3,
"apiAccessEnabledInd": true,
"enableDigitalIdOnMakeAPaymentPageInd": false,
"barcodeScanningEnabledInd": false,
"autoReconciliationFeesEnabledInd": false,
"paperlessBillingEnabledInd": false,
"multipleQuantityListingAllowedInd": false,
"multipleProductsAndServicesAllowedInd": false,
"processFullCaptureFundsInd": false,
"paymentTokenPreferenceType": {
"name": "ACCOUNT_HOLDER_NAME"
},
"minimumPasswordLength": 11,
"retainAmountOnAccountLookupInd": false,
"merchantProperties": [
{
"id": 3,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "PURGE_ENABLED",
"propertyDescription": "Is payment tokens purge enabled",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": false,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
},
{
"id": 4,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "RETENTION_DAYS",
"propertyDescription": "# of days to retain payment tokens",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": null,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
}
],
"merchantBillings": [],
"merchantBillingModel2s": [
{
"id": 41,
"monthlyMinimumFee": 65,
"electronicStatementPerTransmission": 0.5,
"tier1LowerLimitAmount": 0.01,
"tier1UpperLimitAmount": 100000,
"tier1ProcessingFees": 1,
"tier2LowerLimitAmount": 100000.01,
"tier2UpperLimitAmount": 250000,
"tier2ProcessingFees": 0.875,
"tier3LowerLimitAmount": 250000.01,
"tier3UpperLimitAmount": 500000,
"tier3ProcessingFees": 0.75,
"tier4LowerLimitAmount": 5000000.01,
"tier4ProcessingFees": 0.625,
"merchantVolumeDiscountByPercentage": 0,
"advancedMDMonthlySubscriptionFees": null,
"athenahealthAPIConsumptionFees": null,
"athenahealthConnectionMonthlyServiceFees": null,
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1748788692000,
"lastUpdatedDateTime": 1772781989000,
"autoReconciliationFees": null,
"adhocInvoicesMonthlyPrintingProductionFees": 350
}
],
"minNumOfLowercaseAlphabetsInPassword": 1,
"minNumOfUppercaseAlphabetsInPassword": 1,
"minNumOfNumericsInPassword": 1,
"minNumOfSpecialCharactersInPassword": 1,
"passwordHistoryCount": 25,
"maxNumOfInactiveDaysForUser": 90,
"signUpUsersMaximumAllowedLoginDays": 99999,
"serverTimeZone": {
"value": "America/New York",
"tzIdentifier": "America/New_York",
"utcOffsetSDT": "−05:00",
"utcOffsetDST": "−04:00",
"tzAbbreSDT": "EST",
"tzAbbreDST": "EDT",
"name": "AMERICA_NEW_YORK"
},
"merchantTimeZone": {
"value": "Eastern Time (US & Canada)",
"offset": "-05:00",
"name": "EASTERN_TIME"
},
"exportDailyTransactionsSftpInd": false,
"deskoDocumentScanningInd": false,
"exportSFTPDirectoryName": "velaaa",
"manifestationFileOriginationType": {
"name": "NONE"
},
"maxNumberOfInvoices": 20,
"message": null,
"address": null,
"fullName": null,
"activeUserCount": null,
"activeCustomerCount": null,
"paymentTokenPurgeEnabledInd": false,
"paymentTokenPurgeDays": null,
"language": null,
"assignedCurrencies": null,
"echeckConvFees": 1.99,
"echeckConvFeesType": {
"name": "FLAT"
},
"emvcompliantTransactionType": {
"name": "RELAXED"
}
},
"waiveReasonOnLateFees": null,
"waiveLateFeesByPercentage": null,
"waivedByUserId": null,
"waivedDate": null,
"memo": "unpaid",
"amountAdjustedReason": null,
"merchantId": null,
"paidByUserName": null,
"message": null,
"geolocation": null,
"cardNotPresentChannelId": null,
"roleType": null,
"paymentAction": null,
"addressLine1": null,
"addressLine2": null,
"city": null,
"state": null,
"zipCode": null,
"phone": null,
"mobile": null,
"merchantCode": null,
"emailAddress": null,
"customerNumber": null,
"customerName": null,
"sessionId": "",
"lastCPTDateOfService": null,
"bSendNotification": false,
"salesOrderNumber": null,
"purchaseOrderNumber": null,
"invoiceDateString": null,
"accessionNumber": null
}
Response
{
"id": 36735,
"invoiceNumber": "GPC-47",
"invoiceDescription": null,
"createdDateTime": 1746648148000,
"lastUpdatedDateTime": null,
"invoiceDate": 1744084800000,
"paidDate": null,
"dueDate": 1738386000000,
"terms": 0,
"aging": 0,
"invoiceAmount": {
"amount": 150,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"currencyExponent": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1754426845000,
"isoNumericCode": "840",
"isoCountryCode": "840",
"alpha2CountryCode": "US"
}
},
"paidAmount": {
"amount": 0,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"currencyExponent": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1754426845000,
"isoNumericCode": "840",
"isoCountryCode": "840",
"alpha2CountryCode": "US"
}
},
"amountDue": {
"amount": 150,
"currency": {
"id": 1,
"currencyCode": "USD",
"currencyText": "United States Dollar",
"currencySymbol": "$",
"fractionalUnit": "Cent",
"currencyExponent": "2",
"supportedByVisaCheckout": true,
"createdDateTime": 1754426845000,
"isoNumericCode": "840",
"isoCountryCode": "840",
"alpha2CountryCode": "US"
}
},
"createdUserId": 65,
"lastModifiedUserId": 65,
"invoiceStatus": {
"name": "UNPAID"
},
"invoiceType": {
"name": "FILE_UPLOAD"
},
"customer": {
"id": 9942,
"customerNumber": "40000",
"customerName": "Patient Monitor",
"customerStatus": {
"name": "ACTIVE"
},
"pointOfContact": null,
"pointOfContactJobTitle": null,
"pointOfContactDepartment": null,
"createdUserId": 65,
"lastModifiedUserId": 65,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1635184073000,
"customerBatchId": null,
"outstandingBalance": null,
"customerProperties": [
{
"id": 138,
"propertyType": {
"name": "PREDUE"
},
"propertyName": "1",
"propertyDescription": "Pre due",
"propertyStringValue": null,
"propertyIntValue": 1,
"propertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 65,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1729529666000,
"lastUpdatedDateTime": 1772055013000,
"merchant": {
"id": 1,
"merchantName": "ABC Business",
"merchantDescription": "ABC Business",
"addressLine1": "ABC Inc.",
"addressLine2": "Suite 360",
"addressLine3": null,
"city": "Johns Creek",
"state": "GA",
"zipCode": "30097",
"country": "USA",
"mailingAddressLine1": "12000 Abc Rd",
"mailingAddressLine2": "Suite 360",
"mailingAddressLine3": null,
"mailingCity": "Johns Creek",
"mailingState": "GA",
"mailingZipCode": "30097-1412",
"mailingCountry": "USA",
"pointOfContact": "Administrator",
"pointOfContactJobTitle": null,
"pointOfContactDepartment": null,
"pointOfContactEmail": "info-test@abc.com",
"pointOfContactPhone": "6787400263",
"pointOfContactMobile": "6785143610",
"pointOfContactFax": "6789921941",
"lastModifiedUserId": 1,
"addressVerificationCheckInd": false,
"cardVerificationCheckForCNPTransactionsInd": true,
"cardVerificationCheckForTokenizedTransactionsInd": false,
"loyaltyRewardsEnabledInd": false,
"initialLoyaltyRewardsNumber": 10000000000001,
"passwordNeverExpiresInd": false,
"passwordExpirationDays": 90,
"passwordExpirationWarningDays": 5,
"onetimePasscodeValdtyTimePeriod": 10,
"phoneCountryCallingCodeId": 1,
"mobileCountryCallingCodeId": 1,
"faxCountryCallingCodeId": 1,
"billingPresentmentEnabledInd": true,
"displayInvoiceNumberInPaymentsModule": true,
"adhocInvoicesEnabledInd": true,
"displayMemoInPaymentsModule": true,
"displayFolioInformationInPaymentsModule": false,
"recurringPaymentsEnabledInd": false,
"productsAndServicesEnabledInd": false,
"namePrefix": {
"value": "Fr",
"locale": "en_US",
"name": "FATHER"
},
"nameSuffix": {
"value": "MD",
"name": "DOCTOR_OF_MEDICINE"
},
"displayDigitalSignatureForCardPresentTransactions": false,
"displayDigitalSignatureForCardNotPresentTransactions": false,
"paymentTokenizationEnabledInd": true,
"paymentsBatchAuthorizationEnabledInd": false,
"paymentsBatchProcessingEnabledInd": false,
"allowPaymentsWithoutLoggingIn": true,
"allowUsersToSelfEnrollInd": true,
"allowMultiCurrencyPricingInd": false,
"allowDynamicCurrencyConversionInd": false,
"mobilePhoneCarrierType": {
"emailDomain": "NUMBER@txt.att.net,NUMBER@mms.att.net",
"value": "AT&T",
"countryCode": "USA",
"name": "ATT"
},
"cardPresentTransactionsEnabledInd": false,
"defaultCurrencyCode": "USD",
"settlementCurrencyCode": "USD",
"allowPreAuthorizationTransactionInd": false,
"allowSaleTransactionInd": true,
"allowZeroDollarAuthTransactionInd": false,
"softDescriptorsEnabledInd": false,
"softDescriptorMerchantName": "ABCSOFTWARE",
"softDescriptorProductDescription": "INCIDENTL",
"merchantStatus": {
"name": "ACTIVE"
},
"merchantURL": "https://abc-business-test.payvela.com/ui/resources/login",
"merchantDisplayTitle": "ABC Business",
"merchantCode": "abc-business",
"brandingDirectory": "abc-business",
"sessionIdleTime": 900,
"sessionTimeoutTime": 20,
"keepaliveInterval": 300,
"customerSupportInformation": "+1-877-858-7200 (MON - FRI 8:00 AM - 8:00 PM ET)",
"merchantBccEmailAddress": "abcd@gmail.com",
"abuseEmailAddress": "abuse@abc.com",
"locale": {
"name": "en_US"
},
"lateFeesEnabledInd": false,
"lateFeesType": {
"name": "PERCENTAGE"
},
"lateFeesTier1FromNumOfDays": 1,
"lateFeesTier1ToNumOfDays": 30,
"lateFeesTier2FromNumOfDays": 31,
"lateFeesTier2ToNumOfDays": 60,
"lateFeesTier3FromNumOfDays": 61,
"lateFeesTier3ToNumOfDays": 90,
"tier1LateFees": 0.0,
"tier2LateFees": 3.0,
"tier3LateFees": 6.0,
"waiveTheLateFeesEnabledInd": true,
"maxNumOfTimesPerYearLateFeeCanBeWaived": {
"name": "ONCE"
},
"paymentApplicationURL": "https://abc-business-test.payvela.com/ui/resources/login",
"giftCardsEnabledInd": false,
"minBookingNumberLength": 10,
"maxBookingNumberLength": 10,
"allowPartialPaymentsForInvoicesInd": false,
"convenienceFeesEnabledInd": false,
"creditCardsConvFeesType": {
"name": "PERCENTAGE"
},
"creditCardsConvFees": 3.25,
"industryType": {
"name": "BUSINESS_TO_BUSINESS"
},
"displayHealthcareFieldsOnHSAFSAPaymentMethods": false,
"displayChartOnDashboard": false,
"reportsModuleEnabledInd": true,
"displayLastXDaysOfPaymentTokensForCardOnFile": 45,
"chartsDisplayTransactionRevenue": {
"name": "NONE"
},
"chartsGroupByPaymentMethods": {
"name": "NONE"
},
"chartsGroupByTransactionTypes": {
"name": "NONE"
},
"chartsGroupByProductsAndServices": {
"name": "NONE"
},
"chartsDateRangeType": {
"name": "TODAY"
},
"numOfDaysBetweenCheckinAndCurrentDate": 3,
"smsSubscriptionType": {
"name": "FREE_VIA_SMTP"
},
"cardPresentManualEntryOnlyTransactionsEnabledInd": false,
"cardNotPresentTransactionsEnabledInd": true,
"splitPaymentsEnabledInd": true,
"accountLookupEnabledInd": false,
"nextGenHpiLocationLookup": "ABC Business",
"billingEmailRequiredForPayments": false,
"cardholderNameRequiredForTransactions": true,
"textMessageType": {
"name": "SMS"
},
"billingEnabledInd": true,
"billingRevenueShareByPercentage": 0.0,
"installmentPaymentsEnabledInd": false,
"minNumberOfInstallments": 2,
"maxNumberOfInstallments": 36,
"settledTransactionsReportEnabledInd": true,
"sendSettledTransactionsReportViaEmailEnabled": true,
"summaryByTypeReportEnabledInd": true,
"transactionSummaryReportEnabledInd": true,
"settledTxnsReportEmailRecipients": "abcd@gmail.com",
"offlinePaymentActionsOnInvoicesEnabledInd": true,
"qrCodeEnabledInd": false,
"dateFormat": {
"value": "yyyy-MM-dd",
"name": "YYYY_MM_DD"
},
"dateTimeFormat": {
"value": "yyyy-MM-dd hh:mm a zzz",
"name": "YYYY_MM_DD_HH_MM_A_ZZZ"
},
"logoutSingleSignOnTime": 10,
"reconciliationPlatformName": {
"value": "Intuit QuickBooks",
"industryType": "ECOMMERCE",
"name": "INTUIT_QUICKBOOKS"
},
"employerIdentificationNumber": "12-2543645",
"autoReconciliationEnabledInd": false,
"customerSummaryEnabledInd": true,
"surchargesEnabledInd": false,
"surchargesByPercentage": 1.0,
"onlineReceiptLinkEnabledInd": false,
"maxNumOfFailedOneTimePasscodeAttempts": 3,
"apiAccessEnabledInd": true,
"enableDigitalIdOnMakeAPaymentPageInd": false,
"barcodeScanningEnabledInd": false,
"autoReconciliationFeesEnabledInd": false,
"paperlessBillingEnabledInd": false,
"multipleQuantityListingAllowedInd": false,
"multipleProductsAndServicesAllowedInd": false,
"processFullCaptureFundsInd": false,
"paymentTokenPreferenceType": {
"name": "ACCOUNT_HOLDER_NAME"
},
"minimumPasswordLength": 11,
"retainAmountOnAccountLookupInd": false,
"merchantProperties": [
{
"id": 4,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "RETENTION_DAYS",
"propertyDescription": "# of days to retain payment tokens",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": null,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
},
{
"id": 3,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "PURGE_ENABLED",
"propertyDescription": "Is payment tokens purge enabled",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": false,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
}
],
"merchantBillings": [],
"merchantBillingModel2s": [
{
"id": 41,
"monthlyMinimumFee": 65,
"electronicStatementPerTransmission": 0.5,
"tier1LowerLimitAmount": 0.01,
"tier1UpperLimitAmount": 100000,
"tier1ProcessingFees": 1.0,
"tier2LowerLimitAmount": 100000.01,
"tier2UpperLimitAmount": 250000,
"tier2ProcessingFees": 0.875,
"tier3LowerLimitAmount": 250000.01,
"tier3UpperLimitAmount": 500000,
"tier3ProcessingFees": 0.75,
"tier4LowerLimitAmount": 5000000.01,
"tier4ProcessingFees": 0.625,
"merchantVolumeDiscountByPercentage": 0.0,
"advancedMDMonthlySubscriptionFees": null,
"athenahealthAPIConsumptionFees": null,
"athenahealthConnectionMonthlyServiceFees": null,
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1748788692000,
"lastUpdatedDateTime": 1772781989000,
"autoReconciliationFees": null,
"adhocInvoicesMonthlyPrintingProductionFees": 350
}
],
"minNumOfLowercaseAlphabetsInPassword": 1,
"minNumOfUppercaseAlphabetsInPassword": 1,
"minNumOfNumericsInPassword": 1,
"minNumOfSpecialCharactersInPassword": 1,
"passwordHistoryCount": 25,
"maxNumOfInactiveDaysForUser": 90,
"signUpUsersMaximumAllowedLoginDays": 99999,
"serverTimeZone": {
"value": "America/New York",
"tzIdentifier": "America/New_York",
"utcOffsetSDT": "−05:00",
"utcOffsetDST": "−04:00",
"tzAbbreSDT": "EST",
"tzAbbreDST": "EDT",
"name": "AMERICA_NEW_YORK"
},
"merchantTimeZone": {
"value": "Eastern Time (US & Canada)",
"offset": "-05:00",
"name": "EASTERN_TIME"
},
"exportDailyTransactionsSftpInd": false,
"deskoDocumentScanningInd": false,
"exportSFTPDirectoryName": "velaaa",
"manifestationFileOriginationType": {
"name": "NONE"
},
"maxNumberOfInvoices": 20,
"message": null,
"address": null,
"fullName": null,
"activeUserCount": null,
"activeCustomerCount": null,
"paymentTokenPurgeEnabledInd": false,
"paymentTokenPurgeDays": null,
"language": null,
"assignedCurrencies": null,
"echeckConvFees": 1.99,
"echeckConvFeesType": {
"name": "FLAT"
},
"emvcompliantTransactionType": {
"name": "RELAXED"
}
},
"message": null
},
{
"id": 137,
"propertyType": {
"name": "POSTDUE"
},
"propertyName": "1",
"propertyDescription": "Post due",
"propertyStringValue": null,
"propertyIntValue": 1,
"propertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 65,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1729529666000,
"lastUpdatedDateTime": 1772055013000,
"merchant": {
"id": 1,
"merchantName": "ABC Business",
"merchantDescription": "ABC Business",
"addressLine1": "ABC Inc.",
"addressLine2": "Suite 360",
"addressLine3": null,
"city": "Johns Creek",
"state": "GA",
"zipCode": "30097",
"country": "USA",
"mailingAddressLine1": "12000 Abc Rd",
"mailingAddressLine2": "Suite 360",
"mailingAddressLine3": null,
"mailingCity": "Johns Creek",
"mailingState": "GA",
"mailingZipCode": "30097-1412",
"mailingCountry": "USA",
"pointOfContact": "Administrator",
"pointOfContactJobTitle": null,
"pointOfContactDepartment": null,
"pointOfContactEmail": "info-test@abc.com",
"pointOfContactPhone": "6787400263",
"pointOfContactMobile": "6785143610",
"pointOfContactFax": "6789921941",
"lastModifiedUserId": 1,
"addressVerificationCheckInd": false,
"cardVerificationCheckForCNPTransactionsInd": true,
"cardVerificationCheckForTokenizedTransactionsInd": false,
"loyaltyRewardsEnabledInd": false,
"initialLoyaltyRewardsNumber": 10000000000001,
"passwordNeverExpiresInd": false,
"passwordExpirationDays": 90,
"passwordExpirationWarningDays": 5,
"onetimePasscodeValdtyTimePeriod": 10,
"phoneCountryCallingCodeId": 1,
"mobileCountryCallingCodeId": 1,
"faxCountryCallingCodeId": 1,
"billingPresentmentEnabledInd": true,
"displayInvoiceNumberInPaymentsModule": true,
"adhocInvoicesEnabledInd": true,
"displayMemoInPaymentsModule": true,
"displayFolioInformationInPaymentsModule": false,
"recurringPaymentsEnabledInd": false,
"productsAndServicesEnabledInd": false,
"namePrefix": {
"value": "Fr",
"locale": "en_US",
"name": "FATHER"
},
"nameSuffix": {
"value": "MD",
"name": "DOCTOR_OF_MEDICINE"
},
"displayDigitalSignatureForCardPresentTransactions": false,
"displayDigitalSignatureForCardNotPresentTransactions": false,
"paymentTokenizationEnabledInd": true,
"paymentsBatchAuthorizationEnabledInd": false,
"paymentsBatchProcessingEnabledInd": false,
"allowPaymentsWithoutLoggingIn": true,
"allowUsersToSelfEnrollInd": true,
"allowMultiCurrencyPricingInd": false,
"allowDynamicCurrencyConversionInd": false,
"mobilePhoneCarrierType": {
"emailDomain": "NUMBER@txt.att.net,NUMBER@mms.att.net",
"value": "AT&T",
"countryCode": "USA",
"name": "ATT"
},
"cardPresentTransactionsEnabledInd": false,
"defaultCurrencyCode": "USD",
"settlementCurrencyCode": "USD",
"allowPreAuthorizationTransactionInd": false,
"allowSaleTransactionInd": true,
"allowZeroDollarAuthTransactionInd": false,
"softDescriptorsEnabledInd": false,
"softDescriptorMerchantName": "ABCSOFTWARE",
"softDescriptorProductDescription": "INCIDENTL",
"merchantStatus": {
"name": "ACTIVE"
},
"merchantURL": "https://abc-business-test.payvela.com/ui/resources/login",
"merchantDisplayTitle": "ABC Business",
"merchantCode": "abc-business",
"brandingDirectory": "abc-business",
"sessionIdleTime": 900,
"sessionTimeoutTime": 20,
"keepaliveInterval": 300,
"customerSupportInformation": "+1-877-858-7200 (MON - FRI 8:00 AM - 8:00 PM ET)",
"merchantBccEmailAddress": "abcd@gmail.com",
"abuseEmailAddress": "abuse@abc.com",
"locale": {
"name": "en_US"
},
"lateFeesEnabledInd": false,
"lateFeesType": {
"name": "PERCENTAGE"
},
"lateFeesTier1FromNumOfDays": 1,
"lateFeesTier1ToNumOfDays": 30,
"lateFeesTier2FromNumOfDays": 31,
"lateFeesTier2ToNumOfDays": 60,
"lateFeesTier3FromNumOfDays": 61,
"lateFeesTier3ToNumOfDays": 90,
"tier1LateFees": 0.0,
"tier2LateFees": 3.0,
"tier3LateFees": 6.0,
"waiveTheLateFeesEnabledInd": true,
"maxNumOfTimesPerYearLateFeeCanBeWaived": {
"name": "ONCE"
},
"paymentApplicationURL": "https://abc-business-test.payvela.com/ui/resources/login",
"giftCardsEnabledInd": false,
"minBookingNumberLength": 10,
"maxBookingNumberLength": 10,
"allowPartialPaymentsForInvoicesInd": false,
"convenienceFeesEnabledInd": false,
"creditCardsConvFeesType": {
"name": "PERCENTAGE"
},
"creditCardsConvFees": 3.25,
"industryType": {
"name": "BUSINESS_TO_BUSINESS"
},
"displayHealthcareFieldsOnHSAFSAPaymentMethods": false,
"displayChartOnDashboard": false,
"reportsModuleEnabledInd": true,
"displayLastXDaysOfPaymentTokensForCardOnFile": 45,
"chartsDisplayTransactionRevenue": {
"name": "NONE"
},
"chartsGroupByPaymentMethods": {
"name": "NONE"
},
"chartsGroupByTransactionTypes": {
"name": "NONE"
},
"chartsGroupByProductsAndServices": {
"name": "NONE"
},
"chartsDateRangeType": {
"name": "TODAY"
},
"numOfDaysBetweenCheckinAndCurrentDate": 3,
"smsSubscriptionType": {
"name": "FREE_VIA_SMTP"
},
"cardPresentManualEntryOnlyTransactionsEnabledInd": false,
"cardNotPresentTransactionsEnabledInd": true,
"splitPaymentsEnabledInd": true,
"accountLookupEnabledInd": false,
"nextGenHpiLocationLookup": "ABC Business",
"billingEmailRequiredForPayments": false,
"cardholderNameRequiredForTransactions": true,
"textMessageType": {
"name": "SMS"
},
"billingEnabledInd": true,
"billingRevenueShareByPercentage": 0.0,
"installmentPaymentsEnabledInd": false,
"minNumberOfInstallments": 2,
"maxNumberOfInstallments": 36,
"settledTransactionsReportEnabledInd": true,
"sendSettledTransactionsReportViaEmailEnabled": true,
"summaryByTypeReportEnabledInd": true,
"transactionSummaryReportEnabledInd": true,
"settledTxnsReportEmailRecipients": "abcd@gmail.com",
"offlinePaymentActionsOnInvoicesEnabledInd": true,
"qrCodeEnabledInd": false,
"dateFormat": {
"value": "yyyy-MM-dd",
"name": "YYYY_MM_DD"
},
"dateTimeFormat": {
"value": "yyyy-MM-dd hh:mm a zzz",
"name": "YYYY_MM_DD_HH_MM_A_ZZZ"
},
"logoutSingleSignOnTime": 10,
"reconciliationPlatformName": {
"value": "Intuit QuickBooks",
"industryType": "ECOMMERCE",
"name": "INTUIT_QUICKBOOKS"
},
"employerIdentificationNumber": "12-2543645",
"autoReconciliationEnabledInd": false,
"customerSummaryEnabledInd": true,
"surchargesEnabledInd": false,
"surchargesByPercentage": 1.0,
"onlineReceiptLinkEnabledInd": false,
"maxNumOfFailedOneTimePasscodeAttempts": 3,
"apiAccessEnabledInd": true,
"enableDigitalIdOnMakeAPaymentPageInd": false,
"barcodeScanningEnabledInd": false,
"autoReconciliationFeesEnabledInd": false,
"paperlessBillingEnabledInd": false,
"multipleQuantityListingAllowedInd": false,
"multipleProductsAndServicesAllowedInd": false,
"processFullCaptureFundsInd": false,
"paymentTokenPreferenceType": {
"name": "ACCOUNT_HOLDER_NAME"
},
"minimumPasswordLength": 11,
"retainAmountOnAccountLookupInd": false,
"merchantProperties": [
{
"id": 4,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "RETENTION_DAYS",
"propertyDescription": "# of days to retain payment tokens",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": null,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
},
{
"id": 3,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "PURGE_ENABLED",
"propertyDescription": "Is payment tokens purge enabled",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": false,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
}
],
"merchantBillings": [],
"merchantBillingModel2s": [
{
"id": 41,
"monthlyMinimumFee": 65,
"electronicStatementPerTransmission": 0.5,
"tier1LowerLimitAmount": 0.01,
"tier1UpperLimitAmount": 100000,
"tier1ProcessingFees": 1.0,
"tier2LowerLimitAmount": 100000.01,
"tier2UpperLimitAmount": 250000,
"tier2ProcessingFees": 0.875,
"tier3LowerLimitAmount": 250000.01,
"tier3UpperLimitAmount": 500000,
"tier3ProcessingFees": 0.75,
"tier4LowerLimitAmount": 5000000.01,
"tier4ProcessingFees": 0.625,
"merchantVolumeDiscountByPercentage": 0.0,
"advancedMDMonthlySubscriptionFees": null,
"athenahealthAPIConsumptionFees": null,
"athenahealthConnectionMonthlyServiceFees": null,
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1748788692000,
"lastUpdatedDateTime": 1772781989000,
"autoReconciliationFees": null,
"adhocInvoicesMonthlyPrintingProductionFees": 350
}
],
"minNumOfLowercaseAlphabetsInPassword": 1,
"minNumOfUppercaseAlphabetsInPassword": 1,
"minNumOfNumericsInPassword": 1,
"minNumOfSpecialCharactersInPassword": 1,
"passwordHistoryCount": 25,
"maxNumOfInactiveDaysForUser": 90,
"signUpUsersMaximumAllowedLoginDays": 99999,
"serverTimeZone": {
"value": "America/New York",
"tzIdentifier": "America/New_York",
"utcOffsetSDT": "−05:00",
"utcOffsetDST": "−04:00",
"tzAbbreSDT": "EST",
"tzAbbreDST": "EDT",
"name": "AMERICA_NEW_YORK"
},
"merchantTimeZone": {
"value": "Eastern Time (US & Canada)",
"offset": "-05:00",
"name": "EASTERN_TIME"
},
"exportDailyTransactionsSftpInd": false,
"deskoDocumentScanningInd": false,
"exportSFTPDirectoryName": "velaaa",
"manifestationFileOriginationType": {
"name": "NONE"
},
"maxNumberOfInvoices": 20,
"message": null,
"address": null,
"fullName": null,
"activeUserCount": null,
"activeCustomerCount": null,
"paymentTokenPurgeEnabledInd": false,
"paymentTokenPurgeDays": null,
"language": null,
"assignedCurrencies": null,
"echeckConvFees": 1.99,
"echeckConvFeesType": {
"name": "FLAT"
},
"emvcompliantTransactionType": {
"name": "RELAXED"
}
},
"message": null
},
{
"id": 140,
"propertyType": {
"name": "POSTDUE"
},
"propertyName": "4",
"propertyDescription": "Past Due",
"propertyStringValue": null,
"propertyIntValue": 2,
"propertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 65,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1746648061000,
"lastUpdatedDateTime": 1772055013000,
"merchant": {
"id": 1,
"merchantName": "ABC Business",
"merchantDescription": "ABC Business",
"addressLine1": "ABC Inc.",
"addressLine2": "Suite 360",
"addressLine3": null,
"city": "Johns Creek",
"state": "GA",
"zipCode": "30097",
"country": "USA",
"mailingAddressLine1": "12000 Abc Rd",
"mailingAddressLine2": "Suite 360",
"mailingAddressLine3": null,
"mailingCity": "Johns Creek",
"mailingState": "GA",
"mailingZipCode": "30097-1412",
"mailingCountry": "USA",
"pointOfContact": "Administrator",
"pointOfContactJobTitle": null,
"pointOfContactDepartment": null,
"pointOfContactEmail": "info-test@abc.com",
"pointOfContactPhone": "6787400263",
"pointOfContactMobile": "6785143610",
"pointOfContactFax": "6789921941",
"lastModifiedUserId": 1,
"addressVerificationCheckInd": false,
"cardVerificationCheckForCNPTransactionsInd": true,
"cardVerificationCheckForTokenizedTransactionsInd": false,
"loyaltyRewardsEnabledInd": false,
"initialLoyaltyRewardsNumber": 10000000000001,
"passwordNeverExpiresInd": false,
"passwordExpirationDays": 90,
"passwordExpirationWarningDays": 5,
"onetimePasscodeValdtyTimePeriod": 10,
"phoneCountryCallingCodeId": 1,
"mobileCountryCallingCodeId": 1,
"faxCountryCallingCodeId": 1,
"billingPresentmentEnabledInd": true,
"displayInvoiceNumberInPaymentsModule": true,
"adhocInvoicesEnabledInd": true,
"displayMemoInPaymentsModule": true,
"displayFolioInformationInPaymentsModule": false,
"recurringPaymentsEnabledInd": false,
"productsAndServicesEnabledInd": false,
"namePrefix": {
"value": "Fr",
"locale": "en_US",
"name": "FATHER"
},
"nameSuffix": {
"value": "MD",
"name": "DOCTOR_OF_MEDICINE"
},
"displayDigitalSignatureForCardPresentTransactions": false,
"displayDigitalSignatureForCardNotPresentTransactions": false,
"paymentTokenizationEnabledInd": true,
"paymentsBatchAuthorizationEnabledInd": false,
"paymentsBatchProcessingEnabledInd": false,
"allowPaymentsWithoutLoggingIn": true,
"allowUsersToSelfEnrollInd": true,
"allowMultiCurrencyPricingInd": false,
"allowDynamicCurrencyConversionInd": false,
"mobilePhoneCarrierType": {
"emailDomain": "NUMBER@txt.att.net,NUMBER@mms.att.net",
"value": "AT&T",
"countryCode": "USA",
"name": "ATT"
},
"cardPresentTransactionsEnabledInd": false,
"defaultCurrencyCode": "USD",
"settlementCurrencyCode": "USD",
"allowPreAuthorizationTransactionInd": false,
"allowSaleTransactionInd": true,
"allowZeroDollarAuthTransactionInd": false,
"softDescriptorsEnabledInd": false,
"softDescriptorMerchantName": "ABCSOFTWARE",
"softDescriptorProductDescription": "INCIDENTL",
"merchantStatus": {
"name": "ACTIVE"
},
"merchantURL": "https://abc-business-test.payvela.com/ui/resources/login",
"merchantDisplayTitle": "ABC Business",
"merchantCode": "abc-business",
"brandingDirectory": "abc-business",
"sessionIdleTime": 900,
"sessionTimeoutTime": 20,
"keepaliveInterval": 300,
"customerSupportInformation": "+1-877-858-7200 (MON - FRI 8:00 AM - 8:00 PM ET)",
"merchantBccEmailAddress": "abcd@gmail.com",
"abuseEmailAddress": "abuse@abc.com",
"locale": {
"name": "en_US"
},
"lateFeesEnabledInd": false,
"lateFeesType": {
"name": "PERCENTAGE"
},
"lateFeesTier1FromNumOfDays": 1,
"lateFeesTier1ToNumOfDays": 30,
"lateFeesTier2FromNumOfDays": 31,
"lateFeesTier2ToNumOfDays": 60,
"lateFeesTier3FromNumOfDays": 61,
"lateFeesTier3ToNumOfDays": 90,
"tier1LateFees": 0.0,
"tier2LateFees": 3.0,
"tier3LateFees": 6.0,
"waiveTheLateFeesEnabledInd": true,
"maxNumOfTimesPerYearLateFeeCanBeWaived": {
"name": "ONCE"
},
"paymentApplicationURL": "https://abc-business-test.payvela.com/ui/resources/login",
"giftCardsEnabledInd": false,
"minBookingNumberLength": 10,
"maxBookingNumberLength": 10,
"allowPartialPaymentsForInvoicesInd": false,
"convenienceFeesEnabledInd": false,
"creditCardsConvFeesType": {
"name": "PERCENTAGE"
},
"creditCardsConvFees": 3.25,
"industryType": {
"name": "BUSINESS_TO_BUSINESS"
},
"displayHealthcareFieldsOnHSAFSAPaymentMethods": false,
"displayChartOnDashboard": false,
"reportsModuleEnabledInd": true,
"displayLastXDaysOfPaymentTokensForCardOnFile": 45,
"chartsDisplayTransactionRevenue": {
"name": "NONE"
},
"chartsGroupByPaymentMethods": {
"name": "NONE"
},
"chartsGroupByTransactionTypes": {
"name": "NONE"
},
"chartsGroupByProductsAndServices": {
"name": "NONE"
},
"chartsDateRangeType": {
"name": "TODAY"
},
"numOfDaysBetweenCheckinAndCurrentDate": 3,
"smsSubscriptionType": {
"name": "FREE_VIA_SMTP"
},
"cardPresentManualEntryOnlyTransactionsEnabledInd": false,
"cardNotPresentTransactionsEnabledInd": true,
"splitPaymentsEnabledInd": true,
"accountLookupEnabledInd": false,
"nextGenHpiLocationLookup": "ABC Business",
"billingEmailRequiredForPayments": false,
"cardholderNameRequiredForTransactions": true,
"textMessageType": {
"name": "SMS"
},
"billingEnabledInd": true,
"billingRevenueShareByPercentage": 0.0,
"installmentPaymentsEnabledInd": false,
"minNumberOfInstallments": 2,
"maxNumberOfInstallments": 36,
"settledTransactionsReportEnabledInd": true,
"sendSettledTransactionsReportViaEmailEnabled": true,
"summaryByTypeReportEnabledInd": true,
"transactionSummaryReportEnabledInd": true,
"settledTxnsReportEmailRecipients": "abcd@gmail.com",
"offlinePaymentActionsOnInvoicesEnabledInd": true,
"qrCodeEnabledInd": false,
"dateFormat": {
"value": "yyyy-MM-dd",
"name": "YYYY_MM_DD"
},
"dateTimeFormat": {
"value": "yyyy-MM-dd hh:mm a zzz",
"name": "YYYY_MM_DD_HH_MM_A_ZZZ"
},
"logoutSingleSignOnTime": 10,
"reconciliationPlatformName": {
"value": "Intuit QuickBooks",
"industryType": "ECOMMERCE",
"name": "INTUIT_QUICKBOOKS"
},
"employerIdentificationNumber": "12-2543645",
"autoReconciliationEnabledInd": false,
"customerSummaryEnabledInd": true,
"surchargesEnabledInd": false,
"surchargesByPercentage": 1.0,
"onlineReceiptLinkEnabledInd": false,
"maxNumOfFailedOneTimePasscodeAttempts": 3,
"apiAccessEnabledInd": true,
"enableDigitalIdOnMakeAPaymentPageInd": false,
"barcodeScanningEnabledInd": false,
"autoReconciliationFeesEnabledInd": false,
"paperlessBillingEnabledInd": false,
"multipleQuantityListingAllowedInd": false,
"multipleProductsAndServicesAllowedInd": false,
"processFullCaptureFundsInd": false,
"paymentTokenPreferenceType": {
"name": "ACCOUNT_HOLDER_NAME"
},
"minimumPasswordLength": 11,
"retainAmountOnAccountLookupInd": false,
"merchantProperties": [
{
"id": 4,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "RETENTION_DAYS",
"propertyDescription": "# of days to retain payment tokens",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": null,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
},
{
"id": 3,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "PURGE_ENABLED",
"propertyDescription": "Is payment tokens purge enabled",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": false,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
}
],
"merchantBillings": [],
"merchantBillingModel2s": [
{
"id": 41,
"monthlyMinimumFee": 65,
"electronicStatementPerTransmission": 0.5,
"tier1LowerLimitAmount": 0.01,
"tier1UpperLimitAmount": 100000,
"tier1ProcessingFees": 1.0,
"tier2LowerLimitAmount": 100000.01,
"tier2UpperLimitAmount": 250000,
"tier2ProcessingFees": 0.875,
"tier3LowerLimitAmount": 250000.01,
"tier3UpperLimitAmount": 500000,
"tier3ProcessingFees": 0.75,
"tier4LowerLimitAmount": 5000000.01,
"tier4ProcessingFees": 0.625,
"merchantVolumeDiscountByPercentage": 0.0,
"advancedMDMonthlySubscriptionFees": null,
"athenahealthAPIConsumptionFees": null,
"athenahealthConnectionMonthlyServiceFees": null,
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1748788692000,
"lastUpdatedDateTime": 1772781989000,
"autoReconciliationFees": null,
"adhocInvoicesMonthlyPrintingProductionFees": 350
}
],
"minNumOfLowercaseAlphabetsInPassword": 1,
"minNumOfUppercaseAlphabetsInPassword": 1,
"minNumOfNumericsInPassword": 1,
"minNumOfSpecialCharactersInPassword": 1,
"passwordHistoryCount": 25,
"maxNumOfInactiveDaysForUser": 90,
"signUpUsersMaximumAllowedLoginDays": 99999,
"serverTimeZone": {
"value": "America/New York",
"tzIdentifier": "America/New_York",
"utcOffsetSDT": "−05:00",
"utcOffsetDST": "−04:00",
"tzAbbreSDT": "EST",
"tzAbbreDST": "EDT",
"name": "AMERICA_NEW_YORK"
},
"merchantTimeZone": {
"value": "Eastern Time (US & Canada)",
"offset": "-05:00",
"name": "EASTERN_TIME"
},
"exportDailyTransactionsSftpInd": false,
"deskoDocumentScanningInd": false,
"exportSFTPDirectoryName": "velaaa",
"manifestationFileOriginationType": {
"name": "NONE"
},
"maxNumberOfInvoices": 20,
"message": null,
"address": null,
"fullName": null,
"activeUserCount": null,
"activeCustomerCount": null,
"paymentTokenPurgeEnabledInd": false,
"paymentTokenPurgeDays": null,
"language": null,
"assignedCurrencies": null,
"echeckConvFees": 1.99,
"echeckConvFeesType": {
"name": "FLAT"
},
"emvcompliantTransactionType": {
"name": "RELAXED"
}
},
"message": null
},
{
"id": 141,
"propertyType": {
"name": "PREDUE"
},
"propertyName": "3",
"propertyDescription": "Pre-due 2 days",
"propertyStringValue": null,
"propertyIntValue": 2,
"propertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 65,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1746648061000,
"lastUpdatedDateTime": 1772055013000,
"merchant": {
"id": 1,
"merchantName": "ABC Business",
"merchantDescription": "ABC Business",
"addressLine1": "ABC Inc.",
"addressLine2": "Suite 360",
"addressLine3": null,
"city": "Johns Creek",
"state": "GA",
"zipCode": "30097",
"country": "USA",
"mailingAddressLine1": "12000 Abc Rd",
"mailingAddressLine2": "Suite 360",
"mailingAddressLine3": null,
"mailingCity": "Johns Creek",
"mailingState": "GA",
"mailingZipCode": "30097-1412",
"mailingCountry": "USA",
"pointOfContact": "Administrator",
"pointOfContactJobTitle": null,
"pointOfContactDepartment": null,
"pointOfContactEmail": "info-test@abc.com",
"pointOfContactPhone": "6787400263",
"pointOfContactMobile": "6785143610",
"pointOfContactFax": "6789921941",
"lastModifiedUserId": 1,
"addressVerificationCheckInd": false,
"cardVerificationCheckForCNPTransactionsInd": true,
"cardVerificationCheckForTokenizedTransactionsInd": false,
"loyaltyRewardsEnabledInd": false,
"initialLoyaltyRewardsNumber": 10000000000001,
"passwordNeverExpiresInd": false,
"passwordExpirationDays": 90,
"passwordExpirationWarningDays": 5,
"onetimePasscodeValdtyTimePeriod": 10,
"phoneCountryCallingCodeId": 1,
"mobileCountryCallingCodeId": 1,
"faxCountryCallingCodeId": 1,
"billingPresentmentEnabledInd": true,
"displayInvoiceNumberInPaymentsModule": true,
"adhocInvoicesEnabledInd": true,
"displayMemoInPaymentsModule": true,
"displayFolioInformationInPaymentsModule": false,
"recurringPaymentsEnabledInd": false,
"productsAndServicesEnabledInd": false,
"namePrefix": {
"value": "Fr",
"locale": "en_US",
"name": "FATHER"
},
"nameSuffix": {
"value": "MD",
"name": "DOCTOR_OF_MEDICINE"
},
"displayDigitalSignatureForCardPresentTransactions": false,
"displayDigitalSignatureForCardNotPresentTransactions": false,
"paymentTokenizationEnabledInd": true,
"paymentsBatchAuthorizationEnabledInd": false,
"paymentsBatchProcessingEnabledInd": false,
"allowPaymentsWithoutLoggingIn": true,
"allowUsersToSelfEnrollInd": true,
"allowMultiCurrencyPricingInd": false,
"allowDynamicCurrencyConversionInd": false,
"mobilePhoneCarrierType": {
"emailDomain": "NUMBER@txt.att.net,NUMBER@mms.att.net",
"value": "AT&T",
"countryCode": "USA",
"name": "ATT"
},
"cardPresentTransactionsEnabledInd": false,
"defaultCurrencyCode": "USD",
"settlementCurrencyCode": "USD",
"allowPreAuthorizationTransactionInd": false,
"allowSaleTransactionInd": true,
"allowZeroDollarAuthTransactionInd": false,
"softDescriptorsEnabledInd": false,
"softDescriptorMerchantName": "ABCSOFTWARE",
"softDescriptorProductDescription": "INCIDENTL",
"merchantStatus": {
"name": "ACTIVE"
},
"merchantURL": "https://abc-business-test.payvela.com/ui/resources/login",
"merchantDisplayTitle": "ABC Business",
"merchantCode": "abc-business",
"brandingDirectory": "abc-business",
"sessionIdleTime": 900,
"sessionTimeoutTime": 20,
"keepaliveInterval": 300,
"customerSupportInformation": "+1-877-858-7200 (MON - FRI 8:00 AM - 8:00 PM ET)",
"merchantBccEmailAddress": "abcd@gmail.com",
"abuseEmailAddress": "abuse@abc.com",
"locale": {
"name": "en_US"
},
"lateFeesEnabledInd": false,
"lateFeesType": {
"name": "PERCENTAGE"
},
"lateFeesTier1FromNumOfDays": 1,
"lateFeesTier1ToNumOfDays": 30,
"lateFeesTier2FromNumOfDays": 31,
"lateFeesTier2ToNumOfDays": 60,
"lateFeesTier3FromNumOfDays": 61,
"lateFeesTier3ToNumOfDays": 90,
"tier1LateFees": 0.0,
"tier2LateFees": 3.0,
"tier3LateFees": 6.0,
"waiveTheLateFeesEnabledInd": true,
"maxNumOfTimesPerYearLateFeeCanBeWaived": {
"name": "ONCE"
},
"paymentApplicationURL": "https://abc-business-test.payvela.com/ui/resources/login",
"giftCardsEnabledInd": false,
"minBookingNumberLength": 10,
"maxBookingNumberLength": 10,
"allowPartialPaymentsForInvoicesInd": false,
"convenienceFeesEnabledInd": false,
"creditCardsConvFeesType": {
"name": "PERCENTAGE"
},
"creditCardsConvFees": 3.25,
"industryType": {
"name": "BUSINESS_TO_BUSINESS"
},
"displayHealthcareFieldsOnHSAFSAPaymentMethods": false,
"displayChartOnDashboard": false,
"reportsModuleEnabledInd": true,
"displayLastXDaysOfPaymentTokensForCardOnFile": 45,
"chartsDisplayTransactionRevenue": {
"name": "NONE"
},
"chartsGroupByPaymentMethods": {
"name": "NONE"
},
"chartsGroupByTransactionTypes": {
"name": "NONE"
},
"chartsGroupByProductsAndServices": {
"name": "NONE"
},
"chartsDateRangeType": {
"name": "TODAY"
},
"numOfDaysBetweenCheckinAndCurrentDate": 3,
"smsSubscriptionType": {
"name": "FREE_VIA_SMTP"
},
"cardPresentManualEntryOnlyTransactionsEnabledInd": false,
"cardNotPresentTransactionsEnabledInd": true,
"splitPaymentsEnabledInd": true,
"accountLookupEnabledInd": false,
"nextGenHpiLocationLookup": "ABC Business",
"billingEmailRequiredForPayments": false,
"cardholderNameRequiredForTransactions": true,
"textMessageType": {
"name": "SMS"
},
"billingEnabledInd": true,
"billingRevenueShareByPercentage": 0.0,
"installmentPaymentsEnabledInd": false,
"minNumberOfInstallments": 2,
"maxNumberOfInstallments": 36,
"settledTransactionsReportEnabledInd": true,
"sendSettledTransactionsReportViaEmailEnabled": true,
"summaryByTypeReportEnabledInd": true,
"transactionSummaryReportEnabledInd": true,
"settledTxnsReportEmailRecipients": "abcd@gmail.com",
"offlinePaymentActionsOnInvoicesEnabledInd": true,
"qrCodeEnabledInd": false,
"dateFormat": {
"value": "yyyy-MM-dd",
"name": "YYYY_MM_DD"
},
"dateTimeFormat": {
"value": "yyyy-MM-dd hh:mm a zzz",
"name": "YYYY_MM_DD_HH_MM_A_ZZZ"
},
"logoutSingleSignOnTime": 10,
"reconciliationPlatformName": {
"value": "Intuit QuickBooks",
"industryType": "ECOMMERCE",
"name": "INTUIT_QUICKBOOKS"
},
"employerIdentificationNumber": "12-2543645",
"autoReconciliationEnabledInd": false,
"customerSummaryEnabledInd": true,
"surchargesEnabledInd": false,
"surchargesByPercentage": 1.0,
"onlineReceiptLinkEnabledInd": false,
"maxNumOfFailedOneTimePasscodeAttempts": 3,
"apiAccessEnabledInd": true,
"enableDigitalIdOnMakeAPaymentPageInd": false,
"barcodeScanningEnabledInd": false,
"autoReconciliationFeesEnabledInd": false,
"paperlessBillingEnabledInd": false,
"multipleQuantityListingAllowedInd": false,
"multipleProductsAndServicesAllowedInd": false,
"processFullCaptureFundsInd": false,
"paymentTokenPreferenceType": {
"name": "ACCOUNT_HOLDER_NAME"
},
"minimumPasswordLength": 11,
"retainAmountOnAccountLookupInd": false,
"merchantProperties": [
{
"id": 3,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "PURGE_ENABLED",
"propertyDescription": "Is payment tokens purge enabled",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": false,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
},
{
"id": 4,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "RETENTION_DAYS",
"propertyDescription": "# of days to retain payment tokens",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": null,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
}
],
"merchantBillings": [],
"merchantBillingModel2s": [
{
"id": 41,
"monthlyMinimumFee": 65,
"electronicStatementPerTransmission": 0.5,
"tier1LowerLimitAmount": 0.01,
"tier1UpperLimitAmount": 100000,
"tier1ProcessingFees": 1.0,
"tier2LowerLimitAmount": 100000.01,
"tier2UpperLimitAmount": 250000,
"tier2ProcessingFees": 0.875,
"tier3LowerLimitAmount": 250000.01,
"tier3UpperLimitAmount": 500000,
"tier3ProcessingFees": 0.75,
"tier4LowerLimitAmount": 5000000.01,
"tier4ProcessingFees": 0.625,
"merchantVolumeDiscountByPercentage": 0.0,
"advancedMDMonthlySubscriptionFees": null,
"athenahealthAPIConsumptionFees": null,
"athenahealthConnectionMonthlyServiceFees": null,
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1748788692000,
"lastUpdatedDateTime": 1772781989000,
"autoReconciliationFees": null,
"adhocInvoicesMonthlyPrintingProductionFees": 350
}
],
"minNumOfLowercaseAlphabetsInPassword": 1,
"minNumOfUppercaseAlphabetsInPassword": 1,
"minNumOfNumericsInPassword": 1,
"minNumOfSpecialCharactersInPassword": 1,
"passwordHistoryCount": 25,
"maxNumOfInactiveDaysForUser": 90,
"signUpUsersMaximumAllowedLoginDays": 99999,
"serverTimeZone": {
"value": "America/New York",
"tzIdentifier": "America/New_York",
"utcOffsetSDT": "−05:00",
"utcOffsetDST": "−04:00",
"tzAbbreSDT": "EST",
"tzAbbreDST": "EDT",
"name": "AMERICA_NEW_YORK"
},
"merchantTimeZone": {
"value": "Eastern Time (US & Canada)",
"offset": "-05:00",
"name": "EASTERN_TIME"
},
"exportDailyTransactionsSftpInd": false,
"deskoDocumentScanningInd": false,
"exportSFTPDirectoryName": "velaaa",
"manifestationFileOriginationType": {
"name": "NONE"
},
"maxNumberOfInvoices": 20,
"message": null,
"address": null,
"fullName": null,
"activeUserCount": null,
"activeCustomerCount": null,
"paymentTokenPurgeEnabledInd": false,
"paymentTokenPurgeDays": null,
"language": null,
"assignedCurrencies": null,
"echeckConvFees": 1.99,
"echeckConvFeesType": {
"name": "FLAT"
},
"emvcompliantTransactionType": {
"name": "RELAXED"
}
},
"message": null
}
],
"namePrefix": null,
"nameSuffix": null,
"merchant": {
"id": 1,
"merchantName": "ABC Business",
"merchantDescription": "ABC Business",
"addressLine1": "ABC Inc.",
"addressLine2": "Suite 360",
"addressLine3": null,
"city": "Johns Creek",
"state": "GA",
"zipCode": "30097",
"country": "USA",
"mailingAddressLine1": "12000 Abc Rd",
"mailingAddressLine2": "Suite 360",
"mailingAddressLine3": null,
"mailingCity": "Johns Creek",
"mailingState": "GA",
"mailingZipCode": "30097-1412",
"mailingCountry": "USA",
"pointOfContact": "Administrator",
"pointOfContactJobTitle": null,
"pointOfContactDepartment": null,
"pointOfContactEmail": "info-test@abc.com",
"pointOfContactPhone": "6787400263",
"pointOfContactMobile": "6785143610",
"pointOfContactFax": "6789921941",
"lastModifiedUserId": 1,
"addressVerificationCheckInd": false,
"cardVerificationCheckForCNPTransactionsInd": true,
"cardVerificationCheckForTokenizedTransactionsInd": false,
"loyaltyRewardsEnabledInd": false,
"initialLoyaltyRewardsNumber": 10000000000001,
"passwordNeverExpiresInd": false,
"passwordExpirationDays": 90,
"passwordExpirationWarningDays": 5,
"onetimePasscodeValdtyTimePeriod": 10,
"phoneCountryCallingCodeId": 1,
"mobileCountryCallingCodeId": 1,
"faxCountryCallingCodeId": 1,
"billingPresentmentEnabledInd": true,
"displayInvoiceNumberInPaymentsModule": true,
"adhocInvoicesEnabledInd": true,
"displayMemoInPaymentsModule": true,
"displayFolioInformationInPaymentsModule": false,
"recurringPaymentsEnabledInd": false,
"productsAndServicesEnabledInd": false,
"namePrefix": {
"value": "Fr",
"locale": "en_US",
"name": "FATHER"
},
"nameSuffix": {
"value": "MD",
"name": "DOCTOR_OF_MEDICINE"
},
"displayDigitalSignatureForCardPresentTransactions": false,
"displayDigitalSignatureForCardNotPresentTransactions": false,
"paymentTokenizationEnabledInd": true,
"paymentsBatchAuthorizationEnabledInd": false,
"paymentsBatchProcessingEnabledInd": false,
"allowPaymentsWithoutLoggingIn": true,
"allowUsersToSelfEnrollInd": true,
"allowMultiCurrencyPricingInd": false,
"allowDynamicCurrencyConversionInd": false,
"mobilePhoneCarrierType": {
"emailDomain": "NUMBER@txt.att.net,NUMBER@mms.att.net",
"value": "AT&T",
"countryCode": "USA",
"name": "ATT"
},
"cardPresentTransactionsEnabledInd": false,
"defaultCurrencyCode": "USD",
"settlementCurrencyCode": "USD",
"allowPreAuthorizationTransactionInd": false,
"allowSaleTransactionInd": true,
"allowZeroDollarAuthTransactionInd": false,
"softDescriptorsEnabledInd": false,
"softDescriptorMerchantName": "ABCSOFTWARE",
"softDescriptorProductDescription": "INCIDENTL",
"merchantStatus": {
"name": "ACTIVE"
},
"merchantURL": "https://abc-business-test.payvela.com/ui/resources/login",
"merchantDisplayTitle": "ABC Business",
"merchantCode": "abc-business",
"brandingDirectory": "abc-business",
"sessionIdleTime": 900,
"sessionTimeoutTime": 20,
"keepaliveInterval": 300,
"customerSupportInformation": "+1-877-858-7200 (MON - FRI 8:00 AM - 8:00 PM ET)",
"merchantBccEmailAddress": "abcd@gmail.com",
"abuseEmailAddress": "abuse@abc.com",
"locale": {
"name": "en_US"
},
"lateFeesEnabledInd": false,
"lateFeesType": {
"name": "PERCENTAGE"
},
"lateFeesTier1FromNumOfDays": 1,
"lateFeesTier1ToNumOfDays": 30,
"lateFeesTier2FromNumOfDays": 31,
"lateFeesTier2ToNumOfDays": 60,
"lateFeesTier3FromNumOfDays": 61,
"lateFeesTier3ToNumOfDays": 90,
"tier1LateFees": 0.0,
"tier2LateFees": 3.0,
"tier3LateFees": 6.0,
"waiveTheLateFeesEnabledInd": true,
"maxNumOfTimesPerYearLateFeeCanBeWaived": {
"name": "ONCE"
},
"paymentApplicationURL": "https://abc-business-test.payvela.com/ui/resources/login",
"giftCardsEnabledInd": false,
"minBookingNumberLength": 10,
"maxBookingNumberLength": 10,
"allowPartialPaymentsForInvoicesInd": false,
"convenienceFeesEnabledInd": false,
"creditCardsConvFeesType": {
"name": "PERCENTAGE"
},
"creditCardsConvFees": 3.25,
"industryType": {
"name": "BUSINESS_TO_BUSINESS"
},
"displayHealthcareFieldsOnHSAFSAPaymentMethods": false,
"displayChartOnDashboard": false,
"reportsModuleEnabledInd": true,
"displayLastXDaysOfPaymentTokensForCardOnFile": 45,
"chartsDisplayTransactionRevenue": {
"name": "NONE"
},
"chartsGroupByPaymentMethods": {
"name": "NONE"
},
"chartsGroupByTransactionTypes": {
"name": "NONE"
},
"chartsGroupByProductsAndServices": {
"name": "NONE"
},
"chartsDateRangeType": {
"name": "TODAY"
},
"numOfDaysBetweenCheckinAndCurrentDate": 3,
"smsSubscriptionType": {
"name": "FREE_VIA_SMTP"
},
"cardPresentManualEntryOnlyTransactionsEnabledInd": false,
"cardNotPresentTransactionsEnabledInd": true,
"splitPaymentsEnabledInd": true,
"accountLookupEnabledInd": false,
"nextGenHpiLocationLookup": "ABC Business",
"billingEmailRequiredForPayments": false,
"cardholderNameRequiredForTransactions": true,
"textMessageType": {
"name": "SMS"
},
"billingEnabledInd": true,
"billingRevenueShareByPercentage": 0.0,
"installmentPaymentsEnabledInd": false,
"minNumberOfInstallments": 2,
"maxNumberOfInstallments": 36,
"settledTransactionsReportEnabledInd": true,
"sendSettledTransactionsReportViaEmailEnabled": true,
"summaryByTypeReportEnabledInd": true,
"transactionSummaryReportEnabledInd": true,
"settledTxnsReportEmailRecipients": "abcd@gmail.com",
"offlinePaymentActionsOnInvoicesEnabledInd": true,
"qrCodeEnabledInd": false,
"dateFormat": {
"value": "yyyy-MM-dd",
"name": "YYYY_MM_DD"
},
"dateTimeFormat": {
"value": "yyyy-MM-dd hh:mm a zzz",
"name": "YYYY_MM_DD_HH_MM_A_ZZZ"
},
"logoutSingleSignOnTime": 10,
"reconciliationPlatformName": {
"value": "Intuit QuickBooks",
"industryType": "ECOMMERCE",
"name": "INTUIT_QUICKBOOKS"
},
"employerIdentificationNumber": "12-2543645",
"autoReconciliationEnabledInd": false,
"customerSummaryEnabledInd": true,
"surchargesEnabledInd": false,
"surchargesByPercentage": 1.0,
"onlineReceiptLinkEnabledInd": false,
"maxNumOfFailedOneTimePasscodeAttempts": 3,
"apiAccessEnabledInd": true,
"enableDigitalIdOnMakeAPaymentPageInd": false,
"barcodeScanningEnabledInd": false,
"autoReconciliationFeesEnabledInd": false,
"paperlessBillingEnabledInd": false,
"multipleQuantityListingAllowedInd": false,
"multipleProductsAndServicesAllowedInd": false,
"processFullCaptureFundsInd": false,
"paymentTokenPreferenceType": {
"name": "ACCOUNT_HOLDER_NAME"
},
"minimumPasswordLength": 11,
"retainAmountOnAccountLookupInd": false,
"merchantProperties": [
{
"id": 4,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "RETENTION_DAYS",
"propertyDescription": "# of days to retain payment tokens",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": null,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
},
{
"id": 3,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "PURGE_ENABLED",
"propertyDescription": "Is payment tokens purge enabled",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": false,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
}
],
"merchantBillings": [],
"merchantBillingModel2s": [
{
"id": 41,
"monthlyMinimumFee": 65,
"electronicStatementPerTransmission": 0.5,
"tier1LowerLimitAmount": 0.01,
"tier1UpperLimitAmount": 100000,
"tier1ProcessingFees": 1.0,
"tier2LowerLimitAmount": 100000.01,
"tier2UpperLimitAmount": 250000,
"tier2ProcessingFees": 0.875,
"tier3LowerLimitAmount": 250000.01,
"tier3UpperLimitAmount": 500000,
"tier3ProcessingFees": 0.75,
"tier4LowerLimitAmount": 5000000.01,
"tier4ProcessingFees": 0.625,
"merchantVolumeDiscountByPercentage": 0.0,
"advancedMDMonthlySubscriptionFees": null,
"athenahealthAPIConsumptionFees": null,
"athenahealthConnectionMonthlyServiceFees": null,
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1748788692000,
"lastUpdatedDateTime": 1772781989000,
"autoReconciliationFees": null,
"adhocInvoicesMonthlyPrintingProductionFees": 350
}
],
"minNumOfLowercaseAlphabetsInPassword": 1,
"minNumOfUppercaseAlphabetsInPassword": 1,
"minNumOfNumericsInPassword": 1,
"minNumOfSpecialCharactersInPassword": 1,
"passwordHistoryCount": 25,
"maxNumOfInactiveDaysForUser": 90,
"signUpUsersMaximumAllowedLoginDays": 99999,
"serverTimeZone": {
"value": "America/New York",
"tzIdentifier": "America/New_York",
"utcOffsetSDT": "−05:00",
"utcOffsetDST": "−04:00",
"tzAbbreSDT": "EST",
"tzAbbreDST": "EDT",
"name": "AMERICA_NEW_YORK"
},
"merchantTimeZone": {
"value": "Eastern Time (US & Canada)",
"offset": "-05:00",
"name": "EASTERN_TIME"
},
"exportDailyTransactionsSftpInd": false,
"deskoDocumentScanningInd": false,
"exportSFTPDirectoryName": "velaaa",
"manifestationFileOriginationType": {
"name": "NONE"
},
"maxNumberOfInvoices": 20,
"message": null,
"address": null,
"fullName": null,
"activeUserCount": null,
"activeCustomerCount": null,
"paymentTokenPurgeEnabledInd": false,
"paymentTokenPurgeDays": null,
"language": null,
"assignedCurrencies": null,
"echeckConvFees": 1.99,
"echeckConvFeesType": {
"name": "FLAT"
},
"emvcompliantTransactionType": {
"name": "RELAXED"
}
},
"customerType": {
"name": "BUSINESS"
},
"numOfTimesPerYearLateFeesIsWaived": null,
"firstWaivedDateTime": null,
"lastWaivedDateTime": null,
"pointOfContactEmail": "madhavi@datumtg.com",
"pointOfContactPhone": null,
"pointOfContactMobile": "4704131411",
"pointOfContactFax": null,
"phoneCountryCallingCodeId": null,
"mobileCountryCallingCodeId": 1,
"faxCountryCallingCodeId": null,
"mobilePhoneCarrierType": {
"emailDomain": "NUMBER@txt.att.net,NUMBER@mms.att.net",
"value": "AT&T",
"countryCode": "USA",
"name": "ATT"
},
"dateOfBirth": null,
"textMessageType": {
"name": "SMS"
},
"gender": null,
"country": "USA",
"addressLine1": null,
"addressLine2": null,
"addressLine3": null,
"city": null,
"state": null,
"zipCode": null,
"enrollmentStatus": {
"name": "ENROLLED"
},
"digitalSignature": null,
"paperlessBillingEnrollmentChangeDateTime": null,
"paperlessBillingEnrollmentInd": false,
"encryptedIdentityInfo": "qyCnLk6nn8P8cI3mQh724FZovfNsNEjeNP8kBG01J/ePuFnl40LTX/3LYOSLfxyOqrZxA+X1Betjbophqd4HOJy4jkYiSZRec/CRwyByTSiql9hYI88O8cFYFrZKDgWTgGou7UBhSGkttlQMjOP+v45f9cQ7lK4aj07UoLmU/rdoODilqdvS1XXx++lHjQNipu8gu4fZnW4L/B8l2DEB0uGzYuP5EL5lVyfLIyvAH1idl+vFoAdpcUAA7fO/HRS2Qp1EIbGMdWUZGFYYqPMIG8h1uruLORgVnnzavQsX0tdVa4gmOzYVz2zsxByOqcR3ej9obnOFaPiNdS3dSeZh//AXB8KjhmeGycewSCeSWY9292rUvE6KK0PxVZKPO5W7RWRSQP2IWswhmfMSJhsrdVj3SfOt1IcdgdI9BHVDg49N344VAMn8rYx5+chF5cgKEX2f255hV7p9Nz5rybcaFJARIg4tscpm1OcVAuM7PM55zkaQjXmw91Z4/Mr2vR6YanW2WaXusvCqsL1uQkWPr/gXbInqHEwJxcRG2RS+gJ62GlVWJDHG8vAe2HRZnA+jAFKo+B1fLMHqKOty0RbpNWxzRkKPpmwVAL6Co9iyh0KZUKtugP9/GXbRoPrlZ63rnwh8ptlLhdCXaPlCn2m0Evv1yNJ008Z+zijtcZeqiwNvvdZaanBLXZJAHUSUME1T8WNpmsFHJoYPDFvs03mXl0Yk3dkweqXBvRd6ju9U0FR6Q5CysqUyV5Jv5QBe2Qv5U2slkBSiM9/9W5mMDqyhNpIXEAoXp9/U9jfECOmiwp0rXjTnUW+oeLYLYjtUIvtqFpMKC+yCKyEalL/nHTXEppVNlAnyYEJVubpZUG86bOov6Vka/qNWWS897Fe+O3/drhpgYCXqLYcgcQ2jEJJINDn59C5xWC85RHZlIEGzMu+H0m07MZs0VXxE5x9cOmamkrBcthDJnmG75G6bZyLzoenEWrP7A8Yi0EJR0KYCCwpeOYtvrPuXp7QxSFeZs6pY+o7qSnaBV+pQgmY8mCEOt7WF8qfl+YtTYr6CDU6/6RJurzpu0VCNKvgY5pKaYsKGBxR7oDWlOmYotLqYAHwImg==",
"checkInDate": null,
"checkOutDate": null,
"roomNumber": null,
"bookingNumber": null,
"documentType": null,
"nationality": null,
"groupName": null,
"encryptedGeolocationInfo": null,
"fnrhReservationId": null,
"responseMsg": null,
"responseCode": null,
"numberOfAdultGuests": 0,
"numberOfChildrenGuests": 0,
"actualCheckInDateTime": null,
"actualCheckOutDateTime": null,
"message": null,
"identityInfo": {
"emailAddress": "madhavi@datumtg.com",
"reEnterEmailAddress": "madhavi@datumtg.com",
"gender": null,
"phoneNumber": "1233211233",
"phoneCallingCode": null,
"phoneCountryCallingCodeId": null,
"faxNumber": null,
"faxCallingCode": null,
"faxCountryCallingCodeId": null,
"mobileNumber": "4704131411",
"mobileCallingCode": null,
"mobileCountryCallingCodeId": null,
"mobilePhoneCarrierType": {
"emailDomain": "",
"value": "Select",
"countryCode": "UNKNOWN",
"name": "UNKNOWN"
},
"textMessageType": null,
"address": {
"country": "USA",
"addressLine1": "1234 ABC Road",
"addressLine2": "Suite 400",
"addressLine3": null,
"city": "Cumming",
"state": "GA",
"zipCode": "30098",
"streetNumber": null,
"streetName": null,
"stateText": null,
"countryText": null
},
"documentType": null,
"documentNumber": null,
"reEnterDocumentNumber": null,
"nationality": null,
"dateOfBirthString": "",
"dateOfBirth": null
},
"address": null,
"fullName": null,
"activeUserCount": null,
"unpaidInvoiceCount": null,
"dateOfBirthString": "",
"checkInDateString": "",
"checkOutDateString": "",
"createdDateString": "",
"merchantId": null,
"departmentId": 0,
"documentTypeText": "",
"genderText": "",
"locale": null,
"createdUserName": null
},
"invoiceBatchId": null,
"paidByUserId": null,
"merchant": {
"id": 1,
"merchantName": "ABC Business",
"merchantDescription": "ABC Business",
"addressLine1": "ABC Inc.",
"addressLine2": "Suite 360",
"addressLine3": null,
"city": "Johns Creek",
"state": "GA",
"zipCode": "30097",
"country": "USA",
"mailingAddressLine1": "12000 Abc Rd",
"mailingAddressLine2": "Suite 360",
"mailingAddressLine3": null,
"mailingCity": "Johns Creek",
"mailingState": "GA",
"mailingZipCode": "30097-1412",
"mailingCountry": "USA",
"pointOfContact": "Administrator",
"pointOfContactJobTitle": null,
"pointOfContactDepartment": null,
"pointOfContactEmail": "info-test@abc.com",
"pointOfContactPhone": "6787400263",
"pointOfContactMobile": "6785143610",
"pointOfContactFax": "6789921941",
"lastModifiedUserId": 1,
"addressVerificationCheckInd": false,
"cardVerificationCheckForCNPTransactionsInd": true,
"cardVerificationCheckForTokenizedTransactionsInd": false,
"loyaltyRewardsEnabledInd": false,
"initialLoyaltyRewardsNumber": 10000000000001,
"passwordNeverExpiresInd": false,
"passwordExpirationDays": 90,
"passwordExpirationWarningDays": 5,
"onetimePasscodeValdtyTimePeriod": 10,
"phoneCountryCallingCodeId": 1,
"mobileCountryCallingCodeId": 1,
"faxCountryCallingCodeId": 1,
"billingPresentmentEnabledInd": true,
"displayInvoiceNumberInPaymentsModule": true,
"adhocInvoicesEnabledInd": true,
"displayMemoInPaymentsModule": true,
"displayFolioInformationInPaymentsModule": false,
"recurringPaymentsEnabledInd": false,
"productsAndServicesEnabledInd": false,
"namePrefix": {
"value": "Fr",
"locale": "en_US",
"name": "FATHER"
},
"nameSuffix": {
"value": "MD",
"name": "DOCTOR_OF_MEDICINE"
},
"displayDigitalSignatureForCardPresentTransactions": false,
"displayDigitalSignatureForCardNotPresentTransactions": false,
"paymentTokenizationEnabledInd": true,
"paymentsBatchAuthorizationEnabledInd": false,
"paymentsBatchProcessingEnabledInd": false,
"allowPaymentsWithoutLoggingIn": true,
"allowUsersToSelfEnrollInd": true,
"allowMultiCurrencyPricingInd": false,
"allowDynamicCurrencyConversionInd": false,
"mobilePhoneCarrierType": {
"emailDomain": "NUMBER@txt.att.net,NUMBER@mms.att.net",
"value": "AT&T",
"countryCode": "USA",
"name": "ATT"
},
"cardPresentTransactionsEnabledInd": false,
"defaultCurrencyCode": "USD",
"settlementCurrencyCode": "USD",
"allowPreAuthorizationTransactionInd": false,
"allowSaleTransactionInd": true,
"allowZeroDollarAuthTransactionInd": false,
"softDescriptorsEnabledInd": false,
"softDescriptorMerchantName": "ABCSOFTWARE",
"softDescriptorProductDescription": "INCIDENTL",
"merchantStatus": {
"name": "ACTIVE"
},
"merchantURL": "https://abc-business-test.payvela.com/ui/resources/login",
"merchantDisplayTitle": "ABC Business",
"merchantCode": "abc-business",
"brandingDirectory": "abc-business",
"sessionIdleTime": 900,
"sessionTimeoutTime": 20,
"keepaliveInterval": 300,
"customerSupportInformation": "+1-877-858-7200 (MON - FRI 8:00 AM - 8:00 PM ET)",
"merchantBccEmailAddress": "abcd@gmail.com",
"abuseEmailAddress": "abuse@abc.com",
"locale": {
"name": "en_US"
},
"lateFeesEnabledInd": false,
"lateFeesType": {
"name": "PERCENTAGE"
},
"lateFeesTier1FromNumOfDays": 1,
"lateFeesTier1ToNumOfDays": 30,
"lateFeesTier2FromNumOfDays": 31,
"lateFeesTier2ToNumOfDays": 60,
"lateFeesTier3FromNumOfDays": 61,
"lateFeesTier3ToNumOfDays": 90,
"tier1LateFees": 0.0,
"tier2LateFees": 3.0,
"tier3LateFees": 6.0,
"waiveTheLateFeesEnabledInd": true,
"maxNumOfTimesPerYearLateFeeCanBeWaived": {
"name": "ONCE"
},
"paymentApplicationURL": "https://abc-business-test.payvela.com/ui/resources/login",
"giftCardsEnabledInd": false,
"minBookingNumberLength": 10,
"maxBookingNumberLength": 10,
"allowPartialPaymentsForInvoicesInd": false,
"convenienceFeesEnabledInd": false,
"creditCardsConvFeesType": {
"name": "PERCENTAGE"
},
"creditCardsConvFees": 3.25,
"industryType": {
"name": "BUSINESS_TO_BUSINESS"
},
"displayHealthcareFieldsOnHSAFSAPaymentMethods": false,
"displayChartOnDashboard": false,
"reportsModuleEnabledInd": true,
"displayLastXDaysOfPaymentTokensForCardOnFile": 45,
"chartsDisplayTransactionRevenue": {
"name": "NONE"
},
"chartsGroupByPaymentMethods": {
"name": "NONE"
},
"chartsGroupByTransactionTypes": {
"name": "NONE"
},
"chartsGroupByProductsAndServices": {
"name": "NONE"
},
"chartsDateRangeType": {
"name": "TODAY"
},
"numOfDaysBetweenCheckinAndCurrentDate": 3,
"smsSubscriptionType": {
"name": "FREE_VIA_SMTP"
},
"cardPresentManualEntryOnlyTransactionsEnabledInd": false,
"cardNotPresentTransactionsEnabledInd": true,
"splitPaymentsEnabledInd": true,
"accountLookupEnabledInd": false,
"nextGenHpiLocationLookup": "ABC Business",
"billingEmailRequiredForPayments": false,
"cardholderNameRequiredForTransactions": true,
"textMessageType": {
"name": "SMS"
},
"billingEnabledInd": true,
"billingRevenueShareByPercentage": 0.0,
"installmentPaymentsEnabledInd": false,
"minNumberOfInstallments": 2,
"maxNumberOfInstallments": 36,
"settledTransactionsReportEnabledInd": true,
"sendSettledTransactionsReportViaEmailEnabled": true,
"summaryByTypeReportEnabledInd": true,
"transactionSummaryReportEnabledInd": true,
"settledTxnsReportEmailRecipients": "abcd@gmail.com",
"offlinePaymentActionsOnInvoicesEnabledInd": true,
"qrCodeEnabledInd": false,
"dateFormat": {
"value": "yyyy-MM-dd",
"name": "YYYY_MM_DD"
},
"dateTimeFormat": {
"value": "yyyy-MM-dd hh:mm a zzz",
"name": "YYYY_MM_DD_HH_MM_A_ZZZ"
},
"logoutSingleSignOnTime": 10,
"reconciliationPlatformName": {
"value": "Intuit QuickBooks",
"industryType": "ECOMMERCE",
"name": "INTUIT_QUICKBOOKS"
},
"employerIdentificationNumber": "12-2543645",
"autoReconciliationEnabledInd": false,
"customerSummaryEnabledInd": true,
"surchargesEnabledInd": false,
"surchargesByPercentage": 1.0,
"onlineReceiptLinkEnabledInd": false,
"maxNumOfFailedOneTimePasscodeAttempts": 3,
"apiAccessEnabledInd": true,
"enableDigitalIdOnMakeAPaymentPageInd": false,
"barcodeScanningEnabledInd": false,
"autoReconciliationFeesEnabledInd": false,
"paperlessBillingEnabledInd": false,
"multipleQuantityListingAllowedInd": false,
"multipleProductsAndServicesAllowedInd": false,
"processFullCaptureFundsInd": false,
"paymentTokenPreferenceType": {
"name": "ACCOUNT_HOLDER_NAME"
},
"minimumPasswordLength": 11,
"retainAmountOnAccountLookupInd": false,
"merchantProperties": [
{
"id": 3,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "PURGE_ENABLED",
"propertyDescription": "Is payment tokens purge enabled",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": false,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
},
{
"id": 4,
"merchantPropertyType": {
"name": "PAYMENT_TOKEN_CONFIG"
},
"propertyName": "RETENTION_DAYS",
"propertyDescription": "# of days to retain payment tokens",
"groupName": null,
"propertyStringValue": null,
"propertyIntValue": null,
"propertyBooleanValue": null,
"merchantPropertyStatus": {
"name": "ACTIVE"
},
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1568912428000,
"lastUpdatedDateTime": 1592248437000,
"message": null
}
],
"merchantBillings": [],
"merchantBillingModel2s": [
{
"id": 41,
"monthlyMinimumFee": 65,
"electronicStatementPerTransmission": 0.5,
"tier1LowerLimitAmount": 0.01,
"tier1UpperLimitAmount": 100000,
"tier1ProcessingFees": 1.0,
"tier2LowerLimitAmount": 100000.01,
"tier2UpperLimitAmount": 250000,
"tier2ProcessingFees": 0.875,
"tier3LowerLimitAmount": 250000.01,
"tier3UpperLimitAmount": 500000,
"tier3ProcessingFees": 0.75,
"tier4LowerLimitAmount": 5000000.01,
"tier4ProcessingFees": 0.625,
"merchantVolumeDiscountByPercentage": 0.0,
"advancedMDMonthlySubscriptionFees": null,
"athenahealthAPIConsumptionFees": null,
"athenahealthConnectionMonthlyServiceFees": null,
"createdUserId": 1,
"lastModifiedUserId": null,
"lockedDateTime": null,
"lockedByUserId": null,
"createdDateTime": 1748788692000,
"lastUpdatedDateTime": 1772781989000,
"autoReconciliationFees": null,
"adhocInvoicesMonthlyPrintingProductionFees": 350
}
],
"minNumOfLowercaseAlphabetsInPassword": 1,
"minNumOfUppercaseAlphabetsInPassword": 1,
"minNumOfNumericsInPassword": 1,
"minNumOfSpecialCharactersInPassword": 1,
"passwordHistoryCount": 25,
"maxNumOfInactiveDaysForUser": 90,
"signUpUsersMaximumAllowedLoginDays": 99999,
"serverTimeZone": {
"value": "America/New York",
"tzIdentifier": "America/New_York",
"utcOffsetSDT": "−05:00",
"utcOffsetDST": "−04:00",
"tzAbbreSDT": "EST",
"tzAbbreDST": "EDT",
"name": "AMERICA_NEW_YORK"
},
"merchantTimeZone": {
"value": "Eastern Time (US & Canada)",
"offset": "-05:00",
"name": "EASTERN_TIME"
},
"exportDailyTransactionsSftpInd": false,
"deskoDocumentScanningInd": false,
"exportSFTPDirectoryName": "velaaa",
"manifestationFileOriginationType": {
"name": "NONE"
},
"maxNumberOfInvoices": 20,
"message": null,
"address": null,
"fullName": null,
"activeUserCount": null,
"activeCustomerCount": null,
"paymentTokenPurgeEnabledInd": false,
"paymentTokenPurgeDays": null,
"language": null,
"assignedCurrencies": null,
"echeckConvFees": 1.99,
"echeckConvFeesType": {
"name": "FLAT"
},
"emvcompliantTransactionType": {
"name": "RELAXED"
}
},
"waiveReasonOnLateFees": null,
"waiveLateFeesByPercentage": null,
"waivedByUserId": null,
"waivedDate": null,
"memo": "unpaid",
"amountAdjustedReason": null,
"merchantId": null,
"paidByUserName": null,
"message": {
"code": "193",
"type": {
"name": "SUCCESS"
},
"include_i_icon": false,
"description": "SEND_INVOICE_NOTIFICATION_SUCCESS",
"parameters": null
},
"geolocation": null,
"cardNotPresentChannelId": null,
"roleType": null,
"paymentAction": null,
"addressLine1": null,
"addressLine2": null,
"city": null,
"state": null,
"zipCode": null,
"phone": null,
"mobile": null,
"merchantCode": null,
"emailAddress": null,
"customerNumber": null,
"customerName": null,
"sessionId": "",
"lastCPTDateOfService": null,
"bSendNotification": false,
"salesOrderNumber": null,
"purchaseOrderNumber": null,
"invoiceDateString": null,
"accessionNumber": null
}
Updated As Of Version 6.9.7