get
https://{environment}.origamirisk.com/OrigamiApi/api/Quotes/Proposals//BindStatus
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Overview
Returns the current bind status of a proposal, indicating whether the proposal has been bound to a policy and providing the resulting policy details.
Use this endpoint to check the outcome after queuing a proposal for asynchronous binding via POST /api/Quotes/Proposals/{proposalId}/QueueBindQuote.
Examples
Scenario 1: Proposal has been bound:
GET /api/Quotes/Proposals/12345/BindStatus200 OK
{
"ProposalID": 12345,
"Status": "Bound",
"ErrorMessage": null,
"PolicyID": 67890,
"MemberID": 555,
"PolicyNumber": "POL-2026-001",
"MemberName": "Acme Corporation",
"BoundDateUTC": "2026-05-10T14:30:00Z"
}Scenario 2: Proposal has not been bound yet:
GET /api/Quotes/Proposals/99999/BindStatus200 OK
{
"ProposalID": 99999,
"Status": "NotBound",
"ErrorMessage": null,
"PolicyID": null,
"MemberID": null,
"PolicyNumber": null,
"MemberName": null,
"BoundDateUTC": null
}Scenario 3: Binding failed:
GET /api/Quotes/Proposals/12345/BindStatus200 OK
{
"ProposalID": 12345,
"Status": "Error",
"ErrorMessage": "Rating must be completed before binding.",
"PolicyID": null,
"MemberID": null,
"PolicyNumber": null,
"MemberName": null,
"BoundDateUTC": null
}