GET /api/article-property-values
<!--?xml version="1.0" encoding="UTF-8"?--> <article-property-values type="array" page="1" per_page="100" total="2"> <article-property-value> ... </article-property-value> <article-property-value> ... </article-property-value> </article-property-values>
GET /article-property-values?article_id=123
The following parameters can be used:
Parameter | Description |
---|---|
article_id | ID of an article |
article_property_id | ID of an attribute |
value | Value of an attribute |
GET /api/article-property-values/{id}
<!--?xml version="1.0" encoding="UTF-8"?--> <article-property-value> <id type="integer">1</id> <article_id type="integer">2</article_id> <article_property_id type="integer">3</article_property_id> <type>TEXTFIELD</type> <name>Colour</name> <value>blue</value> </article-property-value>
The type of the attribute can be: TEXTFIELD = single line textfield, TEXTAREA = multi line text field, CHECKBOX = Checkbox
POST /api/article-property-values
XML element | Description | Type | Default value | Mandatory | |
---|---|---|---|---|---|
article_id | ID of the article | INT | yes | ||
article_property_id | ID of the property | INT | yes | ||
value | Value of the property | ALNUM | yes |
<article-property-value> <article_id>2</article_id> <article_property_id>3</article_property_id> <value>red</value> </article-property-value>
<!--?xml version="1.0" encoding="UTF-8"?--> <article-property-value> <id type="integer">1</id> <article_id type="integer">2</article_id> <article_property_id type="integer">3</article_property_id> <type>TEXTFIELD</type> <name>Colour</name> <value>red</value> </article-property-value>