I am trying to send message to Linked connections,how can send the message to 10 recipients and avoid the recipient to see the other recipients. what is the property to add to Body Object??
var BODY = {
"recipients": {
"values": [
{
"person":
{
"_path": "/people/~",
}
},
{
"person":
{
"_path": "/people/RJO-_FYNp-",
}
},
{
"person":
{
"_path": "/people/U-GyYIV2ZU",
}
}
]
},
"subject": "Time line Cloud",
"body": "Hi All this is a test message im trying to use LinkedIn API and im so sorry if i bother you.\n http://goo.gl/OUvDP"
}
IN.API.Raw("/people/~/mailbox")
.method("POST")
.body(JSON.stringify(BODY))
.result(function error(e) { alert("Done"); })
.error(function error(e) { alert("Error"); });
There is no BCC setting for the member to member messages via the API at this time. You would need to send multiple messages, each to one person.