Vettig API
v1
  • v1
  • v2
  1. Onboarding
Vettig API
v1
  • v1
  • v2
  • Factoring
    • Invoices
      • Upload invoice
    • Onboarding
      • Start onboarding
        POST
      • Get onboarding
        GET
    • Events
      • Events
  • OAuth 2.0 Authorize
    POST
  • Schemas
    • Invoice
  1. Onboarding

Start onboarding

POST
/factoring/onboarding
Submit a new customer application for onboarding as a factoring customer. Returns an onboardingId that can be used in subsequent requests to fetch status of the onboarding process.

Request

Authorization
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
Body Params application/json

Example
{
    "name": "Fedelta Finance AB",
    "organisationNumber": "5569455701",
    "email": "faktura@fedelta.se",
    "incomeStatementFile": "SGVsbG8sIEZlZGVsdGEh",
    "balanceSheetFile": "SGVsbG8sIEZlZGVsdGEh",
    "accountsReceivableFile": "SGVsbG8sIEZlZGVsdGEh",
    "contactPerson": {
        "name": "Johan Sakbas",
        "email": "johan.sakbas@fedelta.se",
        "phone": "+46704864172"
    },
    "address": {
        "name": "Fedelta Finance AB",
        "address": "Mariedalsgatan 7",
        "address2": "",
        "postalCode": "50338",
        "city": "Borås"
    },
    "payoutAccount": {
        "bankGiro": "5654-9462",
        "plusGiro": "98765-4",
        "bankAccount": "6123-123456789",
        "defaultPaymentMethod": "BankGiro"
    }
}

Responses

🟢200Onboarding Created successfully
application/json
Body

Example
{
    "onboardingId": "01JN3HRX9EHAVK1RMJDQPATD1Z"
}
🟠400Validation error
Previous
Upload invoice
Next
Get onboarding
Built with