-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
I tried the API and it works, it can populate the data in my template doc with a table. The API request supports "table" in Document Creation request, for example:
curl --location 'https://api.pandadoc.com/public/v1/documents' \
--header 'Authorization: API-Key API_KEY_HERE' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Test Doc",
"template_uuid": "",
"tables": [
{"name":"table_name", "data": {"section":[
{"header": [{"text": "header1"}], "rows": [[{"text":"test_text"}]]}
]}
}
]
}'
But I reviewed this node-SDK, the DocumentCreateRequest doesn't include "table"/"tables" attribute, only has a "pricingTables".
Does it mean the SDK doesn't support adding table in Document? How can I use "table" with this node sdk.
Metadata
Metadata
Assignees
Labels
No labels