List application customers matching the given attributes
POST {{baseUrl}}/v1/applications/:applicationId/customer_search?pageSize=1000&skip=10&withTotalResultSize=true
Get a list of the application customers matching the provided criteria.
The match is successful if all the attributes of the request are found in a profile, even if the profile has more attributes that are not present on the request.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
pageSize | number | The number of items in this response. | |
skip | number | The number of items to skip when paging through large result sets. | |
withTotalResultSize | boolean | When this flag is set, the result includes the total size of the result, across all pages. This might decrease performance on large data sets. |
- When
true
:hasMore
is true when there is a next page.totalResultSize
is always zero. - When
false
:hasMore
is always false.totalResultSize
contains the total number of results for this query. |
Request Body
{"integrationIDs"=>["string"], "profileIDs"=>[0]}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string | ||
Accept | string |