I try to create a share link using the API
curl --request POST \
--url https://api.lucid.co/documents/<MY DOC ID>/shares/shareLinks \
--header 'Lucid-Api-Version: 1' \
--header 'accept: application/json' \
--header 'authorization: Bearer <MY KEY>' \
--header 'content-type: application/json' \
--data '
{
"role": "editandshare"
}I get
{
"code": "accessForbidden",
"message": "Access to this resource is forbidden",
"requestId": "eb1ab5121051b735"
}I have Team plan. The document was created by me using API https://developer.lucid.co/reference/createorcopyorimportdocument
What is wrong with my request?