We are migrating large data from One account to another account after impersonation. But we are getting below error:
“PUT https://api.box.com/2.0/folders/168610592762” 503 191
{‘Date’: ‘Wed, 01 May 2024 07:27:04 GMT’, ‘Transfer-Encoding’: ‘chunked’, ‘strict-transport-security’: ‘max-age=31536000’, ‘box-request-id’: ‘0af1d3bebe91c1803d1d3929c585bd86c’, ‘x-envoy-upstream-service-time’: ‘600024’, ‘Via’: ‘1.1 google’, ‘Alt-Svc’: ‘h3=“:443”; ma=2592000,h3-29=“:443”; ma=2592000’}
{‘code’: ‘—able’,
‘help_url’: ‘http://developers.box.com/docs/#errors’,
‘message’: ‘Service Unavailable’,
‘request_id’: ‘0af1d3bebe91c1803d1d3929c585bd86c’,
‘status’: 503,
‘type’: ‘error’}
I am using below API for migration of folder:
folder_to_move = source_client.folder(folder_id)
destination_folder = target_client.folder(destination_folder_id)
moved_folder = folder_to_move.move(parent_folder=destination_folder)
why we are getting above issue. Will it be possible that it can migrate the large dataset even after getting above error.