Open a change request
openChangeRequest lives in the loan mutation namespace and is authorized with the update:loan scope.
Response:
Attaching documents
UseattachmentDocumentIds to hand the disclosure desk the evidence behind the change (an updated purchase contract, an appraisal, a rate lock confirmation). Each ID can be either:
- A document already on the loan, as returned by the loan’s
documentsfield or by a document upload. - A support document uploaded for this loan: call
support.requestSupportDocumentUpload(experimental; requires thecreate:support-ticketanduse:experimental-apiscopes), POST the file to the returneduploadUrlasmultipart/form-datawith a singlefilesfield, and use thedocumentIdfrom the upload response.
When ticket filing fails
For organizations with support-ticket filing enabled, the ticket is filed before the change request is saved. If the ticket cannot be filed, the mutation fails and nothing is recorded:extensions.errorDetails.code for CHANGE_REQUEST_TICKET_FAILED and treat it as transient: retry with the same input after a short delay. Because nothing was saved, retrying does not create duplicates. If it keeps failing, contact your account manager and quote the errorId. See Error handling for the general error format.
Tracking a change request
The disclosure desk works the request in its support ticket, so the ticket is where progress is reflected. Read it with the Support API, passing theplainTicketId returned by openChangeRequest:
supportTicket requires the read:support-ticket and use:experimental-api scopes. Pass the ticket ID (th_…), not the change request ID (lcr_…) — the two are different objects and supportTicket does not accept a change request ID.status is the ticket’s state in the support platform, for example open, snoozed or done. Use supportTicketMessages to read the desk’s replies, and watch for the loan’s terms and disclosures to update once the change is applied. See Tracking loan updates.
If you did not keep the ticket ID, supportTicketsForLoan lists every ticket on the loan; change-request tickets carry “Change of Circumstance” in their title.
The change request record
The change request itself is also returned on the loan:status is Pylon’s internal review marker and is not updated as the desk works the ticket — in practice it stays PENDING. Do not poll it to track progress; use the ticket status above. If plainTicketId was null when you opened the request (ticket filing not enabled for your organization), there is no ticket to poll and progress is only visible through changes to the loan itself.