=== modified file 'src/docbkx/en/dhis2_user_man_web_api.xml' --- src/docbkx/en/dhis2_user_man_web_api.xml 2014-06-14 18:06:52 +0000 +++ src/docbkx/en/dhis2_user_man_web_api.xml 2014-06-16 20:02:18 +0000 @@ -776,7 +776,7 @@
- Sending individual data values + Sending, reading and deleting individual data values This example will show how to send individual data values to be saved in a request. This can be achieved by sending a POST request to the dataValues resource: @@ -855,9 +855,12 @@ together with the identifier(s) of the attribute option(s) which the value represents within the combination. An example looks like this: curl "http://apps.dhis2.org/demo/api/dataValues?de=s46m5MS0hxu&ou=DiszpKrYNg8&pe=201308&cc=dzjKKQq0cSO&cp=wbrDrL2aYEc;btOyqprQ9e8&value=26" -X POST -u admin:district -v + You can retrieve a data value with a request using the GET method. The value, comment and followUp params are not applicable in this + regard: + curl "http://apps.dhis2.org/demo/api/dataValues?de=s46m5MS0hxu&pe=201301&ou=DiszpKrYNg8&co=Prlt0C1RF0s" -X GET -u admin:district -v You can delete a data value with a request using the DELETE method. You can retrieve a data value with a request using the - GET method. + >DELETE method.
Reading data values