BokaMera.API.Host

<back to all web services

UpdateVossInvoiceConfigurations

Requires Authentication
Requires the role:superadmin
The following routes are available for this service:
GET/voss/invoiceConfigurationsinit voss invoice
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum


class IntermediaryPlacementEnum(IntEnum):
    NONE = 1
    INCLUDE_IN21_ST_COLUMN = 2
    INCLUDE_IN7_TH_COLUMN = 3


class AccrualCodeFormatEnum(IntEnum):
    DEFAULT = 1
    DUTCH = 2


class UnitEnum(IntEnum):
    DAY = 1
    MONTH = 2
    YEAR = 3


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class TimeLengthRequestDto:
    unit: Optional[UnitEnum] = None
    value: int = 0


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class UpdateInvoiceConfigurationsRequest:
    intermediary_placement: Optional[IntermediaryPlacementEnum] = None
    accrual_code_format: Optional[AccrualCodeFormatEnum] = None
    date_format: Optional[str] = None
    delimiter: Optional[str] = None
    decimal_separator: Optional[str] = None
    order_creator_code: Optional[str] = None
    sales_person_id: Optional[str] = None
    sales_department_id: Optional[str] = None
    include_billing_period_dates: bool = False
    track_invoice_payments: bool = False
    include_invoiced_customer_details: bool = False
    billing_period_text_format: Optional[str] = None
    customer_footer_text: Optional[str] = None
    add_empty_line_before_customer_footer: bool = False
    include_only_default_sales_person_and_department: bool = False
    include_subscription_customer_details_if_payed_by_another_customer: bool = False
    transaction_group: Optional[str] = None
    invoice_arbitrary_number: Optional[str] = None
    delivery_method: Optional[str] = None
    delivery_conditions: Optional[str] = None
    order_type: Optional[str] = None
    invoice_status: Optional[str] = None
    use_product_group_revenue_recognition: bool = False
    product_group_line_exclude_print: Optional[str] = None
    product_group_line_edit_preferences: Optional[str] = None
    product_line_exclude_print: Optional[str] = None
    use_discounted_prices: bool = False
    terminate_unpaid_subscriptions: bool = False
    allowed_unpaid_amount_limit: float = 0.0
    allowed_payment_overdue: Optional[TimeLengthRequestDto] = None
    unpaid_subscription_termination_reason_id: Optional[str] = None
    unpaid_subscription_termination_comment: Optional[str] = None
    credit_invoice_number_reference_text_format: Optional[str] = None


# @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401)
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class UpdateVossInvoiceConfigurations(UpdateInvoiceConfigurationsRequest):
    pass

Python UpdateVossInvoiceConfigurations DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /voss/invoiceConfigurations HTTP/1.1 
Host: testapi.bokamera.se 
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{}