Customers
Get Customers
The "Get Customers" API enables sales users to fetch a list of customers, aiding the display of customer details within the mobile admin. Additionally, it allows for the option of logging in as the specific customer for seamless interaction and effective sales support.
Endpoint:
api/customer/customers
Http Method:
GET
Success Response:
You can check more details about Customer Resource.
{
"code": 200,
"data": [
{
"id": 1153383,
"name": "Test",
"last_name": "Documentation",
"email": "doc2@supercommerce.io",
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9..",
//...
},
//...
]
}
Check the following section to learn more about the Get Customers API Reference
Get Customer Details
The "Get Customer Details" API enables sales users to fetch comprehensive customer information, aiding the display of customer details within the mobile admin. Additionally, it allows for the option of logging in as the specific customer for seamless interaction and effective sales support.
Endpoint:
api/mobile/admin/customers/{id}
HTTP Method:
GET
The API empowers sales users to effortlessly access customer information and seamlessly assume the identity of customers to initiate order creation.
- Success Response:
You can check more details about Customer Resource.
{
"code": 200,
"data": {
"id": 1153383,
"name": "Test",
"last_name": "Documentation",
"email": "doc2@supercommerce.io",
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9..",
//...
}
}
Check the following section to learn more about the Customer Details API Reference