{ "$autoname": "number", "$kuid": "375f8473", "required": false, "type": "integer", "label": [ "number" ] },
Hi, im new to kobotoolbox, im tryng to help a ONG by extracting the kobo forms data and organizing it to run some charts for statistics. Im facing a problem because on the api/v1/data path the questions of the formulary are organized with their NAMES and not their label, the name is not good for the user to understand, so is there a way i can search for the labels with the ID as parameter?Thanks for your time!
--
You received this message because you are subscribed to the Google Groups "KoBo Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kobo-developers+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "KoBo Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kobo-develope...@googlegroups.com.
You see _id being repeated in the submission data? That seems strange. What about _uuid—could you use that?
To unsubscribe from this group and stop receiving emails from it, send an email to kobo-developers+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "KoBo Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kobo-developers+unsubscribe@googlegroups.com.
OK, _uuid is generated by the client and it’s possible to have duplicates. Submissions are only rejected if the entire XML exactly matches something already in the database.
The _id value comes from the primary key of the submission in the Postgres database and should not be repeated. It should also match the URL when you’re viewing a single data submission (e.g. when viewing https://kobocat/api/v1/data/[your-form-id]/[your-submission-id]?format=json, the [your-submission-id] part should match the _id in the submission JSON). Make sure to include the?format=json part when using a web browser, and don’t add a slash after the submission id.
