Delete accounting period

DELETE /api-v1/accounting-period/{id}

Headers

Path parameters

  • id integer Required

    id

Responses

  • OK

    Hide response attributes Show response attributes object
    • error object

      Additional properties are allowed.

      Hide error attributes Show error attributes object
      • Values are NO_ERROR, NOT_IMPLEMENTED_YET, CONTACT_NOT_FOUND, FIELD_REQUIRED, VALIDATION_ERROR, DUPLICATION_ERROR, UNIQUE_CONSTRAINT_VIOLATION, WRONG_PASSWORD_FORMAT, WRONG_PASSWORD, ACTION_DENIED, NOT_FOUND, EXPECTED_ONE_FILE, UNIQUE_VIOLATION, CONTENT_EMPTY, INVALID_TYPE, CONVERSION_ERROR, FILE_PARSE_EXCEPTION, or IN_USE.

      • errorDetailValues array[object]
        Hide errorDetailValues attributes Show errorDetailValues attributes object
    • valid boolean
  • 400 Bad Request

  • 401 Unauthorized

  • 403 Access Denied

  • 404 Not Found

  • 500 Internal Server Error

DELETE /api-v1/accounting-period/{id}
curl \
 --request DELETE 'http://wyzio.app/api-v1/accounting-period/{id}' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "error": {
    "errorCode": "NO_ERROR",
    "errorDetailValues": [
      {
        "data": "string",
        "errorCode": "string",
        "fieldName": "string",
        "isSevere": true
      }
    ]
  },
  "valid": true
}


















































Headers

Responses

GET /api-v1/article/contact-lang
curl \
 --request GET 'http://wyzio.app/api-v1/article/contact-lang' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
[
  {
    "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
  }
]

Headers

Responses

GET /api-v1/article/contact-lang/overall
curl \
 --request GET 'http://wyzio.app/api-v1/article/contact-lang/overall' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
42




































































Get list billing units

GET /api-v1/billing

Headers

Responses

GET /api-v1/billing
curl \
 --request GET 'http://wyzio.app/api-v1/billing' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
[
  {
    "id": 42,
    "targetContactId": 42,
    "unitId": 42,
    "unitName": "string",
    "unitOrganizationId": 42,
    "unitType": "ORGANIZATION"
  }
]







































































































































































Headers

Query parameters

Responses

GET /api-v1/contact/filter
curl \
 --request GET 'http://wyzio.app/api-v1/contact/filter?phoneExists=true' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
[
  {
    "email": "string",
    "id": 42,
    "name": "string"
  }
]
















Get salary line names for particular organization

GET /api-v1/contact/payslip-table/line-names/{organizationId}

Returns salary line names grouped by calendar year

Headers

Path parameters

Responses

GET /api-v1/contact/payslip-table/line-names/{organizationId}
curl \
 --request GET 'http://wyzio.app/api-v1/contact/payslip-table/line-names/{organizationId}' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "additionalProperty1": [
    {
      "calendarYear": 42,
      "description": {
        "de": "string",
        "en": "string",
        "fr": "string",
        "it": "string"
      },
      "id": 42,
      "isAutomaticallyAdded": true,
      "isHourlyWageLine": true,
      "number": 42,
      "payslipEntityId": 42,
      "systemLine": {
        "id": 42,
        "payslipLineType": "EMPLOYEE_LINE",
        "systemAdjustmentLineNumber": 42
      }
    }
  ],
  "additionalProperty2": [
    {
      "calendarYear": 42,
      "description": {
        "de": "string",
        "en": "string",
        "fr": "string",
        "it": "string"
      },
      "id": 42,
      "isAutomaticallyAdded": true,
      "isHourlyWageLine": true,
      "number": 42,
      "payslipEntityId": 42,
      "systemLine": {
        "id": 42,
        "payslipLineType": "EMPLOYEE_LINE",
        "systemAdjustmentLineNumber": 42
      }
    }
  ]
}








Get list of suppliers in particular organization

GET /api-v1/contact/suppliers/{organizationId}

Headers

Path parameters

Query parameters

Responses

GET /api-v1/contact/suppliers/{organizationId}
curl \
 --request GET 'http://wyzio.app/api-v1/contact/suppliers/{organizationId}' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
[
  {
    "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"
  }
]
















































Get details of deleted contact

GET /api-v1/contact/{type}/{id}/deleted

Headers

Path parameters

  • id integer Required

    id

  • type string Required

    type

    Values are ORGANIZATION or PERSON.

Responses

GET /api-v1/contact/{type}/{id}/deleted
curl \
 --request GET 'http://wyzio.app/api-v1/contact/{type}/{id}/deleted' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "additionalInformation": [
    {
      "id": 42,
      "note": "string",
      "tag": {
        "id": 42,
        "name": "string"
      }
    }
  ],
  "addresses": [
    {
      "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"
    }
  ],
  "archived": 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
    }
  ],
  "client": {
    "PLAccountName": {
      "de": "string",
      "en": "string",
      "fr": "string",
      "it": "string"
    },
    "advancedInvoicingNote": "string",
    "articleDiscounts": [
      {
        "articleId": 42,
        "articleIdName": {
          "de": "string",
          "en": "string",
          "fr": "string",
          "it": "string"
        },
        "discount": 42.0,
        "id": 42
      }
    ],
    "balanceSheetAccountId": 42,
    "balanceSheetAccountName": {
      "de": "string",
      "en": "string",
      "fr": "string",
      "it": "string"
    },
    "billingEmail": "string",
    "businessUnitId": 42,
    "businessUnitName": "string",
    "clientDiscountRate": "string",
    "contactId": 42,
    "creditLimit": "string",
    "currencyId": 42,
    "id": 42,
    "invoiceAddressId": 42,
    "invoiceAddressName": "string",
    "lateNoticeEmail": "string",
    "lateNoticeMargin": "string",
    "orderAddressId": 42,
    "orderAddressName": "string",
    "orderEmail": "string",
    "orderValidity": "string",
    "paymentAccountId": 42,
    "paymentAccountName": {
      "de": "string",
      "en": "string",
      "fr": "string",
      "it": "string"
    },
    "paymentTerms": "string",
    "placcountId": 42,
    "placcountName": {
      "de": "string",
      "en": "string",
      "fr": "string",
      "it": "string"
    },
    "vatNumber": "string",
    "vatRateId": 42,
    "vatTypeCodeId": 42
  },
  "communications": [
    {
      "date": "string",
      "description": "string",
      "externalContactId": 42,
      "externalContactIdName": "string",
      "externalContactName": "string",
      "id": 42,
      "longDescription": "string",
      "ourContactId": 42,
      "ourContactName": "string",
      "type": "PHONE_CALL"
    }
  ],
  "contactId": 42,
  "contactType": "ORGANIZATION",
  "defaultLanguage": "EN",
  "defaultModule": "ALL",
  "ecorrespondence": true,
  "email": "string",
  "externalId": "string",
  "fax": "string",
  "groupRoles": [
    {
      "id": 42,
      "name": "string",
      "roleType": "ORGANIZATION"
    }
  ],
  "id": 42,
  "isCustomer": true,
  "isStaff": true,
  "isUser": true,
  "isVendor": true,
  "mobile": "string",
  "organizationId": 42,
  "organizationUsesTimesheets": true,
  "permissionsTree": [
    {
      "availableRoles": [
        {
          "description": "string",
          "id": 42,
          "isDefault": true,
          "name": "string",
          "realId": 42,
          "roleType": "ORGANIZATION",
          "type": "ROLE"
        }
      ],
      "globalRoles": [
        {
          "id": 42,
          "isDefault": true,
          "name": "string",
          "type": "ROLE"
        }
      ],
      "id": 42,
      "isActive": true,
      "name": "string",
      "organizationId": 42,
      "parentOrganizationId": 42,
      "roles": [
        {
          "id": 42,
          "isDefault": true,
          "name": "string",
          "type": "ROLE"
        }
      ]
    }
  ],
  "phone": "string",
  "relatedContactIds": [
    42
  ],
  "relatedOrganizationContactIds": [
    42
  ],
  "staff": {
    "avsNumber": "string",
    "contactId": 42,
    "contractType": "OPEN_ENDED",
    "costCalculationType": "AUTOMATIC",
    "documentExpiryDate": "string",
    "documentNumber": "string",
    "employeeDocumentType": "PASSPORT",
    "employmentEndDate": "string",
    "employmentStartDate": "string",
    "enforceTimesheets": true,
    "familyMembers": [
      {
        "birthDate": "string",
        "familyMemberType": "SPOUSE",
        "firstName": "string",
        "id": 42,
        "lastName": "string",
        "nationalityCountryId": 42,
        "staffId": 42
      }
    ],
    "id": 42,
    "isSpouseWorking": true,
    "jobTitle": "string",
    "maritalDate": "string",
    "maritalType": "SINGLE",
    "pdfPassword": "string",
    "permitExpiryDate": "string",
    "staffPayslips": [
      {
        "baseSalaryLine": {
          "employeeAmount": "string",
          "employerAmount": "string",
          "id": 42,
          "payslipLineEntityId": 42,
          "payslipValueSplitType": "EMPLOYEE",
          "staffPayslipEntityId": 42
        },
        "calendarYear": 42,
        "employeeGroups": [
          {
            "departmentId": 42,
            "departmentName": "string",
            "groupType": "ADMIN",
            "id": 42,
            "officeId": 42,
            "officeName": "string",
            "percentage": "string",
            "staffPayslipEntityId": 42
          }
        ],
        "employmentEndDate": "string",
        "employmentStartDate": "string",
        "id": 42,
        "isCanteenMealsOrMealsVouchers": true,
        "isFreeTransportToWork": true,
        "payslipTableLines": [
          {
            "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"
          }
        ],
        "salaryCertificateNotes": "string",
        "salaryInfo": {
          "capacity": "string",
          "defaultPaymentAccountId": 42,
          "defaultPaymentAccountName": {
            "de": "string",
            "en": "string",
            "fr": "string",
            "it": "string"
          },
          "hasOnlyOneJob": true,
          "hourlyRate": "string",
          "id": 42,
          "isSourceTaxEnabled": true,
          "numberOfVacationDays": "string",
          "organizationEmployeeGroupId": 42,
          "organizationId": 42,
          "payableToBankId": 42,
          "payrollCurrencyId": 42,
          "regionId": 42,
          "salaryType": "MONTHLY",
          "sourceTaxCode": "string",
          "staffId": 42,
          "staffPayslipEntityId": 42,
          "totalOccupancy": "string",
          "workOccupancy": "string"
        },
        "staffId": 42,
        "systemLine": {
          "bracket": "string",
          "id": 42,
          "localizations": {
            "de": "string",
            "en": "string",
            "fr": "string",
            "id": 42,
            "it": "string"
          },
          "number": 42,
          "payslipLineEntityId": 42,
          "rate": "string",
          "staffPayslipEntityId": 42
        }
      }
    ],
    "timesheetPricingLines": [
      {
        "clientId": 42,
        "clientName": "string",
        "endDate": "string",
        "id": 42,
        "orderId": 42,
        "rate": "string",
        "staffId": 42,
        "startDate": "string",
        "task": {
          "archived": true,
          "id": 42,
          "name": "string",
          "organizationId": 42,
          "rate": 42.0
        }
      }
    ],
    "timesheetsCost": "string",
    "workPermit": {
      "countryId": 42,
      "id": 42,
      "name": {
        "de": "string",
        "en": "string",
        "fr": "string",
        "it": "string"
      },
      "nameId": 42
    }
  },
  "supplier": {
    "PLAccountName": {
      "de": "string",
      "en": "string",
      "fr": "string",
      "it": "string"
    },
    "balanceSheetAccountId": 42,
    "balanceSheetAccountName": {
      "de": "string",
      "en": "string",
      "fr": "string",
      "it": "string"
    },
    "businessUnitId": 42,
    "businessUnitName": "string",
    "contactId": 42,
    "currencyId": 42,
    "feeSplitType": "CHARGED_TO_THE_BENEFICIARY",
    "id": 42,
    "paymentAccountId": 42,
    "paymentAccountName": {
      "de": "string",
      "en": "string",
      "fr": "string",
      "it": "string"
    },
    "paymentTerms": "string",
    "placcountId": 42,
    "placcountName": {
      "de": "string",
      "en": "string",
      "fr": "string",
      "it": "string"
    },
    "vatNumber": "string",
    "vatRateId": 42,
    "vatType": "NO_VAT",
    "vatTypeCodeId": 42
  },
  "tags": [
    {
      "id": 42,
      "name": "string"
    }
  ],
  "userGroups": [
    {
      "description": "string",
      "globalRoles": [
        {
          "id": 42,
          "name": "string",
          "roleType": "ORGANIZATION"
        }
      ],
      "groupIds": [
        42
      ],
      "id": 42,
      "isAdvanced": true,
      "name": "string",
      "roles": [
        {
          "id": 42,
          "name": "string",
          "roleType": "ORGANIZATION"
        }
      ],
      "rule": "string",
      "type": "GROUP",
      "userIds": [
        42
      ]
    }
  ],
  "warnings": "string",
  "webSite": "string"
}






















































Get details of currency exchange rate

GET /api-v1/currency-exchange/{id}

Headers

Path parameters

  • id integer Required

    id

Responses

GET /api-v1/currency-exchange/{id}
curl \
 --request GET 'http://wyzio.app/api-v1/currency-exchange/{id}' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "currencyFrom": 42,
  "currencyTo": 42,
  "date": "string",
  "id": 42,
  "rate": 42.0
}

































Get list of contacts by criteria

GET /api-v1/document/contacts

Headers

Query parameters

Responses

GET /api-v1/document/contacts
curl \
 --request GET 'http://wyzio.app/api-v1/document/contacts' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
[
  {
    "email": "string",
    "id": 42,
    "name": "string"
  }
]



















































































Get list of expenses

GET /api-v1/expenses

Headers

Responses

GET /api-v1/expenses
curl \
 --request GET 'http://wyzio.app/api-v1/expenses' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
[
  {
    "companyCurrencyTotalAmount": 42.0,
    "currency": "string",
    "currencyNetAmount": 42.0,
    "currencyTotalAmount": 42.0,
    "currencyVatAmount": 42.0,
    "date": "2025-05-04T09:42:00Z",
    "description": "string",
    "employeeId": 42,
    "employeeName": "string",
    "id": 42,
    "merchant": "string",
    "organizationId": 42,
    "reBill": true,
    "receipt": true,
    "status": "UNSUBMITTED"
  }
]
























Approve an expenses

POST /api-v1/expenses/batch/approve

Headers

Body Required

ids

array[integer] array[integer]

Responses

POST /api-v1/expenses/batch/approve
curl \
 --request POST 'http://wyzio.app/api-v1/expenses/batch/approve' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string" \
 --data '[42]'
Request examples
# Headers
TARGET-ORGANIZATION-ID: 42
WEAL-TOKEN: string

# Payload
[
  42
]





































































Get fixed assets report

GET /api-v1/fixed-assets

Headers

Query parameters

Responses

GET /api-v1/fixed-assets
curl \
 --request GET 'http://wyzio.app/api-v1/fixed-assets' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
[
  {
    "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
  }
]




Export fixed assets

GET /api-v1/fixed-assets/report

Headers

Responses

  • OK

    Hide response attributes Show response attributes object
    • empty boolean
    • model object

      Additional properties are allowed.

    • modelMap object
      Hide modelMap attribute Show modelMap attribute object
      • * object Additional properties

        Additional properties are allowed.

    • reference boolean
    • status string
    • view object

      Additional properties are allowed.

      Hide view attribute Show view attribute object
    • viewName string
  • 400 Bad Request

  • 401 Unauthorized

  • 403 Access Denied

  • 404 Not Found

  • 500 Internal Server Error

GET /api-v1/fixed-assets/report
curl \
 --request GET 'http://wyzio.app/api-v1/fixed-assets/report?format=string' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "empty": true,
  "model": {},
  "modelMap": {
    "additionalProperty1": {},
    "additionalProperty2": {}
  },
  "reference": true,
  "status": "100 CONTINUE",
  "view": {
    "contentType": "string"
  },
  "viewName": "string"
}







































Get details of role

GET /api-v1/global/role/{id}

Headers

Path parameters

  • id integer Required

    id

Responses

  • OK

    Hide response attributes Show response attributes object
    • global boolean
    • id integer
    • isDefault boolean
    • name string
    • type string Discriminator

      Values are ROLE or SUPER_ROLE.

    • permissions array[object]
      Hide permissions attributes Show permissions attributes object
      • canCreate boolean
      • canDelete boolean
      • canExport boolean
      • canModify boolean
      • canView boolean
      • Values are NONE, ALL, OWNER, or WORKFLOW.

      • id integer
      • Values are NONE, ALL, OWNER, or WORKFLOW.

      • module string
      • sub0 string
      • sub1 string
      • sub2 string
      • viewType string

        Values are NONE, ALL, OWNER, or WORKFLOW.

  • 400 Bad Request

  • 401 Unauthorized

  • 403 Access Denied

  • 404 Not Found

  • 500 Internal Server Error

GET /api-v1/global/role/{id}
curl \
 --request GET 'http://wyzio.app/api-v1/global/role/{id}' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "description": "string",
  "global": true,
  "id": 42,
  "isDefault": true,
  "name": "string",
  "type": "ROLE",
  "permissions": [
    {
      "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"
    }
  ]
}



















































Export list of journal entries

GET /api-v1/journal/report

Headers

Responses

  • OK

    Hide response attributes Show response attributes object
    • empty boolean
    • model object

      Additional properties are allowed.

    • modelMap object
      Hide modelMap attribute Show modelMap attribute object
      • * object Additional properties

        Additional properties are allowed.

    • reference boolean
    • status string
    • view object

      Additional properties are allowed.

      Hide view attribute Show view attribute object
    • viewName string
  • 400 Bad Request

  • 401 Unauthorized

  • 403 Access Denied

  • 404 Not Found

  • 500 Internal Server Error

GET /api-v1/journal/report
curl \
 --request GET 'http://wyzio.app/api-v1/journal/report?format=string' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "empty": true,
  "model": {},
  "modelMap": {
    "additionalProperty1": {},
    "additionalProperty2": {}
  },
  "reference": true,
  "status": "100 CONTINUE",
  "view": {
    "contentType": "string"
  },
  "viewName": "string"
}

Export journal entry

GET /api-v1/journal/report/{id}

Headers

Path parameters

  • id integer Required

    id

Query parameters

Responses

  • OK

    Hide response attributes Show response attributes object
    • empty boolean
    • model object

      Additional properties are allowed.

    • modelMap object
      Hide modelMap attribute Show modelMap attribute object
      • * object Additional properties

        Additional properties are allowed.

    • reference boolean
    • status string
    • view object

      Additional properties are allowed.

      Hide view attribute Show view attribute object
    • viewName string
  • 400 Bad Request

  • 401 Unauthorized

  • 403 Access Denied

  • 404 Not Found

  • 500 Internal Server Error

GET /api-v1/journal/report/{id}
curl \
 --request GET 'http://wyzio.app/api-v1/journal/report/{id}?format=string' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "empty": true,
  "model": {},
  "modelMap": {
    "additionalProperty1": {},
    "additionalProperty2": {}
  },
  "reference": true,
  "status": "100 CONTINUE",
  "view": {
    "contentType": "string"
  },
  "viewName": "string"
}






















































Export general ledger

GET /api-v1/ledger/advanced/report

Headers

Responses

  • OK

    Hide response attributes Show response attributes object
    • empty boolean
    • model object

      Additional properties are allowed.

    • modelMap object
      Hide modelMap attribute Show modelMap attribute object
      • * object Additional properties

        Additional properties are allowed.

    • reference boolean
    • status string
    • view object

      Additional properties are allowed.

      Hide view attribute Show view attribute object
    • viewName string
  • 400 Bad Request

  • 401 Unauthorized

  • 403 Access Denied

  • 404 Not Found

  • 500 Internal Server Error

GET /api-v1/ledger/advanced/report
curl \
 --request GET 'http://wyzio.app/api-v1/ledger/advanced/report?format=string' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "empty": true,
  "model": {},
  "modelMap": {
    "additionalProperty1": {},
    "additionalProperty2": {}
  },
  "reference": true,
  "status": "100 CONTINUE",
  "view": {
    "contentType": "string"
  },
  "viewName": "string"
}


































Get VAT rates for amounts for purchase invoices

GET /api-v1/list/amounts/vat/rate

Headers

Query parameters

Responses

GET /api-v1/list/amounts/vat/rate
curl \
 --request GET 'http://wyzio.app/api-v1/list/amounts/vat/rate?date=string' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
[
  {
    "effectiveDate": "string",
    "endDate": "string",
    "id": 42,
    "percent": 42.0,
    "startDate": "string",
    "title": {
      "de": "string",
      "en": "string",
      "fr": "string",
      "it": "string"
    }
  }
]




















Get licence types

GET /api-v1/list/app/licence-types

Returns a map {module: translation}

Headers

Responses

  • OK

    Hide response attribute Show response attribute object
    • * string Additional properties
  • 400 Bad Request

  • 401 Unauthorized

  • 403 Access Denied

  • 404 Not Found

  • 500 Internal Server Error

GET /api-v1/list/app/licence-types
curl \
 --request GET 'http://wyzio.app/api-v1/list/app/licence-types' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "additionalProperty1": "string",
  "additionalProperty2": "string"
}












Get list of permissions

GET /api-v1/list/app/permissions

Headers

Responses

  • OK

    Hide response attributes Show response attributes object
    • canCreate boolean
    • canDelete boolean
    • canExport boolean
    • canModify boolean
    • canView boolean
    • Values are NONE, ALL, OWNER, or WORKFLOW.

    • id integer
    • Values are NONE, ALL, OWNER, or WORKFLOW.

    • module string
    • sub0 string
    • sub1 string
    • sub2 string
    • viewType string

      Values are NONE, ALL, OWNER, or WORKFLOW.

  • 400 Bad Request

  • 401 Unauthorized

  • 403 Access Denied

  • 404 Not Found

  • 500 Internal Server Error

GET /api-v1/list/app/permissions
curl \
 --request GET 'http://wyzio.app/api-v1/list/app/permissions' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
[
  {
    "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 countries

GET /api-v1/list/countries

Headers

Responses

GET /api-v1/list/countries
curl \
 --request GET 'http://wyzio.app/api-v1/list/countries' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
[
  {
    "code2": "string",
    "code3": "string",
    "id": 42,
    "name": {
      "de": "string",
      "en": "string",
      "fr": "string",
      "it": "string"
    }
  }
]




















Get expense payment types

GET /api-v1/list/expense-payment-types

Returns a map {type: translation}

Headers

Responses

  • OK

    Hide response attribute Show response attribute object
    • * string Additional properties
  • 400 Bad Request

  • 401 Unauthorized

  • 403 Access Denied

  • 404 Not Found

  • 500 Internal Server Error

GET /api-v1/list/expense-payment-types
curl \
 --request GET 'http://wyzio.app/api-v1/list/expense-payment-types' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "additionalProperty1": "string",
  "additionalProperty2": "string"
}

Get expense statuses

GET /api-v1/list/expense-statuses

Returns a map {status: translation}

Headers

Responses

  • OK

    Hide response attribute Show response attribute object
    • * string Additional properties
  • 400 Bad Request

  • 401 Unauthorized

  • 403 Access Denied

  • 404 Not Found

  • 500 Internal Server Error

GET /api-v1/list/expense-statuses
curl \
 --request GET 'http://wyzio.app/api-v1/list/expense-statuses' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "additionalProperty1": "string",
  "additionalProperty2": "string"
}
















Get invoice scan payment types

GET /api-v1/list/invoice-scan/payment-type

Returns a map {type: translation}

Headers

Responses

  • OK

    Hide response attribute Show response attribute object
    • * string Additional properties
  • 400 Bad Request

  • 401 Unauthorized

  • 403 Access Denied

  • 404 Not Found

  • 500 Internal Server Error

GET /api-v1/list/invoice-scan/payment-type
curl \
 --request GET 'http://wyzio.app/api-v1/list/invoice-scan/payment-type' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "additionalProperty1": "string",
  "additionalProperty2": "string"
}

Get invoice scan statuses

GET /api-v1/list/invoice-scan/status

Returns a map {status: translation}

Headers

Responses

  • OK

    Hide response attribute Show response attribute object
    • * string Additional properties
  • 400 Bad Request

  • 401 Unauthorized

  • 403 Access Denied

  • 404 Not Found

  • 500 Internal Server Error

GET /api-v1/list/invoice-scan/status
curl \
 --request GET 'http://wyzio.app/api-v1/list/invoice-scan/status' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "additionalProperty1": "string",
  "additionalProperty2": "string"
}




















































































Get purchase invoice journal entry types

GET /api-v1/list/purchase-invoice-journal-entry-type

Returns a map {type: translation}

Headers

Responses

  • OK

    Hide response attribute Show response attribute object
    • * string Additional properties
  • 400 Bad Request

  • 401 Unauthorized

  • 403 Access Denied

  • 404 Not Found

  • 500 Internal Server Error

GET /api-v1/list/purchase-invoice-journal-entry-type
curl \
 --request GET 'http://wyzio.app/api-v1/list/purchase-invoice-journal-entry-type' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "additionalProperty1": "string",
  "additionalProperty2": "string"
}












Get reconciliation directions

GET /api-v1/list/reconciliation/directions

Returns a map {direction: translation}

Headers

Responses

  • OK

    Hide response attribute Show response attribute object
    • * string Additional properties
  • 400 Bad Request

  • 401 Unauthorized

  • 403 Access Denied

  • 404 Not Found

  • 500 Internal Server Error

GET /api-v1/list/reconciliation/directions
curl \
 --request GET 'http://wyzio.app/api-v1/list/reconciliation/directions' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "additionalProperty1": "string",
  "additionalProperty2": "string"
}






































































































































Submit expenses for approval

POST /api-v1/my-expenses/batch/submit-for-approval

Headers

Body Required

ids

array[integer] array[integer]

Responses

POST /api-v1/my-expenses/batch/submit-for-approval
curl \
 --request POST 'http://wyzio.app/api-v1/my-expenses/batch/submit-for-approval' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string" \
 --data '[42]'
Request examples
# Headers
TARGET-ORGANIZATION-ID: 42
WEAL-TOKEN: string

# Payload
[
  42
]
























Delete expense

DELETE /api-v1/my-expenses/{id}

Headers

Path parameters

  • id integer Required

    id

Responses

  • OK

    Hide response attributes Show response attributes object
    • error object

      Additional properties are allowed.

      Hide error attributes Show error attributes object
      • Values are NO_ERROR, NOT_IMPLEMENTED_YET, CONTACT_NOT_FOUND, FIELD_REQUIRED, VALIDATION_ERROR, DUPLICATION_ERROR, UNIQUE_CONSTRAINT_VIOLATION, WRONG_PASSWORD_FORMAT, WRONG_PASSWORD, ACTION_DENIED, NOT_FOUND, EXPECTED_ONE_FILE, UNIQUE_VIOLATION, CONTENT_EMPTY, INVALID_TYPE, CONVERSION_ERROR, FILE_PARSE_EXCEPTION, or IN_USE.

      • errorDetailValues array[object]
        Hide errorDetailValues attributes Show errorDetailValues attributes object
    • valid boolean
  • 400 Bad Request

  • 401 Unauthorized

  • 403 Access Denied

  • 404 Not Found

  • 500 Internal Server Error

DELETE /api-v1/my-expenses/{id}
curl \
 --request DELETE 'http://wyzio.app/api-v1/my-expenses/{id}' \
 --header "TARGET-ORGANIZATION-ID: 42" \
 --header "WEAL-TOKEN: string"
Response examples (200)
{
  "error": {
    "errorCode": "NO_ERROR",
    "errorDetailValues": [
      {
        "data": "string",
        "errorCode": "string",
        "fieldName": "string",
        "isSevere": true
      }
    ]
  },
  "valid": true
}









My timesheet