Adding records to zoho creator with REST API

Adding records to zoho creator with REST API

I'm trying to add a record to one of my forms in zoho creator using the REST API and python.

My code looks like this:
  1. from httplib2 import Http
  2. from urllib import urlencode

  3. access_token = 'AUTHTOKEN HERE'
  4. h = Http()
  5. data = {
  6.     'authtoken' : access_token, 
  7.     'scope' : 'creatorapi', 
  8.     'zc_ownername' : 'reviewpro',
  9.     'external_id' : 1
  10. }

  11. resp, content = h.request("https://creator.zoho.com/api/json/desk-com-cases/desk_cases1/add/", "POST", urlencode(data))
  12. print content

And I always get the same error message
  1. {"errorlist":[{"error":[2832,"[application owner] parameter is not available in the request"]}]}
Any ideas how to fix this?

King regards