Proposal Acceptance
Anonymous client-facing endpoints for proposal acceptance workflow. Enables clients to view proposal details without authentication, retrieve CSS for the acceptance page using the configured design theme, download proposal and engagement letter PDFs, and submit acceptance with digital signature and IP address tracking. All endpoints use a GUID-based secure link for access.
-
GET
Get Proposal Details (Anon)
Returns proposal information for the anonymous acceptance page.
Requires a valid proposal GUID that has not yet been accepted or rejected.
...
/api/proposals/accept/{guid}
-
GET
Get CSS for acceptance page (Anon)
Returns the CSS for the design theme configured for this proposal.
Falls back to tenant's default design theme if proposal settings don't speci...
/api/proposals/accept/{guid}/css
-
GET
Proposal PDF (Anon)
Downloads the proposal PDF document.
Requires a valid proposal GUID that has not yet been accepted or rejected.
/api/proposals/accept/{guid}/pdf/proposal
-
GET
Engagement Letter PDF (Anon)
Downloads the letter of engagement PDF document.
Requires a valid proposal GUID that has not yet been accepted or rejected.
/api/proposals/accept/{guid}/pdf/letter-of-engagement
-
POST
Accept a proposal (Anon)
Accept Proposal by providing a signature.
The signature should be a base64-encoded image.
IP address of the requester is automatically ca...
/api/proposals/accept/{guid}/accept