@apteva/integrations 0.15.10 → 0.15.11

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.
Files changed (48) hide show
  1. package/dist/http-executor.d.ts.map +1 -1
  2. package/dist/http-executor.js +62 -8
  3. package/dist/http-executor.js.map +1 -1
  4. package/dist/mcp-generator.js +24 -0
  5. package/dist/mcp-generator.js.map +1 -1
  6. package/dist/types.d.ts +4 -0
  7. package/dist/types.d.ts.map +1 -1
  8. package/package.json +1 -1
  9. package/src/apps/anthropic-admin.json +183 -0
  10. package/src/apps/aws-ses.json +1 -1
  11. package/src/apps/braintree.json +53 -0
  12. package/src/apps/bunny-stream.json +50 -28
  13. package/src/apps/ccbill.json +142 -0
  14. package/src/apps/close.json +238 -301
  15. package/src/apps/craftcloud.json +251 -202
  16. package/src/apps/dataforseo.json +1700 -2
  17. package/src/apps/deepgram.json +288 -1
  18. package/src/apps/elevenlabs.json +9 -0
  19. package/src/apps/gladia.json +158 -0
  20. package/src/apps/gmail.json +2 -5
  21. package/src/apps/gumroad.json +569 -0
  22. package/src/apps/imaterialise.json +171 -262
  23. package/src/apps/jlcpcb.json +43 -0
  24. package/src/apps/jungle-scout.json +166 -0
  25. package/src/apps/ko-fi.json +34 -0
  26. package/src/apps/lemon-squeezy.json +270 -0
  27. package/src/apps/mollie.json +219 -0
  28. package/src/apps/paddle.json +199 -9
  29. package/src/apps/payhip.json +162 -0
  30. package/src/apps/paystack.json +207 -0
  31. package/src/apps/pipedrive.json +221 -212
  32. package/src/apps/razorpay.json +207 -0
  33. package/src/apps/ringover.json +69 -0
  34. package/src/apps/runpod.json +727 -0
  35. package/src/apps/salesforce-crm.json +192 -233
  36. package/src/apps/sculpteo.json +98 -180
  37. package/src/apps/segpay.json +215 -0
  38. package/src/apps/shapeways.json +114 -136
  39. package/src/apps/slant3d.json +260 -168
  40. package/src/apps/soniox.json +194 -0
  41. package/src/apps/speechmatics.json +167 -0
  42. package/src/apps/stripe.json +1 -0
  43. package/src/apps/surfer.json +511 -0
  44. package/src/apps/twitter-api.json +14 -1
  45. package/src/apps/verotel.json +124 -0
  46. package/src/apps/whop.json +364 -0
  47. package/src/apps/zendesk-sell.json +248 -0
  48. package/src/apps/zendesk.json +190 -259
@@ -1,233 +1,151 @@
1
1
  {
2
2
  "slug": "sculpteo",
3
3
  "name": "Sculpteo",
4
- "description": "MCP server for Sculpteo 3D printing services - upload models, get quotes, configure designs, and place orders",
4
+ "description": "Sculpteo WebAPI for uploading designs, listing public designs/materials, pricing designs, ordering designs, and tracking orders.",
5
5
  "logo": "https://www.google.com/s2/favicons?domain=sculpteo.com&sz=128",
6
- "categories": [
7
- "3d-printing",
8
- "sculpteo",
9
- "manufacturing",
10
- "prototyping",
11
- "materials"
12
- ],
13
- "base_url": "https://api.sculpteo.com/v1",
6
+ "categories": ["3d-printing", "sculpteo", "manufacturing", "prototyping", "materials"],
7
+ "base_url": "https://www.sculpteo.com",
14
8
  "auth": {
15
- "types": [
16
- "bearer"
17
- ],
9
+ "types": ["api_key"],
18
10
  "headers": {
19
- "Authorization": "Bearer {{token}}"
11
+ "Content-Type": "application/x-www-form-urlencoded"
12
+ },
13
+ "body_params": {
14
+ "login": "{{login}}",
15
+ "password": "{{password}}"
20
16
  },
21
17
  "credential_fields": [
22
18
  {
23
- "name": "token",
24
- "label": "Api Key",
25
- "description": "Sculpteo API key from your Sculpteo account settings"
19
+ "name": "login",
20
+ "label": "Login",
21
+ "description": "Sculpteo account login/email used by order APIs."
22
+ },
23
+ {
24
+ "name": "password",
25
+ "label": "Password",
26
+ "type": "password",
27
+ "description": "Sculpteo account password used by order APIs."
26
28
  }
27
29
  ]
28
30
  },
29
31
  "tools": [
30
32
  {
31
33
  "name": "list_materials",
32
- "description": "Get available materials and their properties from Sculpteo",
34
+ "description": "List Sculpteo materials in JSON. Material ids are used by price and order calls.",
33
35
  "method": "GET",
34
- "path": "/list-materials",
36
+ "path": "/{language}/api/material/list/",
35
37
  "input_schema": {
36
38
  "type": "object",
37
39
  "properties": {
38
- "category": {
39
- "type": "string",
40
- "description": "Filter by material category (plastic, metal, resin)"
41
- },
42
- "technology": {
43
- "type": "string",
44
- "description": "Filter by printing technology (SLS, SLA, DMLS, FDM)"
45
- }
46
- }
40
+ "language": { "type": "string", "enum": ["en", "fr"], "default": "en" }
41
+ },
42
+ "required": ["language"]
47
43
  }
48
44
  },
49
45
  {
50
- "name": "upload_and_repair",
51
- "description": "Upload 3D model to Sculpteo with automatic repair and optimization",
52
- "method": "POST",
53
- "path": "/upload-and-repair",
46
+ "name": "list_designs",
47
+ "description": "Search or page Sculpteo public designs.",
48
+ "method": "GET",
49
+ "path": "/{language}/gallery/x_design_list/",
50
+ "query_params": ["order_by", "designer", "design_list", "search", "start", "count", "paginate_by", "page"],
54
51
  "input_schema": {
55
52
  "type": "object",
56
53
  "properties": {
57
- "file": {
58
- "type": "string",
59
- "description": "Base64 encoded 3D model file (STL, OBJ, etc.)"
60
- },
61
- "fileName": {
62
- "type": "string",
63
- "description": "Name of the file"
64
- },
65
- "autoRepair": {
66
- "type": "boolean",
67
- "description": "Automatically repair model issues",
68
- "default": true
69
- },
70
- "optimize": {
71
- "type": "boolean",
72
- "description": "Optimize model for 3D printing",
73
- "default": true
74
- }
54
+ "language": { "type": "string", "enum": ["en", "fr"], "default": "en" },
55
+ "order_by": { "type": "string", "enum": ["timestamp", "rate"] },
56
+ "designer": { "type": "string" },
57
+ "design_list": { "type": "string" },
58
+ "search": { "type": "string" },
59
+ "start": { "type": "integer" },
60
+ "count": { "type": "integer" },
61
+ "paginate_by": { "type": "integer" },
62
+ "page": { "type": "integer" }
75
63
  },
76
- "required": [
77
- "file",
78
- "fileName"
79
- ]
64
+ "required": ["language"]
80
65
  }
81
66
  },
82
67
  {
83
- "name": "configure_design",
84
- "description": "Configure 3D design with material, finish, and scaling options",
85
- "method": "GET",
86
- "path": "/configure-design",
68
+ "name": "upload_design_base64",
69
+ "description": "Upload a design using Sculpteo's direct upload endpoint with urlsafe base64 file data. For multipart uploads, use Sculpteo directly because the generic runner does not yet send multipart bodies.",
70
+ "method": "POST",
71
+ "path": "/{language}/upload_design/a/3D/",
87
72
  "input_schema": {
88
73
  "type": "object",
89
74
  "properties": {
90
- "designId": {
91
- "type": "string",
92
- "description": "ID of the uploaded design"
93
- },
94
- "materialId": {
95
- "type": "string",
96
- "description": "Material ID to use for printing"
97
- },
98
- "finishId": {
99
- "type": "string",
100
- "description": "Finish/color ID"
101
- },
102
- "scale": {
103
- "type": "number",
104
- "description": "Scale factor for the model",
105
- "default": 1
106
- },
107
- "quantity": {
108
- "type": "number",
109
- "description": "Number of copies to print",
110
- "default": 1
111
- }
75
+ "language": { "type": "string", "enum": ["en", "fr"], "default": "en" },
76
+ "file": { "type": "string", "description": "URL-safe base64 model data, using - and _ instead of + and /." },
77
+ "filename": { "type": "string", "description": "Filename with extension." },
78
+ "name": { "type": "string", "description": "Design name." },
79
+ "description": { "type": "string" },
80
+ "keywords": { "type": "string" },
81
+ "share": { "type": "integer", "enum": [0, 1], "default": 0 },
82
+ "print_authorization": { "type": "integer", "enum": [0, 1], "default": 1 },
83
+ "customizable": { "type": "integer", "enum": [0, 1], "default": 0 },
84
+ "unit": { "type": "string", "enum": ["mm", "cm", "in", "ft", "yd"], "default": "cm" },
85
+ "scale": { "type": "number", "default": 1 },
86
+ "materials": { "type": "string", "description": "Comma-separated material ids to allow." }
112
87
  },
113
- "required": [
114
- "designId",
115
- "materialId"
116
- ]
88
+ "required": ["language", "file", "filename", "name"]
117
89
  }
118
90
  },
119
91
  {
120
- "name": "batch_quote",
121
- "description": "Get pricing quotes for multiple designs and material combinations",
92
+ "name": "get_price_by_uuid",
93
+ "description": "Get 3D print price for a Sculpteo design UUID, material, scale, quantity, unit, and currency.",
122
94
  "method": "GET",
123
- "path": "/batch-quote",
95
+ "path": "/{language}/api/design/3D/price_by_uuid/",
96
+ "query_params": ["uuid", "quantity", "scale", "unit", "currency", "productname"],
124
97
  "input_schema": {
125
98
  "type": "object",
126
99
  "properties": {
127
- "items": {
128
- "type": "array",
129
- "description": "Array of design configurations to quote",
130
- "items": {
131
- "type": "object",
132
- "properties": {
133
- "designId": {
134
- "type": "string"
135
- },
136
- "materialId": {
137
- "type": "string"
138
- },
139
- "quantity": {
140
- "type": "number",
141
- "default": 1
142
- }
143
- },
144
- "required": [
145
- "designId",
146
- "materialId"
147
- ]
148
- }
149
- },
150
- "shippingCountry": {
151
- "type": "string",
152
- "description": "ISO country code for shipping"
153
- }
100
+ "language": { "type": "string", "enum": ["en", "fr"], "default": "en" },
101
+ "uuid": { "type": "string", "description": "Sculpteo design UUID." },
102
+ "quantity": { "type": "integer", "default": 1 },
103
+ "scale": { "type": "number", "default": 1 },
104
+ "unit": { "type": "string", "enum": ["mm", "cm", "m", "in", "ft", "yd"], "default": "cm" },
105
+ "currency": { "type": "string", "enum": ["EUR", "USD", "GBP"] },
106
+ "productname": { "type": "string", "description": "Material id, or comma-separated material ids for multi-material pricing." }
154
107
  },
155
- "required": [
156
- "items"
157
- ]
108
+ "required": ["language", "uuid"]
158
109
  }
159
110
  },
160
111
  {
161
112
  "name": "create_order",
162
- "description": "Place a 3D printing order with configured designs",
113
+ "description": "Order Sculpteo designs by UUID. The API uses form keys item[0], item[1], etc. Each item value is '<uuid>:<qty>:<scale>:<unit>:<material>'. Invoice ordering must be enabled by Sculpteo.",
163
114
  "method": "POST",
164
- "path": "/create-order",
115
+ "path": "/{language}/api/store/3D/order/",
116
+ "input_schema": {
117
+ "type": "object",
118
+ "properties": {
119
+ "language": { "type": "string", "enum": ["en", "fr"], "default": "en" },
120
+ "item[0]": { "type": "string", "description": "First item as <uuid>:<qty>:<scale>:<unit>:<material>." },
121
+ "item[1]": { "type": "string", "description": "Optional second item as <uuid>:<qty>:<scale>:<unit>:<material>." },
122
+ "item[2]": { "type": "string", "description": "Optional third item as <uuid>:<qty>:<scale>:<unit>:<material>." },
123
+ "ship_addressee": { "type": "string" },
124
+ "ship_street1": { "type": "string" },
125
+ "ship_street2": { "type": "string" },
126
+ "ship_city": { "type": "string" },
127
+ "ship_state": { "type": "string" },
128
+ "ship_postal_code": { "type": "string" },
129
+ "ship_country": { "type": "string", "description": "ISO 3166-1 alpha-2 country code." },
130
+ "ship_method": { "type": "string", "enum": ["express", "quick"] },
131
+ "notification_url": { "type": "string", "description": "Optional webhook URL for order status changes." },
132
+ "fake": { "type": "integer", "enum": [0, 1], "description": "Use 1 for Sculpteo API test orders where supported." },
133
+ "comment": { "type": "string" }
134
+ },
135
+ "required": ["language", "item[0]"]
136
+ }
137
+ },
138
+ {
139
+ "name": "get_order_tracking",
140
+ "description": "Open tracking/status information for a Sculpteo order reference returned by create_order.",
141
+ "method": "GET",
142
+ "path": "/shop/tracking/reference/{reference}",
165
143
  "input_schema": {
166
144
  "type": "object",
167
145
  "properties": {
168
- "items": {
169
- "type": "array",
170
- "description": "Array of configured designs to order",
171
- "items": {
172
- "type": "object",
173
- "properties": {
174
- "designId": {
175
- "type": "string"
176
- },
177
- "materialId": {
178
- "type": "string"
179
- },
180
- "finishId": {
181
- "type": "string"
182
- },
183
- "quantity": {
184
- "type": "number",
185
- "default": 1
186
- }
187
- },
188
- "required": [
189
- "designId",
190
- "materialId"
191
- ]
192
- }
193
- },
194
- "shippingAddress": {
195
- "type": "object",
196
- "description": "Shipping address details",
197
- "properties": {
198
- "name": {
199
- "type": "string"
200
- },
201
- "address": {
202
- "type": "string"
203
- },
204
- "city": {
205
- "type": "string"
206
- },
207
- "postalCode": {
208
- "type": "string"
209
- },
210
- "country": {
211
- "type": "string"
212
- }
213
- },
214
- "required": [
215
- "name",
216
- "address",
217
- "city",
218
- "postalCode",
219
- "country"
220
- ]
221
- },
222
- "shippingMethod": {
223
- "type": "string",
224
- "description": "Shipping method (standard, express)"
225
- }
146
+ "reference": { "type": "string" }
226
147
  },
227
- "required": [
228
- "items",
229
- "shippingAddress"
230
- ]
148
+ "required": ["reference"]
231
149
  }
232
150
  }
233
151
  ]
@@ -0,0 +1,215 @@
1
+ {
2
+ "slug": "segpay",
3
+ "name": "Segpay",
4
+ "description": "Adult-friendly Segpay payment integration for hosted checkout links, SRS reporting/support calls, postback IPs, refunds, cancellations, reactivations, and subsite creation.",
5
+ "logo": "https://www.google.com/s2/favicons?domain=segpay.com&sz=128",
6
+ "categories": ["payments", "adult", "high-risk", "subscriptions", "checkout"],
7
+ "base_url": "https://srs.segpay.com",
8
+ "auth": {
9
+ "types": ["api_key", "basic"],
10
+ "credential_fields": [
11
+ {
12
+ "name": "user_id",
13
+ "label": "SRS User ID",
14
+ "description": "Segpay Reporting Service User ID.",
15
+ "required": false,
16
+ "type": "text"
17
+ },
18
+ {
19
+ "name": "user_access_key",
20
+ "label": "SRS User Access Key",
21
+ "description": "Segpay Reporting Service User Access Key.",
22
+ "required": false
23
+ },
24
+ {
25
+ "name": "basic_auth",
26
+ "label": "MerchantServices Basic Auth",
27
+ "description": "Base64-encoded credentials for Segpay MerchantServices APIs. Do not include the 'Basic ' prefix.",
28
+ "required": false
29
+ }
30
+ ]
31
+ },
32
+ "tools": [
33
+ {
34
+ "name": "generate_payment_page_url",
35
+ "description": "Generate a Segpay hosted payment page URL from a package/button-code x-eticketid and optional prefill/tracking parameters.",
36
+ "method": "GET",
37
+ "base_url": "https://secure2.segpay.com",
38
+ "path": "/billing/poset.cgi?x-eticketid={x_eticketid}",
39
+ "return_request_url": true,
40
+ "input_schema": {
41
+ "type": "object",
42
+ "properties": {
43
+ "x_eticketid": { "type": "string", "description": "Segpay package/button-code eticket ID, for example xxxxxx:xxxxx." },
44
+ "email": { "type": "string" },
45
+ "username": { "type": "string" },
46
+ "first_name": { "type": "string" },
47
+ "last_name": { "type": "string" },
48
+ "custom1": { "type": "string" },
49
+ "custom2": { "type": "string" },
50
+ "custom3": { "type": "string" }
51
+ },
52
+ "required": ["x_eticketid"]
53
+ }
54
+ },
55
+ {
56
+ "name": "validate_user_access",
57
+ "description": "Validate SRS credentials and return the linked Segpay merchant ID.",
58
+ "method": "GET",
59
+ "path": "/adm.asmx/ValidateUserAccess?UserID={{credential.user_id}}&UserAccessKey={{credential.user_access_key}}",
60
+ "input_schema": { "type": "object", "properties": {} }
61
+ },
62
+ {
63
+ "name": "list_transactions",
64
+ "description": "Run Segpay TransactionsList_V3 for a date range or transaction filters. Dates use mmddyyyy.",
65
+ "method": "GET",
66
+ "path": "/MWS.asmx/TransactionsList_V3?UserID={{credential.user_id}}&UserAccessKey={{credential.user_access_key}}",
67
+ "input_schema": { "type": "object", "properties": { "BegDate": { "type": "string" }, "EndDate": { "type": "string" }, "TransID": { "type": "string" }, "URLID": { "type": "string" } } }
68
+ },
69
+ {
70
+ "name": "get_transaction_by_id",
71
+ "description": "Get Segpay transaction details by transaction ID.",
72
+ "method": "GET",
73
+ "path": "/MWS.asmx/TransactionsByTransID?UserID={{credential.user_id}}&UserAccessKey={{credential.user_access_key}}",
74
+ "input_schema": { "type": "object", "properties": { "TransID": { "type": "string" } }, "required": ["TransID"] }
75
+ },
76
+ {
77
+ "name": "get_transactions_by_purchase_id",
78
+ "description": "Get all Segpay transactions associated with a purchase ID, including initial purchases, rebills, refunds, and related events.",
79
+ "method": "GET",
80
+ "path": "/MWS.asmx/TransactionByPurchaseID?UserID={{credential.user_id}}&UserAccessKey={{credential.user_access_key}}",
81
+ "input_schema": { "type": "object", "properties": { "PurchaseID": { "type": "string" } }, "required": ["PurchaseID"] }
82
+ },
83
+ {
84
+ "name": "list_declined_transactions",
85
+ "description": "Run Segpay TransactionsList_Declined_V2 for declined transactions in a date range. Dates use mmddyyyy.",
86
+ "method": "GET",
87
+ "path": "/MWS.asmx/TransactionsList_Declined_V2?UserID={{credential.user_id}}&UserAccessKey={{credential.user_access_key}}",
88
+ "input_schema": { "type": "object", "properties": { "BegDate": { "type": "string" }, "EndDate": { "type": "string" }, "URLID": { "type": "string" } } }
89
+ },
90
+ {
91
+ "name": "list_purchases_by_url",
92
+ "description": "Run Segpay TransactionsPurchasesByURL_V5 for purchase and transaction details for a URL.",
93
+ "method": "GET",
94
+ "path": "/MWS.asmx/TransactionsPurchasesByURL_V5?UserID={{credential.user_id}}&UserAccessKey={{credential.user_access_key}}",
95
+ "input_schema": { "type": "object", "properties": { "BegDate": { "type": "string" }, "EndDate": { "type": "string" }, "URLID": { "type": "string" }, "TransID": { "type": "string" } } }
96
+ },
97
+ {
98
+ "name": "revenue_daily_summary",
99
+ "description": "Get Segpay revenue per transaction over a date range.",
100
+ "method": "GET",
101
+ "path": "/MWS.asmx/RevenueDailySummary?UserID={{credential.user_id}}&UserAccessKey={{credential.user_access_key}}",
102
+ "input_schema": { "type": "object", "properties": { "BegDate": { "type": "string" }, "EndDate": { "type": "string" }, "URLID": { "type": "string" } } }
103
+ },
104
+ {
105
+ "name": "revenue_summary_by_url",
106
+ "description": "Get Segpay sales, refunds, chargebacks, revokes, declines, and voids by URL for a date range.",
107
+ "method": "GET",
108
+ "path": "/MWS.asmx/RevenueSummaryByURL?UserID={{credential.user_id}}&UserAccessKey={{credential.user_access_key}}",
109
+ "input_schema": { "type": "object", "properties": { "BegDate": { "type": "string" }, "EndDate": { "type": "string" }, "URLID": { "type": "string" } } }
110
+ },
111
+ {
112
+ "name": "list_active_subscriptions",
113
+ "description": "List active Segpay subscriptions by URL.",
114
+ "method": "GET",
115
+ "path": "/MWS.asmx/AssetsActiveSubscriptionsByURL_RebillDate?UserID={{credential.user_id}}&UserAccessKey={{credential.user_access_key}}",
116
+ "input_schema": { "type": "object", "properties": { "URLID": { "type": "string" } } }
117
+ },
118
+ {
119
+ "name": "list_canceled_subscriptions",
120
+ "description": "List canceled Segpay subscriptions by URL.",
121
+ "method": "GET",
122
+ "path": "/MWS.asmx/CanceledSubscriptionsByURL?UserID={{credential.user_id}}&UserAccessKey={{credential.user_access_key}}",
123
+ "input_schema": { "type": "object", "properties": { "URLID": { "type": "string" }, "BegDate": { "type": "string" }, "EndDate": { "type": "string" } } }
124
+ },
125
+ {
126
+ "name": "cancel_membership",
127
+ "description": "Cancel a Segpay consumer subscription while preserving access until the next billing date.",
128
+ "method": "GET",
129
+ "path": "/adm.asmx/CancelMembership?UserID={{credential.user_id}}&UserAccessKey={{credential.user_access_key}}",
130
+ "input_schema": { "type": "object", "properties": { "PurchaseID": { "type": "string" }, "TransID": { "type": "string" }, "Note": { "type": "string" } } }
131
+ },
132
+ {
133
+ "name": "expire_membership",
134
+ "description": "Expire a Segpay subscription, removing consumer access.",
135
+ "method": "GET",
136
+ "path": "/adm.asmx/ExpireMembership?UserID={{credential.user_id}}&UserAccessKey={{credential.user_access_key}}",
137
+ "input_schema": { "type": "object", "properties": { "PurchaseID": { "type": "string" }, "TransID": { "type": "string" }, "Note": { "type": "string" } } }
138
+ },
139
+ {
140
+ "name": "extend_membership",
141
+ "description": "Extend a Segpay membership by adding days to the current rebill date.",
142
+ "method": "GET",
143
+ "path": "/adm.asmx/ExtendMembership?UserID={{credential.user_id}}&UserAccessKey={{credential.user_access_key}}",
144
+ "input_schema": { "type": "object", "properties": { "PurchaseID": { "type": "string" }, "TransID": { "type": "string" }, "Days": { "type": "integer" }, "Note": { "type": "string" } } }
145
+ },
146
+ {
147
+ "name": "refund_transaction",
148
+ "description": "Refund a Segpay transaction.",
149
+ "method": "GET",
150
+ "path": "/adm.asmx/RefundTransaction?UserID={{credential.user_id}}&UserAccessKey={{credential.user_access_key}}",
151
+ "input_schema": { "type": "object", "properties": { "TransID": { "type": "string" }, "Amount": { "type": "number" }, "Note": { "type": "string" } }, "required": ["TransID"] }
152
+ },
153
+ {
154
+ "name": "modify_rebill_amount",
155
+ "description": "Change the amount a Segpay consumer is charged on the next billing date.",
156
+ "method": "GET",
157
+ "path": "/adm.asmx/ModifyRebillAmount?UserID={{credential.user_id}}&UserAccessKey={{credential.user_access_key}}",
158
+ "input_schema": { "type": "object", "properties": { "PurchaseID": { "type": "string" }, "Amount": { "type": "number" }, "Note": { "type": "string" } } }
159
+ },
160
+ {
161
+ "name": "get_reactivation_link",
162
+ "description": "Retrieve a reactivation pay page link for a canceled or expired Segpay subscription.",
163
+ "method": "GET",
164
+ "path": "/merchantservices/Reactivation?UserID={{credential.user_id}}&UserAccessKey={{credential.user_access_key}}",
165
+ "input_schema": { "type": "object", "properties": { "PurchaseID": { "type": "string" }, "TransID": { "type": "string" } } }
166
+ },
167
+ {
168
+ "name": "get_postback_ip_list",
169
+ "description": "List Segpay postback IP addresses for firewall allowlisting.",
170
+ "method": "GET",
171
+ "path": "/adm.asmx/GetPostbackIPList?UserID={{credential.user_id}}&UserAccessKey={{credential.user_access_key}}",
172
+ "input_schema": { "type": "object", "properties": {} }
173
+ },
174
+ {
175
+ "name": "create_subsite",
176
+ "description": "Create a Segpay subsite under an approved parent website using the MerchantServices Subsites API.",
177
+ "method": "POST",
178
+ "path": "/MerchantServices/website-sections",
179
+ "headers": {
180
+ "Authorization": "Basic {{basic_auth}}",
181
+ "Content-Type": "application/json",
182
+ "Accept": "application/json"
183
+ },
184
+ "query_params": ["test"],
185
+ "input_schema": {
186
+ "type": "object",
187
+ "properties": {
188
+ "test": { "type": "boolean" },
189
+ "ParentId": { "type": "integer" },
190
+ "Type": { "type": "string", "description": "Subdomain or Subdirectory." },
191
+ "Url": { "type": "string" },
192
+ "UserName": { "type": "string" },
193
+ "Password": { "type": "string" },
194
+ "AccessNotes": { "type": "string" }
195
+ },
196
+ "required": ["ParentId", "Type", "Url"]
197
+ }
198
+ }
199
+ ],
200
+ "webhooks": {
201
+ "signature_header": "segpay-postback",
202
+ "events": [
203
+ { "name": "postback.transaction", "description": "Segpay transaction postback." },
204
+ { "name": "postback.subscription", "description": "Segpay subscription lifecycle postback." },
205
+ { "name": "postback.refund", "description": "Segpay refund or reversal postback." }
206
+ ],
207
+ "registration": {
208
+ "method": "POST",
209
+ "path": "/",
210
+ "url_field": "url",
211
+ "manual_setup": "Configure Segpay postbacks on the payment page/package in the Merchant Portal using the Apteva callback URL. Segpay postbacks are not auto-registered by this integration."
212
+ }
213
+ },
214
+ "health_check": { "tool": "validate_user_access" }
215
+ }