Updates a contracts details
The expiry date of the contract. The date and time uses the ISO-8601 format and will be in the Local timezone of the organization
Example:"2024-12-25T00:00:00"
A unique user defined identifier that can be used to reference another system
Example:"external-01"
The collection of fields associated with the contract
Example:
{ "my_text_field": "my text value", "my_decimal_field": 78659.84, "my_boolean_field": true, "my_date_field": "2025-05-06", "my_option_field": { "value": "option_1" }, "my_multioption_field": [ { … }, { … } ], "my_user_field": { "id": "f0f1e06e-3005-4093-af7f-1934d55617e1" } }
Is the contract only available to members.
An indicator where the contract requires membership to access
Example:false
The current status of the contract
Enum:"Draft""Negotiating""Approval""Signing""Executed""Expired""Void"
Example:"Active"
- Sandbox APIhttps://api-sandbox.lawvu.com/v2/contracts/{contractId}
- Production APIhttps://api.lawvu.com/v2/contracts/{contractId}
{ "name": "My contract", "owner": { "id": "f0f1e06e-3005-4093-af7f-1934d55617e1" }, "expiry": "2024-12-25T00:00:00", "externalId": "external-01", "fields": { "my_text_field": "my text value", "my_decimal_field": 78659.84, "my_boolean_field": true, "my_date_field": "2025-05-06", "my_option_field": { … }, "my_multioption_field": [ … ], "my_user_field": { … } }, "restricted": false, "status": "Active", "teamAssigned": { "id": 469 } }