POST api/Item/Send
Request Information
URI Parameters
None.
Body Parameters
SendRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| subject | string |
None. |
|
| message | string |
None. |
|
| recipients | string |
None. |
|
| fileName | string |
None. |
|
| scope | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"subject": "sample string 1",
"message": "sample string 2",
"recipients": "sample string 3",
"fileName": "sample string 4",
"scope": "sample string 5"
}
application/xml, text/xml
Sample:
<send xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProjExpressAPI.Models"> <fileName>sample string 4</fileName> <message>sample string 2</message> <recipients>sample string 3</recipients> <scope>sample string 5</scope> <subject>sample string 1</subject> </send>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SendResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| itemId | string |
None. |
|
| uploadUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"itemId": "sample string 1",
"uploadUrl": "sample string 2"
}
application/xml, text/xml
Sample:
<send xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProjExpressAPI.Models"> <itemId>sample string 1</itemId> <uploadUrl>sample string 2</uploadUrl> </send>