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:
- from httplib2 import Http
- from urllib import urlencode
- access_token = 'AUTHTOKEN HERE'
- h = Http()
- data = {
- 'authtoken' : access_token,
- 'scope' : 'creatorapi',
- 'zc_ownername' : 'reviewpro',
- 'external_id' : 1
- }
- resp, content = h.request("https://creator.zoho.com/api/json/desk-com-cases/desk_cases1/add/", "POST", urlencode(data))
- print content
And I always get the same error message
- {"errorlist":[{"error":[2832,"[application owner] parameter is not available in the request"]}]}
Any ideas how to fix this?
King regards