@inklok/api-spec 7.2.1 → 7.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/openapi.yaml +54 -2
- package/package.json +1 -1
package/openapi.yaml
CHANGED
|
@@ -8,7 +8,7 @@ info:
|
|
|
8
8
|
Authenticate using an API key or bearer token, then use the resources below to manage
|
|
9
9
|
templates, agreements, documents, and signing. For your first integration, start with
|
|
10
10
|
the Quick Start guide.
|
|
11
|
-
version: "7.2.
|
|
11
|
+
version: "7.2.2"
|
|
12
12
|
contact:
|
|
13
13
|
name: Inklok API Support
|
|
14
14
|
email: support@inklok.com
|
|
@@ -2480,6 +2480,18 @@ paths:
|
|
|
2480
2480
|
properties:
|
|
2481
2481
|
execution_id:
|
|
2482
2482
|
type: string
|
|
2483
|
+
agreement_title:
|
|
2484
|
+
type: string
|
|
2485
|
+
nullable: true
|
|
2486
|
+
description: Human-readable title for this agreement.
|
|
2487
|
+
agreement_message:
|
|
2488
|
+
type: string
|
|
2489
|
+
nullable: true
|
|
2490
|
+
description: Shared message from the sender for all recipients.
|
|
2491
|
+
recipient_message:
|
|
2492
|
+
type: string
|
|
2493
|
+
nullable: true
|
|
2494
|
+
description: Private message for the authenticated signer only.
|
|
2483
2495
|
version:
|
|
2484
2496
|
type: string
|
|
2485
2497
|
description: Rendering engine version for this agreement
|
|
@@ -4694,11 +4706,26 @@ components:
|
|
|
4694
4706
|
name:
|
|
4695
4707
|
type: string
|
|
4696
4708
|
nullable: true
|
|
4709
|
+
recipientMessage:
|
|
4710
|
+
type: string
|
|
4711
|
+
nullable: true
|
|
4712
|
+
maxLength: 5000
|
|
4713
|
+
description: Optional private message visible only to this recipient.
|
|
4697
4714
|
|
|
4698
4715
|
CreateExecutionRequest:
|
|
4699
4716
|
type: object
|
|
4700
|
-
required: [participants, crypto]
|
|
4717
|
+
required: [agreementTitle, participants, crypto]
|
|
4701
4718
|
properties:
|
|
4719
|
+
agreementTitle:
|
|
4720
|
+
type: string
|
|
4721
|
+
minLength: 1
|
|
4722
|
+
maxLength: 160
|
|
4723
|
+
description: Human-readable title for this agreement.
|
|
4724
|
+
agreementMessage:
|
|
4725
|
+
type: string
|
|
4726
|
+
nullable: true
|
|
4727
|
+
maxLength: 5000
|
|
4728
|
+
description: Optional shared message visible to all recipients.
|
|
4702
4729
|
participants:
|
|
4703
4730
|
type: array
|
|
4704
4731
|
minItems: 1
|
|
@@ -5047,6 +5074,16 @@ components:
|
|
|
5047
5074
|
type: integer
|
|
5048
5075
|
minimum: 1
|
|
5049
5076
|
readOnly: true
|
|
5077
|
+
agreementTitle:
|
|
5078
|
+
type: string
|
|
5079
|
+
nullable: true
|
|
5080
|
+
readOnly: true
|
|
5081
|
+
description: Human-readable title for this agreement.
|
|
5082
|
+
agreementMessage:
|
|
5083
|
+
type: string
|
|
5084
|
+
nullable: true
|
|
5085
|
+
readOnly: true
|
|
5086
|
+
description: Shared message from the sender for all recipients.
|
|
5050
5087
|
pdfEngineVersion:
|
|
5051
5088
|
type: integer
|
|
5052
5089
|
minimum: 1
|
|
@@ -5092,6 +5129,7 @@ components:
|
|
|
5092
5129
|
createdAt,
|
|
5093
5130
|
updatedAt,
|
|
5094
5131
|
pdfEngineVersion,
|
|
5132
|
+
agreementTitle,
|
|
5095
5133
|
participants,
|
|
5096
5134
|
placeholderValues,
|
|
5097
5135
|
]
|
|
@@ -5107,6 +5145,16 @@ components:
|
|
|
5107
5145
|
status:
|
|
5108
5146
|
$ref: '#/components/schemas/ExecutionStatus'
|
|
5109
5147
|
readOnly: true
|
|
5148
|
+
agreementTitle:
|
|
5149
|
+
type: string
|
|
5150
|
+
nullable: true
|
|
5151
|
+
readOnly: true
|
|
5152
|
+
description: Human-readable title for this agreement.
|
|
5153
|
+
agreementMessage:
|
|
5154
|
+
type: string
|
|
5155
|
+
nullable: true
|
|
5156
|
+
readOnly: true
|
|
5157
|
+
description: Shared message from the sender for all recipients.
|
|
5110
5158
|
createdAt:
|
|
5111
5159
|
type: string
|
|
5112
5160
|
format: date-time
|
|
@@ -5173,6 +5221,10 @@ components:
|
|
|
5173
5221
|
color:
|
|
5174
5222
|
type: string
|
|
5175
5223
|
nullable: true
|
|
5224
|
+
recipientMessage:
|
|
5225
|
+
type: string
|
|
5226
|
+
nullable: true
|
|
5227
|
+
description: Private message for this recipient. Signer-scoped responses only include the current signer's message.
|
|
5176
5228
|
|
|
5177
5229
|
ExecutionParticipantSearchResult:
|
|
5178
5230
|
type: object
|