POST api/upsert-presentations
Request Information
URI Parameters
None.
Body Parameters
PresentationVM| Name | Description | Type | Additional information |
|---|---|---|---|
| PresentationId | integer |
None. |
|
| Title | string |
None. |
|
| FullName | string |
None. |
|
| string |
None. |
||
| Document | string |
None. |
|
| Type | string |
None. |
|
| DocURL | string |
None. |
|
| DocViewURL | string |
None. |
|
| DocDownloadURL | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PresentationId": 1,
"Title": "sample string 1",
"FullName": "sample string 2",
"Email": "sample string 3",
"Document": "sample string 4",
"Type": "sample string 5",
"DocURL": "sample string 6",
"DocViewURL": "sample string 7",
"DocDownloadURL": "sample string 8"
}
application/xml, text/xml
Sample:
<PresentationVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Sonalika_Api.Presentation"> <DocDownloadURL>sample string 8</DocDownloadURL> <DocURL>sample string 6</DocURL> <DocViewURL>sample string 7</DocViewURL> <Document>sample string 4</Document> <Email>sample string 3</Email> <FullName>sample string 2</FullName> <PresentationId>1</PresentationId> <Title>sample string 1</Title> <Type>sample string 5</Type> </PresentationVM>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |