python sdk

python sdk

Hi everyone, 

we try to add or change collaborators via die python sdk. We already use it to download our fielddata, so, the main issues are already solved. But I fail when it comes to this line

from qfieldcloud_sdk import sdk
client = sdk.Client(url="https://app.qfield.cloud/api/v1/")
client.login(
            username=username,
            password=passwort,
        )
client.patch_project_collaborators('ff438277-8802-....' , 'juergen....', "editor")

I've also tried this:

client.patch_project_collaborators('ff438277-8802-....' , 'user', "editor", sdk.ProjectCollaboratorRole.EDITOR)

and some other variations but I always get 

An error occurred: Requested "https://app.qfield.cloud/api/v1/collaborators/ff438277-8802-484d-9d68-a3deeb618dd6/user/?limit=20&offset=0" and got "404 Not Found":
{
  "code": "object_not_found",
  "message": "Object not found"
}

What do i do wrong or is there a bug?

greetings