Client Properties

List all client properties

GET /api/client-properties
<!--?xml version="1.0" encoding="UTF-8"?-->


        ...


        ...


Get a single client property

GET /api/client-properties/{id}
<!--?xml version="1.0" encoding="UTF-8"?-->

    7
    1
    Premium client
    CHECKBOX

Create client property

POST /api/client-properties
XML elementDescriptionTypeDefault valueMandatory
nameName of the attributeALNUMyes
typeType of the attribute (TEXTFIELD = single line textfield, TEXTAREA = multi line text field, CHECKBOX = Checkbox)ALNUMyes
default_valueDefault valueALNUM
is_nvlShould the default value be used if there is no other value? 1=trueBOOL

    Birthday
    TEXTFIELD

<!--?xml version="1.0" encoding="UTF-8"?-->

    11
    1
    Birthday
    TEXTFIELD

Edit client property

PUT /api/client-properties/{id}

    private address
    TEXTAREA

Delete property

DELETE /api/client-properties/{id}