You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changes:
- Variables in Title:
- was changed as the optional field for 'create document from template' payload
- was added as the optional parameter; Set this parameter as true if you want to detect title variables in the document name
- was added as a query parameter for the 'contact list' endpoint
- field was added for the 'update document' endpoint
- field was added for the recipient object in the document details response
- field was added for document, template, content library item details responses
- field was added to the pricing object for document, template, content library item details responses
- type of webhook event was added
Breaking changes:
- Renamed to in the request payload for the 'add document recipient' and 'reassign document recipient' endpoints
- Removed PricingTablesResponse model and PricingTablesResponse*
**name** | **str** | Name the document you are creating. |
8
7
**template_uuid** | **str** | The ID of a template you want to use. You can copy it from an in app template url such as `https://app.pandadoc.com/a/#/templates/{ID}/content`. A template ID is also obtained by listing templates. |
9
8
**recipients** | [**[DocumentCreateByTemplateRequestRecipients]**](DocumentCreateByTemplateRequestRecipients.md) | The list of recipients you're sending the document to. Every object must contain the email parameter. The `role`, `first_name` and `last_name` parameters are optional. If the `role` parameter passed, a person is assigned all fields matching their corresponding role. If not passed, a person will receive a read-only link to view the document. If the `first_name` and `last_name` not passed the system 1. creates a new contact, if none exists with the given `email`; or 2. gets the existing contact with the given `email` that already exists. |
9
+
**name** | **str** | Name the document you are creating. If name is not passed, the template name is used. | [optional]
10
+
**detect_title_variables** | **bool** | Set this parameter as true if you want to detect title variables in the document. | [optional]
10
11
**folder_uuid** | **str** | | [optional]
11
12
**tokens** | [**[DocumentCreateByTemplateRequestTokens]**](DocumentCreateByTemplateRequestTokens.md) | You can pass a list of tokens/values to pre-fill tokens used in a template. Name is a token name in a template. Value is a real value you would like to replace a token with. | [optional]
12
13
**fields** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | You can pass a list of fields/values to pre-fill fields used in a template. Note that the Signature field can't be pre-filled. | [optional]
**name** | **str** | Name the document you are creating. | [optional]
8
+
**detect_title_variables** | **bool** | Set this parameter as true if you want to detect title variables in the document. | [optional]
8
9
**template_uuid** | **str** | ID of the template you want to use. You can copy it from an in-app template URL such as `https://app.pandadoc.com/a/#/templates/{ID}/content`. A template ID is also obtained by listing templates. | [optional]
9
10
**folder_uuid** | **str** | ID of the folder where the created document should be stored. | [optional]
10
11
**owner** | **{str: (str,)}** | You can set an owner of a document as an `email` or `membership_id` | [optional]
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
19
20
20
21
[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
9
9
10
10
[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**name** | **str** | The name of the document. | [optional]
7
8
**recipients** | [**[DocumentUpdateRequestRecipients]**](DocumentUpdateRequestRecipients.md) | The list of recipients you're sending the document to. The ID or email are required. If the ID is passed, an existing recipient will be updated. If the email is passed, a new recipient will be added to CC. | [optional]
8
9
**fields** | **{str: (bool, date, datetime, dict, float, int, list, str, none_type)}** | You may pass a list of fields/values which exist in a document. Please use `Merge Field` property of the fields like the key. | [optional]
9
10
**tokens** | [**[DocumentCreateByTemplateRequestTokens]**](DocumentCreateByTemplateRequestTokens.md) | You can pass a list of tokens/values. If a token name exists in a document then the value will be updated. Otherwise, a new token will be added to the document. | [optional]
0 commit comments