Noyo Member Snapshot Test Population Employee API

The Member Snapshot Test Population Employee API from Noyo — 2 operation(s) for member snapshot test population employee.

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/noyo-member-snapshot-test-population-employee-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

noyo-member-snapshot-test-population-employee-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  description: APIs to manage and consume information about Carriers
  title: Noyo Carrier Carrier Mapped Field Member Snapshot Test Population Employee API
  version: 1.0.0
servers: []
tags:
- name: Member Snapshot Test Population Employee
paths:
  /api/v1/member_snapshot_test_populations/{test_population_id}/employees:
    get:
      description: Returns a list of Member Snapshot Test Population Employees.
      operationId: getMemberSnapshotTestPopulationEmployeesList
      parameters:
      - description: The unique identifier of the member snapshot test population
        in: path
        name: test_population_id
        required: true
        schema:
          example: 30b74a44-d5b1-4123-a7a4-6d3aec251ba4
          format: uuid
          type: string
      - description: The max size of each page of results
        in: query
        name: page_size
        required: false
        schema:
          type: integer
      - description: The integer offset at which to start the page. Possible values are 0 to total_records - 1
        in: query
        name: offset
        required: false
        schema:
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedMemberSnapshotTestPopulationEmployeeResult'
          description: Successful Response - Returns a list of all matching Member Snapshot Test Population Employees
      summary: Retrieves a list of Member Snapshot Test Population Employees.
      tags:
      - Member Snapshot Test Population Employee
    post:
      description: Create a new Member Snapshot Test Population Employee.
      operationId: createMemberSnapshotTestPopulationEmployee
      parameters:
      - description: The unique identifier of the member snapshot test population
        in: path
        name: test_population_id
        required: true
        schema:
          example: 30b74a44-d5b1-4123-a7a4-6d3aec251ba4
          format: uuid
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MemberSnapshotTestPopulationEmployeeCreateRequest'
        required: true
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MemberSnapshotTestPopulationEmployeeResult'
          description: Successful Response - Returns the contents of the newly created Member Snapshot Test Population Employee
      summary: Create a Member Snapshot Test Population Employee
      tags:
      - Member Snapshot Test Population Employee
  /api/v1/member_snapshot_test_populations/{test_population_id}/employees/{test_population_employee_id}:
    delete:
      description: Delete a member snapshot test population employee based on the IDs provided.
      operationId: deleteMemberSnapshotTestPopulationEmployee
      parameters:
      - description: The unique identifier of the member snapshot test population
        in: path
        name: test_population_id
        required: true
        schema:
          example: 30b74a44-d5b1-4123-a7a4-6d3aec251ba4
          format: uuid
          type: string
      - description: The unique identifier of the member snapshot test population employee
        in: path
        name: test_population_employee_id
        required: true
        schema:
          example: 30b74a44-d5b1-4123-a7a4-6d3aec251ba4
          format: uuid
          type: string
      responses:
        '204':
          description: Successful Response - member snapshot test population employee was deleted successfully
      summary: Delete a Member Snapshot Test Population Employee
      tags:
      - Member Snapshot Test Population Employee
    get:
      description: Returns a single member snapshot test population employee based on the IDs provided.
      operationId: getMemberSnapshotTestPopulationEmployee
      parameters:
      - description: The unique identifier of the member snapshot test population
        in: path
        name: test_population_id
        required: true
        schema:
          example: 30b74a44-d5b1-4123-a7a4-6d3aec251ba4
          format: uuid
          type: string
      - description: The unique identifier of the member snapshot test population employee
        in: path
        name: test_population_employee_id
        required: true
        schema:
          example: 30b74a44-d5b1-4123-a7a4-6d3aec251ba4
          format: uuid
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MemberSnapshotTestPopulationEmployeeResult'
          description: Successful Response - Returns a single Member Snapshot Test Population Employee
      summary: Get a single Member Snapshot Test Population Employee
      tags:
      - Member Snapshot Test Population Employee
components:
  schemas:
    PaginatedMemberSnapshotTestPopulationEmployeeResult:
      properties:
        meta:
          allOf:
          - $ref: '#/components/schemas/Meta'
          description: Metadata associated with the response data
        response:
          description: List of member snapshot test population employee results
          items:
            $ref: '#/components/schemas/MemberSnapshotTestPopulationEmployeeResult'
          type: array
      required:
      - meta
      - response
      type: object
      x-field_order:
      - meta
      - response
    MemberSnapshotTestPopulationEmployeeCreateRequest:
      properties:
        employee_id:
          format: uuid
          type: string
      required:
      - employee_id
      type: object
      x-field_order: []
    Meta:
      properties:
        offset:
          description: The offset of the first response record within the matching data set
          format: int32
          minimum: 0
          readOnly: true
          type: integer
        page_num:
          description: The page number of the response records within the overall data set (1-based integer)
          format: int32
          minimum: 1
          readOnly: true
          type: integer
        page_size:
          description: The maximum number of response records on each page of results
          format: int32
          minimum: 1
          readOnly: true
          type: integer
        total_records:
          description: The total number of records in the entire matching data set
          format: int32
          minimum: 0
          readOnly: true
          type: integer
      required:
      - offset
      - page_num
      - page_size
      type: object
    MemberSnapshotTestPopulationEmployeeResult:
      properties:
        created:
          description: The date the record was created
          type: integer
        employee_id:
          format: uuid
          type: string
        id:
          description: Unique identifier of the record in Noyo
          format: uuid
          type: string
        member_snapshot_test_population_id:
          format: uuid
          type: string
        modified:
          description: The date the record was last updated
          type: integer
        version:
          description: Current version of the record
          format: uuid
          type: string
      required:
      - created
      - employee_id
      - id
      - member_snapshot_test_population_id
      - modified
      - version
      type: object
      x-field_order: []