Everything the matched markets still need from you, as one batch
GET
/broker/submissions/{submission_id}/outstanding-requirements
const url = 'https://api.hedgespecialty.com/api/v1/broker/submissions/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/outstanding-requirements';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.hedgespecialty.com/api/v1/broker/submissions/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/outstanding-requirements \ --header 'Authorization: Bearer <token>'The deduplicated union of outstanding broker-answerable items
across matched markets: unmet manifest requirements plus open
carrier-API questions, each carrying the market names it unlocks.
Items the brief already answers are excluded. Deterministic and
read-only; answer items with POST .../outstanding-requirements/answers.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”submission_id
required
string format: uuid
Responses
Section titled “Responses”Outstanding items
Media typeapplication/json
object
submission_id
string format: uuid
form_fill_active
boolean
items
Array<object>
object
key
string
label
string
source
string
input
Widget type: text, number, bool, select, date, …
string
options
Array<object>
object
value
string
label
string
markets
Array<string>
how_to_provide
string
answerable_count
integer
markets_total
integer
Examplegenerated
{ "submission_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "form_fill_active": true, "items": [ { "key": "example", "label": "example", "source": "example", "input": "example", "options": [ { "value": "example", "label": "example" } ], "markets": [ "example" ], "how_to_provide": "example" } ], "answerable_count": 1, "markets_total": 1}Not found (or not your brokerage’s)