POST api/GetFields
Request Information
URI Parameters
None.
Body Parameters
GetFieldsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| FileBytes | Collection of byte |
None. |
Request Formats
application/json, text/json
Sample:
{
"FileBytes": "QEA="
}
application/xml, text/xml
Sample:
<GetFieldsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PdfService.Models.RequestModels"> <FileBytes>QEA=</FileBytes> </GetFieldsModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
Collection of PdfField| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| Value | string |
None. |
|
| Values | Collection of string |
None. |
|
| IsChecked | boolean |
None. |
|
| IsReadonly | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Name": "sample string 1",
"Value": "sample string 2",
"Values": [
"sample string 1",
"sample string 2"
],
"IsChecked": true,
"IsReadonly": true
},
{
"Name": "sample string 1",
"Value": "sample string 2",
"Values": [
"sample string 1",
"sample string 2"
],
"IsChecked": true,
"IsReadonly": true
}
]
application/xml, text/xml
Sample:
<ArrayOfPdfField xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PdfService.Models">
<PdfField>
<IsChecked>true</IsChecked>
<IsReadonly>true</IsReadonly>
<Name>sample string 1</Name>
<Value>sample string 2</Value>
<Values xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>sample string 1</d3p1:string>
<d3p1:string>sample string 2</d3p1:string>
</Values>
</PdfField>
<PdfField>
<IsChecked>true</IsChecked>
<IsReadonly>true</IsReadonly>
<Name>sample string 1</Name>
<Value>sample string 2</Value>
<Values xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:string>sample string 1</d3p1:string>
<d3p1:string>sample string 2</d3p1:string>
</Values>
</PdfField>
</ArrayOfPdfField>