← Back to team overview

dhis2-devs team mailing list archive

Adding a dataset to an OrgUnit using the Web API (2.19)

 

Hi Morten,

I am trying to add a dataset to one org. unit using the Web API. So far, I
am using the following API call:

curl -X PATCH -d @c:\dataset.json -H "Content-Type: application/json" -u
myuser:mypass
http://localhost:8080/dhis/api/organisationUnits/Oe3de1oAjGV/dataSets

The payload is:

{"dataSets":[
{
"id": "Paf2o4Yx79Z",
"created": "2015-04-23T10:16:44.809+0000",
"name": "Vaccination Staff 3",
"lastUpdated": "2015-09-15T09:58:06.990+0000",
"code": "DS_VST_3",
"href": "http://localhost:8080/dhis/api/dataSets/Paf2o4Yx79Z";
}
]}

I get a succesful message:

{"status":"SUCCESS","importCount":{"imported":0,"updated":1,"ignored":0,"deleted":0},"type":"OrganisationUnit","lastImported":"Oe3de1oAjGV"}

But nothing really happens.

Any ideas? I am using the 2.19 version

Thanks
Jose

Follow ups