qcrboxapiclient.api.data_files.download_data_file_by_id

async qcrboxapiclient.api.data_files.download_data_file_by_id.asyncio(id, *, client)

Download a data file

Download a data file from the data store.

Parameters:
  • id (str)

  • client (AuthenticatedClient | Client)

Raises:
  • errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

  • httpx.TimeoutException – If the request takes longer than Client.timeout.

Return type:

Union[QCrBoxErrorResponse, str, None]

Returns:

Union[QCrBoxErrorResponse, str]

async qcrboxapiclient.api.data_files.download_data_file_by_id.asyncio_detailed(id, *, client)

Download a data file

Download a data file from the data store.

Parameters:
  • id (str)

  • client (AuthenticatedClient | Client)

Raises:
  • errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

  • httpx.TimeoutException – If the request takes longer than Client.timeout.

Return type:

Response[Union[QCrBoxErrorResponse, str]]

Returns:

Response[Union[QCrBoxErrorResponse, str]]

qcrboxapiclient.api.data_files.download_data_file_by_id.sync(id, *, client)

Download a data file

Download a data file from the data store.

Parameters:
  • id (str)

  • client (AuthenticatedClient | Client)

Raises:
  • errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

  • httpx.TimeoutException – If the request takes longer than Client.timeout.

Return type:

Union[QCrBoxErrorResponse, str, None]

Returns:

Union[QCrBoxErrorResponse, str]

qcrboxapiclient.api.data_files.download_data_file_by_id.sync_detailed(id, *, client)

Download a data file

Download a data file from the data store.

Parameters:
  • id (str)

  • client (AuthenticatedClient | Client)

Raises:
  • errors.UnexpectedStatus – If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

  • httpx.TimeoutException – If the request takes longer than Client.timeout.

Return type:

Response[Union[QCrBoxErrorResponse, str]]

Returns:

Response[Union[QCrBoxErrorResponse, str]]