@wevion/cli 1.0.3308 → 1.0.3324
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.json +236 -68
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -120277,7 +120277,7 @@
|
|
|
120277
120277
|
"creative-hub",
|
|
120278
120278
|
"creative-generation"
|
|
120279
120279
|
],
|
|
120280
|
-
"description": "Returns the deterministic credit estimate for a UGC generation request without starting a provider job. The estimate is computed from the SAME resolved billing input the generate endpoint charges from, so it accounts for the two effects that used to make the charge exceed the quote: a spoken script longer than the requested duration extends the billable duration (up to 15s, reported as duration_source), and a product photo adds a product-description line. Supply script_word_count and has_product_image to get the exact amount that will be charged; omitting them yields the floor of that amount.",
|
|
120280
|
+
"description": "Returns the deterministic credit estimate for a UGC generation request without starting a provider job. The estimate is computed from the SAME resolved billing input the generate endpoint charges from, so it accounts for the two effects that used to make the charge exceed the quote: a spoken script longer than the requested duration extends the billable duration (up to 15s, reported as duration_source), and a product photo adds a product-description line. Supply script_word_count and has_product_image to get the exact amount that will be charged; omitting them yields the floor of that amount — and in that case credits_max is the ceiling the charge can never exceed for this request, so the guaranteed invariant is credits <= charged <= credits_max. script_word_count_declared says which of the two you are looking at.",
|
|
120281
120281
|
"requestBody": {
|
|
120282
120282
|
"required": true,
|
|
120283
120283
|
"content": {
|
|
@@ -120380,6 +120380,8 @@
|
|
|
120380
120380
|
"type": "object",
|
|
120381
120381
|
"required": [
|
|
120382
120382
|
"credits",
|
|
120383
|
+
"credits_max",
|
|
120384
|
+
"script_word_count_declared",
|
|
120383
120385
|
"breakdown",
|
|
120384
120386
|
"billable_seconds",
|
|
120385
120387
|
"duration_source",
|
|
@@ -120391,6 +120393,14 @@
|
|
|
120391
120393
|
"description": "Total credits that will be held and charged.",
|
|
120392
120394
|
"type": "integer"
|
|
120393
120395
|
},
|
|
120396
|
+
"credits_max": {
|
|
120397
|
+
"description": "Upper bound of what generate can charge for this exact request. It folds the only two inputs this endpoint cannot see: a spoken script that stretches the billable duration to the 15s product cap, and an attached product photo. Equal to credits when neither can apply.",
|
|
120398
|
+
"type": "integer"
|
|
120399
|
+
},
|
|
120400
|
+
"script_word_count_declared": {
|
|
120401
|
+
"description": "False when script_word_count was omitted (or 0) on a mode that can be extended by the spoken script: the quote is then a floor, not the exact charge. Always true for mode=ai_script, where the script is written to fit the requested duration and never extends it.",
|
|
120402
|
+
"type": "boolean"
|
|
120403
|
+
},
|
|
120394
120404
|
"breakdown": {
|
|
120395
120405
|
"description": "Per catalog line contribution to the total.",
|
|
120396
120406
|
"type": "array",
|
|
@@ -123215,7 +123225,7 @@
|
|
|
123215
123225
|
"creative-hub",
|
|
123216
123226
|
"creative-generation"
|
|
123217
123227
|
],
|
|
123218
|
-
"description": "Calculates character count, estimated credit cost and estimated duration for a single-voice or multi-voice voiceover request.",
|
|
123228
|
+
"description": "Calculates character count, estimated credit cost and estimated duration for a single-voice or multi-voice voiceover request. The price is resolved from the provider of the selected voice (voice_id), which is the same provider the generation job will bill from — supplying a different voice can change the estimate by up to 6.6x.",
|
|
123219
123229
|
"requestBody": {
|
|
123220
123230
|
"required": true,
|
|
123221
123231
|
"content": {
|
|
@@ -123342,6 +123352,56 @@
|
|
|
123342
123352
|
}
|
|
123343
123353
|
}
|
|
123344
123354
|
},
|
|
123355
|
+
"403": {
|
|
123356
|
+
"description": "Forbidden - caller lacks the required role/permission",
|
|
123357
|
+
"content": {
|
|
123358
|
+
"application/json": {
|
|
123359
|
+
"schema": {
|
|
123360
|
+
"additionalProperties": false,
|
|
123361
|
+
"type": "object",
|
|
123362
|
+
"required": [
|
|
123363
|
+
"error"
|
|
123364
|
+
],
|
|
123365
|
+
"properties": {
|
|
123366
|
+
"code": {
|
|
123367
|
+
"type": "string"
|
|
123368
|
+
},
|
|
123369
|
+
"error": {
|
|
123370
|
+
"type": "string"
|
|
123371
|
+
},
|
|
123372
|
+
"message": {
|
|
123373
|
+
"type": "string"
|
|
123374
|
+
}
|
|
123375
|
+
}
|
|
123376
|
+
}
|
|
123377
|
+
}
|
|
123378
|
+
}
|
|
123379
|
+
},
|
|
123380
|
+
"404": {
|
|
123381
|
+
"description": "Resource not found",
|
|
123382
|
+
"content": {
|
|
123383
|
+
"application/json": {
|
|
123384
|
+
"schema": {
|
|
123385
|
+
"additionalProperties": false,
|
|
123386
|
+
"type": "object",
|
|
123387
|
+
"required": [
|
|
123388
|
+
"error"
|
|
123389
|
+
],
|
|
123390
|
+
"properties": {
|
|
123391
|
+
"code": {
|
|
123392
|
+
"type": "string"
|
|
123393
|
+
},
|
|
123394
|
+
"error": {
|
|
123395
|
+
"type": "string"
|
|
123396
|
+
},
|
|
123397
|
+
"message": {
|
|
123398
|
+
"type": "string"
|
|
123399
|
+
}
|
|
123400
|
+
}
|
|
123401
|
+
}
|
|
123402
|
+
}
|
|
123403
|
+
}
|
|
123404
|
+
},
|
|
123345
123405
|
"500": {
|
|
123346
123406
|
"description": "Internal server error",
|
|
123347
123407
|
"content": {
|
|
@@ -137868,6 +137928,16 @@
|
|
|
137868
137928
|
"cost_per_purchase",
|
|
137869
137929
|
"cost_per_lead",
|
|
137870
137930
|
"cost_per_complete_registration",
|
|
137931
|
+
"cost_per_add_to_cart",
|
|
137932
|
+
"cost_per_initiate_checkout",
|
|
137933
|
+
"cost_per_add_payment_info",
|
|
137934
|
+
"cost_per_subscribe",
|
|
137935
|
+
"cost_per_start_trial",
|
|
137936
|
+
"profit",
|
|
137937
|
+
"roi",
|
|
137938
|
+
"roas",
|
|
137939
|
+
"aov",
|
|
137940
|
+
"frequency",
|
|
137871
137941
|
"activeCount",
|
|
137872
137942
|
"pb_conversions",
|
|
137873
137943
|
"pb_revenue",
|
|
@@ -137955,6 +138025,36 @@
|
|
|
137955
138025
|
"cost_per_complete_registration": {
|
|
137956
138026
|
"type": "number"
|
|
137957
138027
|
},
|
|
138028
|
+
"cost_per_add_to_cart": {
|
|
138029
|
+
"type": "number"
|
|
138030
|
+
},
|
|
138031
|
+
"cost_per_initiate_checkout": {
|
|
138032
|
+
"type": "number"
|
|
138033
|
+
},
|
|
138034
|
+
"cost_per_add_payment_info": {
|
|
138035
|
+
"type": "number"
|
|
138036
|
+
},
|
|
138037
|
+
"cost_per_subscribe": {
|
|
138038
|
+
"type": "number"
|
|
138039
|
+
},
|
|
138040
|
+
"cost_per_start_trial": {
|
|
138041
|
+
"type": "number"
|
|
138042
|
+
},
|
|
138043
|
+
"profit": {
|
|
138044
|
+
"type": "number"
|
|
138045
|
+
},
|
|
138046
|
+
"roi": {
|
|
138047
|
+
"type": "number"
|
|
138048
|
+
},
|
|
138049
|
+
"roas": {
|
|
138050
|
+
"type": "number"
|
|
138051
|
+
},
|
|
138052
|
+
"aov": {
|
|
138053
|
+
"type": "number"
|
|
138054
|
+
},
|
|
138055
|
+
"frequency": {
|
|
138056
|
+
"type": "number"
|
|
138057
|
+
},
|
|
137958
138058
|
"activeCount": {
|
|
137959
138059
|
"type": "number"
|
|
137960
138060
|
},
|
|
@@ -138838,6 +138938,16 @@
|
|
|
138838
138938
|
"cost_per_purchase",
|
|
138839
138939
|
"cost_per_lead",
|
|
138840
138940
|
"cost_per_complete_registration",
|
|
138941
|
+
"cost_per_add_to_cart",
|
|
138942
|
+
"cost_per_initiate_checkout",
|
|
138943
|
+
"cost_per_add_payment_info",
|
|
138944
|
+
"cost_per_subscribe",
|
|
138945
|
+
"cost_per_start_trial",
|
|
138946
|
+
"profit",
|
|
138947
|
+
"roi",
|
|
138948
|
+
"roas",
|
|
138949
|
+
"aov",
|
|
138950
|
+
"frequency",
|
|
138841
138951
|
"activeCount",
|
|
138842
138952
|
"pb_conversions",
|
|
138843
138953
|
"pb_revenue",
|
|
@@ -138925,6 +139035,36 @@
|
|
|
138925
139035
|
"cost_per_complete_registration": {
|
|
138926
139036
|
"type": "number"
|
|
138927
139037
|
},
|
|
139038
|
+
"cost_per_add_to_cart": {
|
|
139039
|
+
"type": "number"
|
|
139040
|
+
},
|
|
139041
|
+
"cost_per_initiate_checkout": {
|
|
139042
|
+
"type": "number"
|
|
139043
|
+
},
|
|
139044
|
+
"cost_per_add_payment_info": {
|
|
139045
|
+
"type": "number"
|
|
139046
|
+
},
|
|
139047
|
+
"cost_per_subscribe": {
|
|
139048
|
+
"type": "number"
|
|
139049
|
+
},
|
|
139050
|
+
"cost_per_start_trial": {
|
|
139051
|
+
"type": "number"
|
|
139052
|
+
},
|
|
139053
|
+
"profit": {
|
|
139054
|
+
"type": "number"
|
|
139055
|
+
},
|
|
139056
|
+
"roi": {
|
|
139057
|
+
"type": "number"
|
|
139058
|
+
},
|
|
139059
|
+
"roas": {
|
|
139060
|
+
"type": "number"
|
|
139061
|
+
},
|
|
139062
|
+
"aov": {
|
|
139063
|
+
"type": "number"
|
|
139064
|
+
},
|
|
139065
|
+
"frequency": {
|
|
139066
|
+
"type": "number"
|
|
139067
|
+
},
|
|
138928
139068
|
"activeCount": {
|
|
138929
139069
|
"type": "number"
|
|
138930
139070
|
},
|
|
@@ -140136,6 +140276,16 @@
|
|
|
140136
140276
|
"cost_per_purchase",
|
|
140137
140277
|
"cost_per_lead",
|
|
140138
140278
|
"cost_per_complete_registration",
|
|
140279
|
+
"cost_per_add_to_cart",
|
|
140280
|
+
"cost_per_initiate_checkout",
|
|
140281
|
+
"cost_per_add_payment_info",
|
|
140282
|
+
"cost_per_subscribe",
|
|
140283
|
+
"cost_per_start_trial",
|
|
140284
|
+
"profit",
|
|
140285
|
+
"roi",
|
|
140286
|
+
"roas",
|
|
140287
|
+
"aov",
|
|
140288
|
+
"frequency",
|
|
140139
140289
|
"activeCount",
|
|
140140
140290
|
"pb_conversions",
|
|
140141
140291
|
"pb_revenue",
|
|
@@ -140223,6 +140373,36 @@
|
|
|
140223
140373
|
"cost_per_complete_registration": {
|
|
140224
140374
|
"type": "number"
|
|
140225
140375
|
},
|
|
140376
|
+
"cost_per_add_to_cart": {
|
|
140377
|
+
"type": "number"
|
|
140378
|
+
},
|
|
140379
|
+
"cost_per_initiate_checkout": {
|
|
140380
|
+
"type": "number"
|
|
140381
|
+
},
|
|
140382
|
+
"cost_per_add_payment_info": {
|
|
140383
|
+
"type": "number"
|
|
140384
|
+
},
|
|
140385
|
+
"cost_per_subscribe": {
|
|
140386
|
+
"type": "number"
|
|
140387
|
+
},
|
|
140388
|
+
"cost_per_start_trial": {
|
|
140389
|
+
"type": "number"
|
|
140390
|
+
},
|
|
140391
|
+
"profit": {
|
|
140392
|
+
"type": "number"
|
|
140393
|
+
},
|
|
140394
|
+
"roi": {
|
|
140395
|
+
"type": "number"
|
|
140396
|
+
},
|
|
140397
|
+
"roas": {
|
|
140398
|
+
"type": "number"
|
|
140399
|
+
},
|
|
140400
|
+
"aov": {
|
|
140401
|
+
"type": "number"
|
|
140402
|
+
},
|
|
140403
|
+
"frequency": {
|
|
140404
|
+
"type": "number"
|
|
140405
|
+
},
|
|
140226
140406
|
"activeCount": {
|
|
140227
140407
|
"type": "number"
|
|
140228
140408
|
},
|
|
@@ -154871,9 +155051,18 @@
|
|
|
154871
155051
|
"schema": {
|
|
154872
155052
|
"type": "string"
|
|
154873
155053
|
},
|
|
155054
|
+
"examples": {
|
|
155055
|
+
"CRITICAL": {
|
|
155056
|
+
"value": "CRITICAL"
|
|
155057
|
+
},
|
|
155058
|
+
"CRITICAL,ERROR": {
|
|
155059
|
+
"value": "CRITICAL,ERROR"
|
|
155060
|
+
}
|
|
155061
|
+
},
|
|
154874
155062
|
"in": "query",
|
|
154875
155063
|
"name": "severity",
|
|
154876
|
-
"required": false
|
|
155064
|
+
"required": false,
|
|
155065
|
+
"description": "One canonical severity (CRITICAL | ERROR | WARNING | INFO | SUCCESS) or a comma-separated list, e.g. \"CRITICAL,ERROR\". Values are normalised to the canonical UPPERCASE form server-side."
|
|
154877
155066
|
},
|
|
154878
155067
|
{
|
|
154879
155068
|
"schema": {
|
|
@@ -156330,7 +156519,7 @@
|
|
|
156330
156519
|
"properties": {
|
|
156331
156520
|
"preferences": {
|
|
156332
156521
|
"minItems": 1,
|
|
156333
|
-
"maxItems":
|
|
156522
|
+
"maxItems": 45,
|
|
156334
156523
|
"type": "array",
|
|
156335
156524
|
"items": {
|
|
156336
156525
|
"additionalProperties": false,
|
|
@@ -158063,7 +158252,7 @@
|
|
|
158063
158252
|
"tags": [
|
|
158064
158253
|
"partner"
|
|
158065
158254
|
],
|
|
158066
|
-
"description": "Registra una candidatura al Programma Partner. ⚠️ Risponde 403 finché il commutatore `partner_track_b_enroll` è spento: la coda candidature è chiusa e NESSUNA pratica viene creata — il corpo del 403 è una costante che non dipende dai dati inviati. Rotta PUBBLICA e senza account: non crea alcuna user_session, alcuna organizzazione e alcuna email di verifica — l’account nasce solo all’approvazione. ★ Risponde SEMPRE 202 con lo stesso corpo, anche se l’email è già candidata o appartiene a un partner già approvato: nessun endpoint di questo programma conferma mai l’esistenza di un’email. Il link con cui seguire la pratica arriva per email, non nella risposta. Due limiti, due comportamenti diversi: 5/h per IP risponde 429; 3/h per identità email è applicato in silenzio, perché un 429 sull’email sarebbe esso stesso l’oracolo che questa rotta evita.",
|
|
158255
|
+
"description": "Registra una candidatura al Programma Partner. ⚠️ Risponde 403 finché il commutatore `partner_track_b_enroll` è spento: la coda candidature è chiusa e NESSUNA pratica viene creata — il corpo del 403 è una costante che non dipende dai dati inviati. Rotta PUBBLICA e senza account: non crea alcuna user_session, alcuna organizzazione e alcuna email di verifica — l’account nasce solo all’approvazione. ★ Risponde SEMPRE 202 con lo stesso corpo, anche se l’email è già candidata o appartiene a un partner già approvato: nessun endpoint di questo programma conferma mai l’esistenza di un’email. Il link con cui seguire la pratica arriva per email, non nella risposta. Due limiti, due comportamenti diversi: 5/h per IP risponde 429; 3/h per identità email è applicato in silenzio, perché un 429 sull’email sarebbe esso stesso l’oracolo che questa rotta evita. ⚠️ `collection_mode: \"cash\"` esige `vat_number`: senza, la risposta è 400 e nessuna pratica viene creata. È lo stesso vincolo che l’approvazione applicherebbe (`vat_required`) e che il CHECK `ck_partner_cash_needs_vat` imporrebbe sull’anagrafica — anticiparlo qui evita una pratica che nasce già inapprovabile e un rifiuto che il candidato scopre mesi dopo. Il controllo dipende solo dal corpo inviato: non legge il database e non è un oracolo su alcuna identità.",
|
|
158067
158256
|
"requestBody": {
|
|
158068
158257
|
"required": true,
|
|
158069
158258
|
"content": {
|
|
@@ -161294,7 +161483,7 @@
|
|
|
161294
161483
|
"tags": [
|
|
161295
161484
|
"partner"
|
|
161296
161485
|
],
|
|
161297
|
-
"description": "Contatore per il badge «n nuovi eventi — aggiorna» e i tre timestamp di freschezza. `since` è l’ultimo istante già visto dal client
|
|
161486
|
+
"description": "Contatore per il badge «n nuovi eventi — aggiorna» e i tre timestamp di freschezza. `since` è l’ultimo istante già visto dal client. ★ Senza `since` il contatore NON è più 0: si conta da `partner.pulse_seen_at`, il puntatore del lettore persistito sulla riga — prima il puntatore viveva solo nel client, e un dispositivo nuovo (o una navigazione privata, o i dati del sito svuotati) leggeva sempre «0 eventi nuovi» qualunque cosa fosse successa. Con `since` esplicito il puntatore avanza, e **solo in avanti**: due dispositivi che si alternano non si azzerano il badge a vicenda.",
|
|
161298
161487
|
"parameters": [
|
|
161299
161488
|
{
|
|
161300
161489
|
"schema": {
|
|
@@ -161344,7 +161533,7 @@
|
|
|
161344
161533
|
"type": "string"
|
|
161345
161534
|
},
|
|
161346
161535
|
"new_events": {
|
|
161347
|
-
"description": "Eventi nuovi dopo `since
|
|
161536
|
+
"description": "Eventi nuovi dopo `since`, o dopo `partner.pulse_seen_at` quando `since` non è passato. 0 solo quando nessuno dei due esiste, cioè quando il partner non ha davvero mai guardato.",
|
|
161348
161537
|
"minimum": 0,
|
|
161349
161538
|
"type": "integer"
|
|
161350
161539
|
}
|
|
@@ -179107,7 +179296,7 @@
|
|
|
179107
179296
|
"tags": [
|
|
179108
179297
|
"reports"
|
|
179109
179298
|
],
|
|
179110
|
-
"description": "Returns every active (non-deleted) report schedule visible to the caller: schedules stamped with one of the accessible team ids (workspace tenancy) plus the caller’s own legacy schedules without a team stamp. Includes template binding, recurrence configuration, recipients, and last/next run timestamps.",
|
|
179299
|
+
"description": "Returns every active (non-deleted) report schedule visible to the caller: schedules stamped with one of the accessible team ids (workspace tenancy) plus the caller’s own legacy schedules without a team stamp. Includes template binding, recurrence configuration, recipients, and last/next run timestamps. Readable even when the scheduled-sends feature flag is off, so an owner can always find and stop the schedules they already have.",
|
|
179111
179300
|
"parameters": [
|
|
179112
179301
|
{
|
|
179113
179302
|
"schema": {
|
|
@@ -179385,33 +179574,6 @@
|
|
|
179385
179574
|
}
|
|
179386
179575
|
}
|
|
179387
179576
|
}
|
|
179388
|
-
},
|
|
179389
|
-
"503": {
|
|
179390
|
-
"description": "Scheduled reports are not enabled for this account.",
|
|
179391
|
-
"content": {
|
|
179392
|
-
"application/json": {
|
|
179393
|
-
"schema": {
|
|
179394
|
-
"additionalProperties": false,
|
|
179395
|
-
"description": "Scheduled reports are not enabled for this account.",
|
|
179396
|
-
"type": "object",
|
|
179397
|
-
"required": [
|
|
179398
|
-
"error",
|
|
179399
|
-
"code"
|
|
179400
|
-
],
|
|
179401
|
-
"properties": {
|
|
179402
|
-
"error": {
|
|
179403
|
-
"type": "string"
|
|
179404
|
-
},
|
|
179405
|
-
"code": {
|
|
179406
|
-
"type": "string",
|
|
179407
|
-
"enum": [
|
|
179408
|
-
"FEATURE_DISABLED"
|
|
179409
|
-
]
|
|
179410
|
-
}
|
|
179411
|
-
}
|
|
179412
|
-
}
|
|
179413
|
-
}
|
|
179414
|
-
}
|
|
179415
179577
|
}
|
|
179416
179578
|
}
|
|
179417
179579
|
},
|
|
@@ -180098,7 +180260,7 @@
|
|
|
180098
180260
|
"tags": [
|
|
180099
180261
|
"reports"
|
|
180100
180262
|
],
|
|
180101
|
-
"description": "Returns a single schedule by id. Scoped to the caller’s accessible workspaces (plus own legacy schedules) - returns 404 when outside that scope.",
|
|
180263
|
+
"description": "Returns a single schedule by id. Scoped to the caller’s accessible workspaces (plus own legacy schedules) - returns 404 when outside that scope. Readable even when the scheduled-sends feature flag is off, so an owner can always find and stop the schedules they already have.",
|
|
180102
180264
|
"parameters": [
|
|
180103
180265
|
{
|
|
180104
180266
|
"schema": {
|
|
@@ -180392,33 +180554,6 @@
|
|
|
180392
180554
|
}
|
|
180393
180555
|
}
|
|
180394
180556
|
}
|
|
180395
|
-
},
|
|
180396
|
-
"503": {
|
|
180397
|
-
"description": "Scheduled reports are not enabled for this account.",
|
|
180398
|
-
"content": {
|
|
180399
|
-
"application/json": {
|
|
180400
|
-
"schema": {
|
|
180401
|
-
"additionalProperties": false,
|
|
180402
|
-
"description": "Scheduled reports are not enabled for this account.",
|
|
180403
|
-
"type": "object",
|
|
180404
|
-
"required": [
|
|
180405
|
-
"error",
|
|
180406
|
-
"code"
|
|
180407
|
-
],
|
|
180408
|
-
"properties": {
|
|
180409
|
-
"error": {
|
|
180410
|
-
"type": "string"
|
|
180411
|
-
},
|
|
180412
|
-
"code": {
|
|
180413
|
-
"type": "string",
|
|
180414
|
-
"enum": [
|
|
180415
|
-
"FEATURE_DISABLED"
|
|
180416
|
-
]
|
|
180417
|
-
}
|
|
180418
|
-
}
|
|
180419
|
-
}
|
|
180420
|
-
}
|
|
180421
|
-
}
|
|
180422
180557
|
}
|
|
180423
180558
|
}
|
|
180424
180559
|
},
|
|
@@ -181242,7 +181377,7 @@
|
|
|
181242
181377
|
"tags": [
|
|
181243
181378
|
"reports"
|
|
181244
181379
|
],
|
|
181245
|
-
"description": "Enqueues a one-off GENERATE_SCHEDULED_REPORT job for the given schedule, bypassing the cron cadence. The job emails the artifact to the schedule recipients and records a manual-trigger audit event. Returns the canonical async-job envelope (worker_run_id mirrored as job_id). Rate limited to 5 calls per 1 hour per user: one call is a PDF render plus an email fan-out, not a download.",
|
|
181380
|
+
"description": "Enqueues a one-off GENERATE_SCHEDULED_REPORT job for the given schedule, bypassing the cron cadence. The job emails the artifact to the schedule recipients and records a manual-trigger audit event. Returns the canonical async-job envelope (worker_run_id mirrored as job_id). A PAUSED schedule is refused with 409 SCHEDULED_REPORT_PAUSED: pausing is the customer's only brake on an outbound relay, so it binds this endpoint exactly as it binds the cron. Rate limited to 5 calls per 1 hour per user: one call is a PDF render plus an email fan-out, not a download.",
|
|
181246
181381
|
"parameters": [
|
|
181247
181382
|
{
|
|
181248
181383
|
"schema": {
|
|
@@ -181439,6 +181574,41 @@
|
|
|
181439
181574
|
}
|
|
181440
181575
|
}
|
|
181441
181576
|
},
|
|
181577
|
+
"409": {
|
|
181578
|
+
"description": "The schedule is paused. Resume it before triggering an immediate send.",
|
|
181579
|
+
"content": {
|
|
181580
|
+
"application/json": {
|
|
181581
|
+
"schema": {
|
|
181582
|
+
"additionalProperties": false,
|
|
181583
|
+
"description": "The schedule is paused. Resume it before triggering an immediate send.",
|
|
181584
|
+
"type": "object",
|
|
181585
|
+
"required": [
|
|
181586
|
+
"statusCode",
|
|
181587
|
+
"error",
|
|
181588
|
+
"message",
|
|
181589
|
+
"code"
|
|
181590
|
+
],
|
|
181591
|
+
"properties": {
|
|
181592
|
+
"statusCode": {
|
|
181593
|
+
"type": "number"
|
|
181594
|
+
},
|
|
181595
|
+
"error": {
|
|
181596
|
+
"type": "string"
|
|
181597
|
+
},
|
|
181598
|
+
"message": {
|
|
181599
|
+
"type": "string"
|
|
181600
|
+
},
|
|
181601
|
+
"code": {
|
|
181602
|
+
"type": "string",
|
|
181603
|
+
"enum": [
|
|
181604
|
+
"SCHEDULED_REPORT_PAUSED"
|
|
181605
|
+
]
|
|
181606
|
+
}
|
|
181607
|
+
}
|
|
181608
|
+
}
|
|
181609
|
+
}
|
|
181610
|
+
}
|
|
181611
|
+
},
|
|
181442
181612
|
"429": {
|
|
181443
181613
|
"description": "Too many requests - rate limit exceeded",
|
|
181444
181614
|
"content": {
|
|
@@ -299642,14 +299812,12 @@
|
|
|
299642
299812
|
},
|
|
299643
299813
|
{
|
|
299644
299814
|
"schema": {
|
|
299645
|
-
"
|
|
299646
|
-
"maximum": 1000000,
|
|
299647
|
-
"type": "number"
|
|
299815
|
+
"type": "string"
|
|
299648
299816
|
},
|
|
299649
299817
|
"in": "query",
|
|
299650
299818
|
"name": "payout",
|
|
299651
299819
|
"required": true,
|
|
299652
|
-
"description": "The payout amount for the conversion
|
|
299820
|
+
"description": "The payout amount for the conversion, as a decimal string. Values outside 0 to 1,000,000 are rejected; a value that is not a number (e.g. an unsubstituted tracker macro) is accepted and stored without an amount."
|
|
299653
299821
|
},
|
|
299654
299822
|
{
|
|
299655
299823
|
"schema": {
|