@celigo/api-specs 0.2.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/LICENSE +21 -0
- package/README.md +119 -0
- package/dist/account.yml +592 -0
- package/dist/agent.yml +908 -0
- package/dist/ai-agent.yml +5471 -0
- package/dist/api.yml +4140 -0
- package/dist/apim.yml +1286 -0
- package/dist/asynchelper.yml +3391 -0
- package/dist/audit.yml +2006 -0
- package/dist/connection.yml +8665 -0
- package/dist/connector.yml +1406 -0
- package/dist/ediprofile.yml +911 -0
- package/dist/editransaction.yml +1210 -0
- package/dist/enduser.yml +1724 -0
- package/dist/environment.yml +568 -0
- package/dist/eventreport.yml +692 -0
- package/dist/export.yml +17610 -0
- package/dist/filedefinition.yml +1396 -0
- package/dist/filestorage.yml +3102 -0
- package/dist/flow.yml +7928 -0
- package/dist/guardrail.yml +2763 -0
- package/dist/httpconnector.yml +2277 -0
- package/dist/httpconnectorendpoint.yml +722 -0
- package/dist/httpconnectorresource.yml +396 -0
- package/dist/iclient.yml +4452 -0
- package/dist/import.yml +15381 -0
- package/dist/integration.yml +4406 -0
- package/dist/job.yml +2014 -0
- package/dist/lookupcache.yml +1325 -0
- package/dist/marketplace.yml +685 -0
- package/dist/mcp-oauth-provider.yml +590 -0
- package/dist/mcp-server.yml +2656 -0
- package/dist/notification.yml +488 -0
- package/dist/processor.yml +1253 -0
- package/dist/profile.yml +455 -0
- package/dist/recyclebin.yml +768 -0
- package/dist/script.yml +1128 -0
- package/dist/stack.yml +1291 -0
- package/dist/state.yml +894 -0
- package/dist/subscription.yml +1405 -0
- package/dist/sync.yml +4857 -0
- package/dist/tag.yml +553 -0
- package/dist/template.yml +897 -0
- package/dist/tool.yml +33656 -0
- package/dist/tradingpartnerconnector.yml +1490 -0
- package/dist/user.yml +831 -0
- package/package.json +41 -0
- package/schemas.json +8420 -0
|
@@ -0,0 +1,685 @@
|
|
|
1
|
+
openapi: 3.2.0
|
|
2
|
+
info:
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
title: Marketplace
|
|
5
|
+
description: API for browsing Celigo marketplace listings — Integration Apps and templates — and previewing template contents.
|
|
6
|
+
servers:
|
|
7
|
+
- url: https://api.integrator.io
|
|
8
|
+
description: Production (US / default region)
|
|
9
|
+
- url: https://api.eu.integrator.io
|
|
10
|
+
description: Production (EU region)
|
|
11
|
+
- url: https://api.au.integrator.io
|
|
12
|
+
description: Production (AU region)
|
|
13
|
+
- url: https://api.ca.integrator.io
|
|
14
|
+
description: Production (CA region)
|
|
15
|
+
security:
|
|
16
|
+
- bearerAuth: []
|
|
17
|
+
tags:
|
|
18
|
+
- name: Marketplace
|
|
19
|
+
description: |-
|
|
20
|
+
Browse Celigo marketplace content. The marketplace contains two types
|
|
21
|
+
of entries:
|
|
22
|
+
|
|
23
|
+
- **Integration Apps** — licensed, Celigo-built connectors (e.g.
|
|
24
|
+
Shopify–NetSuite) that install with managed updates.
|
|
25
|
+
- **Templates** — reusable integration blueprints that create a set of
|
|
26
|
+
resources (integration, connections, flows, exports, imports, scripts)
|
|
27
|
+
when installed.
|
|
28
|
+
|
|
29
|
+
You can preview what a template would create before committing to the
|
|
30
|
+
install.
|
|
31
|
+
|
|
32
|
+
## Marketplace entry schema
|
|
33
|
+
|
|
34
|
+
{% openapi-schemas spec="marketplace" schemas="MarketplaceEntry" grouped="true" %}
|
|
35
|
+
paths:
|
|
36
|
+
/v1/templates/{_id}/preview:
|
|
37
|
+
get:
|
|
38
|
+
x-internal: false
|
|
39
|
+
operationId: previewTemplate
|
|
40
|
+
tags:
|
|
41
|
+
- Marketplace
|
|
42
|
+
summary: Preview a template's installed resource docs
|
|
43
|
+
description: |-
|
|
44
|
+
Returns the concrete resource documents a template would create if
|
|
45
|
+
installed. The response is an envelope `{objects, stackRequired}` where
|
|
46
|
+
`objects` is an array of `{model, doc}` entries — one per resource that
|
|
47
|
+
the install step would materialize.
|
|
48
|
+
|
|
49
|
+
`stackRequired` is `true` when the template includes NetSuite-distributed
|
|
50
|
+
resources that need a dedicated stack — the installer prompts for one
|
|
51
|
+
before the install proceeds.
|
|
52
|
+
|
|
53
|
+
The ID must belong to a Template, not a Connector (Integration App).
|
|
54
|
+
Connector IDs from `/v1/published` return 404 here -- pull template
|
|
55
|
+
IDs from the `Template`-typed entries of `POST /v1/published/combined`.
|
|
56
|
+
parameters:
|
|
57
|
+
- name: _id
|
|
58
|
+
in: path
|
|
59
|
+
required: true
|
|
60
|
+
description: Template id from `POST /v1/published/combined`.
|
|
61
|
+
schema:
|
|
62
|
+
type: string
|
|
63
|
+
format: objectId
|
|
64
|
+
examples:
|
|
65
|
+
- 606e109607404c69e620a938
|
|
66
|
+
responses:
|
|
67
|
+
'200':
|
|
68
|
+
description: Template preview envelope.
|
|
69
|
+
content:
|
|
70
|
+
application/json:
|
|
71
|
+
schema:
|
|
72
|
+
$ref: '#/components/schemas/TemplatePreviewResponse'
|
|
73
|
+
examples:
|
|
74
|
+
default:
|
|
75
|
+
summary: Shopify - NetSuite template preview
|
|
76
|
+
value:
|
|
77
|
+
stackRequired: false
|
|
78
|
+
objects:
|
|
79
|
+
- model: Integration
|
|
80
|
+
doc:
|
|
81
|
+
_id: 6405b9d73496e05ff253d587
|
|
82
|
+
name: Shopify - NetSuite
|
|
83
|
+
description: Sync Abandoned Checkouts, Collects, … between Shopify and NetSuite.
|
|
84
|
+
installSteps:
|
|
85
|
+
- name: NetSuite Connection
|
|
86
|
+
completed: true
|
|
87
|
+
type: connection
|
|
88
|
+
sourceConnection:
|
|
89
|
+
type: netsuite
|
|
90
|
+
name: NetSuite Connection
|
|
91
|
+
- model: Connection
|
|
92
|
+
doc:
|
|
93
|
+
_id: 61f92026dd053843b5d72350
|
|
94
|
+
type: netsuite
|
|
95
|
+
name: NetSuite Connection
|
|
96
|
+
netsuite:
|
|
97
|
+
wsdlVersion: '2020.2'
|
|
98
|
+
concurrencyLevel: 1
|
|
99
|
+
'401':
|
|
100
|
+
$ref: '#/components/responses/401-unauthorized'
|
|
101
|
+
'404':
|
|
102
|
+
description: |-
|
|
103
|
+
No template matched the id. Most commonly: the id belongs to a
|
|
104
|
+
Connector (Integration App) rather than a Template — Connectors are
|
|
105
|
+
installed via `/v1/integrations/<id>/install`, not through this
|
|
106
|
+
preview endpoint.
|
|
107
|
+
content:
|
|
108
|
+
application/json:
|
|
109
|
+
schema:
|
|
110
|
+
$ref: '#/components/schemas/Error'
|
|
111
|
+
examples:
|
|
112
|
+
invalidRef:
|
|
113
|
+
value:
|
|
114
|
+
errors:
|
|
115
|
+
- code: invalid_ref
|
|
116
|
+
message: Template not found.
|
|
117
|
+
/v1/published:
|
|
118
|
+
get:
|
|
119
|
+
x-internal: false
|
|
120
|
+
operationId: listPublishedConnectors
|
|
121
|
+
tags:
|
|
122
|
+
- Marketplace
|
|
123
|
+
summary: List published Integration Apps (Connectors)
|
|
124
|
+
description: |-
|
|
125
|
+
Returns the marketplace catalog of **Integration Apps** — the
|
|
126
|
+
Celigo-built, fully-managed connectors that install as a single
|
|
127
|
+
integration. Roughly 30 entries curated by Celigo.
|
|
128
|
+
|
|
129
|
+
Each item is a marketplace listing, not an integration instance —
|
|
130
|
+
`_id` is the marketplace entry id, the `applications` array enumerates
|
|
131
|
+
the systems the connector bridges, and `numInstalls` is the live install
|
|
132
|
+
counter across all Celigo accounts.
|
|
133
|
+
|
|
134
|
+
For a combined list that also includes user-installable Templates,
|
|
135
|
+
use `POST /v1/published/combined` instead. Entries here have no
|
|
136
|
+
`docType` field -- that discriminator only appears in the combined
|
|
137
|
+
endpoint's response.
|
|
138
|
+
responses:
|
|
139
|
+
'200':
|
|
140
|
+
description: Array of Integration App (Connector) marketplace entries.
|
|
141
|
+
content:
|
|
142
|
+
application/json:
|
|
143
|
+
schema:
|
|
144
|
+
type: array
|
|
145
|
+
items:
|
|
146
|
+
$ref: '#/components/schemas/MarketplaceEntry'
|
|
147
|
+
examples:
|
|
148
|
+
default:
|
|
149
|
+
summary: One Integration App entry
|
|
150
|
+
value:
|
|
151
|
+
- _id: 58c90bccc13f547763bf2fc1
|
|
152
|
+
name: Amazon - NetSuite
|
|
153
|
+
description: Amazon - NetSuite Integration App helps online retailers combine the powerful Amazon Online Marketplace platform with the proven back-office features of NetSuite.
|
|
154
|
+
imageURL: /images/company-logos/amazon-netsuite.png
|
|
155
|
+
websiteURL: https://www.celigo.com/products/netsuite-amazon-connector/
|
|
156
|
+
applications:
|
|
157
|
+
- amazonmws
|
|
158
|
+
- netsuite
|
|
159
|
+
user:
|
|
160
|
+
name: Celigo Etail
|
|
161
|
+
company: Celigo
|
|
162
|
+
trialEnabled: false
|
|
163
|
+
lastModified: '2026-04-22T14:23:56.528Z'
|
|
164
|
+
numInstalls: 1938
|
|
165
|
+
'401':
|
|
166
|
+
$ref: '#/components/responses/401-unauthorized'
|
|
167
|
+
/v1/published/combined:
|
|
168
|
+
post:
|
|
169
|
+
x-internal: false
|
|
170
|
+
operationId: listPublishedCombined
|
|
171
|
+
tags:
|
|
172
|
+
- Marketplace
|
|
173
|
+
summary: List Integration Apps and Templates together
|
|
174
|
+
description: |-
|
|
175
|
+
Returns a unified array of **all** marketplace content — both Integration
|
|
176
|
+
Apps (`docType: Connector`) and Templates (`docType: Template`). Each
|
|
177
|
+
entry carries the `docType` discriminator so callers can partition.
|
|
178
|
+
|
|
179
|
+
Despite being a POST, this is a **read-only, safe** endpoint — the body
|
|
180
|
+
is an empty `{}` in the default CLI invocation. POST is used purely to
|
|
181
|
+
carry sort and filter parameters that don't fit cleanly in a query
|
|
182
|
+
string. The route is POST-only.
|
|
183
|
+
|
|
184
|
+
Always send `Content-Type: application/json` with at least `{}` as
|
|
185
|
+
the body. For Connector-only listings, `GET /v1/published` is
|
|
186
|
+
lighter.
|
|
187
|
+
parameters:
|
|
188
|
+
- name: sort_by
|
|
189
|
+
in: query
|
|
190
|
+
required: false
|
|
191
|
+
schema:
|
|
192
|
+
type: string
|
|
193
|
+
enum:
|
|
194
|
+
- numInstalls
|
|
195
|
+
- name
|
|
196
|
+
- lastModified
|
|
197
|
+
x-enumDescriptions:
|
|
198
|
+
numInstalls: Sort by number of installs (descending).
|
|
199
|
+
name: Sort alphabetically by name.
|
|
200
|
+
lastModified: Sort by last modification date.
|
|
201
|
+
description: |-
|
|
202
|
+
Sort key. `numInstalls` (descending) matches the CLI default.
|
|
203
|
+
Omitting `sort_by` returns results in server-default order.
|
|
204
|
+
requestBody:
|
|
205
|
+
required: true
|
|
206
|
+
content:
|
|
207
|
+
application/json:
|
|
208
|
+
schema:
|
|
209
|
+
type: object
|
|
210
|
+
description: |-
|
|
211
|
+
Body is required (even if empty) because the endpoint is POST
|
|
212
|
+
and the server enforces `Content-Type: application/json` —
|
|
213
|
+
otherwise 415. No fields inside the body are currently honored by
|
|
214
|
+
the server for filtering.
|
|
215
|
+
examples:
|
|
216
|
+
empty:
|
|
217
|
+
summary: Default — all content
|
|
218
|
+
value: {}
|
|
219
|
+
responses:
|
|
220
|
+
'200':
|
|
221
|
+
description: Array of marketplace entries, both Connectors and Templates.
|
|
222
|
+
content:
|
|
223
|
+
application/json:
|
|
224
|
+
schema:
|
|
225
|
+
type: array
|
|
226
|
+
items:
|
|
227
|
+
$ref: '#/components/schemas/MarketplaceEntry'
|
|
228
|
+
examples:
|
|
229
|
+
mixed:
|
|
230
|
+
summary: One Connector + one Template, sorted by numInstalls
|
|
231
|
+
value:
|
|
232
|
+
- _id: 54fa0b38a7044f9252000036
|
|
233
|
+
name: Shopify - NetSuite
|
|
234
|
+
docType: Connector
|
|
235
|
+
description: Sync products, orders, fulfillments, and inventory between Shopify and NetSuite.
|
|
236
|
+
applications:
|
|
237
|
+
- netsuite
|
|
238
|
+
- 65bb6a09de4fef278556c5fe
|
|
239
|
+
user:
|
|
240
|
+
name: Celigo Etail
|
|
241
|
+
company: Celigo
|
|
242
|
+
trialEnabled: false
|
|
243
|
+
lastModified: '2026-04-22T07:14:42.124Z'
|
|
244
|
+
numInstalls: 3672
|
|
245
|
+
- _id: 606e109607404c69e620a938
|
|
246
|
+
name: Error automation via integrator.io APIs
|
|
247
|
+
docType: Template
|
|
248
|
+
description: Template that automates flow error handling via integrator.io APIs.
|
|
249
|
+
applications:
|
|
250
|
+
- integrator.io
|
|
251
|
+
user:
|
|
252
|
+
name: Celigo
|
|
253
|
+
company: Celigo
|
|
254
|
+
lastModified: '2024-06-17T19:32:04.000Z'
|
|
255
|
+
numInstalls: 12
|
|
256
|
+
'400':
|
|
257
|
+
description: |-
|
|
258
|
+
Typically `invalid_query_param` when `sort_by` is outside the
|
|
259
|
+
accepted enum.
|
|
260
|
+
content:
|
|
261
|
+
application/json:
|
|
262
|
+
schema:
|
|
263
|
+
$ref: '#/components/schemas/Error'
|
|
264
|
+
examples:
|
|
265
|
+
invalidSortBy:
|
|
266
|
+
value:
|
|
267
|
+
errors:
|
|
268
|
+
- code: invalid_query_param
|
|
269
|
+
message: The query parameter "sort_by" has invalid value.
|
|
270
|
+
'401':
|
|
271
|
+
$ref: '#/components/responses/401-unauthorized'
|
|
272
|
+
'415':
|
|
273
|
+
description: |-
|
|
274
|
+
Request lacked `Content-Type: application/json`. The server refuses
|
|
275
|
+
to accept the body and returns this even when the body is an empty
|
|
276
|
+
string.
|
|
277
|
+
content:
|
|
278
|
+
application/json:
|
|
279
|
+
schema:
|
|
280
|
+
$ref: '#/components/schemas/Error'
|
|
281
|
+
examples:
|
|
282
|
+
noContentType:
|
|
283
|
+
value:
|
|
284
|
+
errors:
|
|
285
|
+
- code: unsupported_media_type
|
|
286
|
+
message: Content-Type should equal application/json
|
|
287
|
+
components:
|
|
288
|
+
securitySchemes:
|
|
289
|
+
bearerAuth:
|
|
290
|
+
type: http
|
|
291
|
+
scheme: bearer
|
|
292
|
+
schemas:
|
|
293
|
+
TemplatePreviewResponse:
|
|
294
|
+
type: object
|
|
295
|
+
description: |-
|
|
296
|
+
Envelope describing what a template's install would produce. `objects[]`
|
|
297
|
+
enumerates each resource doc the installer would create, tagged by
|
|
298
|
+
`model`. The docs are populated with the template's defaults and
|
|
299
|
+
placeholder ids that the installer rewrites during the real install.
|
|
300
|
+
properties:
|
|
301
|
+
objects:
|
|
302
|
+
type: array
|
|
303
|
+
description: |-
|
|
304
|
+
Resource docs the installer would materialize. Ordering is
|
|
305
|
+
typically `Integration` first (exactly one), then `Connection`s,
|
|
306
|
+
`Export`s, `Import`s, `Flow`s, `Script`s.
|
|
307
|
+
items:
|
|
308
|
+
type: object
|
|
309
|
+
description: One resource doc tagged with its model type.
|
|
310
|
+
properties:
|
|
311
|
+
model:
|
|
312
|
+
type: string
|
|
313
|
+
enum:
|
|
314
|
+
- Integration
|
|
315
|
+
- Connection
|
|
316
|
+
- Export
|
|
317
|
+
- Import
|
|
318
|
+
- Flow
|
|
319
|
+
- Script
|
|
320
|
+
- AsyncHelper
|
|
321
|
+
x-enumDescriptions:
|
|
322
|
+
Integration: Integration workspace resource.
|
|
323
|
+
Connection: Connection resource for authenticating to external systems.
|
|
324
|
+
Export: Export resource for reading data from a source system.
|
|
325
|
+
Import: Import resource for writing data to a destination system.
|
|
326
|
+
Flow: Flow resource for data integration pipelines.
|
|
327
|
+
Script: Script resource for custom JavaScript hooks.
|
|
328
|
+
AsyncHelper: Async helper resource for polling-based connection patterns.
|
|
329
|
+
description: Resource class this doc describes.
|
|
330
|
+
doc:
|
|
331
|
+
type: object
|
|
332
|
+
description: |-
|
|
333
|
+
The concrete resource document. Shape matches the write shape
|
|
334
|
+
of the corresponding resource endpoint (e.g. `POST /v1/flows`,
|
|
335
|
+
`POST /v1/exports`, etc.). Fields are populated with the
|
|
336
|
+
template's defaults; ids are placeholders that the installer
|
|
337
|
+
replaces during the real install.
|
|
338
|
+
additionalProperties: true
|
|
339
|
+
stackRequired:
|
|
340
|
+
type: boolean
|
|
341
|
+
description: |-
|
|
342
|
+
`true` when the template includes NetSuite-distributed resources
|
|
343
|
+
that need a dedicated stack — the installer prompts for one before
|
|
344
|
+
the install proceeds. `false` for Shopify / HTTP / file-only
|
|
345
|
+
templates.
|
|
346
|
+
Error:
|
|
347
|
+
type: object
|
|
348
|
+
description: Standard error response envelope returned by integrator.io APIs.
|
|
349
|
+
properties:
|
|
350
|
+
errors:
|
|
351
|
+
type: array
|
|
352
|
+
description: List of errors that occurred while processing the request.
|
|
353
|
+
items:
|
|
354
|
+
type: object
|
|
355
|
+
properties:
|
|
356
|
+
code:
|
|
357
|
+
oneOf:
|
|
358
|
+
- type: string
|
|
359
|
+
- type: integer
|
|
360
|
+
description: |-
|
|
361
|
+
Machine-readable error code. Usually a string like
|
|
362
|
+
`invalid_ref`, `missing_required_field`, or `unauthorized`;
|
|
363
|
+
may be an **integer** when the error mirrors an upstream HTTP
|
|
364
|
+
status (e.g. `500`) — most commonly returned by connection-ping
|
|
365
|
+
and adaptor-proxy responses.
|
|
366
|
+
message:
|
|
367
|
+
type: string
|
|
368
|
+
description: Human-readable description of the error.
|
|
369
|
+
field:
|
|
370
|
+
type: string
|
|
371
|
+
description: |-
|
|
372
|
+
Optional pointer to the document field that caused the error.
|
|
373
|
+
Used by structural validation errors (`missing_required_field`,
|
|
374
|
+
`invalid_ref`) to indicate which field is at fault
|
|
375
|
+
(e.g. `_id`, `type`, `http.baseURI`).
|
|
376
|
+
source:
|
|
377
|
+
type: string
|
|
378
|
+
description: |-
|
|
379
|
+
Optional origin layer for the error — e.g. `application` when
|
|
380
|
+
the error came from the remote system the adaptor called,
|
|
381
|
+
`connector` when the adaptor itself rejected the request.
|
|
382
|
+
required:
|
|
383
|
+
- message
|
|
384
|
+
required:
|
|
385
|
+
- errors
|
|
386
|
+
MarketplaceEntry:
|
|
387
|
+
type: object
|
|
388
|
+
required:
|
|
389
|
+
- _id
|
|
390
|
+
- name
|
|
391
|
+
- description
|
|
392
|
+
- applications
|
|
393
|
+
- numInstalls
|
|
394
|
+
- user
|
|
395
|
+
- lastModified
|
|
396
|
+
description: |-
|
|
397
|
+
A single marketplace listing — either an Integration App (`docType: Connector`)
|
|
398
|
+
or a Template (`docType: Template`). `docType` is only present in
|
|
399
|
+
`POST /v1/published/combined` responses; `GET /v1/published` entries (Connectors
|
|
400
|
+
only) omit the field.
|
|
401
|
+
properties:
|
|
402
|
+
_id:
|
|
403
|
+
type: string
|
|
404
|
+
format: objectId
|
|
405
|
+
description: Marketplace entry id. For Templates, use this with `/v1/templates/{_id}/preview`.
|
|
406
|
+
examples:
|
|
407
|
+
- 54fa0b38a7044f9252000036
|
|
408
|
+
name:
|
|
409
|
+
type: string
|
|
410
|
+
description: Display name of the marketplace entry.
|
|
411
|
+
examples:
|
|
412
|
+
- Shopify - NetSuite
|
|
413
|
+
description:
|
|
414
|
+
type: string
|
|
415
|
+
description: Marketing description shown in the marketplace listing.
|
|
416
|
+
examples:
|
|
417
|
+
- Sync products, orders, fulfillments, and inventory between Shopify and NetSuite.
|
|
418
|
+
imageURL:
|
|
419
|
+
type: string
|
|
420
|
+
description: |-
|
|
421
|
+
Relative image path (e.g. `/images/company-logos/amazon-netsuite.png`)
|
|
422
|
+
or absolute URL. Not always present on Template entries.
|
|
423
|
+
examples:
|
|
424
|
+
- /images/company-logos/amazon-netsuite.png
|
|
425
|
+
websiteURL:
|
|
426
|
+
type: string
|
|
427
|
+
format: uri
|
|
428
|
+
description: External product page URL. Rare on Template entries.
|
|
429
|
+
examples:
|
|
430
|
+
- https://www.celigo.com/products/netsuite-amazon-connector/
|
|
431
|
+
applications:
|
|
432
|
+
type: array
|
|
433
|
+
description: |-
|
|
434
|
+
Systems this marketplace entry bridges. Values are either
|
|
435
|
+
well-known application slugs (`netsuite`, `shopify`, `amazonmws`) or
|
|
436
|
+
object ids referencing an Application definition.
|
|
437
|
+
items:
|
|
438
|
+
type: string
|
|
439
|
+
examples:
|
|
440
|
+
- netsuite
|
|
441
|
+
user:
|
|
442
|
+
type: object
|
|
443
|
+
description: Publisher metadata.
|
|
444
|
+
properties:
|
|
445
|
+
name:
|
|
446
|
+
type: string
|
|
447
|
+
description: Publisher display name.
|
|
448
|
+
examples:
|
|
449
|
+
- Celigo Etail
|
|
450
|
+
company:
|
|
451
|
+
type: string
|
|
452
|
+
description: Publisher's company. For Celigo-built content this is `"Celigo"`.
|
|
453
|
+
examples:
|
|
454
|
+
- Celigo
|
|
455
|
+
trialEnabled:
|
|
456
|
+
type: boolean
|
|
457
|
+
description: |-
|
|
458
|
+
Whether this entry offers a trial install. Populated on Integration
|
|
459
|
+
App entries; rarely set on Templates.
|
|
460
|
+
lastModified:
|
|
461
|
+
type: string
|
|
462
|
+
format: date-time
|
|
463
|
+
description: When the marketplace entry was last updated.
|
|
464
|
+
examples:
|
|
465
|
+
- '2026-04-22T07:14:42.124Z'
|
|
466
|
+
numInstalls:
|
|
467
|
+
type: integer
|
|
468
|
+
description: |-
|
|
469
|
+
Live install counter across all Celigo accounts. Used as the
|
|
470
|
+
`sort_by=numInstalls` key.
|
|
471
|
+
examples:
|
|
472
|
+
- 3672
|
|
473
|
+
docType:
|
|
474
|
+
type: string
|
|
475
|
+
enum:
|
|
476
|
+
- Connector
|
|
477
|
+
- Template
|
|
478
|
+
x-enumDescriptions:
|
|
479
|
+
Connector: An Integration App (pre-built integration) available in the marketplace.
|
|
480
|
+
Template: A reusable integration template that can be installed and customized.
|
|
481
|
+
description: |-
|
|
482
|
+
Discriminator distinguishing Integration Apps from Templates. Only
|
|
483
|
+
populated in `POST /v1/published/combined` responses. Absent in
|
|
484
|
+
`GET /v1/published` (Connectors only).
|
|
485
|
+
framework:
|
|
486
|
+
type: string
|
|
487
|
+
enum:
|
|
488
|
+
- twoDotZero
|
|
489
|
+
x-enumDescriptions:
|
|
490
|
+
twoDotZero: Integration App uses the 2.0 edition-based framework.
|
|
491
|
+
description: |-
|
|
492
|
+
Integration App framework version. Present only on Connector entries
|
|
493
|
+
that use the 2.0 edition-based architecture. When set, the
|
|
494
|
+
`twoDotZero` object contains edition metadata.
|
|
495
|
+
twoDotZero:
|
|
496
|
+
type: object
|
|
497
|
+
description: |-
|
|
498
|
+
Edition metadata for Integration Apps using the 2.0 framework.
|
|
499
|
+
Present only when `framework` is `twoDotZero`.
|
|
500
|
+
properties:
|
|
501
|
+
_integrationId:
|
|
502
|
+
type: string
|
|
503
|
+
format: objectId
|
|
504
|
+
description: Integration id that backs this Integration App.
|
|
505
|
+
x-celigo-refModel: integrations
|
|
506
|
+
examples:
|
|
507
|
+
- 6405b9d73496e05ff253d587
|
|
508
|
+
editions:
|
|
509
|
+
type: array
|
|
510
|
+
description: Available editions (e.g. Starter, Professional). Empty when no editions are configured.
|
|
511
|
+
items:
|
|
512
|
+
type: object
|
|
513
|
+
properties:
|
|
514
|
+
_id:
|
|
515
|
+
type: string
|
|
516
|
+
format: objectId
|
|
517
|
+
description: System-generated unique identifier for the edition.
|
|
518
|
+
examples:
|
|
519
|
+
- 66a1f2c3b4d5e6f7a8b9c0d1
|
|
520
|
+
displayName:
|
|
521
|
+
type: string
|
|
522
|
+
description: Edition label shown to users (e.g. "Starter Edition").
|
|
523
|
+
examples:
|
|
524
|
+
- Starter Edition
|
|
525
|
+
order:
|
|
526
|
+
type: integer
|
|
527
|
+
description: Display order among editions.
|
|
528
|
+
examples:
|
|
529
|
+
- 1
|
|
530
|
+
resources:
|
|
531
|
+
type: object
|
|
532
|
+
description: Resource ids included in this edition.
|
|
533
|
+
properties:
|
|
534
|
+
_flowIds:
|
|
535
|
+
type: array
|
|
536
|
+
description: Ids of the flows included in this edition.
|
|
537
|
+
x-celigo-refModel: flows
|
|
538
|
+
items:
|
|
539
|
+
type: string
|
|
540
|
+
format: objectId
|
|
541
|
+
examples:
|
|
542
|
+
- 66b2c3d4e5f6a7b8c9d0e1f2
|
|
543
|
+
_importIds:
|
|
544
|
+
type: array
|
|
545
|
+
description: Ids of the imports included in this edition.
|
|
546
|
+
x-celigo-refModel: imports
|
|
547
|
+
items:
|
|
548
|
+
type: string
|
|
549
|
+
format: objectId
|
|
550
|
+
examples:
|
|
551
|
+
- 66c3d4e5f6a7b8c9d0e1f2a3
|
|
552
|
+
_exportIds:
|
|
553
|
+
type: array
|
|
554
|
+
description: Ids of the exports included in this edition.
|
|
555
|
+
x-celigo-refModel: exports
|
|
556
|
+
items:
|
|
557
|
+
type: string
|
|
558
|
+
format: objectId
|
|
559
|
+
examples:
|
|
560
|
+
- 66d4e5f6a7b8c9d0e1f2a3b4
|
|
561
|
+
_connectionIds:
|
|
562
|
+
type: array
|
|
563
|
+
description: Ids of the connections included in this edition.
|
|
564
|
+
x-celigo-refModel: connections
|
|
565
|
+
items:
|
|
566
|
+
type: string
|
|
567
|
+
format: objectId
|
|
568
|
+
examples:
|
|
569
|
+
- 66e5f6a7b8c9d0e1f2a3b4c5
|
|
570
|
+
_asyncHelperIds:
|
|
571
|
+
type: array
|
|
572
|
+
description: Ids of the async helpers included in this edition.
|
|
573
|
+
x-celigo-refModel: asynchelpers
|
|
574
|
+
items:
|
|
575
|
+
type: string
|
|
576
|
+
format: objectId
|
|
577
|
+
examples:
|
|
578
|
+
- 66f6a7b8c9d0e1f2a3b4c5d6
|
|
579
|
+
_fileDefinitionIds:
|
|
580
|
+
type: array
|
|
581
|
+
description: Ids of the file definitions included in this edition.
|
|
582
|
+
x-celigo-refModel: filedefinitions
|
|
583
|
+
items:
|
|
584
|
+
type: string
|
|
585
|
+
format: objectId
|
|
586
|
+
examples:
|
|
587
|
+
- 6607a8b9c0d1e2f3a4b5c6d7
|
|
588
|
+
childResources:
|
|
589
|
+
type: object
|
|
590
|
+
description: Child resource ids (for parent-child Integration Apps).
|
|
591
|
+
properties:
|
|
592
|
+
_flowIds:
|
|
593
|
+
type: array
|
|
594
|
+
description: Ids of the flows included in this edition's child integrations.
|
|
595
|
+
x-celigo-refModel: flows
|
|
596
|
+
items:
|
|
597
|
+
type: string
|
|
598
|
+
format: objectId
|
|
599
|
+
examples:
|
|
600
|
+
- 6618b9c0d1e2f3a4b5c6d7e8
|
|
601
|
+
_importIds:
|
|
602
|
+
type: array
|
|
603
|
+
description: Ids of the imports included in this edition's child integrations.
|
|
604
|
+
x-celigo-refModel: imports
|
|
605
|
+
items:
|
|
606
|
+
type: string
|
|
607
|
+
format: objectId
|
|
608
|
+
examples:
|
|
609
|
+
- 6629c0d1e2f3a4b5c6d7e8f9
|
|
610
|
+
_exportIds:
|
|
611
|
+
type: array
|
|
612
|
+
description: Ids of the exports included in this edition's child integrations.
|
|
613
|
+
x-celigo-refModel: exports
|
|
614
|
+
items:
|
|
615
|
+
type: string
|
|
616
|
+
format: objectId
|
|
617
|
+
examples:
|
|
618
|
+
- 663ad1e2f3a4b5c6d7e8f9a0
|
|
619
|
+
_connectionIds:
|
|
620
|
+
type: array
|
|
621
|
+
description: Ids of the connections included in this edition's child integrations.
|
|
622
|
+
x-celigo-refModel: connections
|
|
623
|
+
items:
|
|
624
|
+
type: string
|
|
625
|
+
format: objectId
|
|
626
|
+
examples:
|
|
627
|
+
- 664be2f3a4b5c6d7e8f9a0b1
|
|
628
|
+
_asyncHelperIds:
|
|
629
|
+
type: array
|
|
630
|
+
description: Ids of the async helpers included in this edition's child integrations.
|
|
631
|
+
x-celigo-refModel: asynchelpers
|
|
632
|
+
items:
|
|
633
|
+
type: string
|
|
634
|
+
format: objectId
|
|
635
|
+
examples:
|
|
636
|
+
- 665cf3a4b5c6d7e8f9a0b1c2
|
|
637
|
+
_fileDefinitionIds:
|
|
638
|
+
type: array
|
|
639
|
+
description: Ids of the file definitions included in this edition's child integrations.
|
|
640
|
+
x-celigo-refModel: filedefinitions
|
|
641
|
+
items:
|
|
642
|
+
type: string
|
|
643
|
+
format: objectId
|
|
644
|
+
examples:
|
|
645
|
+
- 666da4b5c6d7e8f9a0b1c2d3
|
|
646
|
+
isParentChild:
|
|
647
|
+
type: boolean
|
|
648
|
+
description: When true, this Integration App uses the parent-child model.
|
|
649
|
+
responses:
|
|
650
|
+
401-unauthorized:
|
|
651
|
+
description: |-
|
|
652
|
+
Unauthorized. The request lacks a valid bearer token, or the provided token
|
|
653
|
+
failed to authenticate.
|
|
654
|
+
|
|
655
|
+
Note: the 401 response is produced by the auth middleware **before** the
|
|
656
|
+
request reaches the endpoint handler, so it does **not** follow the
|
|
657
|
+
standard `{errors: [...]}` envelope. Instead the body is a bare
|
|
658
|
+
`{message: string}` object with no `code`, no `errors` array. Callers
|
|
659
|
+
handling 401s should key off the HTTP status and the `message` string,
|
|
660
|
+
not try to destructure an `errors[]`.
|
|
661
|
+
content:
|
|
662
|
+
application/json:
|
|
663
|
+
schema:
|
|
664
|
+
type: object
|
|
665
|
+
properties:
|
|
666
|
+
message:
|
|
667
|
+
type: string
|
|
668
|
+
description: |-
|
|
669
|
+
Human-readable description of the auth failure. Known values:
|
|
670
|
+
- `"Unauthorized"` — no `Authorization` header on the request.
|
|
671
|
+
- `"Bearer Authentication Failed"` — header present but token
|
|
672
|
+
is invalid, revoked, or expired.
|
|
673
|
+
required:
|
|
674
|
+
- message
|
|
675
|
+
examples:
|
|
676
|
+
missing_token:
|
|
677
|
+
summary: No Authorization header sent
|
|
678
|
+
value:
|
|
679
|
+
message: Unauthorized
|
|
680
|
+
invalid_token:
|
|
681
|
+
summary: Bearer token invalid or revoked
|
|
682
|
+
value:
|
|
683
|
+
message: Bearer Authentication Failed
|
|
684
|
+
x-enable-proxy: true
|
|
685
|
+
x-internal: false
|