account_get_account_page

Get a page from this account

Functions

async pydelfini.delfini_core.api.account.account_get_account_page.asyncio(account_id, page_path, *, client)[source]

Get a page from this account

Parameters:
Raises:
  • errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.

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

Returns:

Union[File]

Return type:

File

async pydelfini.delfini_core.api.account.account_get_account_page.asyncio_detailed(account_id, page_path, *, client)[source]

Get a page from this account

Parameters:
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.

Returns:

Response[Union[File, ServerError]]

Return type:

Response[File | ServerError]

pydelfini.delfini_core.api.account.account_get_account_page.sync(account_id, page_path, *, client)[source]

Get a page from this account

Parameters:
Raises:
  • errors.UnexpectedStatus – If the server returns a status code greater than or equal to 300.

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

Returns:

Union[File]

Return type:

File

pydelfini.delfini_core.api.account.account_get_account_page.sync_detailed(account_id, page_path, *, client)[source]

Get a page from this account

Parameters:
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.

Returns:

Response[Union[File, ServerError]]

Return type:

Response[File | ServerError]