## List member ID cards **get** `/v1/members/{member_id}/id-cards` Lists a member's benefit ID cards — card type (medical, dental, vision, or rx), employer, plan, provider network, claims payer, carrier contact details, and the disclaimers printed on the card. Medical, dental and vision cards come from the member's active digital benefit cards; the rx card from the member's Ventegra pharmacy benefit (omitted when the member has no free-medication coverage), which carries no plan, network, or carrier details. Access is scoped to the authenticated principal, and an organization caller sees only cards from employers in its book; a member not visible to the caller returns a 404. ### Path Parameters - `member_id: string` Unique member identifier (mbr_*) ### Returns - `data: array of { card_type, group_id, group_member_id, 11 more }` - `card_type: "medical" or "dental" or "vision" or "rx"` * `medical` - medical * `dental` - dental * `vision` - vision * `rx` - rx - `"medical"` - `"dental"` - `"vision"` - `"rx"` - `group_id: string` Group number printed on the card (the rx group id for an rx card) - `group_member_id: string` Member id printed on the card (the Ventegra cardholder id for an rx card) - `member_name: string` Name of the member the card is issued to - `nsa_table: array of array of string` No Surprises Act cost-sharing table rendered on the card; empty for an rx card - `benefit_code: optional "EBA" or "VPC" or "VPC_CORE" or 12 more` * `EBA` - Eba Mec * `VPC` - Vpc Enhanced * `VPC_CORE` - Vpc Core * `MEC` - Vpc Mec * `MEC2` - Mec2 * `MEC_PLUS` - Mec Plus * `MVP` - Mvp * `MVP2` - Mvp2 * `MVPSL` - Mvpsl * `MVPSL2` - Mvpsl2 * `VD` - Dental * `VV` - Vision * `ICHRA` - Ichra * `ICHRA_PREMIUM_PLUS` - Ichra Premium Plus * `ICHRA_REIMBURSEMENT_ONLY` - Ichra Reimbursement Only - `"EBA"` - `"VPC"` - `"VPC_CORE"` - `"MEC"` - `"MEC2"` - `"MEC_PLUS"` - `"MVP"` - `"MVP2"` - `"MVPSL"` - `"MVPSL2"` - `"VD"` - `"VV"` - `"ICHRA"` - `"ICHRA_PREMIUM_PLUS"` - `"ICHRA_REIMBURSEMENT_ONLY"` - `carrier_phone: optional string` Carrier phone number on the card; null for an rx card - `carrier_website: optional string` Carrier website on the card; null for an rx card - `claims_payer_display_name: optional string` Claims payer shown on the card - `employer_name: optional string` Employer the card's coverage is through; null for an rx card without group info - `general_disclaimer: optional string` General disclaimer text; null for an rx card - `network: optional { id, address, logo, 8 more }` Provider network shown on the card; null for an rx card - `id: string` - `address: { address_line_1, address_line_2, city, 2 more }` Shared read serializer for a postal address on public API responses. One definition for the address block every public resource emits (employer, employee, …), so the 5-field shape isn't hand-rolled per endpoint. Read-only: it renders an already-built address value object (e.g. `AddressDVO`) whose attributes map 1:1 to these fields. - `address_line_1: string` Primary street address. - `address_line_2: string` Secondary street address (apt, suite, etc.). - `city: string` City name. - `state: string` Two-letter state code (e.g. `CA`, `NY`). - `zipcode: string` ZIP code (5 or 9 digit). - `logo: string` - `member_phone: string` - `name: string` Name of the network - `phone: string` - `provider_phone: string` - `website: string` Website of the network - `edi: optional string` Network's EDI - `member_website: optional string` Website for members - `provider_website: optional string` Website for providers - `plan_disclaimer: optional string` Plan-specific disclaimer text; null for an rx card - `plan_name: optional string` Benefit plan name on the card; null for a consumer-membership rx card ### Example ```http curl https://api.vitablehealth.com/v1/members/$MEMBER_ID/id-cards \ -H "Authorization: Bearer $VITABLE_CONNECT_API_KEY" ``` #### Response ```json { "data": [ { "card_type": "medical", "group_id": "GRP-000123", "group_member_id": "GM-000456", "member_name": "Jane Doe", "employer_name": "Acme Inc.", "plan_name": "MEC Plus Standard", "benefit_code": "MEC_PLUS", "network": { "id": "5f1c1f9e-6d4a-4b21-9f77-2d4c8f0a1b33", "name": "First Health", "logo": "https://assets.vitablehealth.com/networks/first-health.png", "address": { "address_line_1": "123 Main Street", "address_line_2": null, "city": "San Francisco", "state": "CA", "zipcode": "94102" }, "edi": "87726", "website": "https://firsthealth.example.com", "phone": "(800) 555-0100", "member_website": "https://firsthealth.example.com/members", "member_phone": "(800) 555-0101", "provider_website": "https://firsthealth.example.com/providers", "provider_phone": "(800) 555-0102" }, "claims_payer_display_name": "Vitable Health", "carrier_phone": "(800) 555-0100", "carrier_website": "https://vitablehealth.com", "plan_disclaimer": "This plan is not major medical insurance.", "general_disclaimer": "Possession of this card does not guarantee coverage.", "nsa_table": [ [ "Primary care", "$0" ], [ "Specialist", "$40" ] ] }, { "card_type": "rx", "group_id": "TEST125", "group_member_id": "RX-000789", "member_name": "Jane Doe", "employer_name": "Acme Inc.", "plan_name": null, "benefit_code": null, "network": null, "claims_payer_display_name": null, "carrier_phone": null, "carrier_website": null, "plan_disclaimer": null, "general_disclaimer": null, "nsa_table": [] } ] } ```