Deprecated

Deprecating Agent scoped quote and policy endpoints

The agent-scoped endpoints for listing quotes and policies are now deprecated. These endpoints are superseded by the agency-level equivalents, which accept an agent_id filter parameter and offer the same functionality with a more consistent API design.

Affected Endpoints

Migration Notes

Replace calls to the deprecated agent-scoped endpoints with the corresponding agency-level endpoints, passing the agent's ID as the agent_id query parameter:

# Before (deprecated)

GET /v3/agents/:agent_id/quotes
GET /v3/agents/:agent_id/policies

# After

GET /v3/agencies/:agency_id/quotes?agent_id=<agent_id>
GET /v3/agencies/:agency_id/policies?agent_id=<agent_id>

The agency-level endpoints compose with other existing filters (bound, quote\_reasons, etc.).

The deprecated endpoints will continue to function for a grace period. Integrations that have not migrated will be contacted individually. After the grace period, the endpoints will return an error response before being fully removed.