Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Invite user from outside the organization

Al Sánz
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
April 11, 2025

Hello, is it possible to invite users outside the organization, for example use@example.com, via the API?

 

Regards;

2 answers

1 vote
Prachi Bolar
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
April 14, 2025

hello ,

Welcome to community 

Create user using POST /rest/api/2/user.

  1. Send the JSON payload including the password:
    {
        "name": "XXX",
        "password": "xxxx",
        "emailAddress": "@acom",
        "displayName": "Atlassian",
    }
0 votes
Vikrant Yadav
Community Champion
April 11, 2025

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" }'

 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events