Get the Bind Status of a Proposal

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

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/BindStatus
200 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/BindStatus
200 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/BindStatus
200 OK
{
  "ProposalID": 12345,
  "Status": "Error",
  "ErrorMessage": "Rating must be completed before binding.",
  "PolicyID": null,
  "MemberID": null,
  "PolicyNumber": null,
  "MemberName": null,
  "BoundDateUTC": null
}
Path Params
integer
required

The ID of the Proposal for which you are checking the binding status.

Response

Language
Credentials
Header
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json