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
Property | Description |
---|---|
Created From | Customer created date from (UTC). |
Created To | Customer created date to (UTC). |
Customer email address. | |
Username | Customer username. |
First Name | Customer first name. |
Last Name | Customer last name. |
Day of Birth | Customer day of birth. |
Month of Birth | Customer month of birth. |
Page Size | Number of the searched customers (To get as many customers as possible, leave this field blank). |
Outcomes
Outcome | Description |
---|---|
Done | Returns 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
}