Using the Python Syncano v4 library, I tried to do the following:
book_class = instance.classes.create(
name='book',
schema='[{"name": "title", "type": "string"}, {"name": "author", "type": "string"}]’
)
And got this error:
syncano.exceptions.SyncanoRequestError: 403 You do not have permission to perform this action.
I am currently using an instance API key - what am I doing wrong?
source
share