System Sent Messages

Peach automatically sends messages on your behalf. For example when autopay is enabled for a borrower a message with subject autopayEnabled is sent.

Automatically Calculated Context Vars

When the Peach system sends messages it automatically calculates context variables. These context variables can be referenced in the template content. For example, when the system sends autopayEnabled it includes the populated context variables paymentMethod, paymentMethodLastFour, and paymentSchedule.

Customization

Peach comes with predefined template content out-of-the-box. You can customize the content of these messages by updating the content of the template associated with the subject. See Update Template Version.

If you choose to customize the content of a template it's important to understand that different interaction subjects have different automatically calculated context variables.

For example, you can see below the subject autopayAmountChanged with context variables company, person, loan, extraCharge, paymentAmount and paymentDueDate. This means for the template with subject=autopayAmountChanged you can write a template like:

Hello {{person.name.firstName}},

This is {{company.brandName}} from {{company.domainName}}, in regards to your loan
{{loan.displayId}}.

Your autopay changed. It is now {{paymentAmount}}. (That's an additional {{extraCharge}}.) 

Bye!

Available Context Variables

In this section of the docs you can see what context variables are automatically calculated for a given subject's system sent messages. (Note the list is currently incomplete.)

autopayAmountChanged

Sent When

  • Trigger: Autopay amount increased more then X%
  • When: 9am PST

The context variables included by system when it sends autopayAmountChanged

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

extraCharge
number

The additional charge above the original autopay amount.

paymentAmount
number (ContextVarPaymentAmount) decimal places <= 2

The amount of the payment

paymentDueDate
string <date> (ContextVarPaymentDueDate)

The due date of the payment

paymentMethod
string (ContextVarPaymentMethod)

The payment method

Enum: "bankAccount" "card" "check" "payroll" "paymentNetwork" "moneyOrder" "wire"
paymentMethodLastFour
string (ContextVarPaymentMethodLastFour)

The last four digits of the payment method

{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "extraCharge": 0,
  • "paymentAmount": 0,
  • "paymentDueDate": "2019-08-24",
  • "paymentMethod": "bankAccount",
  • "paymentMethodLastFour": "string"
}

autopayCanceledBySystem

Sent When

  • Trigger: Autopay was canceled by the system because payment instrument became invalid or loan terms changed.
  • When: Immediately

The context variables included by system when it sends autopayCanceledBySystem

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

paymentMethod
string (ContextVarPaymentMethod)

The payment method

Enum: "bankAccount" "card" "check" "payroll" "paymentNetwork" "moneyOrder" "wire"
paymentMethodLastFour
string (ContextVarPaymentMethodLastFour)

The last four digits of the payment method

reason
string or null (AutopayCancelReason)

Why the autopay was canceled.

Enum: "invalidPaymentMethod" "paymentMethodRemoved" "tooManyFailedAttempts" "loanFrozen" "loanAccelerated" "loanChargedOff" "loanPaidOff" "canceledByUser" "loanTermsChanged"
{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "paymentMethod": "bankAccount",
  • "paymentMethodLastFour": "string",
  • "reason": "invalidPaymentMethod"
}

autopayEnabled

Sent When

  • Trigger: Borrower or agent turned on Autopay.
  • When: Immediately

The context variables included by system when it sends autopayEnabled

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

paymentMethod
string (ContextVarPaymentMethod)

The payment method

Enum: "bankAccount" "card" "check" "payroll" "paymentNetwork" "moneyOrder" "wire"
paymentMethodLastFour
string (ContextVarPaymentMethodLastFour)

The last four digits of the payment method

Array of objects (ContextVarPaymentSchedule)

The dates and amounts of payments to be made

{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "paymentMethod": "bankAccount",
  • "paymentMethodLastFour": "string",
  • "paymentSchedule": [
    ]
}

autopayEnableReminder

Sent When

  • Trigger: Borrower has not enabled autopay X days before the due date.
  • When: 9am PST

The context variables included by system when it sends autopayEnableReminder

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

nextDueDate
string <date>

The due date of the next payment.

paymentDays
integer

The number of days to the due date.

{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "nextDueDate": "2019-08-24",
  • "paymentDays": 0
}

autopayPaymentCanceled

Sent When

  • Trigger: Autopay scheduled payment was canceled (eg: due to low balance per Plaid check)
  • When: 1-2am Product Timezone

The context variables included by system when it sends autopayPaymentCanceled

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

paymentAmount
number (ContextVarPaymentAmount) decimal places <= 2

The amount of the payment

paymentDate
string <date> (ContextVarPaymentDueDate)

The due date of the payment

paymentMethod
string (ContextVarPaymentMethod)

The payment method

Enum: "bankAccount" "card" "check" "payroll" "paymentNetwork" "moneyOrder" "wire"
paymentMethodLastFour
string (ContextVarPaymentMethodLastFour)

The last four digits of the payment method

{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "paymentAmount": 0,
  • "paymentDate": "2019-08-24",
  • "paymentMethod": "bankAccount",
  • "paymentMethodLastFour": "string"
}

autopayPaymentMethodUpdated

Sent When

  • Trigger: Borrower or agent updated payment method on an existing Autopay plan.
  • When: Immediately

The context variables included by system when it sends autopayPaymentMethodUpdated

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

paymentMethod
string (ContextVarPaymentMethod)

The payment method

Enum: "bankAccount" "card" "check" "payroll" "paymentNetwork" "moneyOrder" "wire"
paymentMethodLastFour
string (ContextVarPaymentMethodLastFour)

The last four digits of the payment method

Array of objects (ContextVarPaymentSchedule)

The dates and amounts of payments to be made

{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "paymentMethod": "bankAccount",
  • "paymentMethodLastFour": "string",
  • "paymentSchedule": [
    ]
}

autopayPaymentReminder

Sent When

  • Trigger: Autopay payment reminder sent X days before the Autopay date, sent when autopay is on.
  • When: 9am PST

The context variables included by system when it sends autopayPaymentReminder

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

expectedPaymentIds
Array of strings (ContextVarExpectedPaymentIds)

The IDs of the expected payments objects representing payments not yet made.

overdueAmount
number (ContextVarOverdueAmount) decimal places <= 2

The overdue amount

paymentDate
string <date> (ContextVarPaymentDueDate)

The due date of the payment

paymentAmount
number (ContextVarPaymentAmount) decimal places <= 2

The amount of the payment

paymentMethod
string (ContextVarPaymentMethod)

The payment method

Enum: "bankAccount" "card" "check" "payroll" "paymentNetwork" "moneyOrder" "wire"
paymentMethodLastFour
string (ContextVarPaymentMethodLastFour)

The last four digits of the payment method

{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "expectedPaymentIds": [
    ],
  • "overdueAmount": 0,
  • "paymentDate": "2019-08-24",
  • "paymentAmount": 0,
  • "paymentMethod": "bankAccount",
  • "paymentMethodLastFour": "string"
}

autopayPaymentRescheduled

Sent When

  • Trigger: Autopay scheduled payment was rescheduled (eg: due to low balance per Plaid check).
  • When: 1-2am Product Timezone

The context variables included by system when it sends autopayPaymentRescheduled

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

newPaymentDate
string <date> (ContextVarNewPaymentDate)

The new payment date

oldPaymentDate
string <date> (ContextVarOldPaymentDate)

The old payment date

paymentAmount
number (ContextVarPaymentAmount) decimal places <= 2

The amount of the payment

paymentMethod
string (ContextVarPaymentMethod)

The payment method

Enum: "bankAccount" "card" "check" "payroll" "paymentNetwork" "moneyOrder" "wire"
paymentMethodLastFour
string (ContextVarPaymentMethodLastFour)

The last four digits of the payment method

{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "newPaymentDate": "2019-08-24",
  • "oldPaymentDate": "2019-08-24",
  • "paymentAmount": 0,
  • "paymentMethod": "bankAccount",
  • "paymentMethodLastFour": "string"
}

cardExpiresReminder

Sent When

  • Trigger: Card payment method is expiring soon.
  • When: 9am PST

The context variables included by system when it sends cardExpiresReminder

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

month
string

The full name of the month the card expires (e.g., October, not Oct).

year
integer

The year the card expires.

paymentMethod
string (ContextVarPaymentMethod)

The payment method

Enum: "bankAccount" "card" "check" "payroll" "paymentNetwork" "moneyOrder" "wire"
paymentMethodLastFour
string (ContextVarPaymentMethodLastFour)

The last four digits of the payment method

{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "month": "string",
  • "year": 0,
  • "paymentMethod": "bankAccount",
  • "paymentMethodLastFour": "string"
}

ceaseCommunicationAcknowledgement

Sent When

  • Trigger: Manual (Agent can send via CRM associated with Cease Communications Case Type)
  • When: Immediately

The context variables included by system when it sends ceaseCommunicationAcknowledgement

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

bankruptcy (object) or ceaseCommunication (object) or deceased (object) or disputeOfDebt (object) or federalEmergency (object) or generic (object) or identityTheft (object) or legalAction (object) or militaryDuty (object) or debtValidation (object) or collection (object) or oFACSanctionedIndividual (object) or disputeOfPurchase (object) or creditBureauDispute (object) (ContextVarCase)
{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "case": {
    }
}

ceaseCommunicationRefuseToPay

Sent When

  • Trigger: Manual (Agent can send via CRM associated with Cease Communications Case Type)
  • When: Immediately

The context variables included by system when it sends ceaseCommunicationRefuseToPay

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

bankruptcy (object) or ceaseCommunication (object) or deceased (object) or disputeOfDebt (object) or federalEmergency (object) or generic (object) or identityTheft (object) or legalAction (object) or militaryDuty (object) or debtValidation (object) or collection (object) or oFACSanctionedIndividual (object) or disputeOfPurchase (object) or creditBureauDispute (object) (ContextVarCase)
{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "case": {
    }
}

confirmationCode

Sent When

  • Trigger: Manual (One time verification code sent to verify email or phone ownership.)
  • When: Immediately

The context variables included by system when it sends confirmationCode

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
confirmationCode
string = 6 characters

The confirmation code to be sent.

{
  • "company": {
    },
  • "person": {
    },
  • "confirmationCode": "string"
}

contactTakeover

Sent When

  • Trigger: Another borrower "claimed" email or phone number.
  • When: Immediately

The context variables included by system when it sends contactTakeover

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
contactType
string

The type of contact that was taken over. Only email and phone can be taken over.

Enum: "email" "phone"
emailMasked
string

The email address of the phone number which was taken over, with most of the characters replaced with *.

phoneNumberLastFour
string = 4 characters

The last four digits of the phone number which was taken over.

{
  • "company": {
    },
  • "person": {
    },
  • "contactType": "email",
  • "emailMasked": "string",
  • "phoneNumberLastFour": "stri"
}

customX

Sent When

  • Trigger: Manual (Agent can send via CRM, once configured.)
  • When: Immediately

The context variables included by system when it sends customX (custom1 - custom20)

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
bankruptcy (object) or ceaseCommunication (object) or deceased (object) or disputeOfDebt (object) or federalEmergency (object) or generic (object) or identityTheft (object) or legalAction (object) or militaryDuty (object) or debtValidation (object) or collection (object) or oFACSanctionedIndividual (object) or disputeOfPurchase (object) or creditBureauDispute (object) (ContextVarCase)
{
  • "company": {
    },
  • "person": {
    },
  • "case": {
    }
}

debtValidationNotice

Sent When

  • Trigger: Manual (Agent can send via CRM when a new loan is created.)
  • When: Immediately

The context variables included by system when it sends debtValidationNotice

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

bankruptcy (object) or ceaseCommunication (object) or deceased (object) or disputeOfDebt (object) or federalEmergency (object) or generic (object) or identityTheft (object) or legalAction (object) or militaryDuty (object) or debtValidation (object) or collection (object) or oFACSanctionedIndividual (object) or disputeOfPurchase (object) or creditBureauDispute (object) (ContextVarCase)
{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "case": {
    }
}

debtValidationNoticeArizona

Sent When

  • Trigger: Can be configured on loan type to be sent upon loanActivation or loanFirstOverdue.
  • When: Immediately

The context variables included by system when it sends debtValidationNoticeArizona

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

bankruptcy (object) or ceaseCommunication (object) or deceased (object) or disputeOfDebt (object) or federalEmergency (object) or generic (object) or identityTheft (object) or legalAction (object) or militaryDuty (object) or debtValidation (object) or collection (object) or oFACSanctionedIndividual (object) or disputeOfPurchase (object) or creditBureauDispute (object) (ContextVarCase)
{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "case": {
    }
}

debtValidationNoticeAutomatic

Sent When

  • Trigger: Can be configured on loan type to be sent upon loanActivation or loanFirstOverdue.
  • When: Immediately

The context variables included by system when it sends debtValidationNoticeAutomatic

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

bankruptcy (object) or ceaseCommunication (object) or deceased (object) or disputeOfDebt (object) or federalEmergency (object) or generic (object) or identityTheft (object) or legalAction (object) or militaryDuty (object) or debtValidation (object) or collection (object) or oFACSanctionedIndividual (object) or disputeOfPurchase (object) or creditBureauDispute (object) (ContextVarCase)
{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "case": {
    }
}

debtValidationNoticeNYCYonkers

Sent When

  • Trigger: Manual (Agent can send via CRM when a new loan is created.)
  • When: Immediately

The context variables included by system when it sends debtValidationNoticeNYCYonkers

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

bankruptcy (object) or ceaseCommunication (object) or deceased (object) or disputeOfDebt (object) or federalEmergency (object) or generic (object) or identityTheft (object) or legalAction (object) or militaryDuty (object) or debtValidation (object) or collection (object) or oFACSanctionedIndividual (object) or disputeOfPurchase (object) or creditBureauDispute (object) (ContextVarCase)
{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "case": {
    }
}

debtValidationNoticePuertoRico

Sent When

  • Trigger: Can be configured on loan type to be sent upon loanActivation or loanFirstOverdue.
  • When: Immediately

The context variables included by system when it sends debtValidationNoticePuertoRico

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

bankruptcy (object) or ceaseCommunication (object) or deceased (object) or disputeOfDebt (object) or federalEmergency (object) or generic (object) or identityTheft (object) or legalAction (object) or militaryDuty (object) or debtValidation (object) or collection (object) or oFACSanctionedIndividual (object) or disputeOfPurchase (object) or creditBureauDispute (object) (ContextVarCase)
{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "case": {
    }
}

deceasedConfirmationOfPayoff

Sent When

  • Trigger: Manual (Agent can send via CRM with an associated Deceased Case.)
  • When: Immediately

The context variables included by system when it sends deceasedConfirmationOfPayoff

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

bankruptcy (object) or ceaseCommunication (object) or deceased (object) or disputeOfDebt (object) or federalEmergency (object) or generic (object) or identityTheft (object) or legalAction (object) or militaryDuty (object) or debtValidation (object) or collection (object) or oFACSanctionedIndividual (object) or disputeOfPurchase (object) or creditBureauDispute (object) (ContextVarCase)
{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "case": {
    }
}

deceasedNoticeToRepresentative

Sent When

  • Trigger: Manual (Agent can send via CRM with an associated Deceased Case.)
  • When: Immediately

The context variables included by system when it sends deceasedNoticeToRepresentative

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

bankruptcy (object) or ceaseCommunication (object) or deceased (object) or disputeOfDebt (object) or federalEmergency (object) or generic (object) or identityTheft (object) or legalAction (object) or militaryDuty (object) or debtValidation (object) or collection (object) or oFACSanctionedIndividual (object) or disputeOfPurchase (object) or creditBureauDispute (object) (ContextVarCase)
{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "case": {
    }
}

deceasedNotificationUponDeath

Sent When

  • Trigger: Manual (Agent can send via CRM with an associated Deceased Case.)
  • When: Immediately

The context variables included by system when it sends deceasedNotificationUponDeath

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

bankruptcy (object) or ceaseCommunication (object) or deceased (object) or disputeOfDebt (object) or federalEmergency (object) or generic (object) or identityTheft (object) or legalAction (object) or militaryDuty (object) or debtValidation (object) or collection (object) or oFACSanctionedIndividual (object) or disputeOfPurchase (object) or creditBureauDispute (object) (ContextVarCase)
{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "case": {
    }
}

disputeOfDebtSubmitDocumentation

Sent When

  • Trigger: Manual (Agent can send via CRM with an associated Dispute Of Debt Case.)
  • When: Immediately

The context variables included by system when it sends disputeOfDebtSubmitDocumentation

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

bankruptcy (object) or ceaseCommunication (object) or deceased (object) or disputeOfDebt (object) or federalEmergency (object) or generic (object) or identityTheft (object) or legalAction (object) or militaryDuty (object) or debtValidation (object) or collection (object) or oFACSanctionedIndividual (object) or disputeOfPurchase (object) or creditBureauDispute (object) (ContextVarCase)
{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "case": {
    }
}

disputeOfDebtConfirmed

Sent When

  • Trigger: Manual (Agent can send via CRM with an associated Dispute Of Debt Case.)
  • When: Immediately

The context variables included by system when it sends disputeOfDebtConfirmed

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

bankruptcy (object) or ceaseCommunication (object) or deceased (object) or disputeOfDebt (object) or federalEmergency (object) or generic (object) or identityTheft (object) or legalAction (object) or militaryDuty (object) or debtValidation (object) or collection (object) or oFACSanctionedIndividual (object) or disputeOfPurchase (object) or creditBureauDispute (object) (ContextVarCase)
{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "case": {
    }
}

disputeOfDebtSubmitDocumentationReminder

Sent When

  • Trigger: Manual (Agent can send via CRM with an associated Dispute Of Debt Case.)
  • When: Immediately

The context variables included by system when it sends disputeOfDebtSubmitDocumentationReminder

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

bankruptcy (object) or ceaseCommunication (object) or deceased (object) or disputeOfDebt (object) or federalEmergency (object) or generic (object) or identityTheft (object) or legalAction (object) or militaryDuty (object) or debtValidation (object) or collection (object) or oFACSanctionedIndividual (object) or disputeOfPurchase (object) or creditBureauDispute (object) (ContextVarCase)
{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "case": {
    }
}

disputeOfDebtUnableToConfirm

Sent When

  • Trigger: Manual (Agent can send via CRM with an associated Dispute Of Debt Case.)
  • When: Immediately

The context variables included by system when it sends disputeOfDebtUnableToConfirm

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

bankruptcy (object) or ceaseCommunication (object) or deceased (object) or disputeOfDebt (object) or federalEmergency (object) or generic (object) or identityTheft (object) or legalAction (object) or militaryDuty (object) or debtValidation (object) or collection (object) or oFACSanctionedIndividual (object) or disputeOfPurchase (object) or creditBureauDispute (object) (ContextVarCase)
{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "case": {
    }
}

disputeOfDebtUnableToResolve

Sent When

  • Trigger: Manual (Agent can send via CRM with an associated Dispute Of Debt Case.)
  • When: Immediately

The context variables included by system when it sends disputeOfDebtUnableToResolve

object (Company)

The company object represents a company of Peach which uses some of Peach's applications.

It contains metadata about the company and configuration settings for how the applications should function.

Person (object) or Business (object) (ContextVarPerson)
Installment (object) or Line of Credit (object) (ContextVarLoanDataSource)

Represents a loan. A loan always belongs to a borrower, and most of the interactions between a lender and a borrower are associated with a particular loan.

bankruptcy (object) or ceaseCommunication (object) or deceased (object) or disputeOfDebt (object) or federalEmergency (object) or generic (object) or identityTheft (object) or legalAction (object) or militaryDuty (object) or debtValidation (object) or collection (object) or oFACSanctionedIndividual (object) or disputeOfPurchase (object) or creditBureauDispute (object) (ContextVarCase)
{
  • "company": {
    },
  • "person": {
    },
  • "loan": {
    },
  • "case": {
    }
}