> ## Documentation Index
> Fetch the complete documentation index at: https://docs.omneo.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List one snapshot batch's work items (the per-profile evaluation rows)

> A `GET` to `/groups/definitions/{group}/snapshots/{snapshot}/profiles`
returns every profile the batch evaluated, filterable via
`filter[result_status]` / `filter[processing_status]` (e.g. matched,
excluded, not_matched). This is the batch-level view; the type-agnostic
"current members" listing lives at `/groups/definitions/{group}/profiles`.



## OpenAPI

````yaml get /v3/groups/definitions/{group}/snapshots/{snapshot}/profiles
openapi: 3.1.0
info:
  title: Omneo
  version: 0.0.1
servers:
  - url: https://api.{tenant}.getomneo.com/api
    variables:
      tenant:
        default: example
security: []
paths:
  /v3/groups/definitions/{group}/snapshots/{snapshot}/profiles:
    get:
      tags:
        - Group Snapshot
      summary: List one snapshot batch's work items (the per-profile evaluation rows)
      description: >-
        A `GET` to `/groups/definitions/{group}/snapshots/{snapshot}/profiles`

        returns every profile the batch evaluated, filterable via

        `filter[result_status]` / `filter[processing_status]` (e.g. matched,

        excluded, not_matched). This is the batch-level view; the type-agnostic

        "current members" listing lives at
        `/groups/definitions/{group}/profiles`.
      operationId: groups.definitions.snapshots.profiles
      parameters:
        - name: group
          in: path
          required: true
          description: The group ID
          schema:
            type: integer
        - name: snapshot
          in: path
          required: true
          description: The snapshot ID
          schema:
            type: integer
        - name: page[size]
          in: query
          schema:
            type: string
      responses:
        '200':
          description: Array of `GroupSnapshotProfile`
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/GroupSnapshotProfile'
                required:
                  - data
        '401':
          $ref: '#/components/responses/AuthenticationException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
        '404':
          $ref: '#/components/responses/ModelNotFoundException'
components:
  schemas:
    GroupSnapshotProfile:
      type: object
      properties:
        id:
          type: integer
        group_definition_id:
          type: integer
        group_snapshot_id:
          type: integer
        profile_id:
          type: string
        processing_status:
          type: string
        result_status:
          type:
            - string
            - 'null'
        matched_group_rule_ids:
          type:
            - array
            - 'null'
          items: {}
        excluded_by_group_rule_id:
          type:
            - integer
            - 'null'
        evaluation_error:
          type:
            - string
            - 'null'
        processed_at:
          type: string
        created_at:
          type: string
        updated_at:
          type: string
      required:
        - id
        - group_definition_id
        - group_snapshot_id
        - profile_id
        - processing_status
        - result_status
        - matched_group_rule_ids
        - excluded_by_group_rule_id
        - evaluation_error
        - processed_at
        - created_at
        - updated_at
      title: GroupSnapshotProfile
  responses:
    AuthenticationException:
      description: Unauthenticated
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message
    AuthorizationException:
      description: Authorization error
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message
    ModelNotFoundException:
      description: Not found
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message

````