List invoice and payment status
GET
/broker/payments
const url = 'https://api.hedgespecialty.com/api/v1/broker/payments';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/payments \ --header 'Authorization: Bearer <token>'One row per bound submission with billing: submission_id, insured_name, status + status_label, premium, invoice_url (the hosted invoice), updated_at. Read scope is enough.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Payment list