Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added missing params to searchTags marketing spec #309

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion spec/marketing.json
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@
},
"swagger": "2.0",
"info": {
"version": "3.0.78",
"version": "3.0.79",
"title": "Mailchimp Marketing API",
"contact": {
"name": "Mailchimp API Support",
Expand Down Expand Up @@ -72290,6 +72290,25 @@
"description": "The search query used to filter tags. The search query will be compared to each tag as a prefix, so all tags that have a name starting with this field will be returned.",
"required": false,
"type": "string"
},
{
"name": "count",
"x-title": "Count",
"in": "query",
"description": "The number of records to return. Default value is 10. Maximum value is 1000",
"required": false,
"default": 10,
"maximum": 1000,
"type": "integer"
},
{
"name": "offset",
"x-title": "Offset",
"in": "query",
"description": "Used for [pagination](https://mailchimp.com/developer/marketing/docs/methods-parameters/#pagination), this it the number of records from a collection to skip. Default value is 0.",
"required": false,
"default": 0,
"type": "integer"
}
],
"responses": {
Expand Down