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

# Delete a result

> Deletes a result for an order.



## OpenAPI

````yaml https://console.lomaplatform.com/api/vendor/v1/openapi delete /api/vendor/v1/orders/{orderId}/results/{resultId}
openapi: 3.1.0
info:
  title: LOMA Vendor API
  version: 1.0.0
  description: >-
    API for managing vendor data on LOMA.

    ### Authentication


    Your API Key should be passed in the `API-Key` header formatted as
    `KEY_ID:KEY_SECRET`.


    Vendors can create API keys in the LOMA console.
  contact:
    email: support@lomaplatform.com
servers:
  - url: https://console.lomaplatform.com
security: []
paths:
  /api/vendor/v1/orders/{orderId}/results/{resultId}:
    delete:
      tags:
        - Order Results
      summary: Delete a result
      description: Deletes a result for an order.
      responses:
        '204':
          description: Result deleted
        '404':
          description: Result not found
      security:
        - apiKeyHeader: []
components:
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      in: header
      name: API-Key
      description: API Key for the vendor

````