사용자 생성하기
Last updated
Last updated
curl -X 'POST' \
'https://openapi.exosp.com/organization/v1/member' \
-H 'accept: application/json' \
-H 'x-exosp-access: YOUR_ACCESS_KEY' \
-H 'x-exosp-secret: YOUR_ACCESS_SECRET'
-d '{
"memberList": [
{
"name": "test12345",
"email": "[email protected]",
"isNotEmailTypeValid": "N",
"departmentFull": "test",
"sendInstallationMail": "Y"
}
]
}'
{
"code": 0,
"message": "success",
"body": {
"total": 1,
"data": [
{
"name": "test12345",
"email": "[email protected]",
"departmentFull": "dev-ys > dev-ysmoon",
"inserted": false,
"mailSent": false,
"errorMessage": "Email already exists"
}
]
}
}