Skip to main content

Search Customer

Definition

Search customers by different parameters.
Getting the list of the customers might be useful in some situations, for example in our Winback Inactive Customers Workflow, we get all the customers with this activity and then check their last activity time.
You can also get the customers who have been registered within a specific period of time and make a special offer for them.
Searching the customers can be useful for some of your cool workflows!

tip

To get all customers, leave all the fields blank.

Properties

PropertyDescription
Created FromCustomer created date from (UTC).
Created ToCustomer created date to (UTC).
EmailCustomer email address.
UsernameCustomer username.
First NameCustomer first name.
Last NameCustomer last name.
Day of BirthCustomer day of birth.
Month of BirthCustomer month of birth.
Page SizeNumber of the searched customers (To get as many customers as possible, leave this field blank).

Outcomes

OutcomeDescription
DoneReturns a list of the output model.

Output Model

{
Id: number,
Email: string,
Mobile: string,
Username: string,
Gender: string,
FirstName: string,
LastName: string,
NationalCode: string,
DateOfBirthDay?: number,
DateOfBirthMonth?: number,
DateOfBirthYear?: number,
Company: string,
StreetAddress: string,
StreetAddress2: string,
ZipPostalCode: string,
City: string,
CountryId: number,
Phone: string,
Fax: string,
CreatedOnUtc: Date,
UpdatedOnUtc: Date,
LastLoginDateUtc?: Date,
LastActivityDateUtc: Date
}