HomeGuidesAPI Reference

EnrollmentStatus

Payitoff API: EnrollmentStatus Schema

An Enrollment object will always include an EnrollmentStatus object under the status property.

Schema Definition

PropertyTypeFormatDescription
descriptionstringSee examples below.User-friendly string describing the EnrollmentStatus.type value.
typestringcancelled
complete
partially_submitted
pending
unprocessable
approved
needs_attention
Lowercased string describing the current status of an Enrollment.
updated_atstringdate-timeA DateTime string value indicating when the Enrollment.status was last updated.

Examples

{
  "updated_at": "2021-02-22T17:56:08.368Z",
  "description": "Submission Cancelled",
  "type": "cancelled"
}

{
  "updated_at": "2021-02-22T17:56:08.368Z",
  "description": "Submission Complete. Look for a letter from your servicer confirming your updated monthly payment.",
  "type": "complete"
}

{
  "updated_at": "2021-02-22T17:56:08.368Z",
  "description": "Submitted to some but not yet all servicers",
  "type": "partially_submitted"
}

{
  "updated_at": "2021-02-22T17:56:08.368Z",
  "description": "Submission in Progress",
  "type": "pending"
}

{
  "updated_at": "2021-02-22T17:56:08.368Z",
  "description": "Submission Unprocessable",
  "type": "unprocessable"
}

{
  "updated_at": "2021-02-22T17:56:08.368Z",
  "description": "Submission Approved",
  "type": "approved"
}

{
  "updated_at": "2021-02-22T17:56:08.368Z",
  "description": "Submission Needs Attention",
  "type": "needs_attention"
}