Yuzu Health Group Policy API

The Group Policy API from Yuzu Health — 2 operation(s) for group policy.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/yuzu-health-group-policy-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

yuzu-health-group-policy-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: Yuzu Accumulator (Experimental) Accumulator (Experimental) Group Policy API
  description: Yuzu's Public API
  version: '0.5'
  contact: {}
servers: []
tags:
- name: Group Policy
paths:
  /v2/groups/{groupPolicyId}/renew:
    post:
      description: Renew a group policy
      operationId: PublicGroupPolicyController_renewGroupPolicy
      parameters:
      - name: groupPolicyId
        required: true
        in: path
        schema:
          type: string
      responses:
        '201':
          description: ID of the new group policy with copied plans, benefit bundles and follows the same renewal process as the portal
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GroupPolicyRenewalResponseDto'
      security:
      - public-api-auth: []
      summary: Renew a group policy
      tags:
      - Group Policy
  /v2/groups/{groupPolicyId}/rules:
    get:
      description: Get the rules of a group policy
      operationId: PublicGroupPolicyController_getGroupPolicyRules
      parameters:
      - name: groupPolicyId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: Group Policy Rules
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GroupPolicyRulesDto'
      security:
      - public-api-auth: []
      summary: Get the rules of a group policy
      tags:
      - Group Policy
    patch:
      description: Update the rules of a group policy
      operationId: PublicGroupPolicyController_updateGroupPolicyRules
      parameters:
      - name: groupPolicyId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        description: Group Policy Rules Update Data
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GroupPolicyRulesUpdateDto'
      responses:
        '200':
          description: Group Policy Rules
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GroupPolicyRulesDto'
      security:
      - public-api-auth: []
      summary: Update the rules of a group policy
      tags:
      - Group Policy
components:
  schemas:
    GroupPolicyRulesDto:
      type: object
      properties:
        id:
          type: string
        terminationRule:
          type: string
          enum:
          - lastDayOfEmployment
          - endOfMonth
        ageOutTerminationRule:
          type: string
          enum:
          - endOfMonth
          - endOfPlanYear
        enrollmentWaitingPeriodType:
          type: string
          enum:
          - months
          - days
        accumulatorPeriod:
          type: string
          enum:
          - planYear
          - calendarYear
        loadAccumulators:
          type: boolean
        enrollmentWaitingPeriod:
          type: integer
          minimum: 0
          maximum: 9007199254740991
        isCobraManagedByYuzu:
          type: boolean
        externalCobraVendor:
          anyOf:
          - type: object
            properties:
              name:
                type: string
              phoneNumber:
                type: string
                example: '+12125551234'
            required:
            - name
            - phoneNumber
          - type: 'null'
          x-nestjs_zod-empty-type: true
        humanReadableEnrollmentWaitingPeriod:
          description: Human readable enrollment waiting period
          type: string
        waitingPeriodRules:
          default: []
          type: array
          items:
            type: object
            properties:
              employeeClassTagName:
                type: string
                minLength: 1
              days:
                type: integer
                minimum: 0
                maximum: 9007199254740991
              rounding:
                type: string
                enum:
                - none
                - firstOfMonth
                - firstOfCalendarMonth
            required:
            - employeeClassTagName
            - days
            - rounding
      required:
      - id
      - terminationRule
      - ageOutTerminationRule
      - enrollmentWaitingPeriodType
      - accumulatorPeriod
      - loadAccumulators
      - enrollmentWaitingPeriod
      - isCobraManagedByYuzu
    GroupPolicyRenewalResponseDto:
      type: object
      properties:
        groupPolicyId:
          type: string
      required:
      - groupPolicyId
    GroupPolicyRulesUpdateDto:
      type: object
      properties:
        terminationRule:
          type: string
          enum:
          - lastDayOfEmployment
          - endOfMonth
        ageOutTerminationRule:
          type: string
          enum:
          - endOfMonth
          - endOfPlanYear
        enrollmentWaitingPeriodType:
          type: string
          enum:
          - months
          - days
        accumulatorPeriod:
          type: string
          enum:
          - planYear
          - calendarYear
        loadAccumulators:
          type: boolean
        enrollmentWaitingPeriod:
          type: integer
          minimum: 0
          maximum: 9007199254740991
        isCobraManagedByYuzu:
          type: boolean
        externalCobraVendor:
          anyOf:
          - type: object
            properties:
              name:
                type: string
              phoneNumber:
                type: string
                example: '+12125551234'
            required:
            - name
            - phoneNumber
          - type: 'null'
          x-nestjs_zod-empty-type: true
        waitingPeriodRules:
          type: array
          items:
            type: object
            properties:
              employeeClassTagName:
                type: string
                minLength: 1
              days:
                type: integer
                minimum: 0
                maximum: 9007199254740991
              rounding:
                type: string
                enum:
                - none
                - firstOfMonth
                - firstOfCalendarMonth
            required:
            - employeeClassTagName
            - days
            - rounding
  securitySchemes:
    public-api-auth:
      scheme: bearer
      bearerFormat: JWT
      type: http