Skip to content

Commit abe95c5

Browse files
committed
Use default parameter in /get campaigns
Change example code for "retrieve all campaigns" to actually get more than one (use the default parameters of limit 10, no offset)
1 parent 578b8e7 commit abe95c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

USAGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ For more information:
790790

791791

792792
```python
793-
params = {'limit': 1, 'offset': 1}
793+
params = {'limit': 10, 'offset': 0}
794794
response = sg.client.campaigns.get(query_params=params)
795795
print response.status_code
796796
print response.body

0 commit comments

Comments
 (0)