Skip to content

Commit 77876ba

Browse files
author
github-actions
committed
Update REST API documentation Wed Mar 4 13:43:49 UTC 2026
1 parent acc6365 commit 77876ba

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

restapi.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6970,6 +6970,45 @@
69706970
},
69716971
"type": "object"
69726972
},
6973+
"SubscribersFilterRequest": {
6974+
"properties": {
6975+
"is_confirmed": {
6976+
"description": "Filter by confirmed status",
6977+
"type": "boolean",
6978+
"nullable": true
6979+
},
6980+
"is_blacklisted": {
6981+
"description": "Filter by blacklisted status",
6982+
"type": "boolean",
6983+
"nullable": true
6984+
},
6985+
"sort_by": {
6986+
"description": "Column to sort by",
6987+
"type": "string",
6988+
"nullable": true
6989+
},
6990+
"sort_direction": {
6991+
"description": "Sort direction",
6992+
"type": "string",
6993+
"enum": [
6994+
"asc",
6995+
"desc"
6996+
],
6997+
"nullable": true
6998+
},
6999+
"find_column": {
7000+
"description": "Column to search in (requires find_value)",
7001+
"type": "string",
7002+
"nullable": true
7003+
},
7004+
"find_value": {
7005+
"description": "Value to search for (requires find_column)",
7006+
"type": "string",
7007+
"nullable": true
7008+
}
7009+
},
7010+
"type": "object"
7011+
},
69737012
"UpdateSubscriberRequest": {
69747013
"required": [
69757014
"email"

0 commit comments

Comments
 (0)