Im using confluence cloud and i try to create new User group
i get the Authorization token from https://id.atlassian.com/manage-profile/security/api-tokens <email>:API_TOKEN coded base 64
and i add all scopes to atlassian-connect.js
const bodyData2 = {
"name": "RS-managers"
};
AP.request({ url: "/rest/api/group",
type: 'PUT',
contentType: "application/json",
Accept: 'application/json',
Authorization: "bWJvdWF6emEuc3BlY3RydW1ncm91cGVAZ21haWwuY29tOnd6UGhpRXBWd1JTN0E0aDhrRVRyODhGRg==",
data: JSON.stringify(bodyData2),
success: function (data) {
console.log(data)
}
}).catch(function (error) {
console.log(error)
});
Hello @Mehdi
You code has the same mistake in it this other question you asked. You're not providing the API version number in the request URL:
The URIs for resources have this structure:
https://<site-url>/rest/api/3/<resource-name>
For example,
https://your-domain.atlassian.net/rest/api/3/issue/DEMO-1
@Mehdi - Could you try using POST method? PUT is generally used for update.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.