def envoyer_kobo(donnees):
if not KOBO_TOKEN or not KOBO_ASSET_UUID:
return resultat_erreur("Kobo non configuré", service="kobo")
url = f"{KOBO_URL}/api/v2/assets/{KOBO_ASSET_UUID}/submissions/"
headers = {
"Authorization": f"Token {KOBO_TOKEN}",
"Content-Type": "application/json",
"Accept": "application/json"
}
Hello guys,
Please help me, I’m trying to find out if there’s a new way to submit data via API 2 or OpenRosa. I’ve tried several times, but I keep getting the same result: 404 error (resource not found). How can I submit data via the API in Kobotoolbox right now? which URL do i have to use ?
Thank you!
