Rest - Admin - Value Lists

From Views API Documentation
Revision as of 10:25, 18 April 2012 by Wikiadmin (talk | contribs) (Created page with "==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 <Bas...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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>