GET /api/client-properties
<!--?xml version="1.0" encoding="UTF-8"?--> <client-properties type="array" page="1" per_page="100" total="2"> <client-property> ... </client-property> <client-property> ... </client-property> </client-properties>
GET /api/client-properties/{id}
<!--?xml version="1.0" encoding="UTF-8"?--> <client-property> <id type="integer">7</id> <account_id type="integer">1</account_id> <name>Premium-Kunde</name> <type>CHECKBOX</type> </client-property>
POST /api/client-properties
XML-Element | Beschreibung | Typ | Default-Wert | Pflichtfeld |
---|---|---|---|---|
name | Name des Attributs | ALNUM | ja | |
type | Typ des Attributs (TEXTFIELD = einzeiliges Textfeld, TEXTAREA = mehrzeiliges Textfeld, CHECKBOX = Checkbox) | ALNUM | ja | |
default_value | Standardwert | ALNUM | ||
is_nvl | Soll der Standardwert verwendet werden, wenn kein anderer Wert gesetzt wurde? 1=ja | BOOL |
<client-property> <name>Geburtstag</name> <type>TEXTFIELD</type> </client-property>
<!--?xml version="1.0" encoding="UTF-8"?--> <client-property> <id type="integer">11</id> <account_id type="integer">1</account_id> <name>Geburtstag</name> <type>TEXTFIELD</type> </client-property>
PUT /api/client-properties/{id}
<client-property> <name>private Anschrift</name> <type>TEXTAREA</type> </client-property>
DELETE /api/client-properties/{id}