|
| 1 | +# query |
| 2 | +startDate: |
| 3 | + name: startDate |
| 4 | + description: | |
| 5 | + Filter users by start date (in RFC3339 format). |
| 6 | + Only users that were updated after the passed date will be returned. |
| 7 | + in: query |
| 8 | + schema: |
| 9 | + type: string |
| 10 | + example: 2024-06-27T08:27:26Z |
| 11 | + |
| 12 | +endDate: |
| 13 | + name: endDate |
| 14 | + description: | |
| 15 | + Filter users by end date (in RFC3339 format). |
| 16 | + Only users that were updated before the passed date will be returned. |
| 17 | + in: query |
| 18 | + schema: |
| 19 | + type: string |
| 20 | + example: 2024-06-28T08:27:26Z |
| 21 | + |
| 22 | +indices: |
| 23 | + name: indices |
| 24 | + description: | |
| 25 | + Filter users by matching indices. |
| 26 | + If multiple indices are passed, returned users will match all indices. |
| 27 | + in: query |
| 28 | + schema: |
| 29 | + type: array |
| 30 | + items: |
| 31 | + type: string |
| 32 | + examples: |
| 33 | + singleIndex: |
| 34 | + value: [products_EN] |
| 35 | + summary: Filter by single index |
| 36 | + multipleIndices: |
| 37 | + value: [products_EN, products_FR] |
| 38 | + summary: Filter by multiple indices |
| 39 | + style: form |
| 40 | + explode: false |
| 41 | + |
| 42 | +affinity: |
| 43 | + name: affinity |
| 44 | + description: | |
| 45 | + Filter users by affinity name and value. |
| 46 | + If multiple values are passed, returned users will match all values. |
| 47 | + in: query |
| 48 | + schema: |
| 49 | + type: array |
| 50 | + items: |
| 51 | + type: string |
| 52 | + examples: |
| 53 | + affinityName: |
| 54 | + value: brand |
| 55 | + summary: Filter by single affinity name |
| 56 | + affinityValuePair: |
| 57 | + value: brand:Nike |
| 58 | + summary: Filter by single affinity name and value |
| 59 | + multipleAffinityNames: |
| 60 | + value: brand,color |
| 61 | + summary: Filter by multiple affinity names |
| 62 | + multipleAffinityValuePairs: |
| 63 | + value: brand:Nike,color:white |
| 64 | + summary: Filter by multiple affinity name and value pairs |
| 65 | + |
| 66 | +limit: |
| 67 | + name: limit |
| 68 | + description: | |
| 69 | + Limit the number of users in the response. |
| 70 | + The value of this parameter ranges from 1 to 1000. |
| 71 | + in: query |
| 72 | + schema: |
| 73 | + type: integer |
| 74 | + default: 10 |
| 75 | + minimum: 1 |
| 76 | + maximum: 1000 |
| 77 | + |
| 78 | +nextPageToken: |
| 79 | + name: nextPageToken |
| 80 | + description: | |
| 81 | + Reference for the next page, when navigating forward using pagination. |
| 82 | + Can't be used in the same request as `previousPageToken`. |
| 83 | + in: query |
| 84 | + schema: |
| 85 | + type: string |
| 86 | + |
| 87 | +previousPageToken: |
| 88 | + name: previousPageToken |
| 89 | + description: | |
| 90 | + Reference for the previous page, when navigating backward using pagination. |
| 91 | + Can't be used in the same request as `nextPageToken`. |
| 92 | + in: query |
| 93 | + schema: |
| 94 | + type: string |
| 95 | + |
| 96 | +# path |
| 97 | + |
| 98 | +userID: |
| 99 | + name: userID |
| 100 | + description: ID of the user. |
| 101 | + in: path |
| 102 | + required: true |
| 103 | + schema: |
| 104 | + type: string |
0 commit comments