* docs: added publishable api keys docs * Update docs/content/advanced/admin/manage-publishable-api-keys.mdx Co-authored-by: Frane Polić <16856471+fPolic@users.noreply.github.com> * Update publishable-api-keys.mdx * Update docs/content/advanced/storefront/use-sales-channels.mdx Co-authored-by: Oliver Windall Juhl <59018053+olivermrbl@users.noreply.github.com> * added note in admin how-to guide * added note in conceptual guide * Update docs/content/advanced/backend/publishable-api-keys/index.md Co-authored-by: Oliver Windall Juhl <59018053+olivermrbl@users.noreply.github.com> * small fixes Co-authored-by: Frane Polić <16856471+fPolic@users.noreply.github.com> Co-authored-by: Oliver Windall Juhl <59018053+olivermrbl@users.noreply.github.com>
237 lines
6.1 KiB
Plaintext
237 lines
6.1 KiB
Plaintext
import Tabs from '@theme/Tabs';
|
||
import TabItem from '@theme/TabItem';
|
||
|
||
# How to Manage Customers
|
||
|
||
In this document, you’ll learn how to implement customer management functionalities for admin users.
|
||
|
||
## Overview
|
||
|
||
Using the customer admin REST APIs, you can manage customers, including creating, updating, and listing them.
|
||
|
||
### Scenario
|
||
|
||
You want to add or use the following admin functionalities:
|
||
|
||
- List customers
|
||
- Add a new customer
|
||
- Edit a customer’s details
|
||
|
||
---
|
||
|
||
## Prerequisites
|
||
|
||
### Medusa Components
|
||
|
||
It is assumed that you already have a Medusa server installed and set up. If not, you can follow the [quickstart guide](../../quickstart/quick-start.mdx) to get started.
|
||
|
||
### JS Client
|
||
|
||
This guide includes code snippets to send requests to your Medusa server using Medusa’s JS Client, JavaScript’s Fetch API, or cURL.
|
||
|
||
If you follow the JS Client code blocks, it’s assumed you already have [Medusa’s JS Client](../../js-client/overview.md) installed and have [created an instance of the client](../../js-client/overview.md#configuration).
|
||
|
||
### Authenticated Admin User
|
||
|
||
You must be an authenticated admin user before following along with the steps in the tutorial.
|
||
|
||
You can learn more about [authenticating as an admin user in the API reference](/api/admin/#section/Authentication).
|
||
|
||
---
|
||
|
||
## List Customers
|
||
|
||
You can show a list of customers by sending a request to the [List Customers](/api/admin/#tag/Customer/operation/GetCustomers) endpoint:
|
||
|
||
<Tabs groupId="request-type" wrapperClassName="code-tabs">
|
||
<TabItem value="client" label="Medusa JS Client" default>
|
||
|
||
```ts
|
||
medusa.admin.customers.list()
|
||
.then(({ customers, limit, offset, count }) => {
|
||
console.log(customers.length)
|
||
})
|
||
```
|
||
|
||
</TabItem>
|
||
<TabItem value="fetch" label="Fetch API">
|
||
|
||
```ts
|
||
fetch(`<SERVER_URL>/admin/customers`, {
|
||
credentials: "include",
|
||
})
|
||
.then((response) => response.json())
|
||
.then(({ customers, limit, offset, count }) => {
|
||
console.log(customers.length)
|
||
})
|
||
```
|
||
|
||
</TabItem>
|
||
<TabItem value="curl" label="cURL">
|
||
|
||
```bash
|
||
curl -L -X GET '<SERVER_URL>/admin/customers' \
|
||
-H 'Authorization: Bearer <API_TOKEN>'
|
||
```
|
||
|
||
</TabItem>
|
||
</Tabs>
|
||
|
||
This request doesn’t require any path or query parameters. You can pass it optional parameters used for filtering and pagination. Check out the [API reference](/api/admin/#tag/Customer/operation/GetCustomers) to learn more.
|
||
|
||
This request returns the following data in the response:
|
||
|
||
- `customers`: An array of customers.
|
||
- `limit`: The maximum number of customers that can be returned in the request.
|
||
- `offset`: The number of customers skipped in the result.
|
||
- `count`: The total number of customers available.
|
||
|
||
:::info
|
||
|
||
You can learn more about pagination in the [API reference](/api/admin/#section/Pagination).
|
||
|
||
:::
|
||
|
||
---
|
||
|
||
## Create a Customer
|
||
|
||
Admins can create customer accounts. They have to supply the customer’s credentials and basic info.
|
||
|
||
You can create a customer account by sending a request to the [Create a Customer](/api/admin/#tag/Customer/operation/PostCustomers) endpoint:
|
||
|
||
<Tabs groupId="request-type" wrapperClassName="code-tabs">
|
||
<TabItem value="client" label="Medusa JS Client" default>
|
||
|
||
```ts
|
||
medusa.admin.customers.create({
|
||
email,
|
||
password,
|
||
first_name,
|
||
last_name,
|
||
})
|
||
.then(({ customer }) => {
|
||
console.log(customer.id)
|
||
})
|
||
```
|
||
|
||
</TabItem>
|
||
<TabItem value="fetch" label="Fetch API">
|
||
|
||
```ts
|
||
fetch(`<SERVER_URL>/admin/customers`, {
|
||
method: "POST",
|
||
credentials: "include",
|
||
headers: {
|
||
"Content-Type": "application/json",
|
||
},
|
||
body: JSON.stringify({
|
||
email,
|
||
password,
|
||
first_name,
|
||
last_name,
|
||
}),
|
||
})
|
||
.then((response) => response.json())
|
||
.then(({ customer }) => {
|
||
console.log(customer.id)
|
||
})
|
||
```
|
||
|
||
</TabItem>
|
||
<TabItem value="curl" label="cURL">
|
||
|
||
```bash
|
||
curl -L -X POST '<SERVER_URL>/admin/customers' \
|
||
-H 'Authorization: Bearer <API_TOKEN>' \
|
||
-H 'Content-Type: application/json' \
|
||
--data-raw '{
|
||
"email": "<EMAIL>",
|
||
"first_name": "<FIRST_NAME>",
|
||
"last_name": "<LAST_NAME>",
|
||
"password": "<PASSWORD>"
|
||
}'
|
||
```
|
||
|
||
</TabItem>
|
||
</Tabs>
|
||
|
||
This request requires the following body parameters:
|
||
|
||
- `email`: The email of the customer.
|
||
- `password`: The password of the customer.
|
||
- `first_name`: The customer’s first name.
|
||
- `last_name`: the customer’s last name.
|
||
|
||
You can also pass other optional parameters. To learn more, check out the [API reference](/api/admin/#tag/Customer/operation/PostCustomers).
|
||
|
||
The request returns the created customer object in the response.
|
||
|
||
---
|
||
|
||
## Edit Customer’s Information
|
||
|
||
An admin can edit a customer’s basic information and credentials.
|
||
|
||
You can edit a customer’s information by sending a request to the [Update a Customer](/api/admin/#tag/Customer/operation/PostCustomersCustomer) endpoint:
|
||
|
||
<Tabs groupId="request-type" wrapperClassName="code-tabs">
|
||
<TabItem value="client" label="Medusa JS Client" default>
|
||
|
||
```ts
|
||
medusa.admin.customers.update(customerId, {
|
||
first_name,
|
||
})
|
||
.then(({ customer }) => {
|
||
console.log(customer.id)
|
||
})
|
||
```
|
||
|
||
</TabItem>
|
||
<TabItem value="fetch" label="Fetch API">
|
||
|
||
```ts
|
||
fetch(`<SERVER_URL>/admin/customers/${customerId}`, {
|
||
method: "POST",
|
||
credentials: "include",
|
||
headers: {
|
||
"Content-Type": "application/json",
|
||
},
|
||
body: JSON.stringify({
|
||
first_name,
|
||
}),
|
||
})
|
||
.then((response) => response.json())
|
||
.then(({ customer }) => {
|
||
console.log(customer.id)
|
||
})
|
||
```
|
||
|
||
</TabItem>
|
||
<TabItem value="curl" label="cURL">
|
||
|
||
```bash
|
||
curl -L -X POST '<SERVER_URL>/admin/customers/<CUSTOMER_ID>' \
|
||
-H 'Authorization: Bearer <API_TOKEN>' \
|
||
-H 'Content-Type: application/json' \
|
||
--data-raw '{
|
||
"first_name": "<FIRST_NAME>"
|
||
}'
|
||
```
|
||
|
||
</TabItem>
|
||
</Tabs>
|
||
|
||
This request accepts any of the customer’s fields as body parameters. In this example, you update the customer’s first name. You can learn more about accepted body parameters in the [API reference](/api/admin/#tag/Customer/operation/PostCustomersCustomer).
|
||
|
||
This request returns the updated customer object in the response.
|
||
|
||
---
|
||
|
||
## See Also
|
||
|
||
- [Manage customer groups](./use-customergroups-api.mdx)
|
||
- [Customers admin API reference](/api/admin)
|
||
- [Customers overview](../backend/customers/index.md)
|
||
- [Implement customer profiles in the storefront](../storefront/customer-profiles.mdx)
|