POST api/KeyNotes/AddPdfData
Request Information
URI Parameters
None.
Body Parameters
PdfData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| PageNumber | integer |
None. |
|
| PdfTitle | string |
None. |
|
| SKU | string |
None. |
|
| LegendTextList | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"PageNumber": 2,
"PdfTitle": "sample string 3",
"SKU": "sample string 4",
"LegendTextList": [
"sample string 1",
"sample string 2"
]
}
application/xml, text/xml
Sample:
<PdfData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApplication5.Models">
<Id>1</Id>
<LegendTextList xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</LegendTextList>
<PageNumber>2</PageNumber>
<PdfTitle>sample string 3</PdfTitle>
<SKU>sample string 4</SKU>
</PdfData>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>