Release Legal Hold Device

Submit a request to release an asset from active legal hold status.

POST
/legal-hold/active

Description

The Release Legal Hold Device API allows you to submit a request to release an asset from active legal hold status. This endpoint creates a release request ticket and checks for any existing tickets associated with the device. Once approved, the device can be returned to deployable status and normal operations.

Request

Headers

HeaderValueRequired
AuthorizationBearer <token>Yes
Content-Typeapplication/jsonYes

Body Parameters

ParameterTypeRequiredDescription
summarystringYesBrief title for the release request
descriptionstringYesReason for releasing the device from legal hold
userobjectYesDevice object containing legal hold information
user.idnumberYesLegal hold record ID
user.serial_numberstringYesDevice serial number
user.status_namestringYesCurrent status of the device (should be "Legal Hold")

Response

Response Fields

FieldTypeDescription
successbooleanIndicates whether the request was successful
ticket_existsbooleanIndicates if a release ticket already exists for this device
messagestringStatus message describing the result
ticketIdstringThe unique identifier for the release ticket
ticketNumberstringThe human-readable ticket number for tracking
existingSerialNumbersstringSerial numbers with existing tickets (only present if ticket_exists is true)

Error Responses

Common error responses you may encounter when using this endpoint.

Notes

  • The API checks if a release ticket already exists for the specified device before creating a new one.
  • If a ticket already exists, the response will include ticket_exists: true and provide the existing ticket details.
  • Release requests typically require approval before the legal hold is removed from the device.
  • All release requests are logged with timestamps and requestor information for compliance and audit purposes.
  • The user.id should correspond to the legal hold record ID, not the asset ID.
  • Ensure the device status_name is "Legal Hold" before attempting to release it.
  • Once approved, the device can be returned to deployable status and normal operations.

Related Endpoints

Did this page help you?