Skip to content

katana_public_api_client.api.batch.create_batch

katana_public_api_client.api.batch.create_batch

Classes

Functions

asyncio(*, client, body) async

Create a batch

Creates a batch object.

Parameters:

  • body (Batch) –

    Core batch business properties Example: {'batch_number': 'BAT-2024-001', 'expiration_date': '2025-10-23T10:37:05.085Z', 'batch_created_date': '2024-01-15T08:00:00.000Z', 'variant_id': 1001, 'batch_barcode': '0317'}.

Raises:

  • UnexpectedStatus

    If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

  • TimeoutException

    If the request takes longer than Client.timeout.

Returns:

Source code in katana_public_api_client/api/batch/create_batch.py
async def asyncio(
    *,
    client: AuthenticatedClient | Client,
    body: Batch,
) -> BatchResponse | DetailedErrorResponse | ErrorResponse | None:
    """Create a batch

     Creates a batch object.

    Args:
        body (Batch): Core batch business properties Example: {'batch_number': 'BAT-2024-001',
            'expiration_date': '2025-10-23T10:37:05.085Z', 'batch_created_date':
            '2024-01-15T08:00:00.000Z', 'variant_id': 1001, 'batch_barcode': '0317'}.

    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:
        Union[BatchResponse, DetailedErrorResponse, ErrorResponse]
    """

    return (
        await asyncio_detailed(
            client=client,
            body=body,
        )
    ).parsed

asyncio_detailed(*, client, body) async

Create a batch

Creates a batch object.

Parameters:

  • body (Batch) –

    Core batch business properties Example: {'batch_number': 'BAT-2024-001', 'expiration_date': '2025-10-23T10:37:05.085Z', 'batch_created_date': '2024-01-15T08:00:00.000Z', 'variant_id': 1001, 'batch_barcode': '0317'}.

Raises:

  • UnexpectedStatus

    If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

  • TimeoutException

    If the request takes longer than Client.timeout.

Returns:

Source code in katana_public_api_client/api/batch/create_batch.py
async def asyncio_detailed(
    *,
    client: AuthenticatedClient | Client,
    body: Batch,
) -> Response[BatchResponse | DetailedErrorResponse | ErrorResponse]:
    """Create a batch

     Creates a batch object.

    Args:
        body (Batch): Core batch business properties Example: {'batch_number': 'BAT-2024-001',
            'expiration_date': '2025-10-23T10:37:05.085Z', 'batch_created_date':
            '2024-01-15T08:00:00.000Z', 'variant_id': 1001, 'batch_barcode': '0317'}.

    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[BatchResponse, DetailedErrorResponse, ErrorResponse]]
    """

    kwargs = _get_kwargs(
        body=body,
    )

    response = await client.get_async_httpx_client().request(**kwargs)

    return _build_response(client=client, response=response)

sync(*, client, body)

Create a batch

Creates a batch object.

Parameters:

  • body (Batch) –

    Core batch business properties Example: {'batch_number': 'BAT-2024-001', 'expiration_date': '2025-10-23T10:37:05.085Z', 'batch_created_date': '2024-01-15T08:00:00.000Z', 'variant_id': 1001, 'batch_barcode': '0317'}.

Raises:

  • UnexpectedStatus

    If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

  • TimeoutException

    If the request takes longer than Client.timeout.

Returns:

Source code in katana_public_api_client/api/batch/create_batch.py
def sync(
    *,
    client: AuthenticatedClient | Client,
    body: Batch,
) -> BatchResponse | DetailedErrorResponse | ErrorResponse | None:
    """Create a batch

     Creates a batch object.

    Args:
        body (Batch): Core batch business properties Example: {'batch_number': 'BAT-2024-001',
            'expiration_date': '2025-10-23T10:37:05.085Z', 'batch_created_date':
            '2024-01-15T08:00:00.000Z', 'variant_id': 1001, 'batch_barcode': '0317'}.

    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:
        Union[BatchResponse, DetailedErrorResponse, ErrorResponse]
    """

    return sync_detailed(
        client=client,
        body=body,
    ).parsed

sync_detailed(*, client, body)

Create a batch

Creates a batch object.

Parameters:

  • body (Batch) –

    Core batch business properties Example: {'batch_number': 'BAT-2024-001', 'expiration_date': '2025-10-23T10:37:05.085Z', 'batch_created_date': '2024-01-15T08:00:00.000Z', 'variant_id': 1001, 'batch_barcode': '0317'}.

Raises:

  • UnexpectedStatus

    If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.

  • TimeoutException

    If the request takes longer than Client.timeout.

Returns:

Source code in katana_public_api_client/api/batch/create_batch.py
def sync_detailed(
    *,
    client: AuthenticatedClient | Client,
    body: Batch,
) -> Response[BatchResponse | DetailedErrorResponse | ErrorResponse]:
    """Create a batch

     Creates a batch object.

    Args:
        body (Batch): Core batch business properties Example: {'batch_number': 'BAT-2024-001',
            'expiration_date': '2025-10-23T10:37:05.085Z', 'batch_created_date':
            '2024-01-15T08:00:00.000Z', 'variant_id': 1001, 'batch_barcode': '0317'}.

    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[BatchResponse, DetailedErrorResponse, ErrorResponse]]
    """

    kwargs = _get_kwargs(
        body=body,
    )

    response = client.get_httpx_client().request(
        **kwargs,
    )

    return _build_response(client=client, response=response)