/device-actions/externalCreate an external device action
Like `POST /device-actions`, but for a device that is NOT in your inventory. Requires device metadata (model or description, type or device_type, country) and always requires `current_user`. Returns 400 if the serial is actually in inventory. Responds 202 with the same detail shape.
Body
serial_numberrequiredaction_typerequiredcurrent_userrequirednew_recipientmodeldescriptiontypedevice_typecountryrequiredwipereturn_boxnotesnotification_emailsExample request
json
{
"serial_number": "5CD1234ABC",
"action_type": "Support",
"device_type": "Laptop",
"model": "Dell XPS 13",
"country": "United Kingdom",
"current_user": {
"name": "Jordan Price",
"email": "jordan@acme.com",
"country": "United Kingdom",
"address": "10 King St, London EC2V 8EA"
},
"notes": "Keyboard replacement"
}