## Reissue an enrollment **post** `/v1/enrollments/{enrollment_id}/reissue` Closes the targeted enrollment and creates a new unanswered enrollment for the same member and plan year. VPC never requires a qualifying life event; other products require an accepted, member-owned event outside open enrollment. User-backed callers must provide a reason; it is optional for userless organization callers. Tenant mismatches return a non-disclosing 404 before the request body is validated. ### Path Parameters - `enrollment_id: string` Unique enrollment identifier (enrl_*) ### Body Parameters - `qualifying_life_event_id: optional string` Accepted member qualifying life event identifier (qle_*) - `reason: optional string` Audit reason for the reissue; required for user-backed callers and optional for userless organization callers - `ticket_number: optional string` Optional support or operational ticket number ### Returns - `data: { enrollment_id }` - `enrollment_id: string` Opaque identifier for the new unanswered enrollment ### Example ```http curl https://api.vitablehealth.com/v1/enrollments/$ENROLLMENT_ID/reissue \ -X POST \ -H "Authorization: Bearer $VITABLE_CONNECT_API_KEY" ``` #### Response ```json { "data": { "enrollment_id": "enrl_AAAAAAAAAAAAAAAAAAAAAQ" } } ```