Hello, is it possible to invite users outside the organization, for example use@example.com, via the API?
Regards;
hello ,
Welcome to community
Create user using POST /rest/api/2/user.
{ "name": "XXX", "password": "xxxx", "emailAddress": "@acom", "displayName": "Atlassian", }
Hi @Al Sánz Welcome to Atlassian Community!
Yeah using this API you can invite any user to your Atlassian org.
https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-users/#api-rest-api-2-user-post
curl --request POST \ --url 'https://your-domain.atlassian.net/rest/api/2/user' \ --user 'email@example.com:<api_token>' \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ --data '{ "emailAddress": "mia@atlassian.com" }'
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.