HomeGuidesAPI Reference

EnrollmentPayload

Payitoff API: EnrollmentPayload Schema

To create an Enrollment for a Borrower, use our Create an Enrollment API endpoint with an EnrollmentPayload.

NOTE: The following fields are required:

  • repayment_plan
  • signature

🚧

Use EnrollmentPayload for to create an Enrollment

When creating Enrollment objects via API, send an EnrollmentPayload as your request body. You'll receive an Enrollment as a response.

Schema Definition

Properties in bold are required fields.

PropertyTypeFormatDescription
repayment_planstringpaye
repaye
ibr
new_ibr
icr
The Income-Driven Repayment Plan a borrower wishes to enroll in. Should be a repayment_plan.type value from a RepaymentOption.
signaturebooleanDoes the borrower grant the Partner company (you) and Payitoff the right to process and submit an IDR Enrollment form on their behalf?
cursive_signaturebooleanShould the borrower's signature be in cursive or typed format on the submitted IDR Enrollment form?

Defaults to true.

Example

{
  "repayment_plan": "paye",
  "signature": true
}