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

Add offset and count parameters to tag-search endpoint #314

Open
wants to merge 1 commit 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
19 changes: 19 additions & 0 deletions spec/marketing.json
Original file line number Diff line number Diff line change
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