POST Relations/AddUpdateCustomerThirdPartyExternalIdentifier
Debiteur derde partij externe identifier toevoegen of updaten
Request Information
URI Parameters
None.
Body Parameters
CustomerThirdPartyExternalIdentiferName | Description | Type | Additional information |
---|---|---|---|
DebtorId | integer |
Required Range: inclusive between 1 and 2147483647 |
|
TypeId | integer |
Required Range: inclusive between 1 and 2147483647 |
|
Value | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "DebtorId": 1, "TypeId": 2, "Value": "sample string 3" }
application/xml, text/xml
Sample:
<CustomerThirdPartyExternalIdentifer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webware.Logic4.Classes.Models"> <TypeId>2</TypeId> <Value>sample string 3</Value> <DebtorId>1</DebtorId> </CustomerThirdPartyExternalIdentifer>
Response Information
Resource Description
Logic4ResponseOfBooleanName | Description | Type | Additional information |
---|---|---|---|
Value | boolean |
None. |
|
ValidationMessages |
Eventuele foutmeldingen |
Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Value": true, "ValidationMessages": [ "sample string 1", "sample string 2" ] }
application/xml, text/xml
Sample:
<Logic4ResponseOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webware.Logic4.Classes.ResponseModels"> <ValidationMessages xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </ValidationMessages> <Value>true</Value> </Logic4ResponseOfboolean>