POST Extra/UpdateClientData
Voeg nieuwe clientdata toe of update een bestaande.
Request Information
URI Parameters
None.
Body Parameters
ApiClientDataName | Description | Type | Additional information |
---|---|---|---|
Key |
Unieke sleutel om de data later te kunnen matchen |
string |
Required |
Value |
Value die moeten worden opgeslagen |
string |
Required |
Request Formats
application/json, text/json
Sample:
{ "Key": "sample string 1", "Value": "sample string 2" }
application/xml, text/xml
Sample:
<ApiClientData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webware.Logic4.Classes.Models"> <Key>sample string 1</Key> <Value>sample string 2</Value> </ApiClientData>
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>