Add space permission

Sharang Shrivastava July 27, 2022

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

Add new permission to space 

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events