For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Get access
Getting Started Key Concepts Integration Types Core Components Embed Hosted API API Reference
  • API Reference
    • Contribution Reports
    • Events and Webhooks
      • GETRetrieve a dependents management intent
      • GETRetrieve associated persons eligibility for a dependents management intent
      • POSTAdd dependents to a dependents management intent
      • DELRemove a dependent from a Dependents Management Intent
      • POSTConfirm dependent list
      • POSTCancel the dependents management intent
    • API Errors
Get access
LogoLogo
API ReferenceDependents Management Intents

Remove a dependent from a Dependents Management Intent

DELETE
/dependents_management_intents/:dependents_management_intent_id/dependents/:associated_person_id
DELETE
/dependents_management_intents/:dependents_management_intent_id/dependents/:associated_person_id
$curl -X DELETE https://test.api.kota.io/dependents_management_intents/dmi_3b1333d87d9d4fd6ad83ba7f6b0e951a/dependents/ap_3b1333d87d9d4fd6ad83ba7f6b0e951a \
> -H "Authorization: Bearer <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{}'
1{
2 "id": "dmi_3b1333d87d9d4fd6ad83ba7f6b0e951a",
3 "parent_intent_id": "pai_7f8e9d6c4b2a1f0e3d4c5b6a",
4 "parent_intent_type": "policy_amendment_intent",
5 "status": "action_required",
6 "dependents": [
7 {
8 "associated_person_id": "ap_9f8e7d6c5b4a3e2d1c0b9a8f",
9 "status": "pending_confirmation"
10 }
11 ],
12 "plan": {
13 "id": "pl_4a3b2c1d0e9f8a7b6c5d4e3f",
14 "name": "Comprehensive Family Health Plan",
15 "description": "A health insurance plan covering the entire family with extensive benefits.",
16 "pricing": {
17 "type": "per_member"
18 }
19 },
20 "disclosures": [
21 {
22 "category": "regulatory",
23 "type": "intermediary_role",
24 "text": "This intermediary acts as a broker and does not underwrite the policy."
25 }
26 ],
27 "object": "dependents_management_intent"
28}
Removes a specific dependent from a Dependents Management Intent by their associated person ID. The operation returns the updated DMI state.
Previous

Add dependents to a dependents management intent

Next

Confirm dependent list

Built with

Authentication

AuthorizationBearer
Authorization header using the Bearer scheme

Path parameters

dependents_management_intent_idstringRequiredformat: "dmi_.+"
associated_person_idstringRequiredformat: "ap_.+"

Response

OK
idstringformat: "dmi_.+"

Unique identifier for the dependents management intent. Prefixed with dmi_.

parent_intent_idstring

The parent intent ID (e.g. Policy Amendment Intent ID). Prefixed based on type.

parent_intent_typeenum
The type of parent intent.
Allowed values:
statusenum
Current status of the dependents management intent.
Allowed values:
dependentslist of objects
List of dependents being managed.
planobject
Plan information including pricing details.
disclosureslist of objects
Disclosures associated with this intent.
objectstringRead-only
Object type identifier.

Errors

400
Bad Request Error
404
Not Found Error