You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ConstantContact/V3/ContactLists.php
+16-4Lines changed: 16 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -25,8 +25,10 @@ public function __construct(\PHPFUI\ConstantContact\Client $client)
25
25
* @param string $include_membership_count Use to include the total number of contacts per list. Set to `active`, to count only active (mailable) contacts, or `all` to count all contacts.
26
26
* @param string $name Use to get details for a single list by entering the full name of the list.
27
27
* @param string $status Use to get lists by status. Accepts comma-separated status values.
28
+
* @param string $channel_type Use to return lists by channel type. The default value is `email`.
29
+
* @param bool $include_sms_membership_count Set to `true` to return the total number of SMS members in each list. Only applicable when `channel_type` is `sms`. Default is `false`.
thrownew \PHPFUI\ConstantContact\Exception\InvalidValue("Parameter channel_type with value '{$channel_type}' is not one of (" . \implode(', ', $validValues) . ') in ' . __METHOD__);
* Retrieve a collection of events with event details.
18
+
*
19
+
* @param string $event_status Use to return only events that meet the specified status. Acceptable values include `ACTIVE`,`DRAFT`, `COMPLETE`, `DELETED`,`CANCELLED`, and `ERROR`.
20
+
* @param string $search_text Use to return only events that include the specified text.
21
+
* @param string $sort_by Use to sort resulting events by one of the following properties: `name`, `start_time`, `end_time`, `created_time`, or `updated_time`.
22
+
* @param string $sort_order Sort order for the `sort_by parameter`. Accepted values include `ASC` (ascending) or `DESC` (descending). Defaults to `ASC` if `sort_by` is provided.
23
+
* @param string $limit Limit the number of results to return per page. Default and maximum is `100`.
24
+
* @param string $prev Cursor for retrieving the previous page of results. This value is obtained from the `prev_cursor` field in a previous response.
25
+
* @param string $next Cursor for retrieving the next page of results. This value is obtained from the `next_cursor` field in a previous response.
0 commit comments