polarion_rest_api_client.open_api_client.api.linked_work_items package

Contains endpoint functions for accessing the API

Submodules

polarion_rest_api_client.open_api_client.api.linked_work_items.delete_linked_work_item module

async polarion_rest_api_client.open_api_client.api.linked_work_items.delete_linked_work_item.asyncio(project_id: str, work_item_id: str, role_id: str, target_project_id: str, linked_work_item_id: str, *, client: AuthenticatedClient | Client) Any | Errors | None

Deletes the specified Linked Work Item.

Deletes the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): role_id (str): target_project_id (str): linked_work_item_id (str):

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:

Any | Errors

async polarion_rest_api_client.open_api_client.api.linked_work_items.delete_linked_work_item.asyncio_detailed(project_id: str, work_item_id: str, role_id: str, target_project_id: str, linked_work_item_id: str, *, client: AuthenticatedClient | Client) Response[Any | Errors]

Deletes the specified Linked Work Item.

Deletes the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): role_id (str): target_project_id (str): linked_work_item_id (str):

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[Any | Errors]

polarion_rest_api_client.open_api_client.api.linked_work_items.delete_linked_work_item.sync(project_id: str, work_item_id: str, role_id: str, target_project_id: str, linked_work_item_id: str, *, client: AuthenticatedClient | Client) Any | Errors | None

Deletes the specified Linked Work Item.

Deletes the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): role_id (str): target_project_id (str): linked_work_item_id (str):

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:

Any | Errors

polarion_rest_api_client.open_api_client.api.linked_work_items.delete_linked_work_item.sync_detailed(project_id: str, work_item_id: str, role_id: str, target_project_id: str, linked_work_item_id: str, *, client: AuthenticatedClient | Client) Response[Any | Errors]

Deletes the specified Linked Work Item.

Deletes the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): role_id (str): target_project_id (str): linked_work_item_id (str):

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[Any | Errors]

polarion_rest_api_client.open_api_client.api.linked_work_items.delete_linked_work_items module

async polarion_rest_api_client.open_api_client.api.linked_work_items.delete_linked_work_items.asyncio(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, body: LinkedworkitemsListDeleteRequest) Any | Errors | None

Deletes a list of Linked Work Items.

Deletes the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): body (LinkedworkitemsListDeleteRequest):

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:

Any | Errors

async polarion_rest_api_client.open_api_client.api.linked_work_items.delete_linked_work_items.asyncio_detailed(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, body: LinkedworkitemsListDeleteRequest) Response[Any | Errors]

Deletes a list of Linked Work Items.

Deletes the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): body (LinkedworkitemsListDeleteRequest):

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[Any | Errors]

polarion_rest_api_client.open_api_client.api.linked_work_items.delete_linked_work_items.sync(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, body: LinkedworkitemsListDeleteRequest) Any | Errors | None

Deletes a list of Linked Work Items.

Deletes the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): body (LinkedworkitemsListDeleteRequest):

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:

Any | Errors

polarion_rest_api_client.open_api_client.api.linked_work_items.delete_linked_work_items.sync_detailed(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, body: LinkedworkitemsListDeleteRequest) Response[Any | Errors]

Deletes a list of Linked Work Items.

Deletes the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): body (LinkedworkitemsListDeleteRequest):

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[Any | Errors]

polarion_rest_api_client.open_api_client.api.linked_work_items.get_backlinked_work_items module

async polarion_rest_api_client.open_api_client.api.linked_work_items.get_backlinked_work_items.asyncio(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, pagesize: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | LinkedworkitemsListGetResponse | None

Returns a list of Backlinked Work Items.

Returns the incoming links from other Work Items (also known as backlinks). Does not pertain to

External links.

Args:

project_id (str): work_item_id (str): pagesize (int | Unset): pagenumber (int | Unset): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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:

Errors | LinkedworkitemsListGetResponse

async polarion_rest_api_client.open_api_client.api.linked_work_items.get_backlinked_work_items.asyncio_detailed(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, pagesize: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | LinkedworkitemsListGetResponse]

Returns a list of Backlinked Work Items.

Returns the incoming links from other Work Items (also known as backlinks). Does not pertain to

External links.

Args:

project_id (str): work_item_id (str): pagesize (int | Unset): pagenumber (int | Unset): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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[Errors | LinkedworkitemsListGetResponse]

polarion_rest_api_client.open_api_client.api.linked_work_items.get_backlinked_work_items.sync(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, pagesize: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | LinkedworkitemsListGetResponse | None

Returns a list of Backlinked Work Items.

Returns the incoming links from other Work Items (also known as backlinks). Does not pertain to

External links.

Args:

project_id (str): work_item_id (str): pagesize (int | Unset): pagenumber (int | Unset): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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:

Errors | LinkedworkitemsListGetResponse

polarion_rest_api_client.open_api_client.api.linked_work_items.get_backlinked_work_items.sync_detailed(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, pagesize: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | LinkedworkitemsListGetResponse]

Returns a list of Backlinked Work Items.

Returns the incoming links from other Work Items (also known as backlinks). Does not pertain to

External links.

Args:

project_id (str): work_item_id (str): pagesize (int | Unset): pagenumber (int | Unset): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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[Errors | LinkedworkitemsListGetResponse]

polarion_rest_api_client.open_api_client.api.linked_work_items.get_linked_work_item module

async polarion_rest_api_client.open_api_client.api.linked_work_items.get_linked_work_item.asyncio(project_id: str, work_item_id: str, role_id: str, target_project_id: str, linked_work_item_id: str, *, client: AuthenticatedClient | Client, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | LinkedworkitemsSingleGetResponse | None

Returns the specified Linked Work Item.

Returns the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): role_id (str): target_project_id (str): linked_work_item_id (str): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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:

Errors | LinkedworkitemsSingleGetResponse

async polarion_rest_api_client.open_api_client.api.linked_work_items.get_linked_work_item.asyncio_detailed(project_id: str, work_item_id: str, role_id: str, target_project_id: str, linked_work_item_id: str, *, client: AuthenticatedClient | Client, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | LinkedworkitemsSingleGetResponse]

Returns the specified Linked Work Item.

Returns the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): role_id (str): target_project_id (str): linked_work_item_id (str): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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[Errors | LinkedworkitemsSingleGetResponse]

polarion_rest_api_client.open_api_client.api.linked_work_items.get_linked_work_item.sync(project_id: str, work_item_id: str, role_id: str, target_project_id: str, linked_work_item_id: str, *, client: AuthenticatedClient | Client, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | LinkedworkitemsSingleGetResponse | None

Returns the specified Linked Work Item.

Returns the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): role_id (str): target_project_id (str): linked_work_item_id (str): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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:

Errors | LinkedworkitemsSingleGetResponse

polarion_rest_api_client.open_api_client.api.linked_work_items.get_linked_work_item.sync_detailed(project_id: str, work_item_id: str, role_id: str, target_project_id: str, linked_work_item_id: str, *, client: AuthenticatedClient | Client, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | LinkedworkitemsSingleGetResponse]

Returns the specified Linked Work Item.

Returns the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): role_id (str): target_project_id (str): linked_work_item_id (str): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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[Errors | LinkedworkitemsSingleGetResponse]

polarion_rest_api_client.open_api_client.api.linked_work_items.get_linked_work_items module

async polarion_rest_api_client.open_api_client.api.linked_work_items.get_linked_work_items.asyncio(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, pagesize: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | LinkedworkitemsListGetResponse | None

Returns a list of Linked Work Items.

Returns the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): pagesize (int | Unset): pagenumber (int | Unset): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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:

Errors | LinkedworkitemsListGetResponse

async polarion_rest_api_client.open_api_client.api.linked_work_items.get_linked_work_items.asyncio_detailed(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, pagesize: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | LinkedworkitemsListGetResponse]

Returns a list of Linked Work Items.

Returns the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): pagesize (int | Unset): pagenumber (int | Unset): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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[Errors | LinkedworkitemsListGetResponse]

polarion_rest_api_client.open_api_client.api.linked_work_items.get_linked_work_items.sync(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, pagesize: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Errors | LinkedworkitemsListGetResponse | None

Returns a list of Linked Work Items.

Returns the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): pagesize (int | Unset): pagenumber (int | Unset): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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:

Errors | LinkedworkitemsListGetResponse

polarion_rest_api_client.open_api_client.api.linked_work_items.get_linked_work_items.sync_detailed(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, pagesize: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, pagenumber: int | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, fields: SparseFields | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, include: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>, revision: str | Unset = <polarion_rest_api_client.open_api_client.types.Unset object>) Response[Errors | LinkedworkitemsListGetResponse]

Returns a list of Linked Work Items.

Returns the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): pagesize (int | Unset): pagenumber (int | Unset): fields (SparseFields | Unset): include (str | Unset): revision (str | Unset):

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[Errors | LinkedworkitemsListGetResponse]

polarion_rest_api_client.open_api_client.api.linked_work_items.patch_linked_work_item module

async polarion_rest_api_client.open_api_client.api.linked_work_items.patch_linked_work_item.asyncio(project_id: str, work_item_id: str, role_id: str, target_project_id: str, linked_work_item_id: str, *, client: AuthenticatedClient | Client, body: LinkedworkitemsSinglePatchRequest) Any | Errors | None

Updates the specified Linked Work Item.

Updates the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): role_id (str): target_project_id (str): linked_work_item_id (str): body (LinkedworkitemsSinglePatchRequest):

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:

Any | Errors

async polarion_rest_api_client.open_api_client.api.linked_work_items.patch_linked_work_item.asyncio_detailed(project_id: str, work_item_id: str, role_id: str, target_project_id: str, linked_work_item_id: str, *, client: AuthenticatedClient | Client, body: LinkedworkitemsSinglePatchRequest) Response[Any | Errors]

Updates the specified Linked Work Item.

Updates the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): role_id (str): target_project_id (str): linked_work_item_id (str): body (LinkedworkitemsSinglePatchRequest):

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[Any | Errors]

polarion_rest_api_client.open_api_client.api.linked_work_items.patch_linked_work_item.sync(project_id: str, work_item_id: str, role_id: str, target_project_id: str, linked_work_item_id: str, *, client: AuthenticatedClient | Client, body: LinkedworkitemsSinglePatchRequest) Any | Errors | None

Updates the specified Linked Work Item.

Updates the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): role_id (str): target_project_id (str): linked_work_item_id (str): body (LinkedworkitemsSinglePatchRequest):

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:

Any | Errors

polarion_rest_api_client.open_api_client.api.linked_work_items.patch_linked_work_item.sync_detailed(project_id: str, work_item_id: str, role_id: str, target_project_id: str, linked_work_item_id: str, *, client: AuthenticatedClient | Client, body: LinkedworkitemsSinglePatchRequest) Response[Any | Errors]

Updates the specified Linked Work Item.

Updates the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): role_id (str): target_project_id (str): linked_work_item_id (str): body (LinkedworkitemsSinglePatchRequest):

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[Any | Errors]

polarion_rest_api_client.open_api_client.api.linked_work_items.post_backlinked_work_items module

async polarion_rest_api_client.open_api_client.api.linked_work_items.post_backlinked_work_items.asyncio(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, body: BacklinkedworkitemsListPostRequest) Errors | LinkedworkitemsListPostResponse | None

Creates a list of Backlinked Work Items.

Creates incoming links from other Work Items (backlinks). Does not pertain to External links.

Args:

project_id (str): work_item_id (str): body (BacklinkedworkitemsListPostRequest):

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:

Errors | LinkedworkitemsListPostResponse

async polarion_rest_api_client.open_api_client.api.linked_work_items.post_backlinked_work_items.asyncio_detailed(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, body: BacklinkedworkitemsListPostRequest) Response[Errors | LinkedworkitemsListPostResponse]

Creates a list of Backlinked Work Items.

Creates incoming links from other Work Items (backlinks). Does not pertain to External links.

Args:

project_id (str): work_item_id (str): body (BacklinkedworkitemsListPostRequest):

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[Errors | LinkedworkitemsListPostResponse]

polarion_rest_api_client.open_api_client.api.linked_work_items.post_backlinked_work_items.sync(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, body: BacklinkedworkitemsListPostRequest) Errors | LinkedworkitemsListPostResponse | None

Creates a list of Backlinked Work Items.

Creates incoming links from other Work Items (backlinks). Does not pertain to External links.

Args:

project_id (str): work_item_id (str): body (BacklinkedworkitemsListPostRequest):

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:

Errors | LinkedworkitemsListPostResponse

polarion_rest_api_client.open_api_client.api.linked_work_items.post_backlinked_work_items.sync_detailed(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, body: BacklinkedworkitemsListPostRequest) Response[Errors | LinkedworkitemsListPostResponse]

Creates a list of Backlinked Work Items.

Creates incoming links from other Work Items (backlinks). Does not pertain to External links.

Args:

project_id (str): work_item_id (str): body (BacklinkedworkitemsListPostRequest):

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[Errors | LinkedworkitemsListPostResponse]

polarion_rest_api_client.open_api_client.api.linked_work_items.post_linked_work_items module

async polarion_rest_api_client.open_api_client.api.linked_work_items.post_linked_work_items.asyncio(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, body: LinkedworkitemsListPostRequest) Errors | LinkedworkitemsListPostResponse | None

Creates a list of Linked Work Items.

Creates the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): body (LinkedworkitemsListPostRequest):

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:

Errors | LinkedworkitemsListPostResponse

async polarion_rest_api_client.open_api_client.api.linked_work_items.post_linked_work_items.asyncio_detailed(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, body: LinkedworkitemsListPostRequest) Response[Errors | LinkedworkitemsListPostResponse]

Creates a list of Linked Work Items.

Creates the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): body (LinkedworkitemsListPostRequest):

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[Errors | LinkedworkitemsListPostResponse]

polarion_rest_api_client.open_api_client.api.linked_work_items.post_linked_work_items.sync(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, body: LinkedworkitemsListPostRequest) Errors | LinkedworkitemsListPostResponse | None

Creates a list of Linked Work Items.

Creates the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): body (LinkedworkitemsListPostRequest):

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:

Errors | LinkedworkitemsListPostResponse

polarion_rest_api_client.open_api_client.api.linked_work_items.post_linked_work_items.sync_detailed(project_id: str, work_item_id: str, *, client: AuthenticatedClient | Client, body: LinkedworkitemsListPostRequest) Response[Errors | LinkedworkitemsListPostResponse]

Creates a list of Linked Work Items.

Creates the direct outgoing links to other Work Items. (The same as the corresponding Java API

method.) Does not pertain to external links or backlinks.

Args:

project_id (str): work_item_id (str): body (LinkedworkitemsListPostRequest):

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[Errors | LinkedworkitemsListPostResponse]