사용자 생성하기
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": "tuser",
"email": "[email protected]",
"isNotEmailTypeValid": "N",
"departmentFull": "test"
}
]
}'
{
"code": 0,
"message": "success",
"body": {
"total": 1,
"data": [
{
"inserted_members": 1
}
]
}
}