Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 13 Next »


Supported methods

GET /BusinessPartner

 

Get a slit of BusinessPartner objects. Should be filtered to avoid fetching huge amounts of data.

 

Search parameters: See http://confluence.dataloy.com/display/VMSINT/Filtering


GET /BusinessPartner/{key}

Get a single BusinessPartner object


POST /BusinessPartner

Insert a new BusinessPartner object

Required fields: businessPartner: businessPartnerCode, businessPartnerType, businessPartnerSort

Unique fields: businessPartner: businessPartnerCode, businessPartnerSort

Linking bank accounts: This can be achieved in a single call as shown here, or in separate calls. For unlinking bank accounts use the unlink call.

Link bank accounts in the same call
{
	...,
	...,
	bankAccounts: [
		12345,
		{ bankAccountNo: 1234567890 }],
}

Links bank account with key 12345 (already existing) to the business partner. And also creates and links a new bank account with account number 1234567890 to the business partner.

 

 

PUT /BusinessPartner/{key}

Update an existing BusinessPartner. Unchanged properties can be skipped.


 

Any field that takes a code can take an ID instead.

Code fields:
businessPartner: businessUnit, baselineTerm, payee, paymentTerms, bankAccountNo, businessPartnerType

 

ID fields

businessPartner:  

 

Boolean fields

businessPartner: isInterCompany, isTotalCommissionPayable

 

Fields without quotes, that are not IDs, are numeric values.

Fields with quotes, that are not code fields, are alphanumeric strings.

 

POST /BusinessPartner/{key}/BankAccount/{bankAccountKey}/link   (new in version 2.0.0)

Links the existing bank account to the given business partner. 

 

POST /BusinessPartner/{key}/BankAccount/{bankAccountKey}/unlink   (new in version 2.0.0)

Unlinks the bank account from the given business partner.

Properties

 

PropertyTypeLengthMandatoryDescriptionComments
businessUnit
/BusinessUnit  Business Unit 
baselineTerm
/BaselineTerm  Default Baseline Term 
payee
/BusinessPartner  Default Invoice Party 
paymentTerms
/PaymentTerms  Default Payment Terms 
bankAccount
/BankAccount  Default Bank Account Payable 
businessPartnerName
String80yesBusiness Partner Name 1 
businessPartnerCode
String12yesBusiness Partner Code 
businessPartnerName2
String80 Business Partner Name 2 
businessPartnerSort
String20yesSort Name. (Short version of Business Partner name). 
businessPartnerLink/BusinessPartner  Linked Business Partnernew
companyRegistrationNo
String24 Company Registration Number 
isInterCompany
Boolean  Inter Company 
isTotalCommissionPayable
Boolean  Deduct 100% Commission on Balance Freight Calculation 
maxAdvancePaymentPercent
Integer  Max Advance Payment Percent. (Defaults to 100% if not set) 
vatNumber
String24 VAT Registration Number 
businessPartnerType
/BusinessPartnerType  Business Partner Type 
companyBankAccount
/BankAccount  Default Bank Account Receivable 
individuals
Array of /Individual  List of Individuals for Business Partner 
addresses
Array of /Address  List of Addresses for Business Partner 
contactInfoArray of /ContactInfo  List of Contact Infos for Business Partner 
codePropertyString   new
bankAccountsArray of /BankAccount  List of Bank Accounts for Business Partnernew


New BusinessPartner example

This example demonstrates how to create a new BusinessPartner object:

POST /BusinessPartner

RequestBody:

{
    "businessUnit": null,
    "baselineTerm": "LOAD",
    "payee": "P200240",
    "paymentTerms": "IMD",
    "bankAccount": null,
    "businessPartnerName": "Spliethoff''s Bevrachtingskantoor B.V.",
    "businessPartnerCode": "123456789-1",
    "businessPartnerName2": "Spliethoff''s Bevrachtingskantoor B.V.",
    "businessPartnerSort": "Spliethoff NL",
    "companyRegistrationNo": "123456789",
    "isInterCompany": false,
    "isTotalCommissionPayable": true,
    "maxAdvancePaymentPercent": 100,
    "vatNumber": "123456879",
    "businessPartnerType": "BB",
    "companyBankAccount": null,
    "individuals": [
        {
            "individualName": "Test Person"
        },
        {
            "individualName": "Test Person2"
        }
    ],
    "remarks": [
        {
            "remarkTitle": "A Remark title",
            "remark": "This is a remark on a Various"
        },
        {
            "remarkTitle": "Another remark title",
            "remark": "This is another remark on a Various.\n\nThis is the line after the blank line."
        }
    ],
    "addresses": [
    {
        "country": "NL",
        "address1": "Street Name 54",
        "address2": "5th floor",
        "address3": "",
        "city": "Amsterdam",
        "postalCode": "1000 AA"
    }
    ],
    "contactInfo": [
        {
            "email": "test@test.com",
            "faxNo": "55555555",
            "mobileNo": "66666666",
            "phoneNo": "77777777",
            "telexNo": "88888888"
        }
    ]
}


 

  • No labels