From b79369b2facf58d29cf19c6346ec892310e38f41 Mon Sep 17 00:00:00 2001 From: Magnus Dahlstrand Date: Wed, 2 Nov 2022 16:24:35 +0000 Subject: [PATCH] Add offset and count parameters to tag-search endpoint --- spec/marketing.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/spec/marketing.json b/spec/marketing.json index 361d2ff..a607c3c 100644 --- a/spec/marketing.json +++ b/spec/marketing.json @@ -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": {