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

> Create callback entry



## AsyncAPI

````yaml mythic-docs/mythicrpc/mythicrpc-asyncapi.yaml mythic_rpc_callback_create
id: mythic_rpc_callback_create
title: Mythic_rpc_callback_create
description: Create callback entry
servers:
  - id: development
    protocol: amqp
    host: mythic-rabbitmq:5672
    bindings: []
    variables: []
address: mythic_rpc_callback_create
parameters: []
bindings: []
operations:
  - &ref_2
    id: sendCallbackCreate
    title: Send callback create
    description: Send callback create request
    type: send
    messages:
      - &ref_4
        id: CallbackCreateRequest
        contentType: application/json
        payload:
          - name: Callback Create Request
            description: Create a new callback entry
            type: object
            properties:
              - name: payload_uuid
                type: string
                description: UUID of associated payload
                required: true
              - name: c2_profile
                type: string
                description: Name of C2 profile
                required: true
              - name: host
                type: string
                description: Host information
                required: false
              - name: user
                type: string
                description: User context
                required: false
              - name: pid
                type: integer
                description: Process ID
                required: false
              - name: ip
                type: string
                description: IP address
                required: false
              - name: external_ip
                type: string
                description: External IP address
                required: false
              - name: process_name
                type: string
                description: Process name
                required: false
              - name: description
                type: string
                description: Callback description
                required: false
              - name: sleep_info
                type: string
                description: Sleep interval information
                required: false
        headers: []
        jsonPayloadSchema:
          type: object
          description: Create new callback entry
          properties:
            payload_uuid:
              type: string
              format: uuid
              description: UUID of associated payload
              x-parser-schema-id: <anonymous-schema-11>
            c2_profile:
              type: string
              description: Name of C2 profile
              x-parser-schema-id: <anonymous-schema-12>
            host:
              type: string
              description: Host information
              default: ''
              x-parser-schema-id: <anonymous-schema-13>
            user:
              type: string
              description: User context
              default: ''
              x-parser-schema-id: <anonymous-schema-14>
            pid:
              type: integer
              description: Process ID
              default: 0
              x-parser-schema-id: <anonymous-schema-15>
            ip:
              type: string
              description: IP address
              default: ''
              x-parser-schema-id: <anonymous-schema-16>
            external_ip:
              type: string
              description: External IP address
              default: ''
              x-parser-schema-id: <anonymous-schema-17>
            process_name:
              type: string
              description: Process name
              default: ''
              x-parser-schema-id: <anonymous-schema-18>
            description:
              type: string
              description: Callback description
              default: ''
              x-parser-schema-id: <anonymous-schema-19>
            sleep_info:
              type: string
              description: Sleep interval information
              default: ''
              x-parser-schema-id: <anonymous-schema-20>
          required:
            - payload_uuid
            - c2_profile
          x-parser-schema-id: CallbackCreatePayload
        title: Callback Create Request
        description: Create a new callback entry
        example: |-
          {
            "payload_uuid": "<string>",
            "c2_profile": "<string>",
            "host": "<string>",
            "user": "<string>",
            "pid": 123,
            "ip": "<string>",
            "external_ip": "<string>",
            "process_name": "<string>",
            "description": "<string>",
            "sleep_info": "<string>"
          }
        bindings: []
        extensions:
          - id: x-parser-unique-object-id
            value: CallbackCreateRequest
    bindings: []
    extensions: &ref_0
      - id: x-parser-unique-object-id
        value: mythic_rpc_callback_create
  - &ref_1
    id: receiveCallbackCreateResponse
    title: Receive callback create response
    description: Receive callback create response
    type: receive
    messages:
      - &ref_3
        id: CallbackCreateResponse
        contentType: application/json
        payload:
          - name: Callback Create Response
            description: Response for callback create 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: callback_id
                type: integer
                description: Database ID of created callback
                required: false
              - name: agent_callback_id
                type: string
                description: Agent's callback UUID
                required: false
        headers: []
        jsonPayloadSchema:
          type: object
          properties:
            success:
              type: boolean
              description: Operation success status
              default: true
              x-parser-schema-id: <anonymous-schema-21>
            error:
              type: string
              description: Error message if success is false
              default: ''
              x-parser-schema-id: <anonymous-schema-22>
            callback_id:
              type: integer
              description: Database ID of created callback
              x-parser-schema-id: <anonymous-schema-23>
            agent_callback_id:
              type: string
              format: uuid
              description: Agent's callback UUID
              x-parser-schema-id: <anonymous-schema-24>
          required:
            - success
          x-parser-schema-id: CallbackCreateResponsePayload
        title: Callback Create Response
        description: Response for callback create operation
        example: |-
          {
            "success": true,
            "error": "<string>",
            "callback_id": 123,
            "agent_callback_id": "<string>"
          }
        bindings: []
        extensions:
          - id: x-parser-unique-object-id
            value: CallbackCreateResponse
    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_create
securitySchemes: []

````