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

# Delete Object

> Delete an object by ID



## OpenAPI

````yaml https://api.getmeasure.com/api/v1/docs/api_spec.json delete /companies/{company_id}/objects/{id}
openapi: 3.1.0
info:
  title: Measure API
  description: APIs to communicate with Measure
  version: 1.0.0
servers:
  - url: https://api.getmeasure.com/api/v1
security: []
paths:
  /companies/{company_id}/objects/{id}:
    delete:
      tags:
        - Objects
      summary: Delete Object
      description: Delete an object by ID
      operationId: Delete_Object
      parameters:
        - name: company_id
          in: path
          description: 'The company ID with the prefix ''cmp_''. '
          required: true
          schema:
            description: 'The company ID with the prefix ''cmp_''. '
            type: string
        - name: id
          in: path
          description: The resource ID
          required: true
          schema:
            description: The resource ID
            type: string
        - name: Idempotency-Key
          in: header
          description: >-
            The idempotency key that will be used to ensure the request is only
            performed once
          schema:
            description: >-
              The idempotency key that will be used to ensure the request is
              only performed once
            type: string
      responses:
        '200':
          description: OK
      deprecated: false
      security:
        - apiKey:
            - ''
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer

````