하나 이상의 고객에 대해 최대 100,000대의 기기의 소유권 주장을 취소하는 비동기 요청입니다.
비동기 API 메서드는 처리가 완료되기 전에 결과를 반환합니다. 또한 장기 실행 작업이 완료될 때까지 사용자가 기다리는 동안 앱 (또는 도구)이 사용자에게 응답을 계속 제공하는 데 도움이 됩니다. 앱은 getOperation를 호출하여 주기적으로 작업 상태를 확인해야 합니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2024-11-09(UTC)"],[[["This API provides an asynchronous method to unclaim up to 100,000 devices from one or more customers."],["The `unclaimDevicesAsync` method is used to initiate the unclaiming process, and it allows your application to remain responsive during long operations."],["The `ResellerService` only allows unclaiming for one customer per request and will fail with `INTERNAL_SERVER_ERROR` if multiple customer IDs are in a single request."],["The `UnclaimDevicesRequest` requires a list of `DeviceUnclaim` objects and may include vendor-specific parameters, while requests from the `SamsungResellerServiceFactory` must specify a `customerId`."],["The `getOperation` method can be used to check the status of the `UnclaimDevices` operation, which can return a list of error codes if an issue happens."]]],["The `unclaimDevicesAsync` method facilitates asynchronous unclaiming of up to 100,000 devices. It requires a list of `DeviceUnclaim` objects and optionally accepts `vendorParams`, which must contain a `customerId` for requests from `SamsungResellerServiceFactory`. The API returns an `UnclaimDevicesResponse` with a list of `Operation` instances to track the status, and users need to periodically use `getOperation` to check progress. The method can return the errors: `DEVICE_UPLOAD_COUNT_EXCEEDED`, `INTERNAL_SERVER_ERROR`, `INVALID_DEVICE_IMEI`, `INVALID_DEVICE_MEID`, `INVALID_DEVICE_SERIAL` and `INVALID_IDENTIFIER_SET`.\n"]]