Get by Single Property

Get all the profile by a single property

Usage

unomi.profile.getBySingleProperty({
  query: <string>,
  limit?: <number>,
  offset?: <number>,
  forceRefresh: <boolean>
});

Response

{
  success: <boolean>,
  status: <number>,
  data: {
    list: <object[]>,
    offset: <number>,
    pageSize: <number>,
    totalSize: <number>
  }
}

Real World Example

Valid comparison operators are: =, <, > (equal, greater than, less than)

Last updated

Was this helpful?