> ## 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.

# Browse Benefit Definitions grouped by Campaign

> A `GET` to the `/benefits/definitions/campaigns` endpoint returns benefit definitions as a mixed paginated list. Definitions that share the same campaign are grouped into a single campaign slot. Definitions with no campaign appear as individual slots. Slots are ordered by the most recently created definition descending. Pagination (`meta.total`) counts logical slots, not raw definitions.



## OpenAPI

````yaml get /v3/benefits/definitions/campaigns
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/benefits/definitions/campaigns:
    get:
      tags:
        - Benefit Definition
      summary: Browse Benefit Definitions grouped by Campaign
      description: >-
        A `GET` to the `/benefits/definitions/campaigns` endpoint returns
        benefit definitions as a mixed paginated list. Definitions that share
        the same campaign are grouped into a single campaign slot. Definitions
        with no campaign appear as individual slots. Slots are ordered by the
        most recently created definition descending. Pagination (`meta.total`)
        counts logical slots, not raw definitions.
      operationId: benefitDefinition.campaigns
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items: {}
                  links:
                    type: object
                    properties:
                      first:
                        type: string
                      last:
                        type: string
                      prev:
                        type:
                          - string
                          - 'null'
                      next:
                        type:
                          - string
                          - 'null'
                    required:
                      - first
                      - last
                      - prev
                      - next
                  meta:
                    type: object
                    properties:
                      current_page:
                        type: integer
                      from:
                        type:
                          - integer
                          - 'null'
                      last_page:
                        type: integer
                      links:
                        type: object
                        additionalProperties: {}
                      path:
                        type:
                          - string
                          - 'null'
                      per_page:
                        type: integer
                      to:
                        type:
                          - integer
                          - 'null'
                      total:
                        type: integer
                    required:
                      - current_page
                      - from
                      - last_page
                      - links
                      - path
                      - per_page
                      - to
                      - total
                required:
                  - data
                  - links
                  - meta
        '401':
          $ref: '#/components/responses/AuthenticationException'
        '403':
          $ref: '#/components/responses/AuthorizationException'
components:
  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

````