Simple unlock of an accounting period
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
Path parameters
-
id
integer Required id
curl \
--request PUT 'http://wyzio.app/api-v1/accounting-period/list-unlock/{id}' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
Export list of accounting periods
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
Query parameters
-
format
string Required
curl \
--request GET 'http://wyzio.app/api-v1/accounting-period/report?format=string' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
{
"empty": true,
"model": {},
"modelMap": {
"additionalProperty1": {},
"additionalProperty2": {}
},
"reference": true,
"status": "100 CONTINUE",
"view": {
"contentType": "string"
},
"viewName": "string"
}
Export list of activity log events
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
Query parameters
-
format
string Required
curl \
--request GET 'http://wyzio.app/api-v1/activity-log/report?format=string' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
{
"empty": true,
"model": {},
"modelMap": {
"additionalProperty1": {},
"additionalProperty2": {}
},
"reference": true,
"status": "100 CONTINUE",
"view": {
"contentType": "string"
},
"viewName": "string"
}
Get overall of list of articles with contact's default language
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request GET 'http://wyzio.app/api-v1/article/contact-lang/overall' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
42
Get list of articles with user language
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request GET 'http://wyzio.app/api-v1/article/lang' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
[
{
"archived": true,
"articleId": "string",
"articleIdName": {
"de": "string",
"en": "string",
"fr": "string",
"it": "string"
},
"categoryId": 42,
"categoryName": "string",
"creatorContactId": 42,
"description": {
"de": "string",
"en": "string",
"fr": "string",
"it": "string"
},
"ean": "string",
"endDate": "2025-05-04T09:42:00Z",
"id": 42,
"measurement": "UNIT",
"name": {
"de": "string",
"en": "string",
"fr": "string",
"it": "string"
},
"quantity": 42.0,
"startDate": "2025-05-04T09:42:00Z",
"type": "PRODUCT",
"unitCost": 42.0,
"unitPrice": 42.0,
"vatRateId": 42,
"weightKg": 42.0
}
]
Process payment result for the user
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request POST 'http://wyzio.app/api-v1/billing/pay-result' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string" \
--data '{"paymentId":"string","success":true}'
# Headers
TARGET-ORGANIZATION-ID: 42
WEAL-TOKEN: string
# Payload
{
"paymentId": "string",
"success": true
}
{}
Get list of chart of accounts linked to banks
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request GET 'http://wyzio.app/api-v1/chart-accounts/accounts-linked-to-banks' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
[
{
"accountNumber": 42,
"currency": "string",
"currencyId": 42,
"departmentId": 42,
"endDate": "2025-05-04T09:42:00Z",
"hasDepreciation": true,
"id": 42,
"isActive": true,
"isCashAccountEnabled": true,
"isPurchaseInvoicesEnabled": true,
"name": {
"de": "string",
"en": "string",
"fr": "string",
"it": "string"
},
"organizationId": 42,
"type": "string",
"warnings": "string"
}
]
Get list of contacts using advanced filters
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request GET 'http://wyzio.app/api-v1/contact/advanced' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
[
{
"archived": true,
"clientOrderValidity": 42,
"contactType": "ORGANIZATION",
"creatorContactId": 42,
"email": "string",
"externalId": "string",
"hasWarnings": true,
"id": 42,
"isCustomer": true,
"isEmployee": true,
"isStaff": true,
"isUser": true,
"isVendor": true,
"name": "string",
"organizationId": 42,
"tenantId": 42,
"warnings": "string"
}
]
Apply exchange rate for list of combinations
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
Body
Required
currencyConversions
-
convertedAmount
number -
currencyFrom
integer -
currencyTo
integer -
date
string -
requestedAmount
number
curl \
--request POST 'http://wyzio.app/api-v1/currency-exchange/apply' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string" \
--data '[{"convertedAmount":42.0,"currencyFrom":42,"currencyTo":42,"date":"string","requestedAmount":42.0}]'
# Headers
TARGET-ORGANIZATION-ID: 42
WEAL-TOKEN: string
# Payload
[
{
"convertedAmount": 42.0,
"currencyFrom": 42,
"currencyTo": 42,
"date": "string",
"requestedAmount": 42.0
}
]
[
{
"convertedAmount": 42.0,
"currencyFrom": 42,
"currencyTo": 42,
"date": "string",
"requestedAmount": 42.0
}
]
Export list of currency exchange rates
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
Query parameters
-
format
string Required
curl \
--request GET 'http://wyzio.app/api-v1/currency-exchange/report?format=string' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
{
"empty": true,
"model": {},
"modelMap": {
"additionalProperty1": {},
"additionalProperty2": {}
},
"reference": true,
"status": "100 CONTINUE",
"view": {
"contentType": "string"
},
"viewName": "string"
}
Modify batch of documents
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
Body
Required
documents
-
comments
string -
contact
object Additional properties are allowed.
-
createdBy
string -
createdOn
string -
date
string -
entityId
integer -
fileExtension
string -
fileId
integer -
id
integer -
isSystem
boolean -
module
string Values are
ALL
,NONE
,CONTACTS
,CONTACTS_DETAILS
,CONTACTS_SUPPLIER
,CONTACTS_CLIENT
,CONTACTS_STAFF
,CONTACTS_STAFF_DOCUMENTS
,CONTACTS_USER
,CONTACTS_MAIN_USER
,CONTACTS_USER_SECURITY
,CONTACTS_USER_PERMISSIONS
,CONTACTS_SYSTEM
,CONTACTS_DOCUMENTS
,CONTACTS_ROLES
,CONTACTS_ROLES_SUPPLIER
,CONTACTS_ROLES_CLIENT
,CONTACTS_ROLES_STAFF
,CONTACTS_ROLES_USER
,CONTACTS_COMMUNICATIONS
,ORGANIZATIONS_USERS_MANAGER
,ORGANIZATIONS
,ORGANIZATIONS_DETAILS
,ORGANIZATIONS_TEMPLATES
,ORGANIZATIONS_ACCOUNTING
,ORGANIZATIONS_INVOICES
,ORGANIZATIONS_SYSTEM
,ORGANIZATIONS_SYSTEM_CODES
,ORGANIZATIONS_SYSTEM_INVENTORY
,ORGANIZATIONS_SYSTEM_ALLOCATION_KEYS
,ORGANIZATIONS_SYSTEM_EBICS
,ORGANIZATIONS_DOCUMENTS
,ORGANIZATIONS_DETAILS_INVOICING
,PERMISSION_ROLES
,PERMISSION_ROLES_DETAILS
,BUSINESS_UNITS
,ARTICLE_CATEGORIES
,CHART_OF_ACCOUNTS
,CHART_OF_ACCOUNTS_DETAILS
,ACTIVITY_LOG
,CURRENCIES
,CURRENCIES_DETAILS
,JOURNAL
,JOURNAL_DETAILS
,JOURNAL_DOCUMENTS
,DOCUMENTS
,DOCUMENTS_DETAILS
,RECONCILIATION
,PURCHASE_INVOICES
,PURCHASE_INVOICES_DETAILS
,PURCHASE_INVOICES_VALIDATION
,PURCHASE_INVOICES_ACCOUNTING
,PURCHASE_INVOICES_SHIPMENTS
,PURCHASE_INVOICES_DOCUMENTS
,PURCHASE_INVOICES_ALLOCATION_RULES
,PURCHASE_INVOICES_WORKFLOW
,SALES_INVOICES
,SALES_INVOICES_DETAILS
,SALES_INVOICES_VALIDATION
,SALES_INVOICES_ACCOUNTING
,SALES_INVOICES_DOCUMENTS
,SALES_INVOICES_SHIPMENTS
,SALES_INVOICES_REPORT
,SALES_INVOICES_ALLOCATION_RULES
,SALES_INVOICES_WORKFLOW
,SALARIES
,STOCK_REPORT
,STOCK_MOVEMENTS
,STOCK_MOVEMENTS_DETAILS
,ORDERS
,ORDERS_DETAILS
,ORDERS_VALIDATION
,ORDERS_SHIPMENT
,ORDERS_INVOICES
,ORDERS_EXPENSES
,ORDERS_DOCUMENTS
,ORDERS_WORKFLOW
,ADVANCED_INVOICING
,ADVANCED_INVOICING_GENERATE
,ACCOUNTING_PERIODS
,ACCOUNTING_PERIODS_DETAILS
,ACCOUNTING_PERIODS_LOCK
,ACCOUNTING_PERIODS_OPEN_CLOSE
,GENERAL_LEDGER
,GENERAL_LEDGER_STAFF
,REPORT_TEMPLATE
,ARTICLES
,ARTICLES_DETAILS
,PURCHASE_INVOICES_SCAN
,PURCHASE_INVOICES_SCAN_DETAILS
,RECOGNIZER
,BALANCE
,BALANCE_SHEET
,BALANCE_SHEET_STAFF
,PL_REPORT
,PL_REPORT_STAFF
,CASH_FLOW_REPORT
,MY_TIMESHEETS
,MY_ACCOUNT
,TIME_DETAILS
,TIME_DETAILS_DETAILS
,TIME_DETAILS_WORKFLOW
,TEAM_REVIEW
,BUDGETING
,BUDGETING_DETAILS
,SALARY_CONFIG
,SALARY_CONFIG_DETAILS
,RECEIVABLES
,PAYABLES
,PAYABLES_PAYMENT_FILE
,PDF_TEMPLATES
,PDF_TEMPLATES_DETAILS
,DASHBOARD
,LATE_NOTICES
,MY_PAYROLL
,PAYROLL
,PAYROLL_DETAILS
,PAYROLL_ACCOUNTING
,VAT_REPORT
,ORDER_REPORTS
,ORDER_REPORTS_DETAILS
,RATIOS_REPORT
,VACATIONS
,TRASH_CAN
,USER_GROUPS
,USER_GROUPS_DETAILS
,WORKFLOW
,WORKFLOW_DETAILS
,MY_WORKFLOW_NOTIFICATIONS
,FIXED_ASSETS
,UNASSIGNED
,EXPENSES
,EXPENSES_DETAILS
,EXPENSES_DRAFT
,EXPENSES_DRAFT_DETAILS
,CONTACT_BALANCE_REPORT
,ORGANIZATION_CURRENCIES
,ORGANIZATION_CURRENCIES_DETAILS
, orFINANCIAL_STATEMENTS
. -
name
string -
self
boolean -
size
integer
curl \
--request PUT 'http://wyzio.app/api-v1/document/batch' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string" \
--data '[{"comments":"string","contact":{"email":"string","id":42,"name":"string"},"createdBy":"string","createdOn":"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'","date":"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'","entityId":42,"fileExtension":"string","fileId":42,"id":42,"isSystem":true,"module":"ALL","name":"string","self":true,"size":42,"tags":[{"id":42,"name":"string"}]}]'
# Headers
TARGET-ORGANIZATION-ID: 42
WEAL-TOKEN: string
# Payload
[
{
"comments": "string",
"contact": {
"email": "string",
"id": 42,
"name": "string"
},
"createdBy": "string",
"createdOn": "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'",
"date": "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'",
"entityId": 42,
"fileExtension": "string",
"fileId": 42,
"id": 42,
"isSystem": true,
"module": "ALL",
"name": "string",
"self": true,
"size": 42,
"tags": [
{
"id": 42,
"name": "string"
}
]
}
]
{
"items": [
{
"error": true,
"errorCode": {
"errorCode": "NO_ERROR",
"errorDetailValues": [
{
"data": "string",
"errorCode": "string",
"fieldName": "string",
"isSevere": true
}
]
},
"freshData": {},
"freshRow": {},
"possibleWorkflows": [
{
"id": 42,
"name": "string"
}
],
"severeError": true
}
]
}
Get document file
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
Path parameters
-
id
integer Required id
curl \
--request GET 'http://wyzio.app/api-v1/document/view/{id}' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
42
Approve an expenses
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request POST 'http://wyzio.app/api-v1/expenses/batch/approve' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string" \
--data '[42]'
# Headers
TARGET-ORGANIZATION-ID: 42
WEAL-TOKEN: string
# Payload
[
42
]
Get total results count for list of draft expenses
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request GET 'http://wyzio.app/api-v1/expenses/draft/overall' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
42
Get total values for fixed assets
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request GET 'http://wyzio.app/api-v1/fixed-assets/total' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
{
"actualValue": 42.0,
"amortization": 42.0,
"amortizationType": "LINEAR_DEPRECIATION_DIRECT",
"chartOfAccountId": 42,
"departmentId": 42,
"id": 42,
"initialValue": 42.0,
"name": "string",
"organizationId": 42,
"period": "string",
"periodFrom": "2025-05-04T09:42:00Z",
"periodTo": "2025-05-04T09:42:00Z",
"soldOrDeleted": true
}
Get permissions of list of roles
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
Query parameters
-
roleIds
array[integer] Required roleIds
curl \
--request GET 'http://wyzio.app/api-v1/global/role/permissions?roleIds=42' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
[
{
"canCreate": true,
"canDelete": true,
"canExport": true,
"canModify": true,
"canView": true,
"deleteType": "NONE",
"id": 42,
"modifyType": "NONE",
"module": "ALL",
"sub0": "ALL",
"sub1": "ALL",
"sub2": "ALL",
"viewType": "NONE"
}
]
Delete role or super-role
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
Path parameters
-
id
integer Required id
curl \
--request DELETE 'http://wyzio.app/api-v1/global/role/{id}' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
{
"error": {
"errorCode": "NO_ERROR",
"errorDetailValues": [
{
"data": "string",
"errorCode": "string",
"fieldName": "string",
"isSevere": true
}
]
},
"valid": true
}
Get application workflowable modules
Returns a map {module: translation}
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request GET 'http://wyzio.app/api-v1/list/app/modules/workflowable' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
{
"additionalProperty1": "string",
"additionalProperty2": "string"
}
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request GET 'http://wyzio.app/api-v1/list/article-types' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
{
"additionalProperty1": "string",
"additionalProperty2": "string"
}
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request GET 'http://wyzio.app/api-v1/list/budget/status' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
{
"additionalProperty1": "string",
"additionalProperty2": "string"
}
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request GET 'http://wyzio.app/api-v1/list/payslip-status' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
{
"additionalProperty1": "string",
"additionalProperty2": "string"
}
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request GET 'http://wyzio.app/api-v1/list/vat/type' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
{
"additionalProperty1": "string",
"additionalProperty2": "string"
}
Modify order`s workflow
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
Path parameters
-
id
integer Required id
-
workflowId
integer Required workflowId
curl \
--request PUT 'http://wyzio.app/api-v1/orders/{id}/workflow/{workflowId}' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
{
"error": true,
"errorCode": {
"errorCode": "NO_ERROR",
"errorDetailValues": [
{
"data": "string",
"errorCode": "string",
"fieldName": "string",
"isSevere": true
}
]
},
"freshData": {},
"freshRow": {},
"possibleWorkflows": [
{
"id": 42,
"name": "string"
}
],
"severeError": true
}
Modify batch of organizations
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
Body
Required
organizations
-
allocationRulesFileName
string -
allocationRulesId
integer -
archived
boolean -
banks
array[object] -
contactId
integer -
currency
string -
defaultCodes
object Additional properties are allowed.
-
departments
array[object] -
disbursements
array[object] -
documentTemplate
object Additional properties are allowed.
-
ebics
array[object] -
employeeGroups
array[object] -
endDate
string -
externalId
string -
id
integer -
invoiceSettings
object Additional properties are allowed.
-
isFreeTier
boolean -
mailServerConfig
object Additional properties are allowed.
-
mainLanguage
object Additional properties are allowed.
-
managingChildrenOrganizationIds
array[integer] -
managingStandaloneOrganizationId
integer(int32) -
name
string -
nogaCodeId
integer -
officeAddresses
array[object] -
organizationPayslips
array[object] -
otherLanguages
array[object] -
parentStandaloneOrganizationId
integer -
salaryCodes
array[object] -
startDate
string -
stockStrategy
string Values are
FIFO
,LIFO
,AVERAGE
,UNIT
, orTRADING
. -
tasks
array[object] -
uid
string -
unusedVacationsSettings
object Additional properties are allowed.
-
useUnsentPayrollStatus
boolean -
validateOrdersByDefaultType
string Values are
NONE
,SINGLE
, orDOUBLE
. -
Values are
NONE
,SINGLE
, orDOUBLE
. -
Values are
NONE
,SINGLE
, orDOUBLE
. -
vatSupplierContactId
integer -
warnings
string
curl \
--request POST 'http://wyzio.app/api-v1/organization/batch' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string" \
--data '[{"allocationRulesFileName":"string","allocationRulesId":42,"archived":true,"automaticSynchronizationOfContacts":true,"banks":[{"accountHolderAddress":{"city":"string","countryCode2":"string","countryId":42,"houseNumber":"string","id":42,"line1":"string","line2":"string","name":"string","position":42,"postCode":"string","readOnly":true,"region":{"code":"string","id":42,"name":"string","taxMode":"ANNUALLY"},"service":"string","toTheAttentionOf":"string"},"accountNumber":"string","bankCustomerNumber":"string","bankName":"string","chartOfAccounts":42,"customHolder":true,"id":42,"isrCustomerNumber":"string","name":"string","position":42,"qrIban":"string","remark":"string","swiftBic":"string","useForReconciliation":true}],"contactId":42,"currency":"string","defaultCodes":{"accruedExpenses":42,"accruedRevenue":42,"annualProfitLoss":42,"bankExpenses":42,"clientBalanceSheet":42,"clientPL":42,"clientPrePayment":42,"clientVAT":42,"clientVATPaid":42,"compensation":42,"depreciationAccount":42,"extraordinaryExpenseAccount":42,"extraordinaryIncomeAccount":42,"fXGainLoss":42,"id":42,"lossOnDeptors":42,"retainedEarnings":42,"stock":42,"stockMovements":42,"supplierBalanceSheet":42,"supplierPrePayment":42,"supplierVAT":42,"supplierVATPaid":42,"system":42,"transactionAdjustment":42,"vatAccount":42,"workInProgress":42,"workInvoicedUpfront":42},"departments":[{"children":[{}],"documentTemplate":{"deliveryNoteTemplate":{"countryId":42,"description":"string","id":42,"isActive":true,"name":"string","previewImage":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"previewTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"sourceTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"templateType":"SALES_INVOICE"},"id":42,"lateNoticesTemplate":{"countryId":42,"description":"string","id":42,"isActive":true,"name":"string","previewImage":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"previewTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"sourceTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"templateType":"SALES_INVOICE"},"letterheadLandscape":42,"letterheadPortrait":42,"logo":42,"payslipsTemplate":{"countryId":42,"description":"string","id":42,"isActive":true,"name":"string","previewImage":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"previewTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"sourceTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"templateType":"SALES_INVOICE"},"report":42,"salesInvoicesTemplate":{"countryId":42,"description":"string","id":42,"isActive":true,"name":"string","previewImage":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"previewTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"sourceTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"templateType":"SALES_INVOICE"},"salesOrderTemplate":{"countryId":42,"description":"string","id":42,"isActive":true,"name":"string","previewImage":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"previewTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"sourceTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"templateType":"SALES_INVOICE"}},"id":42,"isDeleted":true,"name":"string","parentId":42,"position":42}],"disbursements":[{"disbursementFee":"string","id":42,"upToAmount":"string"}],"documentTemplate":{"deliveryNoteTemplate":{"countryId":42,"description":"string","id":42,"isActive":true,"name":"string","previewImage":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"previewTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"sourceTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"templateType":"SALES_INVOICE"},"id":42,"lateNoticesTemplate":{"countryId":42,"description":"string","id":42,"isActive":true,"name":"string","previewImage":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"previewTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"sourceTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"templateType":"SALES_INVOICE"},"letterheadLandscape":42,"letterheadPortrait":42,"logo":42,"payslipsTemplate":{"countryId":42,"description":"string","id":42,"isActive":true,"name":"string","previewImage":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"previewTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"sourceTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"templateType":"SALES_INVOICE"},"report":42,"salesInvoicesTemplate":{"countryId":42,"description":"string","id":42,"isActive":true,"name":"string","previewImage":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"previewTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"sourceTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"templateType":"SALES_INVOICE"},"salesOrderTemplate":{"countryId":42,"description":"string","id":42,"isActive":true,"name":"string","previewImage":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"previewTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"sourceTemplate":{"createdOn":"2025-05-04T09:42:00Z","fileExtension":"string","id":42,"name":"string","organizationId":42,"size":42},"templateType":"SALES_INVOICE"}},"ebics":[{"clientNumber":"string","ebicsServerId":42,"ebicsServerName":"string","ebicsServerSwiftBic":"string","id":42,"orderTransmission":true,"organizationId":42,"status":"string","userNumber":"string","warnings":"string"}],"employeeGroups":[{"id":42,"name":"string"}],"endDate":"string","externalId":"string","id":42,"invoiceSettings":{"defaultPaymentTerms":"string","disbursementAccountId":42,"emailForInvoiceScans":"string","expenseAccountId":42,"forceTreatedAsPi":true,"id":42,"invoiceEmailContentSettings":{"customLateNoticeEmail":true,"customSalesInvoiceEmail":true,"customSalesOrderEmail":true,"id":42,"lateNoticesEmailContentLocalizations":{"de":"string","en":"string","fr":"string","id":42,"it":"string"},"lateNoticesEmailSubjectLocalizations":{"de":"string","en":"string","fr":"string","id":42,"it":"string"},"orderEmailContentLocalizations":{"de":"string","en":"string","fr":"string","id":42,"it":"string"},"orderEmailSubjectLocalizations":{"de":"string","en":"string","fr":"string","id":42,"it":"string"},"salesInvoiceEmailContentLocalizations":{"de":"string","en":"string","fr":"string","id":42,"it":"string"},"salesInvoiceEmailSubjectLocalizations":{"de":"string","en":"string","fr":"string","id":42,"it":"string"}},"lateInvoiceConditionsLocalizations":{"de":"string","en":"string","fr":"string","id":42,"it":"string"},"lateInvoiceRequestedPaymentTerms":"string","numbering":"string","orderIdNumbering":"string","orderValidity":"string","plannedPaymentDateOffset":42,"purchasePaymentAccountId":42,"requestedPaymentTerms":"string","salesInvoiceConditionsLocalizations":{"de":"string","en":"string","fr":"string","id":42,"it":"string"},"salesOrderTermsLocalizations":{"de":"string","en":"string","fr":"string","id":42,"it":"string"},"salesPaymentAccountId":42,"scansTreatedByManagingOrg":true,"skipDraftStatus":true,"timesheets":true,"timesheetsAccountId":42,"usePurchaseAccrualAccounting":true,"useSalesAccrualAccounting":true,"useUnsentOrdersStatus":true,"useUnsentSalesStatus":true,"validateOrdersByDefaultType":"NONE","validatePurchaseInvoicesByDefaultType":"NONE","validateSalesInvoicesByDefaultType":"NONE","vatNumber":"string"},"isFreeTier":true,"mailServerConfig":{"fromEmail":"string","host":"string","id":42,"password":"string","port":42,"secureConnectionType":"TLS","useAuth":true,"userName":"string"},"mainLanguage":{"code":"string","id":42,"isMain":true,"name":"string"},"managingChildrenOrganizationIds":[42],"managingStandaloneOrganizationId":42,"managingStandaloneOrganizationName":"string","name":"string","nogaCodeId":42,"officeAddresses":[{"city":"string","countryCode2":"string","countryId":42,"houseNumber":"string","id":42,"line1":"string","line2":"string","name":"string","position":42,"postCode":"string","region":{"code":"string","id":42,"name":"string","taxMode":"ANNUALLY"},"service":"string","toTheAttentionOf":"string"}],"organizationPayslips":[{"calendarYear":42,"claPayslipId":42,"holidays":[{"date":"string","id":42,"name":"string"}],"id":42,"organizationPayslipLines":[{"employeePercentage":"string","employerPercentage":"string","genderType":"MALE","id":42,"limitCalculationType":"TOTAL","lowerLimit":"string","organizationEmployeeGroupId":42,"payslipLineEntityId":42,"upperLimit":"string"}],"salaryTableLines":[{"description":"string","employeePercentage":"string","employeeValue":"string","employerPercentage":"string","employerValue":"string","endDate":"string","id":42,"number":42,"organizationEmployeeGroupId":42,"organizationPayslipEntityId":42,"payslipEntityId":42,"payslipLineId":"string","quantity":"string","staffPayslipEntityId":42,"startDate":"string"}],"touched":true}],"otherLanguages":[{"code":"string","id":42,"isMain":true,"name":"string"}],"parentStandaloneOrganizationId":42,"salaryCodes":[{"calendarYear":42,"id":42,"salaryCodeLines":[{"balanceSheetAccountId":42,"id":42,"isLinkedToAccount":true,"localizations":{"de":"string","en":"string","fr":"string","it":"string"},"number":42,"payslipLineEntityId":42,"payslipLineType":"EMPLOYEE_LINE","payslipValueSplitType":"EMPLOYEE","plAdminsAccountId":42,"plOperationsAccountId":42,"salaryCodeId":42,"specialAttributionType":"BASE_SALARY"}]}],"startDate":"string","stockStrategy":"FIFO","tasks":[{"archived":true,"id":42,"name":"string","organizationId":42,"rate":42.0}],"uid":"string","unusedVacationsSettings":{"adminBalanceSheetAccountId":42,"adminPlAccountId":42,"autoProvisionUnusedVacations":true,"id":42,"operationsBalanceSheetAccountId":42,"operationsPlAccountId":42},"useUnsentPayrollStatus":true,"validateOrdersByDefaultType":"NONE","validatePurchaseInvoicesByDefaultType":"NONE","validateSalesInvoicesByDefaultType":"NONE","vatSupplierContactId":42,"warnings":"string"}]'
# Headers
TARGET-ORGANIZATION-ID: 42
WEAL-TOKEN: string
# Payload
[
{
"allocationRulesFileName": "string",
"allocationRulesId": 42,
"archived": true,
"automaticSynchronizationOfContacts": true,
"banks": [
{
"accountHolderAddress": {
"city": "string",
"countryCode2": "string",
"countryId": 42,
"houseNumber": "string",
"id": 42,
"line1": "string",
"line2": "string",
"name": "string",
"position": 42,
"postCode": "string",
"readOnly": true,
"region": {
"code": "string",
"id": 42,
"name": "string",
"taxMode": "ANNUALLY"
},
"service": "string",
"toTheAttentionOf": "string"
},
"accountNumber": "string",
"bankCustomerNumber": "string",
"bankName": "string",
"chartOfAccounts": 42,
"customHolder": true,
"id": 42,
"isrCustomerNumber": "string",
"name": "string",
"position": 42,
"qrIban": "string",
"remark": "string",
"swiftBic": "string",
"useForReconciliation": true
}
],
"contactId": 42,
"currency": "string",
"defaultCodes": {
"accruedExpenses": 42,
"accruedRevenue": 42,
"annualProfitLoss": 42,
"bankExpenses": 42,
"clientBalanceSheet": 42,
"clientPL": 42,
"clientPrePayment": 42,
"clientVAT": 42,
"clientVATPaid": 42,
"compensation": 42,
"depreciationAccount": 42,
"extraordinaryExpenseAccount": 42,
"extraordinaryIncomeAccount": 42,
"fXGainLoss": 42,
"id": 42,
"lossOnDeptors": 42,
"retainedEarnings": 42,
"stock": 42,
"stockMovements": 42,
"supplierBalanceSheet": 42,
"supplierPrePayment": 42,
"supplierVAT": 42,
"supplierVATPaid": 42,
"system": 42,
"transactionAdjustment": 42,
"vatAccount": 42,
"workInProgress": 42,
"workInvoicedUpfront": 42
},
"departments": [
{
"children": [
{}
],
"documentTemplate": {
"deliveryNoteTemplate": {
"countryId": 42,
"description": "string",
"id": 42,
"isActive": true,
"name": "string",
"previewImage": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"previewTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"sourceTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"templateType": "SALES_INVOICE"
},
"id": 42,
"lateNoticesTemplate": {
"countryId": 42,
"description": "string",
"id": 42,
"isActive": true,
"name": "string",
"previewImage": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"previewTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"sourceTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"templateType": "SALES_INVOICE"
},
"letterheadLandscape": 42,
"letterheadPortrait": 42,
"logo": 42,
"payslipsTemplate": {
"countryId": 42,
"description": "string",
"id": 42,
"isActive": true,
"name": "string",
"previewImage": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"previewTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"sourceTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"templateType": "SALES_INVOICE"
},
"report": 42,
"salesInvoicesTemplate": {
"countryId": 42,
"description": "string",
"id": 42,
"isActive": true,
"name": "string",
"previewImage": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"previewTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"sourceTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"templateType": "SALES_INVOICE"
},
"salesOrderTemplate": {
"countryId": 42,
"description": "string",
"id": 42,
"isActive": true,
"name": "string",
"previewImage": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"previewTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"sourceTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"templateType": "SALES_INVOICE"
}
},
"id": 42,
"isDeleted": true,
"name": "string",
"parentId": 42,
"position": 42
}
],
"disbursements": [
{
"disbursementFee": "string",
"id": 42,
"upToAmount": "string"
}
],
"documentTemplate": {
"deliveryNoteTemplate": {
"countryId": 42,
"description": "string",
"id": 42,
"isActive": true,
"name": "string",
"previewImage": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"previewTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"sourceTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"templateType": "SALES_INVOICE"
},
"id": 42,
"lateNoticesTemplate": {
"countryId": 42,
"description": "string",
"id": 42,
"isActive": true,
"name": "string",
"previewImage": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"previewTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"sourceTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"templateType": "SALES_INVOICE"
},
"letterheadLandscape": 42,
"letterheadPortrait": 42,
"logo": 42,
"payslipsTemplate": {
"countryId": 42,
"description": "string",
"id": 42,
"isActive": true,
"name": "string",
"previewImage": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"previewTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"sourceTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"templateType": "SALES_INVOICE"
},
"report": 42,
"salesInvoicesTemplate": {
"countryId": 42,
"description": "string",
"id": 42,
"isActive": true,
"name": "string",
"previewImage": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"previewTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"sourceTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"templateType": "SALES_INVOICE"
},
"salesOrderTemplate": {
"countryId": 42,
"description": "string",
"id": 42,
"isActive": true,
"name": "string",
"previewImage": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"previewTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"sourceTemplate": {
"createdOn": "2025-05-04T09:42:00Z",
"fileExtension": "string",
"id": 42,
"name": "string",
"organizationId": 42,
"size": 42
},
"templateType": "SALES_INVOICE"
}
},
"ebics": [
{
"clientNumber": "string",
"ebicsServerId": 42,
"ebicsServerName": "string",
"ebicsServerSwiftBic": "string",
"id": 42,
"orderTransmission": true,
"organizationId": 42,
"status": "string",
"userNumber": "string",
"warnings": "string"
}
],
"employeeGroups": [
{
"id": 42,
"name": "string"
}
],
"endDate": "string",
"externalId": "string",
"id": 42,
"invoiceSettings": {
"defaultPaymentTerms": "string",
"disbursementAccountId": 42,
"emailForInvoiceScans": "string",
"expenseAccountId": 42,
"forceTreatedAsPi": true,
"id": 42,
"invoiceEmailContentSettings": {
"customLateNoticeEmail": true,
"customSalesInvoiceEmail": true,
"customSalesOrderEmail": true,
"id": 42,
"lateNoticesEmailContentLocalizations": {
"de": "string",
"en": "string",
"fr": "string",
"id": 42,
"it": "string"
},
"lateNoticesEmailSubjectLocalizations": {
"de": "string",
"en": "string",
"fr": "string",
"id": 42,
"it": "string"
},
"orderEmailContentLocalizations": {
"de": "string",
"en": "string",
"fr": "string",
"id": 42,
"it": "string"
},
"orderEmailSubjectLocalizations": {
"de": "string",
"en": "string",
"fr": "string",
"id": 42,
"it": "string"
},
"salesInvoiceEmailContentLocalizations": {
"de": "string",
"en": "string",
"fr": "string",
"id": 42,
"it": "string"
},
"salesInvoiceEmailSubjectLocalizations": {
"de": "string",
"en": "string",
"fr": "string",
"id": 42,
"it": "string"
}
},
"lateInvoiceConditionsLocalizations": {
"de": "string",
"en": "string",
"fr": "string",
"id": 42,
"it": "string"
},
"lateInvoiceRequestedPaymentTerms": "string",
"numbering": "string",
"orderIdNumbering": "string",
"orderValidity": "string",
"plannedPaymentDateOffset": 42,
"purchasePaymentAccountId": 42,
"requestedPaymentTerms": "string",
"salesInvoiceConditionsLocalizations": {
"de": "string",
"en": "string",
"fr": "string",
"id": 42,
"it": "string"
},
"salesOrderTermsLocalizations": {
"de": "string",
"en": "string",
"fr": "string",
"id": 42,
"it": "string"
},
"salesPaymentAccountId": 42,
"scansTreatedByManagingOrg": true,
"skipDraftStatus": true,
"timesheets": true,
"timesheetsAccountId": 42,
"usePurchaseAccrualAccounting": true,
"useSalesAccrualAccounting": true,
"useUnsentOrdersStatus": true,
"useUnsentSalesStatus": true,
"validateOrdersByDefaultType": "NONE",
"validatePurchaseInvoicesByDefaultType": "NONE",
"validateSalesInvoicesByDefaultType": "NONE",
"vatNumber": "string"
},
"isFreeTier": true,
"mailServerConfig": {
"fromEmail": "string",
"host": "string",
"id": 42,
"password": "string",
"port": 42,
"secureConnectionType": "TLS",
"useAuth": true,
"userName": "string"
},
"mainLanguage": {
"code": "string",
"id": 42,
"isMain": true,
"name": "string"
},
"managingChildrenOrganizationIds": [
42
],
"managingStandaloneOrganizationId": 42,
"managingStandaloneOrganizationName": "string",
"name": "string",
"nogaCodeId": 42,
"officeAddresses": [
{
"city": "string",
"countryCode2": "string",
"countryId": 42,
"houseNumber": "string",
"id": 42,
"line1": "string",
"line2": "string",
"name": "string",
"position": 42,
"postCode": "string",
"region": {
"code": "string",
"id": 42,
"name": "string",
"taxMode": "ANNUALLY"
},
"service": "string",
"toTheAttentionOf": "string"
}
],
"organizationPayslips": [
{
"calendarYear": 42,
"claPayslipId": 42,
"holidays": [
{
"date": "string",
"id": 42,
"name": "string"
}
],
"id": 42,
"organizationPayslipLines": [
{
"employeePercentage": "string",
"employerPercentage": "string",
"genderType": "MALE",
"id": 42,
"limitCalculationType": "TOTAL",
"lowerLimit": "string",
"organizationEmployeeGroupId": 42,
"payslipLineEntityId": 42,
"upperLimit": "string"
}
],
"salaryTableLines": [
{
"description": "string",
"employeePercentage": "string",
"employeeValue": "string",
"employerPercentage": "string",
"employerValue": "string",
"endDate": "string",
"id": 42,
"number": 42,
"organizationEmployeeGroupId": 42,
"organizationPayslipEntityId": 42,
"payslipEntityId": 42,
"payslipLineId": "string",
"quantity": "string",
"staffPayslipEntityId": 42,
"startDate": "string"
}
],
"touched": true
}
],
"otherLanguages": [
{
"code": "string",
"id": 42,
"isMain": true,
"name": "string"
}
],
"parentStandaloneOrganizationId": 42,
"salaryCodes": [
{
"calendarYear": 42,
"id": 42,
"salaryCodeLines": [
{
"balanceSheetAccountId": 42,
"id": 42,
"isLinkedToAccount": true,
"localizations": {
"de": "string",
"en": "string",
"fr": "string",
"it": "string"
},
"number": 42,
"payslipLineEntityId": 42,
"payslipLineType": "EMPLOYEE_LINE",
"payslipValueSplitType": "EMPLOYEE",
"plAdminsAccountId": 42,
"plOperationsAccountId": 42,
"salaryCodeId": 42,
"specialAttributionType": "BASE_SALARY"
}
]
}
],
"startDate": "string",
"stockStrategy": "FIFO",
"tasks": [
{
"archived": true,
"id": 42,
"name": "string",
"organizationId": 42,
"rate": 42.0
}
],
"uid": "string",
"unusedVacationsSettings": {
"adminBalanceSheetAccountId": 42,
"adminPlAccountId": 42,
"autoProvisionUnusedVacations": true,
"id": 42,
"operationsBalanceSheetAccountId": 42,
"operationsPlAccountId": 42
},
"useUnsentPayrollStatus": true,
"validateOrdersByDefaultType": "NONE",
"validatePurchaseInvoicesByDefaultType": "NONE",
"validateSalesInvoicesByDefaultType": "NONE",
"vatSupplierContactId": 42,
"warnings": "string"
}
]
{
"items": [
{
"error": true,
"errorCode": {
"errorCode": "NO_ERROR",
"errorDetailValues": [
{
"data": "string",
"errorCode": "string",
"fieldName": "string",
"isSevere": true
}
]
},
"freshData": {},
"freshRow": {},
"possibleWorkflows": [
{
"id": 42,
"name": "string"
}
],
"severeError": true
}
]
}
Initiate ebics key for organization ebics record
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
Path parameters
-
ebicsId
integer Required ebicsId
Query parameters
-
accountNonExpired
boolean -
accountNonLocked
boolean -
active
boolean -
admin
boolean -
contentLanguage
string Values are
EN
,FR
,DE
,IT
, orUNDEFINED
. -
credentialsNonExpired
boolean -
defaultLanguage
string Values are
EN
,FR
,DE
,IT
, orUNDEFINED
. -
enabled
boolean -
isImpersonateOthers
boolean -
isMainUser
boolean -
notNullUserGroupIds
array[integer] -
organizationCountryId
integer -
organizationCountryRegionId
integer -
organizationId
integer -
organizationMainLanguage
string Values are
EN
,FR
,DE
,IT
, orUNDEFINED
. -
parentContactId
integer -
password
string -
permissions[0].canCreate
boolean -
permissions[0].canDelete
boolean -
permissions[0].canExport
boolean -
permissions[0].canModify
boolean -
permissions[0].canView
boolean -
permissions[0].deleteType
string Values are
NONE
,ALL
,OWNER
, orWORKFLOW
. -
permissions[0].id
integer -
permissions[0].modifyType
string Values are
NONE
,ALL
,OWNER
, orWORKFLOW
. -
permissions[0].module
string Values are
ALL
,NONE
,CONTACTS
,CONTACTS_DETAILS
,CONTACTS_SUPPLIER
,CONTACTS_CLIENT
,CONTACTS_STAFF
,CONTACTS_STAFF_DOCUMENTS
,CONTACTS_USER
,CONTACTS_MAIN_USER
,CONTACTS_USER_SECURITY
,CONTACTS_USER_PERMISSIONS
,CONTACTS_SYSTEM
,CONTACTS_DOCUMENTS
,CONTACTS_ROLES
,CONTACTS_ROLES_SUPPLIER
,CONTACTS_ROLES_CLIENT
,CONTACTS_ROLES_STAFF
,CONTACTS_ROLES_USER
,CONTACTS_COMMUNICATIONS
,ORGANIZATIONS_USERS_MANAGER
,ORGANIZATIONS
,ORGANIZATIONS_DETAILS
,ORGANIZATIONS_TEMPLATES
,ORGANIZATIONS_ACCOUNTING
,ORGANIZATIONS_INVOICES
,ORGANIZATIONS_SYSTEM
,ORGANIZATIONS_SYSTEM_CODES
,ORGANIZATIONS_SYSTEM_INVENTORY
,ORGANIZATIONS_SYSTEM_ALLOCATION_KEYS
,ORGANIZATIONS_SYSTEM_EBICS
,ORGANIZATIONS_DOCUMENTS
,ORGANIZATIONS_DETAILS_INVOICING
,PERMISSION_ROLES
,PERMISSION_ROLES_DETAILS
,BUSINESS_UNITS
,ARTICLE_CATEGORIES
,CHART_OF_ACCOUNTS
,CHART_OF_ACCOUNTS_DETAILS
,ACTIVITY_LOG
,CURRENCIES
,CURRENCIES_DETAILS
,JOURNAL
,JOURNAL_DETAILS
,JOURNAL_DOCUMENTS
,DOCUMENTS
,DOCUMENTS_DETAILS
,RECONCILIATION
,PURCHASE_INVOICES
,PURCHASE_INVOICES_DETAILS
,PURCHASE_INVOICES_VALIDATION
,PURCHASE_INVOICES_ACCOUNTING
,PURCHASE_INVOICES_SHIPMENTS
,PURCHASE_INVOICES_DOCUMENTS
,PURCHASE_INVOICES_ALLOCATION_RULES
,PURCHASE_INVOICES_WORKFLOW
,SALES_INVOICES
,SALES_INVOICES_DETAILS
,SALES_INVOICES_VALIDATION
,SALES_INVOICES_ACCOUNTING
,SALES_INVOICES_DOCUMENTS
,SALES_INVOICES_SHIPMENTS
,SALES_INVOICES_REPORT
,SALES_INVOICES_ALLOCATION_RULES
,SALES_INVOICES_WORKFLOW
,SALARIES
,STOCK_REPORT
,STOCK_MOVEMENTS
,STOCK_MOVEMENTS_DETAILS
,ORDERS
,ORDERS_DETAILS
,ORDERS_VALIDATION
,ORDERS_SHIPMENT
,ORDERS_INVOICES
,ORDERS_EXPENSES
,ORDERS_DOCUMENTS
,ORDERS_WORKFLOW
,ADVANCED_INVOICING
,ADVANCED_INVOICING_GENERATE
,ACCOUNTING_PERIODS
,ACCOUNTING_PERIODS_DETAILS
,ACCOUNTING_PERIODS_LOCK
,ACCOUNTING_PERIODS_OPEN_CLOSE
,GENERAL_LEDGER
,GENERAL_LEDGER_STAFF
,REPORT_TEMPLATE
,ARTICLES
,ARTICLES_DETAILS
,PURCHASE_INVOICES_SCAN
,PURCHASE_INVOICES_SCAN_DETAILS
,RECOGNIZER
,BALANCE
,BALANCE_SHEET
,BALANCE_SHEET_STAFF
,PL_REPORT
,PL_REPORT_STAFF
,CASH_FLOW_REPORT
,MY_TIMESHEETS
,MY_ACCOUNT
,TIME_DETAILS
,TIME_DETAILS_DETAILS
,TIME_DETAILS_WORKFLOW
,TEAM_REVIEW
,BUDGETING
,BUDGETING_DETAILS
,SALARY_CONFIG
,SALARY_CONFIG_DETAILS
,RECEIVABLES
,PAYABLES
,PAYABLES_PAYMENT_FILE
,PDF_TEMPLATES
,PDF_TEMPLATES_DETAILS
,DASHBOARD
,LATE_NOTICES
,MY_PAYROLL
,PAYROLL
,PAYROLL_DETAILS
,PAYROLL_ACCOUNTING
,VAT_REPORT
,ORDER_REPORTS
,ORDER_REPORTS_DETAILS
,RATIOS_REPORT
,VACATIONS
,TRASH_CAN
,USER_GROUPS
,USER_GROUPS_DETAILS
,WORKFLOW
,WORKFLOW_DETAILS
,MY_WORKFLOW_NOTIFICATIONS
,FIXED_ASSETS
,UNASSIGNED
,EXPENSES
,EXPENSES_DETAILS
,EXPENSES_DRAFT
,EXPENSES_DRAFT_DETAILS
,CONTACT_BALANCE_REPORT
,ORGANIZATION_CURRENCIES
,ORGANIZATION_CURRENCIES_DETAILS
, orFINANCIAL_STATEMENTS
. -
permissions[0].sub0
string Values are
ALL
,NONE
,CONTACTS
,CONTACTS_DETAILS
,CONTACTS_SUPPLIER
,CONTACTS_CLIENT
,CONTACTS_STAFF
,CONTACTS_STAFF_DOCUMENTS
,CONTACTS_USER
,CONTACTS_MAIN_USER
,CONTACTS_USER_SECURITY
,CONTACTS_USER_PERMISSIONS
,CONTACTS_SYSTEM
,CONTACTS_DOCUMENTS
,CONTACTS_ROLES
,CONTACTS_ROLES_SUPPLIER
,CONTACTS_ROLES_CLIENT
,CONTACTS_ROLES_STAFF
,CONTACTS_ROLES_USER
,CONTACTS_COMMUNICATIONS
,ORGANIZATIONS_USERS_MANAGER
,ORGANIZATIONS
,ORGANIZATIONS_DETAILS
,ORGANIZATIONS_TEMPLATES
,ORGANIZATIONS_ACCOUNTING
,ORGANIZATIONS_INVOICES
,ORGANIZATIONS_SYSTEM
,ORGANIZATIONS_SYSTEM_CODES
,ORGANIZATIONS_SYSTEM_INVENTORY
,ORGANIZATIONS_SYSTEM_ALLOCATION_KEYS
,ORGANIZATIONS_SYSTEM_EBICS
,ORGANIZATIONS_DOCUMENTS
,ORGANIZATIONS_DETAILS_INVOICING
,PERMISSION_ROLES
,PERMISSION_ROLES_DETAILS
,BUSINESS_UNITS
,ARTICLE_CATEGORIES
,CHART_OF_ACCOUNTS
,CHART_OF_ACCOUNTS_DETAILS
,ACTIVITY_LOG
,CURRENCIES
,CURRENCIES_DETAILS
,JOURNAL
,JOURNAL_DETAILS
,JOURNAL_DOCUMENTS
,DOCUMENTS
,DOCUMENTS_DETAILS
,RECONCILIATION
,PURCHASE_INVOICES
,PURCHASE_INVOICES_DETAILS
,PURCHASE_INVOICES_VALIDATION
,PURCHASE_INVOICES_ACCOUNTING
,PURCHASE_INVOICES_SHIPMENTS
,PURCHASE_INVOICES_DOCUMENTS
,PURCHASE_INVOICES_ALLOCATION_RULES
,PURCHASE_INVOICES_WORKFLOW
,SALES_INVOICES
,SALES_INVOICES_DETAILS
,SALES_INVOICES_VALIDATION
,SALES_INVOICES_ACCOUNTING
,SALES_INVOICES_DOCUMENTS
,SALES_INVOICES_SHIPMENTS
,SALES_INVOICES_REPORT
,SALES_INVOICES_ALLOCATION_RULES
,SALES_INVOICES_WORKFLOW
,SALARIES
,STOCK_REPORT
,STOCK_MOVEMENTS
,STOCK_MOVEMENTS_DETAILS
,ORDERS
,ORDERS_DETAILS
,ORDERS_VALIDATION
,ORDERS_SHIPMENT
,ORDERS_INVOICES
,ORDERS_EXPENSES
,ORDERS_DOCUMENTS
,ORDERS_WORKFLOW
,ADVANCED_INVOICING
,ADVANCED_INVOICING_GENERATE
,ACCOUNTING_PERIODS
,ACCOUNTING_PERIODS_DETAILS
,ACCOUNTING_PERIODS_LOCK
,ACCOUNTING_PERIODS_OPEN_CLOSE
,GENERAL_LEDGER
,GENERAL_LEDGER_STAFF
,REPORT_TEMPLATE
,ARTICLES
,ARTICLES_DETAILS
,PURCHASE_INVOICES_SCAN
,PURCHASE_INVOICES_SCAN_DETAILS
,RECOGNIZER
,BALANCE
,BALANCE_SHEET
,BALANCE_SHEET_STAFF
,PL_REPORT
,PL_REPORT_STAFF
,CASH_FLOW_REPORT
,MY_TIMESHEETS
,MY_ACCOUNT
,TIME_DETAILS
,TIME_DETAILS_DETAILS
,TIME_DETAILS_WORKFLOW
,TEAM_REVIEW
,BUDGETING
,BUDGETING_DETAILS
,SALARY_CONFIG
,SALARY_CONFIG_DETAILS
,RECEIVABLES
,PAYABLES
,PAYABLES_PAYMENT_FILE
,PDF_TEMPLATES
,PDF_TEMPLATES_DETAILS
,DASHBOARD
,LATE_NOTICES
,MY_PAYROLL
,PAYROLL
,PAYROLL_DETAILS
,PAYROLL_ACCOUNTING
,VAT_REPORT
,ORDER_REPORTS
,ORDER_REPORTS_DETAILS
,RATIOS_REPORT
,VACATIONS
,TRASH_CAN
,USER_GROUPS
,USER_GROUPS_DETAILS
,WORKFLOW
,WORKFLOW_DETAILS
,MY_WORKFLOW_NOTIFICATIONS
,FIXED_ASSETS
,UNASSIGNED
,EXPENSES
,EXPENSES_DETAILS
,EXPENSES_DRAFT
,EXPENSES_DRAFT_DETAILS
,CONTACT_BALANCE_REPORT
,ORGANIZATION_CURRENCIES
,ORGANIZATION_CURRENCIES_DETAILS
, orFINANCIAL_STATEMENTS
. -
permissions[0].sub1
string Values are
ALL
,NONE
,CONTACTS
,CONTACTS_DETAILS
,CONTACTS_SUPPLIER
,CONTACTS_CLIENT
,CONTACTS_STAFF
,CONTACTS_STAFF_DOCUMENTS
,CONTACTS_USER
,CONTACTS_MAIN_USER
,CONTACTS_USER_SECURITY
,CONTACTS_USER_PERMISSIONS
,CONTACTS_SYSTEM
,CONTACTS_DOCUMENTS
,CONTACTS_ROLES
,CONTACTS_ROLES_SUPPLIER
,CONTACTS_ROLES_CLIENT
,CONTACTS_ROLES_STAFF
,CONTACTS_ROLES_USER
,CONTACTS_COMMUNICATIONS
,ORGANIZATIONS_USERS_MANAGER
,ORGANIZATIONS
,ORGANIZATIONS_DETAILS
,ORGANIZATIONS_TEMPLATES
,ORGANIZATIONS_ACCOUNTING
,ORGANIZATIONS_INVOICES
,ORGANIZATIONS_SYSTEM
,ORGANIZATIONS_SYSTEM_CODES
,ORGANIZATIONS_SYSTEM_INVENTORY
,ORGANIZATIONS_SYSTEM_ALLOCATION_KEYS
,ORGANIZATIONS_SYSTEM_EBICS
,ORGANIZATIONS_DOCUMENTS
,ORGANIZATIONS_DETAILS_INVOICING
,PERMISSION_ROLES
,PERMISSION_ROLES_DETAILS
,BUSINESS_UNITS
,ARTICLE_CATEGORIES
,CHART_OF_ACCOUNTS
,CHART_OF_ACCOUNTS_DETAILS
,ACTIVITY_LOG
,CURRENCIES
,CURRENCIES_DETAILS
,JOURNAL
,JOURNAL_DETAILS
,JOURNAL_DOCUMENTS
,DOCUMENTS
,DOCUMENTS_DETAILS
,RECONCILIATION
,PURCHASE_INVOICES
,PURCHASE_INVOICES_DETAILS
,PURCHASE_INVOICES_VALIDATION
,PURCHASE_INVOICES_ACCOUNTING
,PURCHASE_INVOICES_SHIPMENTS
,PURCHASE_INVOICES_DOCUMENTS
,PURCHASE_INVOICES_ALLOCATION_RULES
,PURCHASE_INVOICES_WORKFLOW
,SALES_INVOICES
,SALES_INVOICES_DETAILS
,SALES_INVOICES_VALIDATION
,SALES_INVOICES_ACCOUNTING
,SALES_INVOICES_DOCUMENTS
,SALES_INVOICES_SHIPMENTS
,SALES_INVOICES_REPORT
,SALES_INVOICES_ALLOCATION_RULES
,SALES_INVOICES_WORKFLOW
,SALARIES
,STOCK_REPORT
,STOCK_MOVEMENTS
,STOCK_MOVEMENTS_DETAILS
,ORDERS
,ORDERS_DETAILS
,ORDERS_VALIDATION
,ORDERS_SHIPMENT
,ORDERS_INVOICES
,ORDERS_EXPENSES
,ORDERS_DOCUMENTS
,ORDERS_WORKFLOW
,ADVANCED_INVOICING
,ADVANCED_INVOICING_GENERATE
,ACCOUNTING_PERIODS
,ACCOUNTING_PERIODS_DETAILS
,ACCOUNTING_PERIODS_LOCK
,ACCOUNTING_PERIODS_OPEN_CLOSE
,GENERAL_LEDGER
,GENERAL_LEDGER_STAFF
,REPORT_TEMPLATE
,ARTICLES
,ARTICLES_DETAILS
,PURCHASE_INVOICES_SCAN
,PURCHASE_INVOICES_SCAN_DETAILS
,RECOGNIZER
,BALANCE
,BALANCE_SHEET
,BALANCE_SHEET_STAFF
,PL_REPORT
,PL_REPORT_STAFF
,CASH_FLOW_REPORT
,MY_TIMESHEETS
,MY_ACCOUNT
,TIME_DETAILS
,TIME_DETAILS_DETAILS
,TIME_DETAILS_WORKFLOW
,TEAM_REVIEW
,BUDGETING
,BUDGETING_DETAILS
,SALARY_CONFIG
,SALARY_CONFIG_DETAILS
,RECEIVABLES
,PAYABLES
,PAYABLES_PAYMENT_FILE
,PDF_TEMPLATES
,PDF_TEMPLATES_DETAILS
,DASHBOARD
,LATE_NOTICES
,MY_PAYROLL
,PAYROLL
,PAYROLL_DETAILS
,PAYROLL_ACCOUNTING
,VAT_REPORT
,ORDER_REPORTS
,ORDER_REPORTS_DETAILS
,RATIOS_REPORT
,VACATIONS
,TRASH_CAN
,USER_GROUPS
,USER_GROUPS_DETAILS
,WORKFLOW
,WORKFLOW_DETAILS
,MY_WORKFLOW_NOTIFICATIONS
,FIXED_ASSETS
,UNASSIGNED
,EXPENSES
,EXPENSES_DETAILS
,EXPENSES_DRAFT
,EXPENSES_DRAFT_DETAILS
,CONTACT_BALANCE_REPORT
,ORGANIZATION_CURRENCIES
,ORGANIZATION_CURRENCIES_DETAILS
, orFINANCIAL_STATEMENTS
. -
permissions[0].sub2
string Values are
ALL
,NONE
,CONTACTS
,CONTACTS_DETAILS
,CONTACTS_SUPPLIER
,CONTACTS_CLIENT
,CONTACTS_STAFF
,CONTACTS_STAFF_DOCUMENTS
,CONTACTS_USER
,CONTACTS_MAIN_USER
,CONTACTS_USER_SECURITY
,CONTACTS_USER_PERMISSIONS
,CONTACTS_SYSTEM
,CONTACTS_DOCUMENTS
,CONTACTS_ROLES
,CONTACTS_ROLES_SUPPLIER
,CONTACTS_ROLES_CLIENT
,CONTACTS_ROLES_STAFF
,CONTACTS_ROLES_USER
,CONTACTS_COMMUNICATIONS
,ORGANIZATIONS_USERS_MANAGER
,ORGANIZATIONS
,ORGANIZATIONS_DETAILS
,ORGANIZATIONS_TEMPLATES
,ORGANIZATIONS_ACCOUNTING
,ORGANIZATIONS_INVOICES
,ORGANIZATIONS_SYSTEM
,ORGANIZATIONS_SYSTEM_CODES
,ORGANIZATIONS_SYSTEM_INVENTORY
,ORGANIZATIONS_SYSTEM_ALLOCATION_KEYS
,ORGANIZATIONS_SYSTEM_EBICS
,ORGANIZATIONS_DOCUMENTS
,ORGANIZATIONS_DETAILS_INVOICING
,PERMISSION_ROLES
,PERMISSION_ROLES_DETAILS
,BUSINESS_UNITS
,ARTICLE_CATEGORIES
,CHART_OF_ACCOUNTS
,CHART_OF_ACCOUNTS_DETAILS
,ACTIVITY_LOG
,CURRENCIES
,CURRENCIES_DETAILS
,JOURNAL
,JOURNAL_DETAILS
,JOURNAL_DOCUMENTS
,DOCUMENTS
,DOCUMENTS_DETAILS
,RECONCILIATION
,PURCHASE_INVOICES
,PURCHASE_INVOICES_DETAILS
,PURCHASE_INVOICES_VALIDATION
,PURCHASE_INVOICES_ACCOUNTING
,PURCHASE_INVOICES_SHIPMENTS
,PURCHASE_INVOICES_DOCUMENTS
,PURCHASE_INVOICES_ALLOCATION_RULES
,PURCHASE_INVOICES_WORKFLOW
,SALES_INVOICES
,SALES_INVOICES_DETAILS
,SALES_INVOICES_VALIDATION
,SALES_INVOICES_ACCOUNTING
,SALES_INVOICES_DOCUMENTS
,SALES_INVOICES_SHIPMENTS
,SALES_INVOICES_REPORT
,SALES_INVOICES_ALLOCATION_RULES
,SALES_INVOICES_WORKFLOW
,SALARIES
,STOCK_REPORT
,STOCK_MOVEMENTS
,STOCK_MOVEMENTS_DETAILS
,ORDERS
,ORDERS_DETAILS
,ORDERS_VALIDATION
,ORDERS_SHIPMENT
,ORDERS_INVOICES
,ORDERS_EXPENSES
,ORDERS_DOCUMENTS
,ORDERS_WORKFLOW
,ADVANCED_INVOICING
,ADVANCED_INVOICING_GENERATE
,ACCOUNTING_PERIODS
,ACCOUNTING_PERIODS_DETAILS
,ACCOUNTING_PERIODS_LOCK
,ACCOUNTING_PERIODS_OPEN_CLOSE
,GENERAL_LEDGER
,GENERAL_LEDGER_STAFF
,REPORT_TEMPLATE
,ARTICLES
,ARTICLES_DETAILS
,PURCHASE_INVOICES_SCAN
,PURCHASE_INVOICES_SCAN_DETAILS
,RECOGNIZER
,BALANCE
,BALANCE_SHEET
,BALANCE_SHEET_STAFF
,PL_REPORT
,PL_REPORT_STAFF
,CASH_FLOW_REPORT
,MY_TIMESHEETS
,MY_ACCOUNT
,TIME_DETAILS
,TIME_DETAILS_DETAILS
,TIME_DETAILS_WORKFLOW
,TEAM_REVIEW
,BUDGETING
,BUDGETING_DETAILS
,SALARY_CONFIG
,SALARY_CONFIG_DETAILS
,RECEIVABLES
,PAYABLES
,PAYABLES_PAYMENT_FILE
,PDF_TEMPLATES
,PDF_TEMPLATES_DETAILS
,DASHBOARD
,LATE_NOTICES
,MY_PAYROLL
,PAYROLL
,PAYROLL_DETAILS
,PAYROLL_ACCOUNTING
,VAT_REPORT
,ORDER_REPORTS
,ORDER_REPORTS_DETAILS
,RATIOS_REPORT
,VACATIONS
,TRASH_CAN
,USER_GROUPS
,USER_GROUPS_DETAILS
,WORKFLOW
,WORKFLOW_DETAILS
,MY_WORKFLOW_NOTIFICATIONS
,FIXED_ASSETS
,UNASSIGNED
,EXPENSES
,EXPENSES_DETAILS
,EXPENSES_DRAFT
,EXPENSES_DRAFT_DETAILS
,CONTACT_BALANCE_REPORT
,ORGANIZATION_CURRENCIES
,ORGANIZATION_CURRENCIES_DETAILS
, orFINANCIAL_STATEMENTS
. -
permissions[0].viewType
string Values are
NONE
,ALL
,OWNER
, orWORKFLOW
. -
secret
string -
userDbId
integer -
userGroupIds
array[integer] -
username
string
curl \
--request GET 'http://wyzio.app/api-v1/organization/hpb/{ebicsId}' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
{
"clientNumber": "string",
"ebicsServerId": 42,
"ebicsServerName": "string",
"ebicsServerSwiftBic": "string",
"id": 42,
"orderTransmission": true,
"organizationId": 42,
"status": "string",
"userNumber": "string",
"warnings": "string"
}
Prepare filters for get list of payables
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request GET 'http://wyzio.app/api-v1/payable/filters' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
{}
Get list of payroll employees
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request GET 'http://wyzio.app/api-v1/payroll/employee' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
[
42
]
Export gross salary
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request GET 'http://wyzio.app/api-v1/payroll/gross-salary/export' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
Update payroll
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
Path parameters
-
id
integer Required id
curl \
--request PATCH 'http://wyzio.app/api-v1/payroll/update/{id}' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
{
"items": [
{
"error": true,
"errorCode": {
"errorCode": "NO_ERROR",
"errorDetailValues": [
{
"data": "string",
"errorCode": "string",
"fieldName": "string",
"isSevere": true
}
]
},
"freshData": {},
"freshRow": {},
"possibleWorkflows": [
{
"id": 42,
"name": "string"
}
],
"severeError": true
}
]
}
Get total values for list of purchase invoice scans
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request GET 'http://wyzio.app/api-v1/purchase-invoice-scan/total' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
{
"comment": "string",
"currency": "string",
"date": "2025-05-04T09:42:00Z",
"fileId": 42,
"hasWarnings": true,
"id": 42,
"isOrganizationNameIncluded": true,
"isTreatedByManagingOrganization": true,
"organizationId": 42,
"organizationName": "string",
"status": "NEW",
"supplier": "string",
"totalAmount": 42.0,
"warnings": "string"
}
Reconciliation for lines
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request POST 'http://wyzio.app/api-v1/reconciliation-lines/reconcile' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string" \
--data '{"lineIdsToReconcile":[42]}'
# Headers
TARGET-ORGANIZATION-ID: 42
WEAL-TOKEN: string
# Payload
{
"lineIdsToReconcile": [
42
]
}
{
"notReconciledLines": [
42
],
"reconciledLines": [
42
]
}
Get list of registry publication
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request GET 'http://wyzio.app/api-v1/registry/publication' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
{
"id": 42,
"mutation": {
"de": "string",
"en": "string",
"fr": "string",
"it": "string"
},
"publication": "string",
"publicationDate": "2025-05-04T09:42:00Z",
"publicationId": 42,
"uid": "string"
}
Get permissions of list of roles
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
Query parameters
-
roleIds
array[integer] Required roleIds
curl \
--request GET 'http://wyzio.app/api-v1/role/permissions?roleIds=42' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
[
{
"canCreate": true,
"canDelete": true,
"canExport": true,
"canModify": true,
"canView": true,
"deleteType": "NONE",
"id": 42,
"modifyType": "NONE",
"module": "ALL",
"sub0": "ALL",
"sub1": "ALL",
"sub2": "ALL",
"viewType": "NONE"
}
]
Get total values for list of sales invoices using advanced filters
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
curl \
--request GET 'http://wyzio.app/api-v1/sales-invoice/advanced/total' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
{
"addressCity": "string",
"addressClientName": "string",
"addressCountryCode": "string",
"addressRegionCode": "string",
"addressStreet": "string",
"addressStreetPoBox": "string",
"addressToTheAttentionOf": "string",
"addressZipCode": "string",
"bvrGenerationAvailability": true,
"client": "string",
"clientAdvancedInvoicingNote": "string",
"clientBillingEmail": "string",
"clientECorrespondence": true,
"clientEmail": "string",
"clientId": 42,
"comments": "string",
"creatorContactId": 42,
"currency": "string",
"date": "2025-05-04T09:42:00Z",
"description": "string",
"excludedFromVat": true,
"flagsAmount": 42,
"hasComments": true,
"hasWarnings": true,
"id": 42,
"inWorkflow": true,
"invoiceLineAllocationKeys": "string",
"invoiceLineArticleId": 42,
"invoiceLineArticleIdToDisplay": "string",
"invoiceLineDepartmentId": 42,
"invoiceLineDepartmentName": "string",
"invoiceLineDescription": "string",
"invoiceLineDiscount": 42.0,
"invoiceLineNetPrice": 42.0,
"invoiceLineOfficeId": 42,
"invoiceLineOfficeName": "string",
"invoiceLineQuantity": 42.0,
"invoiceLineSaleAccountId": 42,
"invoiceLineSaleAccountNumber": 42,
"invoiceLineTotalNet": 42.0,
"invoiceLineTotalPrice": 42.0,
"invoiceLineVat": 42.0,
"invoiceLineVatPercent": 42.0,
"isInWorkflow": true,
"netAmount": 42.0,
"number": "string",
"organizationId": 42,
"ourContactId": 42,
"ourContactName": "string",
"paymentBankCharges": 42.0,
"paymentBvrNumber": "string",
"paymentBvrQrNumber": "string",
"paymentId": 42,
"paymentLossOnDeptors": 42.0,
"paymentOverdueDate": "2025-05-04T09:42:00Z",
"paymentPaidAmount": 42.0,
"paymentPaidCurrency": "string",
"paymentQrNumber": "string",
"paymentReceivableByAccountId": 42,
"paymentReceivableByAccountNumber": 42,
"paymentRequestedAmount": 42.0,
"paymentRequestedCurrency": "string",
"paymentRequestedDate": "2025-05-04T09:42:00Z",
"paymentValueDate": "2025-05-04T09:42:00Z",
"qrGenerationAvailability": true,
"receivable": 42.0,
"reference": "string",
"referenceAndDescriptionJoined": "string",
"salesInvoiceLineId": 42,
"specificBalanceSheetAccountId": 42,
"status": "OPEN",
"systemValidated": true,
"totalAmount": 42.0,
"validated": true,
"vatCodeEntityId": 42,
"warnings": "string",
"workflowPermissions": "string",
"yourReference": "string"
}
Get list of sub-orders
Headers
-
TARGET-ORGANIZATION-ID
integer(int32) ID of organization, for which the operation must be performed
-
WEAL-TOKEN
string Required API token (can be retrieved from account settings)
Query parameters
-
direction
string Sorting direction
Values are
ASC
orDESC
. Default value isASC
. -
pageNumber
integer(int32) Page Number
Default value is
1
. -
sizePerPage
integer(int32) Size per page
Default value is
60
. -
sortingField
string Field to sort by
curl \
--request GET 'http://wyzio.app/api-v1/sub-orders' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
[
{
"amount": 42.0,
"contactName": "string",
"endDate": "2025-05-04T09:42:00Z",
"id": 42,
"invoicingDate": "2025-05-04T09:42:00Z",
"orderId": "string",
"orderName": "string",
"orderOriginalId": 42,
"orderPeriodicityType": "NONE",
"organizationId": 42,
"startDate": "2025-05-04T09:42:00Z",
"totalAmount": 42.0,
"workflowPermissions": "string"
}
]
Get list of tags
curl \
--request GET 'http://wyzio.app/api-v1/tag/contact' \
--header "TARGET-ORGANIZATION-ID: 42" \
--header "WEAL-TOKEN: string"
[
{
"id": 42,
"name": "string"
}
]