Skip to main content

Get Customer

Definition

Gets a customer by identifier (ID).
This activity can be used in many different situations, for example after obtaining a customer ID from an activity like Abandoned Carts, you can get the details of the customer and generate a coupon code especially for him (with Create Discount Activity) and send him an email (with Send Email Activity).
Customer details can be used in emails or other activities that require customer ID.

Properties

PropertyDescription
Product IDThe ID of the product.

Outcomes

OutcomeDescription
DoneReturns 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
}