POST api/LinkedIn/SendInvitationEmails
Request Information
URI Parameters
None.
Body Parameters
AuthorInvitation| Name | Description | Type | Additional information |
|---|---|---|---|
| emailMessage | string |
None. |
|
| emailSubject | string |
None. |
|
| senderFirstname | string |
Required |
|
| senderLastname | string |
Required |
|
| senderTitle | string |
None. |
|
| senderFirmname | string |
Required |
|
| sendToAll | boolean |
Required |
|
| authors | Collection of AuthorToInvite |
Required |
Request Formats
application/json, text/json
Sample:
{
"emailMessage": "sample string 1",
"emailSubject": "sample string 2",
"senderFirstname": "sample string 3",
"senderLastname": "sample string 4",
"senderTitle": "sample string 5",
"senderFirmname": "sample string 6",
"sendToAll": true,
"authors": [
{
"authorID": 1,
"authorEmail": "sample string 2",
"authorFirstName": "sample string 3",
"authorSlug": "sample string 4"
},
{
"authorID": 1,
"authorEmail": "sample string 2",
"authorFirstName": "sample string 3",
"authorSlug": "sample string 4"
}
]
}
text/html
Sample:
{"emailMessage":"sample string 1","emailSubject":"sample string 2","senderFirstname":"sample string 3","senderLastname":"sample string 4","senderTitle":"sample string 5","senderFirmname":"sample string 6","sendToAll":true,"authors":[{"authorID":1,"authorEmail":"sample string 2","authorFirstName":"sample string 3","authorSlug":"sample string 4"},{"authorID":1,"authorEmail":"sample string 2","authorFirstName":"sample string 3","authorSlug":"sample string 4"}]}
application/xml, text/xml
Sample:
<AuthorInvitation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JDSupraAPI.Models">
<authors>
<AuthorToInvite>
<authorEmail>sample string 2</authorEmail>
<authorFirstName>sample string 3</authorFirstName>
<authorID>1</authorID>
<authorSlug>sample string 4</authorSlug>
</AuthorToInvite>
<AuthorToInvite>
<authorEmail>sample string 2</authorEmail>
<authorFirstName>sample string 3</authorFirstName>
<authorID>1</authorID>
<authorSlug>sample string 4</authorSlug>
</AuthorToInvite>
</authors>
<emailMessage>sample string 1</emailMessage>
<emailSubject>sample string 2</emailSubject>
<sendToAll>true</sendToAll>
<senderFirmname>sample string 6</senderFirmname>
<senderFirstname>sample string 3</senderFirstname>
<senderLastname>sample string 4</senderLastname>
<senderTitle>sample string 5</senderTitle>
</AuthorInvitation>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, text/html, application/xml, text/xml
Sample:
Sample not available.