Rest - Admin - Value Lists
Jump to navigation
Jump to search
Purpose
Used for maintaining the value lists within Views.
Base URL
http://app.views.coop/api/restful/admin/valuelists
Fetching a Value List
curl --url <Base URL>/<id> -u<username>:<password> -H Content-Type:text/xml -X POST -d "<xml>"
- id - The ID of the Value List
This will return an xml file similar to the following:
<?xml version="1.0" encoding="utf-8"?>
<valuelist id="42">
<item id="7">Red</item>
<item id="18">Green</item>
<item id="19">Blue</item>
<item id="25">Purple</item>
</valuelist>