Change Atlassian account email addresses

 

인수/합병으로 인한 도메인 변경등으로 사용자의 이메일 주소 변경하기.

사전 준비 사항

Account 가 Managed 인지 Unmanaged 인지에 따라 다르므로 https://id.atlassian.com/manage-profile/email 에 연결해서 현재 유형을 확인

Unmanaged Account

 

Managed Account

using Admin API

Admin API 로 사용자 정보 변경 가능

curl --request PUT \ --url 'https://api.atlassian.com/users/{account_id}/manage/email' \ --header 'Authorization: Bearer <access_token>' \ --header 'Content-Type: application/json' \ --data '{ "email": "vmars@marsinvestigations.com" }'

 

Ref