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 anEnrollment
When creating
Enrollment
objects via API, send anEnrollmentPayload
as your request body. You'll receive anEnrollment
as a response.
Schema Definition
Properties in bold are required.
Property | Type | Format | Description |
---|---|---|---|
repayment_plan | string | paye 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 . |
signature | boolean | Does the borrower grant the Partner company (you) and Payitoff the right to process and submit an IDR Enrollment form on their behalf? | |
cursive_signature | boolean | Should 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
}
Updated almost 3 years ago