Hi everybody , I am using confluence REST api for adding space permission using python.
url = "https://<url>/wiki/rest/api/space/<spaceKey>/permission"
headers = {
"Accept": "application/json",
"Content-Type": "application/json",
"Authorization": "Bearer <token>"
}
payload = json.dumps( {
"subject": {
"type": "group",
"identifier": "confluence-users"
},
"operation": {
"key": "create",
"target": "page"
},
} )
response = requests.request(
"POST",
url,
data=payload,
headers=headers
)
response status code is 200 , but the api call is not adding the required permission to this group. Can anybody help find out the error here?
Confluence REST API reference
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.