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

> Create payload from existing UUID



## AsyncAPI

````yaml mythic-docs/mythicrpc/mythicrpc-asyncapi.yaml mythic_rpc_payload_create_from_uuid
id: mythic_rpc_payload_create_from_uuid
title: Mythic_rpc_payload_create_from_uuid
description: Create payload from existing UUID
servers:
  - id: development
    protocol: amqp
    host: mythic-rabbitmq:5672
    bindings: []
    variables: []
address: mythic_rpc_payload_create_from_uuid
parameters: []
bindings: []
operations:
  - &ref_2
    id: sendPayloadCreateFromUUID
    title: Send payload create from u u i d
    description: Send payload create from UUID request
    type: send
    messages:
      - &ref_4
        id: PayloadCreateFromUUIDRequest
        contentType: application/json
        payload:
          - name: Payload Create From UUID Request
            description: Create payload from existing UUID
            type: object
            properties:
              - name: task_id
                type: integer
                description: Task ID for scoping
                required: true
              - name: payload_uuid
                type: string
                description: UUID of payload to copy from
                required: true
              - name: new_description
                type: string
                description: Description for new payload
                required: false
              - name: new_filename
                type: string
                description: Filename for new payload
                required: false
        headers: []
        jsonPayloadSchema:
          type: object
          description: Create payload from existing UUID
          properties:
            task_id:
              type: integer
              description: Task ID for scoping
              x-parser-schema-id: <anonymous-schema-122>
            payload_uuid:
              type: string
              format: uuid
              description: UUID of payload to copy from
              x-parser-schema-id: <anonymous-schema-123>
            new_description:
              type: string
              description: Description for new payload
              default: ''
              x-parser-schema-id: <anonymous-schema-124>
            new_filename:
              type: string
              description: Filename for new payload
              default: ''
              x-parser-schema-id: <anonymous-schema-125>
          required:
            - task_id
            - payload_uuid
          x-parser-schema-id: PayloadCreateFromUUIDPayload
        title: Payload Create From UUID Request
        description: Create payload from existing UUID
        example: |-
          {
            "task_id": 123,
            "payload_uuid": "<string>",
            "new_description": "<string>",
            "new_filename": "<string>"
          }
        bindings: []
        extensions:
          - id: x-parser-unique-object-id
            value: PayloadCreateFromUUIDRequest
    bindings: []
    extensions: &ref_0
      - id: x-parser-unique-object-id
        value: mythic_rpc_payload_create_from_uuid
  - &ref_1
    id: receivePayloadCreateFromUUIDResponse
    title: Receive payload create from u u i d response
    description: Receive payload create response
    type: receive
    messages:
      - &ref_3
        id: PayloadCreateFromUUIDResponse
        contentType: application/json
        payload:
          - name: Payload Create From UUID Response
            description: Response for payload create from UUID
            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: uuid
                type: string
                description: UUID of created payload
                required: false
        headers: []
        jsonPayloadSchema:
          type: object
          properties:
            success:
              type: boolean
              description: Operation success status
              default: true
              x-parser-schema-id: <anonymous-schema-126>
            error:
              type: string
              description: Error message if success is false
              default: ''
              x-parser-schema-id: <anonymous-schema-127>
            uuid:
              type: string
              format: uuid
              description: UUID of created payload
              x-parser-schema-id: <anonymous-schema-128>
          required:
            - success
          x-parser-schema-id: PayloadCreateResponsePayload
        title: Payload Create From UUID Response
        description: Response for payload create from UUID
        example: |-
          {
            "success": true,
            "error": "<string>",
            "uuid": "<string>"
          }
        bindings: []
        extensions:
          - id: x-parser-unique-object-id
            value: PayloadCreateFromUUIDResponse
    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_payload_create_from_uuid
securitySchemes: []

````