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

# List resolution criteria for an agent



## OpenAPI

````yaml /openapi.json get /api/agents/{id}/resolution-criteria
openapi: 3.0.0
info:
  title: GoMobile Backend API
  description: >-
    API documentation for GoMobile telephony platform - automated calling
    campaigns, interactive voice flows, and call management
  version: '1.0'
  contact: {}
servers:
  - url: http://localhost:3000
    description: Local Development
security: []
tags:
  - name: Organizations
    description: Multi-tenant organization management
  - name: Teams
    description: Team structure and hierarchy
  - name: Contacts
    description: Customer contact management (CRM)
  - name: Entities
    description: Business entities management
  - name: Audiences
    description: Contact segmentation and groups
  - name: Programs
    description: Call campaign configuration
  - name: Call Flows
    description: Interactive call flow builder
paths:
  /api/agents/{id}/resolution-criteria:
    get:
      tags:
        - Agent Studio
      summary: List resolution criteria for an agent
      operationId: AgentStudioController_getResolutionCriteria
      parameters:
        - name: id
          required: true
          in: path
          description: Agent ID
          schema:
            type: string
      responses:
        '200':
          description: List of resolution criteria
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ResolutionCriterionResponseDto'
        '404':
          description: Agent not found
      security:
        - bearer: []
components:
  schemas:
    ResolutionCriterionResponseDto:
      type: object
      properties:
        id:
          type: string
          description: Criterion ID
        agentId:
          type: string
          description: Agent ID
        label:
          type: string
          description: Label
        description:
          type: string
          description: Description
        position:
          type: number
          description: Display position
        createdAt:
          format: date-time
          type: string
          description: Created at
        updatedAt:
          format: date-time
          type: string
          description: Updated at
      required:
        - id
        - agentId
        - label
        - description
        - position
        - createdAt
        - updatedAt
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````