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

> Create agent storage entry



## AsyncAPI

````yaml mythic-docs/mythicrpc/mythicrpc-asyncapi.yaml mythic_rpc_agentstorage_create
id: mythic_rpc_agentstorage_create
title: Mythic_rpc_agentstorage_create
description: Create agent storage entry
servers:
  - id: development
    protocol: amqp
    host: mythic-rabbitmq:5672
    bindings: []
    variables: []
address: mythic_rpc_agentstorage_create
parameters: []
bindings: []
operations:
  - &ref_2
    id: sendAgentStorageCreate
    title: Send agent storage create
    description: Send agent storage create request
    type: send
    messages:
      - &ref_4
        id: AgentStorageCreateRequest
        contentType: application/json
        payload:
          - name: Agent Storage Create Request
            description: Create a new entry in the agentstorage table
            type: object
            properties:
              - name: unique_id
                type: string
                description: Unique identifier for this entry provided by the developer
                required: true
              - name: data
                type: string
                description: Base64-encoded data to store as bytes
                required: true
        headers: []
        jsonPayloadSchema:
          type: object
          description: Create entry in agentstorage table
          properties:
            unique_id:
              type: string
              description: Unique identifier for this entry provided by the developer
              x-parser-schema-id: <anonymous-schema-1>
            data:
              type: string
              format: byte
              description: Base64-encoded data to store as bytes
              x-parser-schema-id: <anonymous-schema-2>
          required:
            - unique_id
            - data
          x-parser-schema-id: AgentStorageCreatePayload
        title: Agent Storage Create Request
        description: Create a new entry in the agentstorage table
        example: |-
          {
            "unique_id": "<string>",
            "data": "<string>"
          }
        bindings: []
        extensions:
          - id: x-parser-unique-object-id
            value: AgentStorageCreateRequest
    bindings: []
    extensions: &ref_0
      - id: x-parser-unique-object-id
        value: mythic_rpc_agentstorage_create
  - &ref_1
    id: receiveAgentStorageCreateResponse
    title: Receive agent storage create response
    description: Receive agent storage create response
    type: receive
    messages:
      - &ref_3
        id: AgentStorageCreateResponse
        contentType: application/json
        payload:
          - name: Agent Storage Create Response
            description: Response for agent storage 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
        headers: []
        jsonPayloadSchema:
          type: object
          properties:
            success:
              type: boolean
              description: Operation success status
              default: true
              x-parser-schema-id: <anonymous-schema-3>
            error:
              type: string
              description: Error message if success is false
              default: ''
              x-parser-schema-id: <anonymous-schema-4>
          required:
            - success
          x-parser-schema-id: BaseResponsePayload
        title: Agent Storage Create Response
        description: Response for agent storage create operation
        example: |-
          {
            "success": true,
            "error": "<string>"
          }
        bindings: []
        extensions:
          - id: x-parser-unique-object-id
            value: AgentStorageCreateResponse
    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_agentstorage_create
securitySchemes: []

````