@apteva/integrations 0.15.10 → 0.15.12
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/dist/http-executor.d.ts.map +1 -1
- package/dist/http-executor.js +144 -8
- package/dist/http-executor.js.map +1 -1
- package/dist/mcp-generator.js +24 -0
- package/dist/mcp-generator.js.map +1 -1
- package/dist/types.d.ts +7 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/apps/anthropic-admin.json +183 -0
- package/src/apps/aws-ses.json +1 -1
- package/src/apps/braintree.json +53 -0
- package/src/apps/bunny-stream.json +50 -28
- package/src/apps/ccbill.json +142 -0
- package/src/apps/close.json +238 -301
- package/src/apps/craftcloud.json +251 -202
- package/src/apps/dataforseo.json +1700 -2
- package/src/apps/deepgram.json +288 -1
- package/src/apps/elevenlabs.json +9 -0
- package/src/apps/fal-ai.json +278 -290
- package/src/apps/gladia.json +158 -0
- package/src/apps/gmail.json +2 -5
- package/src/apps/gumroad.json +569 -0
- package/src/apps/imaterialise.json +171 -262
- package/src/apps/jlcpcb.json +43 -0
- package/src/apps/jungle-scout.json +166 -0
- package/src/apps/kling-ai.json +197 -161
- package/src/apps/ko-fi.json +34 -0
- package/src/apps/leadbyte.json +16 -54
- package/src/apps/lemon-squeezy.json +270 -0
- package/src/apps/mollie.json +219 -0
- package/src/apps/paddle.json +199 -9
- package/src/apps/payhip.json +162 -0
- package/src/apps/paystack.json +207 -0
- package/src/apps/pipedrive.json +221 -212
- package/src/apps/razorpay.json +207 -0
- package/src/apps/replicate.json +315 -61
- package/src/apps/ringover.json +69 -0
- package/src/apps/runpod.json +727 -0
- package/src/apps/runway.json +386 -0
- package/src/apps/salesforce-crm.json +192 -233
- package/src/apps/sculpteo.json +98 -180
- package/src/apps/segpay.json +215 -0
- package/src/apps/shapeways.json +114 -136
- package/src/apps/slant3d.json +260 -168
- package/src/apps/soniox.json +194 -0
- package/src/apps/speechmatics.json +167 -0
- package/src/apps/stability-ai.json +356 -0
- package/src/apps/stripe.json +1 -0
- package/src/apps/surfer.json +511 -0
- package/src/apps/twitter-api.json +19 -21
- package/src/apps/verotel.json +124 -0
- package/src/apps/whop.json +364 -0
- package/src/apps/zendesk-sell.json +248 -0
- package/src/apps/zendesk.json +190 -259
package/src/apps/slant3d.json
CHANGED
|
@@ -1,230 +1,322 @@
|
|
|
1
1
|
{
|
|
2
2
|
"slug": "slant3d",
|
|
3
3
|
"name": "Slant 3D",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "Slant 3D v2 API for on-demand 3D printing, file management, quoting, print farm orders, components, and platform setup.",
|
|
5
5
|
"logo": "https://www.google.com/s2/favicons?domain=slant3d.com&sz=128",
|
|
6
|
-
"categories": [
|
|
7
|
-
|
|
8
|
-
"manufacturing",
|
|
9
|
-
"print-farm",
|
|
10
|
-
"on-demand",
|
|
11
|
-
"slant3d"
|
|
12
|
-
],
|
|
13
|
-
"base_url": "https://www.slant3dapi.com",
|
|
6
|
+
"categories": ["3d-printing", "manufacturing", "print-farm", "on-demand", "slant3d"],
|
|
7
|
+
"base_url": "https://slant3dapi.com/v2",
|
|
14
8
|
"auth": {
|
|
15
|
-
"types": [
|
|
16
|
-
"api_key"
|
|
17
|
-
],
|
|
9
|
+
"types": ["bearer"],
|
|
18
10
|
"headers": {
|
|
19
|
-
"
|
|
11
|
+
"Authorization": "Bearer {{api_key}}"
|
|
20
12
|
},
|
|
21
13
|
"credential_fields": [
|
|
22
14
|
{
|
|
23
15
|
"name": "api_key",
|
|
24
|
-
"label": "
|
|
25
|
-
"description": "
|
|
16
|
+
"label": "API Key",
|
|
17
|
+
"description": "Slant 3D API key. Sent as a Bearer token to the v2 API."
|
|
26
18
|
}
|
|
27
19
|
]
|
|
28
20
|
},
|
|
29
21
|
"tools": [
|
|
30
22
|
{
|
|
31
|
-
"name": "
|
|
32
|
-
"description": "
|
|
23
|
+
"name": "list_filaments",
|
|
24
|
+
"description": "List available Slant 3D filament/profile options.",
|
|
33
25
|
"method": "GET",
|
|
34
|
-
"path": "/
|
|
26
|
+
"path": "/api/filaments",
|
|
27
|
+
"input_schema": { "type": "object", "properties": {} }
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "upload_file_from_url",
|
|
31
|
+
"description": "Register an accessible STL file URL with Slant 3D. Use the returned publicFileServiceId for estimates and orders.",
|
|
32
|
+
"method": "POST",
|
|
33
|
+
"path": "/api/files",
|
|
35
34
|
"input_schema": {
|
|
36
35
|
"type": "object",
|
|
37
36
|
"properties": {
|
|
38
|
-
"fileURL": {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
}
|
|
37
|
+
"fileURL": { "type": "string", "description": "Publicly accessible URL to an STL file." },
|
|
38
|
+
"filename": { "type": "string", "description": "Optional display filename." },
|
|
39
|
+
"ownerId": { "type": "string", "description": "Optional owner/customer id." },
|
|
40
|
+
"platformId": { "type": "string", "description": "Optional Slant platform id." }
|
|
42
41
|
},
|
|
43
|
-
"required": [
|
|
44
|
-
"fileURL"
|
|
45
|
-
]
|
|
42
|
+
"required": ["fileURL"]
|
|
46
43
|
}
|
|
47
44
|
},
|
|
48
45
|
{
|
|
49
|
-
"name": "
|
|
50
|
-
"description": "
|
|
51
|
-
"method": "
|
|
52
|
-
"path": "/
|
|
46
|
+
"name": "create_direct_upload",
|
|
47
|
+
"description": "Create a presigned direct-upload slot for an STL file. Upload the bytes to the returned URL, then call confirm_direct_upload.",
|
|
48
|
+
"method": "POST",
|
|
49
|
+
"path": "/api/files/direct-upload",
|
|
50
|
+
"input_schema": {
|
|
51
|
+
"type": "object",
|
|
52
|
+
"properties": {
|
|
53
|
+
"filename": { "type": "string" },
|
|
54
|
+
"contentType": { "type": "string", "description": "Usually model/stl or application/sla." },
|
|
55
|
+
"ownerId": { "type": "string" },
|
|
56
|
+
"platformId": { "type": "string" }
|
|
57
|
+
},
|
|
58
|
+
"required": ["filename"]
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "confirm_direct_upload",
|
|
63
|
+
"description": "Confirm a previously completed direct upload so Slant 3D can process the STL.",
|
|
64
|
+
"method": "POST",
|
|
65
|
+
"path": "/api/files/confirm-upload",
|
|
53
66
|
"input_schema": {
|
|
54
67
|
"type": "object",
|
|
55
|
-
"properties": {
|
|
68
|
+
"properties": {
|
|
69
|
+
"uploadId": { "type": "string" },
|
|
70
|
+
"key": { "type": "string" },
|
|
71
|
+
"filename": { "type": "string" },
|
|
72
|
+
"ownerId": { "type": "string" },
|
|
73
|
+
"platformId": { "type": "string" }
|
|
74
|
+
},
|
|
75
|
+
"required": ["uploadId"]
|
|
56
76
|
}
|
|
57
77
|
},
|
|
58
78
|
{
|
|
59
|
-
"name": "
|
|
60
|
-
"description": "
|
|
79
|
+
"name": "get_file",
|
|
80
|
+
"description": "Get metadata and processing status for an uploaded Slant 3D file.",
|
|
61
81
|
"method": "GET",
|
|
62
|
-
"path": "/
|
|
82
|
+
"path": "/api/files/{publicFileServiceId}",
|
|
63
83
|
"input_schema": {
|
|
64
84
|
"type": "object",
|
|
65
|
-
"properties": {
|
|
85
|
+
"properties": {
|
|
86
|
+
"publicFileServiceId": { "type": "string" }
|
|
87
|
+
},
|
|
88
|
+
"required": ["publicFileServiceId"]
|
|
66
89
|
}
|
|
67
90
|
},
|
|
68
91
|
{
|
|
69
|
-
"name": "
|
|
70
|
-
"description": "
|
|
92
|
+
"name": "list_files",
|
|
93
|
+
"description": "List uploaded files. Supports optional owner/platform/search pagination filters.",
|
|
71
94
|
"method": "GET",
|
|
72
|
-
"path": "/
|
|
73
|
-
"
|
|
74
|
-
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
},
|
|
80
|
-
"
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
"type": "string"
|
|
98
|
-
"description": "URL to the STL file"
|
|
99
|
-
},
|
|
100
|
-
"bill_to_street_1": {
|
|
101
|
-
"type": "string",
|
|
102
|
-
"description": "Billing address line 1"
|
|
103
|
-
},
|
|
104
|
-
"bill_to_city": {
|
|
105
|
-
"type": "string",
|
|
106
|
-
"description": "Billing city"
|
|
107
|
-
},
|
|
108
|
-
"bill_to_state": {
|
|
109
|
-
"type": "string",
|
|
110
|
-
"description": "Billing state"
|
|
111
|
-
},
|
|
112
|
-
"bill_to_zip": {
|
|
113
|
-
"type": "string",
|
|
114
|
-
"description": "Billing ZIP code"
|
|
115
|
-
},
|
|
116
|
-
"bill_to_country_as_iso": {
|
|
117
|
-
"type": "string",
|
|
118
|
-
"description": "Billing country ISO code (default: US)"
|
|
119
|
-
},
|
|
120
|
-
"ship_to_name": {
|
|
121
|
-
"type": "string",
|
|
122
|
-
"description": "Shipping recipient name"
|
|
123
|
-
},
|
|
124
|
-
"ship_to_street_1": {
|
|
125
|
-
"type": "string",
|
|
126
|
-
"description": "Shipping address line 1"
|
|
127
|
-
},
|
|
128
|
-
"ship_to_city": {
|
|
129
|
-
"type": "string",
|
|
130
|
-
"description": "Shipping city"
|
|
131
|
-
},
|
|
132
|
-
"ship_to_state": {
|
|
133
|
-
"type": "string",
|
|
134
|
-
"description": "Shipping state"
|
|
135
|
-
},
|
|
136
|
-
"ship_to_zip": {
|
|
137
|
-
"type": "string",
|
|
138
|
-
"description": "Shipping ZIP code"
|
|
139
|
-
},
|
|
140
|
-
"ship_to_country_as_iso": {
|
|
141
|
-
"type": "string",
|
|
142
|
-
"description": "Shipping country ISO code (default: US)"
|
|
143
|
-
},
|
|
144
|
-
"order_quantity": {
|
|
145
|
-
"type": "number",
|
|
146
|
-
"description": "Quantity to print (default: 1)"
|
|
147
|
-
},
|
|
148
|
-
"profile": {
|
|
149
|
-
"type": "string",
|
|
150
|
-
"description": "Filament profile (default: PLA BLACK)"
|
|
95
|
+
"path": "/api/files",
|
|
96
|
+
"query_params": ["ownerId", "platformId", "search", "limit", "offset", "sortBy", "order"],
|
|
97
|
+
"input_schema": {
|
|
98
|
+
"type": "object",
|
|
99
|
+
"properties": {
|
|
100
|
+
"ownerId": { "type": "string" },
|
|
101
|
+
"platformId": { "type": "string" },
|
|
102
|
+
"search": { "type": "string" },
|
|
103
|
+
"limit": { "type": "integer" },
|
|
104
|
+
"offset": { "type": "integer" },
|
|
105
|
+
"sortBy": { "type": "string" },
|
|
106
|
+
"order": { "type": "string", "enum": ["asc", "desc"] }
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "get_files_batch",
|
|
112
|
+
"description": "Fetch metadata for several Slant 3D files in one call.",
|
|
113
|
+
"method": "POST",
|
|
114
|
+
"path": "/api/files/batch",
|
|
115
|
+
"input_schema": {
|
|
116
|
+
"type": "object",
|
|
117
|
+
"properties": {
|
|
118
|
+
"publicFileServiceIds": {
|
|
119
|
+
"type": "array",
|
|
120
|
+
"items": { "type": "string" }
|
|
151
121
|
}
|
|
152
122
|
},
|
|
153
|
-
"required": [
|
|
154
|
-
"email",
|
|
155
|
-
"name",
|
|
156
|
-
"fileURL"
|
|
157
|
-
]
|
|
123
|
+
"required": ["publicFileServiceIds"]
|
|
158
124
|
}
|
|
159
125
|
},
|
|
160
126
|
{
|
|
161
|
-
"name": "
|
|
162
|
-
"description": "
|
|
127
|
+
"name": "estimate_file_price",
|
|
128
|
+
"description": "Estimate printing price for a processed file. Defaults to Slant's default filament/profile if no filament is provided.",
|
|
129
|
+
"method": "POST",
|
|
130
|
+
"path": "/api/files/{publicFileServiceId}",
|
|
131
|
+
"input_schema": {
|
|
132
|
+
"type": "object",
|
|
133
|
+
"properties": {
|
|
134
|
+
"publicFileServiceId": { "type": "string" },
|
|
135
|
+
"quantity": { "type": "integer", "default": 1 },
|
|
136
|
+
"filament": { "type": "string", "description": "Filament/profile name, for example PLA BLACK." },
|
|
137
|
+
"ship_to_zip": { "type": "string" },
|
|
138
|
+
"ship_to_country_as_iso": { "type": "string" },
|
|
139
|
+
"options": { "type": "object", "description": "Provider-specific slicer/order options." }
|
|
140
|
+
},
|
|
141
|
+
"required": ["publicFileServiceId"]
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"name": "generate_stl_from_openscad",
|
|
146
|
+
"description": "Generate an STL file from OpenSCAD source and register it with Slant 3D.",
|
|
147
|
+
"method": "POST",
|
|
148
|
+
"path": "/api/files/openScad",
|
|
149
|
+
"input_schema": {
|
|
150
|
+
"type": "object",
|
|
151
|
+
"properties": {
|
|
152
|
+
"code": { "type": "string", "description": "OpenSCAD source code." },
|
|
153
|
+
"filename": { "type": "string" },
|
|
154
|
+
"parameters": { "type": "object" },
|
|
155
|
+
"ownerId": { "type": "string" },
|
|
156
|
+
"platformId": { "type": "string" }
|
|
157
|
+
},
|
|
158
|
+
"required": ["code"]
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"name": "list_components",
|
|
163
|
+
"description": "List reusable Slant 3D components.",
|
|
163
164
|
"method": "GET",
|
|
164
|
-
"path": "/
|
|
165
|
-
"input_schema": {
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
},
|
|
176
|
-
"
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
},
|
|
180
|
-
"
|
|
181
|
-
|
|
182
|
-
"description": "Shipping ZIP code for estimate"
|
|
183
|
-
},
|
|
184
|
-
"ship_to_country_as_iso": {
|
|
185
|
-
"type": "string",
|
|
186
|
-
"description": "Shipping country ISO code (default: US)"
|
|
187
|
-
}
|
|
165
|
+
"path": "/api/components",
|
|
166
|
+
"input_schema": { "type": "object", "properties": {} }
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "create_draft_order",
|
|
170
|
+
"description": "Create a draft print order. Put customer, address, line items, and metadata in body using Slant 3D's v2 order shape.",
|
|
171
|
+
"method": "POST",
|
|
172
|
+
"path": "/api/orders",
|
|
173
|
+
"input_schema": {
|
|
174
|
+
"type": "object",
|
|
175
|
+
"properties": {
|
|
176
|
+
"customer": { "type": "object" },
|
|
177
|
+
"shippingAddress": { "type": "object" },
|
|
178
|
+
"billingAddress": { "type": "object" },
|
|
179
|
+
"items": { "type": "array", "items": { "type": "object" } },
|
|
180
|
+
"metadata": { "type": "object" },
|
|
181
|
+
"platformId": { "type": "string" },
|
|
182
|
+
"ownerId": { "type": "string" }
|
|
188
183
|
},
|
|
189
|
-
"required": [
|
|
190
|
-
"fileURL"
|
|
191
|
-
]
|
|
184
|
+
"required": ["items"]
|
|
192
185
|
}
|
|
193
186
|
},
|
|
194
187
|
{
|
|
195
|
-
"name": "
|
|
196
|
-
"description": "
|
|
188
|
+
"name": "process_order",
|
|
189
|
+
"description": "Submit/process an existing draft order.",
|
|
190
|
+
"method": "POST",
|
|
191
|
+
"path": "/api/orders/{publicOrderId}",
|
|
192
|
+
"input_schema": {
|
|
193
|
+
"type": "object",
|
|
194
|
+
"properties": {
|
|
195
|
+
"publicOrderId": { "type": "string" },
|
|
196
|
+
"paymentMethodId": { "type": "string" },
|
|
197
|
+
"metadata": { "type": "object" }
|
|
198
|
+
},
|
|
199
|
+
"required": ["publicOrderId"]
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"name": "get_order",
|
|
204
|
+
"description": "Get a Slant 3D order by public order id.",
|
|
197
205
|
"method": "GET",
|
|
198
|
-
"path": "/
|
|
206
|
+
"path": "/api/orders/{publicOrderId}",
|
|
199
207
|
"input_schema": {
|
|
200
208
|
"type": "object",
|
|
201
209
|
"properties": {
|
|
202
|
-
"
|
|
203
|
-
"type": "string",
|
|
204
|
-
"description": "The order ID to delete"
|
|
205
|
-
}
|
|
210
|
+
"publicOrderId": { "type": "string" }
|
|
206
211
|
},
|
|
207
|
-
"required": [
|
|
208
|
-
"orderId"
|
|
209
|
-
]
|
|
212
|
+
"required": ["publicOrderId"]
|
|
210
213
|
}
|
|
211
214
|
},
|
|
212
215
|
{
|
|
213
|
-
"name": "
|
|
214
|
-
"description": "
|
|
216
|
+
"name": "list_orders",
|
|
217
|
+
"description": "List Slant 3D orders with optional owner/platform/status/search pagination filters.",
|
|
215
218
|
"method": "GET",
|
|
216
|
-
"path": "/
|
|
219
|
+
"path": "/api/orders",
|
|
220
|
+
"query_params": ["ownerId", "platformId", "status", "search", "limit", "offset", "sortBy", "order"],
|
|
221
|
+
"input_schema": {
|
|
222
|
+
"type": "object",
|
|
223
|
+
"properties": {
|
|
224
|
+
"ownerId": { "type": "string" },
|
|
225
|
+
"platformId": { "type": "string" },
|
|
226
|
+
"status": { "type": "string" },
|
|
227
|
+
"search": { "type": "string" },
|
|
228
|
+
"limit": { "type": "integer" },
|
|
229
|
+
"offset": { "type": "integer" },
|
|
230
|
+
"sortBy": { "type": "string" },
|
|
231
|
+
"order": { "type": "string", "enum": ["asc", "desc"] }
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"name": "get_orders_batch",
|
|
237
|
+
"description": "Fetch several Slant 3D orders in one call.",
|
|
238
|
+
"method": "POST",
|
|
239
|
+
"path": "/api/orders/batch",
|
|
217
240
|
"input_schema": {
|
|
218
241
|
"type": "object",
|
|
219
242
|
"properties": {
|
|
220
|
-
"
|
|
221
|
-
"type": "
|
|
222
|
-
"
|
|
243
|
+
"publicOrderIds": {
|
|
244
|
+
"type": "array",
|
|
245
|
+
"items": { "type": "string" }
|
|
223
246
|
}
|
|
224
247
|
},
|
|
225
|
-
"required": [
|
|
226
|
-
|
|
227
|
-
|
|
248
|
+
"required": ["publicOrderIds"]
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"name": "cancel_order",
|
|
253
|
+
"description": "Cancel/delete a Slant 3D order when the upstream state still allows it.",
|
|
254
|
+
"method": "DELETE",
|
|
255
|
+
"path": "/api/orders/{publicOrderId}",
|
|
256
|
+
"input_schema": {
|
|
257
|
+
"type": "object",
|
|
258
|
+
"properties": {
|
|
259
|
+
"publicOrderId": { "type": "string" }
|
|
260
|
+
},
|
|
261
|
+
"required": ["publicOrderId"]
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"name": "list_platforms",
|
|
266
|
+
"description": "List Slant 3D platforms available to the authenticated account.",
|
|
267
|
+
"method": "GET",
|
|
268
|
+
"path": "/api/platforms",
|
|
269
|
+
"input_schema": { "type": "object", "properties": {} }
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"name": "create_platform",
|
|
273
|
+
"description": "Create a Slant 3D platform configuration.",
|
|
274
|
+
"method": "POST",
|
|
275
|
+
"path": "/api/platforms",
|
|
276
|
+
"input_schema": {
|
|
277
|
+
"type": "object",
|
|
278
|
+
"properties": {
|
|
279
|
+
"name": { "type": "string" },
|
|
280
|
+
"metadata": { "type": "object" }
|
|
281
|
+
},
|
|
282
|
+
"required": ["name"]
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"name": "get_platform",
|
|
287
|
+
"description": "Get a Slant 3D platform by id.",
|
|
288
|
+
"method": "GET",
|
|
289
|
+
"path": "/api/platforms/{platformId}",
|
|
290
|
+
"input_schema": {
|
|
291
|
+
"type": "object",
|
|
292
|
+
"properties": { "platformId": { "type": "string" } },
|
|
293
|
+
"required": ["platformId"]
|
|
294
|
+
}
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"name": "update_platform",
|
|
298
|
+
"description": "Patch a Slant 3D platform configuration.",
|
|
299
|
+
"method": "PATCH",
|
|
300
|
+
"path": "/api/platforms/{platformId}",
|
|
301
|
+
"input_schema": {
|
|
302
|
+
"type": "object",
|
|
303
|
+
"properties": {
|
|
304
|
+
"platformId": { "type": "string" },
|
|
305
|
+
"name": { "type": "string" },
|
|
306
|
+
"metadata": { "type": "object" }
|
|
307
|
+
},
|
|
308
|
+
"required": ["platformId"]
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"name": "delete_platform",
|
|
313
|
+
"description": "Delete a Slant 3D platform configuration.",
|
|
314
|
+
"method": "DELETE",
|
|
315
|
+
"path": "/api/platforms/{platformId}",
|
|
316
|
+
"input_schema": {
|
|
317
|
+
"type": "object",
|
|
318
|
+
"properties": { "platformId": { "type": "string" } },
|
|
319
|
+
"required": ["platformId"]
|
|
228
320
|
}
|
|
229
321
|
}
|
|
230
322
|
]
|