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

# List actions for a service

> List the catalog actions a service exposes. No authentication required. Returns an empty list for an unknown service.



## OpenAPI

````yaml /openapi.json get /catalog/services/{service_id}/actions
openapi: 3.1.0
info:
  title: GetDialed Flows API
  version: 0.1.0
servers:
  - url: https://api.getdialed.ai/flows
    description: Production
  - url: http://localhost:8000
    description: Local development
security: []
paths:
  /catalog/services/{service_id}/actions:
    get:
      tags:
        - catalog
      summary: List actions for a service
      description: >-
        List the catalog actions a service exposes. No authentication required.
        Returns an empty list for an unknown service.
      operationId: list_actions_for_service_catalog_services__service_id__actions_get
      parameters:
        - name: service_id
          in: path
          required: true
          schema:
            type: string
            title: Service Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ActionResponse'
                title: >-
                  Response List Actions For Service Catalog Services  Service
                  Id  Actions Get
        '404':
          description: No such service
          content:
            application/json:
              example:
                detail: 'Service not found: five9__configuration'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        '429':
          description: Rate limit exceeded — retry after the Retry-After header
          headers:
            Retry-After:
              description: Seconds to wait before retrying
              schema:
                type: integer
          content:
            application/json:
              example:
                detail: 'Rate limit exceeded: 100 per 1 minute'
components:
  schemas:
    ActionResponse:
      properties:
        id:
          type: string
          title: Id
        platform_id:
          type: string
          title: Platform Id
        service_id:
          type: string
          title: Service Id
        name:
          type: string
          title: Name
        description:
          type: string
          title: Description
          default: ''
        tags:
          items:
            type: string
          type: array
          title: Tags
          default: []
        version:
          type: string
          title: Version
          default: '1.0'
        parameters:
          additionalProperties: true
          type: object
          title: Parameters
          default: {}
        output_schema:
          additionalProperties: true
          type: object
          title: Output Schema
          default: {}
        sample_output:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Sample Output
        batch_capable:
          type: boolean
          title: Batch Capable
          default: false
        status:
          type: string
          title: Status
      type: object
      required:
        - id
        - platform_id
        - service_id
        - name
        - status
      title: ActionResponse
      example:
        batch_capable: false
        description: Retrieve the calling lists configured in Five9
        id: five9__configuration__get_lists
        name: Get lists
        output_schema: {}
        parameters: {}
        platform_id: five9
        sample_output:
          lists:
            - Callbacks
            - Do Not Call
        service_id: five9__configuration
        status: active
        tags:
          - lists
          - read
        version: '1.0'
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````