@inklok/api-spec 7.6.0 → 7.6.1
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 +65 -1
- 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.6.
|
|
11
|
+
version: "7.6.1"
|
|
12
12
|
contact:
|
|
13
13
|
name: Inklok API Support
|
|
14
14
|
email: support@inklok.com
|
|
@@ -435,6 +435,19 @@ paths:
|
|
|
435
435
|
schema:
|
|
436
436
|
type: string
|
|
437
437
|
description: Organization name or identifier search.
|
|
438
|
+
- in: query
|
|
439
|
+
name: limit
|
|
440
|
+
schema:
|
|
441
|
+
type: integer
|
|
442
|
+
minimum: 1
|
|
443
|
+
maximum: 100
|
|
444
|
+
default: 25
|
|
445
|
+
description: Maximum number of organizations to return for browse/search results.
|
|
446
|
+
- in: query
|
|
447
|
+
name: cursor
|
|
448
|
+
schema:
|
|
449
|
+
type: string
|
|
450
|
+
description: Opaque pagination cursor returned by the previous response.
|
|
438
451
|
responses:
|
|
439
452
|
'200':
|
|
440
453
|
description: Successfully retrieved Platform entitlement information
|
|
@@ -4074,6 +4087,7 @@ components:
|
|
|
4074
4087
|
- accountId
|
|
4075
4088
|
- isPersonal
|
|
4076
4089
|
- createdAt
|
|
4090
|
+
- entitlement
|
|
4077
4091
|
properties:
|
|
4078
4092
|
orgId:
|
|
4079
4093
|
type: string
|
|
@@ -4093,6 +4107,52 @@ components:
|
|
|
4093
4107
|
createdAt:
|
|
4094
4108
|
type: string
|
|
4095
4109
|
format: date-time
|
|
4110
|
+
entitlement:
|
|
4111
|
+
nullable: true
|
|
4112
|
+
allOf:
|
|
4113
|
+
- $ref: '#/components/schemas/PlatformEntitlementOrganizationSummary'
|
|
4114
|
+
|
|
4115
|
+
PlatformEntitlementOrganizationSummary:
|
|
4116
|
+
type: object
|
|
4117
|
+
required:
|
|
4118
|
+
- plan
|
|
4119
|
+
- subscriptionStatus
|
|
4120
|
+
- source
|
|
4121
|
+
- includedSeats
|
|
4122
|
+
- additionalSeats
|
|
4123
|
+
- effectiveSeatLimit
|
|
4124
|
+
- maxApiRequestsPerMinute
|
|
4125
|
+
- hasCustomSeatOverride
|
|
4126
|
+
- hasCustomApiLimit
|
|
4127
|
+
properties:
|
|
4128
|
+
plan:
|
|
4129
|
+
$ref: '#/components/schemas/PlatformPlan'
|
|
4130
|
+
subscriptionStatus:
|
|
4131
|
+
type: string
|
|
4132
|
+
source:
|
|
4133
|
+
type: string
|
|
4134
|
+
enum:
|
|
4135
|
+
- stored
|
|
4136
|
+
- plan-default
|
|
4137
|
+
includedSeats:
|
|
4138
|
+
type: integer
|
|
4139
|
+
nullable: true
|
|
4140
|
+
minimum: 0
|
|
4141
|
+
additionalSeats:
|
|
4142
|
+
type: integer
|
|
4143
|
+
minimum: 0
|
|
4144
|
+
effectiveSeatLimit:
|
|
4145
|
+
type: integer
|
|
4146
|
+
nullable: true
|
|
4147
|
+
minimum: 0
|
|
4148
|
+
maxApiRequestsPerMinute:
|
|
4149
|
+
type: integer
|
|
4150
|
+
nullable: true
|
|
4151
|
+
minimum: 0
|
|
4152
|
+
hasCustomSeatOverride:
|
|
4153
|
+
type: boolean
|
|
4154
|
+
hasCustomApiLimit:
|
|
4155
|
+
type: boolean
|
|
4096
4156
|
|
|
4097
4157
|
PlatformEntitlementSeats:
|
|
4098
4158
|
type: object
|
|
@@ -4225,6 +4285,7 @@ components:
|
|
|
4225
4285
|
required:
|
|
4226
4286
|
- organizations
|
|
4227
4287
|
- selected
|
|
4288
|
+
- nextCursor
|
|
4228
4289
|
- generatedAt
|
|
4229
4290
|
properties:
|
|
4230
4291
|
organizations:
|
|
@@ -4235,6 +4296,9 @@ components:
|
|
|
4235
4296
|
nullable: true
|
|
4236
4297
|
allOf:
|
|
4237
4298
|
- $ref: '#/components/schemas/PlatformEntitlementDetail'
|
|
4299
|
+
nextCursor:
|
|
4300
|
+
type: string
|
|
4301
|
+
nullable: true
|
|
4238
4302
|
generatedAt:
|
|
4239
4303
|
type: string
|
|
4240
4304
|
format: date-time
|