POST /bulk-create-user/:id?
id
is provided. If a segment ID is supplied, users are added to that specific segment; otherwise, users are created within the Idea Manager's general user base.id
(optional, integer) - The ID of the segment to add users to. If not provided, users will be created in the Idea Manager.Content-Type
: application/json
[
{
"name": "Aisha Khan",
"email": "aisha.khan@shorterloop.com"
},
{
"name": "Ravi Singh",
"email": "ravi.singh@shorterloop.com"
},
{
"name": "Neha Gupta",
"email": "neha.gupta@shorterloop.com"
},
{
"name": "Karan Joshi",
"email": "karan.joshi@shorterloop.com"
},
{
"name": "Meera Patel",
"email": "meera.patel@shorterloop.com"
}
]
curl --location --request POST 'https://api.shorterloop.com/api/v2/idea-manager/bulk-create-user/19' \
--header 'Authorization;' \
--header 'initiativeId;' \
--header 'Content-Type: application/json' \
--data-raw '[
{
"name": "Aisha Khan",
"email": "aisha.khan@shorterloop.com"
},
{
"name": "Ravi Singh",
"email": "ravi.singh@shorterloop.com"
},
{
"name": "Neha Gupta",
"email": "neha.gupta@shorterloop.com"
},
{
"name": "Karan Joshi",
"email": "karan.joshi@shorterloop.com"
},
{
"name": "Meera Patel",
"email": "meera.patel@shorterloop.com"
}
]'
{
"success": true,
"message": "Users copied to segment successfully",
"data": {
"inviteResults": [
{
"success": true,
"user": {
"id": 1692,
"email": "rahul.sharma1@shorterloop.com",
"role": "idm_member",
"updatedAt": "2024-10-29T00:51:59.812Z",
"createdAt": "2024-10-29T00:51:59.812Z"
}
},
{
"success": true,
"user": {
"id": 1693,
"email": "pooja.mehta1@shorterloop.com",
"role": "idm_member",
"updatedAt": "2024-10-29T00:51:59.896Z",
"createdAt": "2024-10-29T00:51:59.896Z"
}
},
{
"success": true,
"user": {
"id": 1694,
"email": "amit.verma2@shorterloop.com",
"role": "idm_member",
"updatedAt": "2024-10-29T00:51:59.913Z",
"createdAt": "2024-10-29T00:51:59.913Z"
}
},
{
"success": true,
"user": {
"id": 1695,
"email": "drawat+28oct1@shorterloop.com",
"role": "idm_member",
"updatedAt": "2024-10-29T00:51:59.930Z",
"createdAt": "2024-10-29T00:51:59.930Z"
}
},
{
"success": true,
"user": {
"id": 1696,
"email": "drawat+28oct@shorterloop.com",
"role": "idm_member",
"updatedAt": "2024-10-29T00:51:59.945Z",
"createdAt": "2024-10-29T00:51:59.945Z"
}
}
],
"segmentCount": 0
}
}