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

# Delete Fixed Asset

> Delete a fixed asset

# Delete Fixed Asset

This endpoint allows you to delete a fixed asset from the system.

## Headers

| Parameter | Type   | Description                  |
| --------- | ------ | ---------------------------- |
| X-API-KEY | string | Formation API Key (required) |

## Path Parameters

| Parameter        | Type   | Description               |
| ---------------- | ------ | ------------------------- |
| fixed\_asset\_id | string | Fixed Asset ID (required) |

### Parameter Examples

* **Fixed Asset ID**: `64b8f1a2e4b0c8d9f0123456`

## Response

```json theme={null}
{
  "success": true,
  "message": "Fixed asset deleted successfully",
  "data": null
}
```

### Response Parameters

| Parameter | Type    | Description                                |
| --------- | ------- | ------------------------------------------ |
| success   | boolean | Indicates if the operation was successful  |
| message   | string  | Additional information about the operation |
| data      | null    | No data returned for delete operation      |

## Error Responses

### Invalid Request (400)

```json theme={null}
{
  "success": false,
  "message": "Invalid request data",
  "error": {
    "code": "INVALID_REQUEST",
    "details": "Invalid fixed asset ID format"
  }
}
```

### Unauthorized (401)

```json theme={null}
{
  "success": false,
  "message": "API key is required",
  "error": {
    "code": "API_KEY_REQUIRED"
  }
}
```

### Fixed Asset Not Found (404)

```json theme={null}
{
  "success": false,
  "message": "Fixed asset not found",
  "error": {
    "code": "FIXED_ASSET_NOT_FOUND"
  }
}
```

### Internal Server Error (500)

```json theme={null}
{
  "success": false,
  "message": "Internal server error",
  "error": {
    "code": "INTERNAL_ERROR"
  }
}
```

## Notes

* Once a fixed asset is deleted, it cannot be recovered
* The fixed asset ID must be a valid ObjectID format
* Deletion is permanent and will remove all associated data
* No data is returned in the response for successful delete operations


## OpenAPI

````yaml DELETE /fixed-assets/{fixed_asset_id}
openapi: 3.0.3
info:
  title: Clemta Formation API
  description: >-
    API for company formation services. This API allows partners to create,
    retrieve, and manage company formations programmatically.
  version: '2025-06-24'
  contact:
    name: Clemta API Support
    email: tech@clemta.com
  license:
    name: Proprietary
    url: https://clemta.com/terms
servers:
  - url: https://api.clemta.com
    description: Production server
  - url: https://sandbox.clemta.com
    description: Sandbox server
security:
  - ApiKeyAuth: []
paths:
  /fixed-assets/{fixed_asset_id}:
    delete:
      tags:
        - Fixed Assets
      summary: Delete Fixed Asset
      description: Deletes a fixed asset
      operationId: deleteFixedAsset
      parameters:
        - name: fixed_asset_id
          in: path
          required: true
          description: Fixed Asset ID
          schema:
            type: string
      responses:
        '200':
          description: Fixed asset deleted successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FixedAssetDeleteResponse'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestError'
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
        '404':
          description: Fixed asset not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FixedAssetNotFoundError'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerError'
components:
  schemas:
    FixedAssetDeleteResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        message:
          type: string
          example: Fixed asset deleted successfully
        data:
          type: object
          nullable: true
          description: No data returned for delete operation
    BadRequestError:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
          example: Invalid request data
        data:
          type: object
          nullable: true
          example: null
        error:
          type: object
          properties:
            code:
              type: string
              example: INVALID_REQUEST
            details:
              type: string
              example: Field 'name' is required
    UnauthorizedError:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
          example: API key is required
        data:
          type: object
          nullable: true
          example: null
        error:
          type: object
          properties:
            code:
              type: string
              example: API_KEY_REQUIRED
            details:
              type: string
              example: ''
    FixedAssetNotFoundError:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
          example: Fixed asset not found
        data:
          type: object
          nullable: true
          example: null
        error:
          type: object
          properties:
            code:
              type: string
              example: NOT_FOUND
            details:
              type: string
              example: ''
    InternalServerError:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
          example: Internal server error
        data:
          type: object
          nullable: true
          example: null
        error:
          type: object
          properties:
            code:
              type: string
              example: INTERNAL_ERROR
            details:
              type: string
              example: An unexpected error occurred.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Formation API key for authentication.

````