에이전트 삭제
Last updated
Last updated
curl -X 'PUT' \
'https://openapi.exosp.com/status/v1/agent/delete' \
-H 'accept: application/json' \
-H 'x-exosp-access: YOUR_ACCESS_KEY' \
-H 'x-exosp-secret: YOUR_ACCESS_SECRET' \
-d '{
"target": [
{
"name": "test",
"email": "[email protected]",
"macAddressList": "98:01:a7:a0:0f:95, 82:13:1a:08:7d:00, 82:13:1a:08:7d:01",
"osType": "macOS"
}
]
}'
{
"code": 0,
"message": "success",
"body": {
"deleted_count": 1,
"deleted_data": [
{
"name": "test",
"email": "[email protected]",
"macAddress": "|98:01:a7:a0:0f:95|82:13:1a:08:7d:00|82:13:1a:08:7d:01",
"osType": "macOS"
}
]
}
}