Simple Store
Search…
What is Simple Store?
Getting Started
Portal
Creating Your First Product
QuickBuy
Concepts
Assets
Cart
Categories
Configuration
Collections
Customers
Inventory
Orders
Payments
Pricing
Product
Rewards
Shipping
Specials
API
Front End Client APIs
Backend APIs
Pagination
Swagger References
Powered By
GitBook
Customers
The Customer object supports the storage of a defined set and custom attributes relating to your customers.
Portal View
Accessing Customers
Assess the Customers screen in the console via the console navigation bar.
Add New Customers
Click Add New to create a new customer.
Specify a First Name. Last Name, Display Name and Email Address.
Click
Submit
.
Edit Customers
Customers can be accessed by clicking on the main customer screen:
Customer Details can be edited.
Click
Save
to commit your modifications.
Customers can be deleted by clicking the
Delete
button.
Customer Properties
Attributes
Sample Object
Element
Description
customerId
A unique identifier for the Customer (Guid/UUID)
version
A incremental version number tracking modifications to the Customer object
firstName
Customer First Name
lastName
Customer Last Name
displayName
Customer Display Name
emailAddress
Customer Email Address in
phones[]
An array of Phone numbers
phones[].Key
A unique identifier for the Phone Number (Guid/UUID)
phones[].Type
Unknown, Phone, Mobile
phones[].Country
ISO Country Code
phones[].NumberLocal
Phone Number in Local format
phones[].NumberInternational
Phone Number in International format
addresses[]
An array of address(es)
addresses[].Key
A unique identifier for the Address (Guid/UUID)
addresses[].Address1
Address Line 1
addresses[].Address2
Address Line 2
addresses[].Suburb
Suburb
addresses[].PostCode
Postal Code/Zip Code
addresses[].State
State/Province/Region
1
{
2
"customerId": "string",
3
"version": "string",
4
"firstName": "string",
5
"lastName": "string",
6
"displayName": "string",
7
"emailAddress": "string",
8
"phones": [
9
{
10
"key": "string",
11
"type": "Unknown",
12
"country": "string",
13
"numberLocal": "string",
14
"numberInternational": "string"
15
}
16
],
17
"addresses": [
18
{
19
"key": "string",
20
"address1": "string",
21
"address2": "string",
22
"suburb": "string",
23
"postcode": "string",
24
"state": "string",
25
"country": "string"
26
}
27
],
28
"attributes": {}
29
}
Copied!
Concepts - Previous
Collections
Next - Concepts
Inventory
Last modified
2yr ago
Copy link
Contents
Portal View
Customer Properties