String
Note: Strings have a 32,000 character limit. Workflows will error at the archive step if it is exceeded. | "counterpartyName": "Acme LLC" |
Address
Note: Addresses are validated. - Non-US addresses require (1) street (
lines), (2) locality, and (3) country. - US addresses require (1) street (
lines), (2) locality, (3) region, (4) postcode, and (5) country. US address validation is enforced if U.S.A., USA, United States, or United States of America are used as the country. - The
lines array is limited to four street lines.
| "counterpartyAddress": { Ā Ā Ā Ā "lines": Ā Ā Ā Ā Ā Ā "325 5th Street", Ā Ā Ā Ā Ā Ā Ā Ā "Suite 200" Ā Ā Ā Ā ], Ā Ā , Ā Ā Ā Ā "locality": "San Francisco",Ā Ā Ā Ā Ā "region": "California", Ā Ā Ā Ā "postcode": "94107", Ā Ā Ā Ā "country": "USA" } |
Number | "standard_timesRenewed": 12 |
Monetary Value | "totalContractValue": { Ā Ā Ā Ā "currency": "USD", Ā Ā Ā Ā "amount": 25.37 } |
Date | Date fields accept multiple formats:
"agreementDate": "2021-05-11T17:16:53-07:00"
Ā Ā Ā Ā OR
"agreementDate": "2021-05-11"
Ā Ā Ā Ā OR
"agreementDate": "2021-05-11T17:16:53Z" |
Duration The duration value must include one or more units of time (years, months, weeks, or days). | "initialTermLength": { Ā Ā Ā Ā "years": 1, Ā Ā Ā Ā "months": 2, Ā Ā Ā Ā "weeks": 3, Ā Ā Ā Ā "days": 4 } |
Email | "counterpartySignerEmail": " [email protected] " |
Boolean
Note: The Yes/No field field in Workflow Designer is a boolean. | "contractExtending": true
|
Single-Select (Same as String) | "protectionPeriod": "Option A" |
Multi-Select | "someMultiSelectField": [ Ā Ā "Option A", Ā Ā Ā Ā "Option B" ] |
Table | "someTable": [ Ā Ā Ā Ā { Ā Ā Ā Ā Ā Ā Ā Ā "someTextFieldInTable": "Some Row 1 Text", Ā Ā Ā Ā Ā Ā Ā Ā "someNumberFieldInTable": 25, Ā Ā Ā Ā Ā Ā Ā Ā "someMultiSelectFieldInTable": A", "Option B"], , Ā Ā Ā Ā }, Ā Ā Ā Ā { Ā Ā Ā Ā Ā Ā Ā Ā "someTextFieldInTable": "Some Row 2 Text", Ā Ā Ā Ā Ā Ā Ā Ā "someNumberFieldInTable": 27, Ā Ā Ā Ā Ā Ā Ā Ā "someMultiSelectFieldInTable": B", "Option C"] Ā Ā Ā Ā Ā Ā } ]
|
File
Note: See Section 3.5 for full details on usage and requirements. Files can either be sent as (1) binaries directly in a multipart/form-data request or (2) publicly accessible URLs in a regular raw JSON request body. The two methods cannot be combined. | Option 1: Multipart/Form-Data Request The value of the file property below is the request body part name that you plan to include the file's binary under. See Section 3.5.1 for more details. "draft": Ā Ā { "file": "someFirstFile" }, Ā Ā Ā Ā { "file": "someSecondFile" }
Option 2: Publicly Accessible URLs // The urls below are stubs. Please replace them with urls that point to your own files.
"draft": Ā Ā {"url": "https://your.file.server.test/test-doc-1.docx"}, Ā Ā Ā Ā {"url": "https://your.file.server.test/test-doc-2.docx" }
|
User | "approver3be1d629ad524bb2aade2078cd06e94": "682b83ea0303cccab88b4ce" OR "approver3be1d629ad524bb2aade2078cd06e94": "[email protected]" |