From 681b73c9ad20f9a087ac1610ef0f6b738799d8b6 Mon Sep 17 00:00:00 2001 From: miketromba Date: Thu, 7 Jul 2022 11:23:03 -0400 Subject: [PATCH] Fix documentation for RemoveContactFromList Hello, I believe there was a bug in the documentation. It looks like a copy/paste from another function that was not updated (probably from CreateContacts). I've updated the "ids" property description to be similar to the "emails" param. Please double-check that the edits I made are accurate and reflect expected API behavior. --- docs/RemoveContactFromList.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/RemoveContactFromList.md b/docs/RemoveContactFromList.md index 6e6aa8c..5cbc5a8 100644 --- a/docs/RemoveContactFromList.md +++ b/docs/RemoveContactFromList.md @@ -4,7 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **emails** | **[String]** | Required if 'all' is false. Emails to remove from a list. You can pass a maximum of 150 emails for removal in one request. | [optional] -**ids** | **[Number]** | Mandatory if Emails are not passed, ignored otherwise. Emails to add to a list. You can pass a maximum of 150 emails for addition in one request. If you need to add the emails in bulk, please prefer /contacts/import api. | [optional] +**ids** | **[Number]** | Mandatory if Emails are not passed, ignored otherwise. Ids to add to a list. You can pass a maximum of 150 ids for removal in one request. | [optional] **all** | **Boolean** | Required if none of 'emails' or 'ids' are passed. Remove all existing contacts from a list. A process will be created in this scenario. You can fetch the process details to know about the progress | [optional]