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

> Remove agent storage entry



## AsyncAPI

````yaml mythic-docs/mythicrpc/mythicrpc-asyncapi.yaml mythic_rpc_agentstorage_remove
id: mythic_rpc_agentstorage_remove
title: Mythic_rpc_agentstorage_remove
description: Remove agent storage entry
servers:
  - id: development
    protocol: amqp
    host: mythic-rabbitmq:5672
    bindings: []
    variables: []
address: mythic_rpc_agentstorage_remove
parameters: []
bindings: []
operations:
  - &ref_2
    id: sendAgentStorageRemove
    title: Send agent storage remove
    description: Send agent storage remove request
    type: send
    messages:
      - &ref_4
        id: AgentStorageRemoveRequest
        contentType: application/json
        payload:
          - name: Agent Storage Remove Request
            description: Remove an entry from the agentstorage table
            type: object
            properties:
              - name: unique_id
                type: string
                description: Unique identifier of entry to remove
                required: true
        headers: []
        jsonPayloadSchema:
          type: object
          description: Remove entry from agentstorage table
          properties:
            unique_id:
              type: string
              description: Unique identifier of entry to remove
              x-parser-schema-id: <anonymous-schema-5>
          required:
            - unique_id
          x-parser-schema-id: AgentStorageRemovePayload
        title: Agent Storage Remove Request
        description: Remove an entry from the agentstorage table
        example: |-
          {
            "unique_id": "<string>"
          }
        bindings: []
        extensions:
          - id: x-parser-unique-object-id
            value: AgentStorageRemoveRequest
    bindings: []
    extensions: &ref_0
      - id: x-parser-unique-object-id
        value: mythic_rpc_agentstorage_remove
  - &ref_1
    id: receiveAgentStorageRemoveResponse
    title: Receive agent storage remove response
    description: Receive agent storage remove response
    type: receive
    messages:
      - &ref_3
        id: AgentStorageRemoveResponse
        contentType: application/json
        payload:
          - name: Agent Storage Remove Response
            description: Response for agent storage remove 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 Remove Response
        description: Response for agent storage remove operation
        example: |-
          {
            "success": true,
            "error": "<string>"
          }
        bindings: []
        extensions:
          - id: x-parser-unique-object-id
            value: AgentStorageRemoveResponse
    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_remove
securitySchemes: []

````