POST api/pdf/fill
Request Information
URI Parameters
None.
Body Parameters
GenericPdfFillRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PdfBase64 | string |
None. |
|
| Fields | Dictionary of string [key] and string [value] |
None. |
|
| Validate | boolean |
None. |
|
| Flatten | boolean |
None. |
|
| Lock | boolean |
None. |
|
| LockPassword | string |
None. |
|
| RandomLockPassword | boolean |
None. |
|
| Watermark | boolean |
None. |
|
| WatermarkText | string |
None. |
|
| WatermarkRed | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"PdfBase64": "sample string 1",
"Fields": {
"sample string 1": "sample string 2",
"sample string 3": "sample string 4"
},
"Validate": true,
"Flatten": true,
"Lock": true,
"LockPassword": "sample string 2",
"RandomLockPassword": true,
"Watermark": true,
"WatermarkText": "sample string 3",
"WatermarkRed": true
}
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. |