We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 164a984 commit 7d15750Copy full SHA for 7d15750
src/Subscription/Controller/SubscriberImportController.php
@@ -53,14 +53,16 @@ public function __construct(
53
new OA\Property(
54
property: 'list_id',
55
description: 'List id to add imported subscribers to',
56
- type: 'integer',
57
- default: null
+ type: 'string',
+ default: null,
58
+ pattern: "^\\d+$"
59
),
60
61
property: 'update_existing',
62
description: 'Weather to update existing subscribers or not',
- type: 'boolean',
63
- default: false
64
+ default: '0',
65
+ enum: ['0', '1']
66
)
67
],
68
type: 'object'
0 commit comments