Insert a footnote
Contents
[
Hide
]
This REST API inserts a footnote into a Word document.
Insert a footnote into a Word document REST API
Server | Method | Endpoint |
---|---|---|
https://api.aspose.cloud/v4.0 |
PUT | /words/online/post/{nodePath}/footnotes |
, where:
nodePath
(required) — the path to the node in the document tree.
You can use the following parameters in a REST request:
Parameter Name | Data Type | Required/Optional | Description |
---|---|---|---|
loadEncoding |
string | Optional | Encoding that will be used to load an HTML (or TXT) document if the encoding is not specified in HTML. |
password |
string | Optional | Password of protected Word document. Use the parameter to pass a password via SDK. SDK encrypts it automatically. We don’t recommend to use the parameter to pass a plain password for direct call of API. |
encryptedPassword |
string | Optional | Password of protected Word document. Use the parameter to pass an encrypted password for direct calls of API. See SDK code for encyption details. |
destFileName |
string | Optional | Result path of the document after the operation. If this parameter is omitted then result of the operation will be saved as the source document. |
revisionAuthor |
string | Optional | Initials of the author to use for revisions.If you set this parameter and then make some changes to the document programmatically, save the document and later open the document in MS Word you will see these changes as revisions. |
revisionDateTime |
string | Optional | The date and time to use for revisions. |
Use $multipart/form-data
request to combine one or more properties into a single body:
Property Name | Data Type | Required/Optional | Description |
---|---|---|---|
document |
string(binary) | Required | The document. |
footnoteDto |
FootnoteInsert | Required | Footnote data. |
Note: to access this REST API, you need to register and get personal credentials. Use the ‘Quick Start’ guide to go through the procedure in a couple of minutes.
Insert a footnote into a Word document usage examples
Let’s look at practical examples of using the web service. You can do this both with cURL and Postman utilities, and from your code in various programming languages: Python, Java, JavaScript, C#, PHP, C++, Go, Ruby, Swift, Dart.
How to insert a footnote into a Word document with cURL or Postman
One of the easiest and fastest ways to call a REST API is to use cURL or Postman:
How to insert a footnote into a Word document in Python, Java, C#, C++, JavaScript and other programming languages
Using SDK is the quickest way to speed up the development. Please take a look at the provided code examples to quickly call this web service from your favourite programming language:
See Also
- GitHub repository — explore Aspose.Words Cloud SDK Family. These software libraries take care of all low-level document-processing details.