1. Equipment
Einpix API documentation
  • Changelog
  • About
  • API
    • Task
      • Create
      • List
      • Detail
      • Change status
    • Checklist
      • By task
    • Client
      • Create
      • Update
      • List
      • Detail
    • User
      • List
      • Detail
    • Venue
      • Create
      • List
      • Detail
    • Category
      • Task
        • List
        • Detail
      • Equipment
        • List
    • Tag
      • List
      • Detail
    • Template
      • Checklist
        • List
        • Detail
    • Equipment
      • Create
        POST
      • Update
        PUT
      • Delete
        DELETE
      • Change picture
        PUT
      • Remove picture
        DELETE
      • Add attachments
        POST
      • Remove attachments
        POST
      • List
        GET
      • List by category
        GET
      • Detail
        GET
    • Comment
      • Create
      • Detail
      • List
    • Worklog
      • List
      • Hisory
    • Materials
      • By task
    • Service
      • By task
    • Webhook
      • List
      • Create
      • Delete
      • Update
  • Schemas
    • User
    • Venue
    • Task
    • Task comment
    • Tag
    • Task category
    • Picture
    • Check item
    • Equipment category
    • Equipment
    • Client
    • Task severity
    • Attachment
    • Changed log
    • User group
    • WDJ material
    • Unit master
    • WDJ service
    • Worklog History
    • CountryEnum
    • Checklist template
    • Worklog
    • Activity task
    • Downtime task
    • Sla rule
    • Webhook action
    • Webhook
    • WebhookEnumm
  1. Equipment

Remove attachments

POST
equipments/{id}/attachments/remove
Removes a specific attachment associated with the specified equipment.
This endpoint deletes the attachment reference from the equipment.

Request

Path Params

Header Params

Body Params application/jsonRequired

Example
{
    "attachment_ids": [
        "UUID_OF_THE_ATTACHMENT"
    ]
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.einpix.com/public/v1/equipments//attachments/remove' \
--header 'x-api-key;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "attachment_ids": [
        "UUID_OF_THE_ATTACHMENT"
    ]
}'

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2026-03-12 05:48:14
Previous
Add attachments
Next
List
Built with