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: codeSamples.yaml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -428,13 +428,13 @@ actions:
428
428
"x-codeSamples":
429
429
- "lang": "python"
430
430
"label": "Python (SDK)"
431
-
"source": "from polar_sdk import Polar\n\n\nwith Polar(\n access_token=\"<YOUR_BEARER_TOKEN_HERE>\",\n) as polar:\n\n res = polar.customers.list(organization_id=\"1dbfc517-0bbf-4301-9ba8-555ca42b9737\", include_members=False, page=1, limit=10)\n\n while res is not None:\n # Handle items\n\n res = res.next()"
431
+
"source": "from polar_sdk import Polar\n\n\nwith Polar(\n access_token=\"<YOUR_BEARER_TOKEN_HERE>\",\n) as polar:\n\n res = polar.customers.list(organization_id=\"1dbfc517-0bbf-4301-9ba8-555ca42b9737\", page=1, limit=10)\n\n while res is not None:\n # Handle items\n\n res = res.next()"
Copy file name to clipboardExpand all lines: docs/models/customerslistrequest.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,6 @@
8
8
|`organization_id`|[OptionalNullable[models.CustomersListQueryParamOrganizationIDFilter]](../models/customerslistqueryparamorganizationidfilter.md)|:heavy_minus_sign:| Filter by organization ID. |
9
9
|`email`|*OptionalNullable[str]*|:heavy_minus_sign:| Filter by exact email. |
10
10
|`query`|*OptionalNullable[str]*|:heavy_minus_sign:| Filter by name, email, or external ID. |
11
-
|`include_members`|*Optional[bool]*|:heavy_minus_sign:| Include members in the response. Only populated when set to true. |
12
11
|`page`|*Optional[int]*|:heavy_minus_sign:| Page number, defaults to 1. |
13
12
|`limit`|*Optional[int]*|:heavy_minus_sign:| Size of a page, defaults to 10. Maximum is 100. |
14
13
|`sorting`| List[[models.CustomerSortProperty](../models/customersortproperty.md)]|:heavy_minus_sign:| Sorting criterion. Several criteria can be used simultaneously and will be applied in order. Add a minus sign `-` before the criteria name to sort by descending order. |
0 commit comments