Assign Assets
Assign an asset to an employee.
POST
/api/v1/assets/assign/userDescription
Link a device to an employee using the asset number and the employee's work email. The asset must be in a deployable status such as Ready to Deploy. After a successful assignment, the asset status is set to In Use.
Request
Body Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| asset_number | string | Yes | Asset number from the asset record (not the customer asset ID) |
| assign_to_email | string | Yes | Employee work email (must already exist in your company) |
Related Endpoints
Did this page help you?
Request
curl -X POST https://uat.unduit.com/api-exposed/api/v1/assets/assign/user \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{
"asset_number": "441819700101000000",
"assign_to_email": "john.doe@example.com"
}'Success Response (200)
{
"message": "Asset assigned successfully."
}