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

# Mythic_rpc_callback_search

> Search callbacks



## AsyncAPI

````yaml mythic-docs/mythicrpc/mythicrpc-asyncapi.yaml mythic_rpc_callback_search
id: mythic_rpc_callback_search
title: Mythic_rpc_callback_search
description: Search callbacks
servers:
  - id: development
    protocol: amqp
    host: mythic-rabbitmq:5672
    bindings: []
    variables: []
address: mythic_rpc_callback_search
parameters: []
bindings: []
operations:
  - &ref_2
    id: sendCallbackSearch
    title: Send callback search
    description: Send callback search request
    type: send
    messages:
      - &ref_4
        id: CallbackSearchRequest
        contentType: application/json
        payload:
          - name: Callback Search Request
            description: Search for callbacks
            type: object
            properties:
              - name: callback_id
                type: integer
                description: Specific callback ID to search for
                required: false
              - name: agent_callback_id
                type: string
                description: Agent callback UUID to search for
                required: false
              - name: active
                type: boolean
                description: Filter by active status
                required: false
              - name: host
                type: string
                description: Filter by host
                required: false
              - name: user
                type: string
                description: Filter by user
                required: false
        headers: []
        jsonPayloadSchema:
          type: object
          description: Search for callbacks
          properties:
            callback_id:
              type: integer
              description: Specific callback ID to search for
              default: 0
              x-parser-schema-id: <anonymous-schema-33>
            agent_callback_id:
              type: string
              format: uuid
              description: Agent callback UUID to search for
              default: ''
              x-parser-schema-id: <anonymous-schema-34>
            active:
              type: boolean
              description: Filter by active status
              default: true
              x-parser-schema-id: <anonymous-schema-35>
            host:
              type: string
              description: Filter by host
              default: ''
              x-parser-schema-id: <anonymous-schema-36>
            user:
              type: string
              description: Filter by user
              default: ''
              x-parser-schema-id: <anonymous-schema-37>
          x-parser-schema-id: CallbackSearchPayload
        title: Callback Search Request
        description: Search for callbacks
        example: |-
          {
            "callback_id": 123,
            "agent_callback_id": "<string>",
            "active": true,
            "host": "<string>",
            "user": "<string>"
          }
        bindings: []
        extensions:
          - id: x-parser-unique-object-id
            value: CallbackSearchRequest
    bindings: []
    extensions: &ref_0
      - id: x-parser-unique-object-id
        value: mythic_rpc_callback_search
  - &ref_1
    id: receiveCallbackSearchResponse
    title: Receive callback search response
    description: Receive callback search response
    type: receive
    messages:
      - &ref_3
        id: CallbackSearchResponse
        contentType: application/json
        payload:
          - name: Callback Search Response
            description: Response for callback search operation
            type: object
            properties:
              - name: success
                type: boolean
                description: Operation success status
                required: true
              - name: error
                type: string
                description: Error message if success is false
                required: false
              - name: callbacks
                type: array
                description: Array of callback objects
                required: false
                properties:
                  - name: id
                    type: integer
                    required: false
                  - name: agent_callback_id
                    type: string
                    required: false
                  - name: display_id
                    type: integer
                    required: false
                  - name: host
                    type: string
                    required: false
                  - name: user
                    type: string
                    required: false
                  - name: description
                    type: string
                    required: false
                  - name: active
                    type: boolean
                    required: false
                  - name: last_checkin
                    type: string
                    required: false
        headers: []
        jsonPayloadSchema:
          type: object
          properties:
            success:
              type: boolean
              description: Operation success status
              default: true
              x-parser-schema-id: <anonymous-schema-38>
            error:
              type: string
              description: Error message if success is false
              default: ''
              x-parser-schema-id: <anonymous-schema-39>
            callbacks:
              type: array
              description: Array of callback objects
              default: []
              items:
                type: object
                properties:
                  id:
                    type: integer
                    default: 0
                    x-parser-schema-id: <anonymous-schema-42>
                  agent_callback_id:
                    type: string
                    format: uuid
                    default: ''
                    x-parser-schema-id: <anonymous-schema-43>
                  display_id:
                    type: integer
                    default: 0
                    x-parser-schema-id: <anonymous-schema-44>
                  host:
                    type: string
                    default: ''
                    x-parser-schema-id: <anonymous-schema-45>
                  user:
                    type: string
                    default: ''
                    x-parser-schema-id: <anonymous-schema-46>
                  description:
                    type: string
                    default: ''
                    x-parser-schema-id: <anonymous-schema-47>
                  active:
                    type: boolean
                    default: true
                    x-parser-schema-id: <anonymous-schema-48>
                  last_checkin:
                    type: string
                    format: date-time
                    default: '2024-01-01T00:00:00Z'
                    x-parser-schema-id: <anonymous-schema-49>
                x-parser-schema-id: <anonymous-schema-41>
              x-parser-schema-id: <anonymous-schema-40>
          required:
            - success
          x-parser-schema-id: CallbackSearchResponsePayload
        title: Callback Search Response
        description: Response for callback search operation
        example: |-
          {
            "success": true,
            "error": "<string>",
            "callbacks": {
              "id": 123,
              "agent_callback_id": "<string>",
              "display_id": 123,
              "host": "<string>",
              "user": "<string>",
              "description": "<string>",
              "active": true,
              "last_checkin": "<string>"
            }
          }
        bindings: []
        extensions:
          - id: x-parser-unique-object-id
            value: CallbackSearchResponse
    bindings: []
    extensions: *ref_0
sendOperations:
  - *ref_1
receiveOperations:
  - *ref_2
sendMessages:
  - *ref_3
receiveMessages:
  - *ref_4
extensions:
  - id: x-parser-unique-object-id
    value: mythic_rpc_callback_search
securitySchemes: []

````