Skip to content

Commit 152615c

Browse files
authored
DEVDOCS-6658 Replace placeholder values and fix issues in Store Operations documentation (#1185)
# [DEVDOCS-6658] ## What changed? Replace placeholder values and fix issues in Store Operations documentation ## Release notes draft None [DEVDOCS-6658]: https://bigcommercecloud.atlassian.net/browse/DEVDOCS-6658?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
1 parent 8de917e commit 152615c

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
lines changed

docs/start/authentication/graphql-storefront.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,9 +253,9 @@ query CustomerAttributes {
253253
{
254254
"data": {
255255
"customer": {
256-
"firstName": "string",
257-
"lastName": "string",
258-
"email": "user@email.com",
256+
"firstName": "John",
257+
"lastName": "Doe",
258+
"email": "john.doe@example.com",
259259
"entityId": 21,
260260
"customerGroupId": 2,
261261
"attributeCount": 0,

docs/start/draft/marketing-api-overview.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ X-Auth-Token: {{ACCESS_TOKEN}}
8989
"message": "Congratulations!",
9090
"amount": "700.0000",
9191
"to_name": "Jane",
92-
"to_email": "test@test.com",
92+
"to_email": "customer@example.com",
9393
"from_name": "John",
94-
"from_email": "test1@test.com",
94+
"from_email": "admin@example.com",
9595
"code": "XQ2-1R7-7C1-Q0C",
9696
"status": "active"
9797
}

docs/store-operations/catalog/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ X-Auth-Token: {{ACCESS_TOKEN}}
297297
"text": "This coffee mug kept my liquids hot for several hours.",
298298
"status": "pending",
299299
"rating": 5,
300-
"email": "testing@bigcommerce.com",
300+
"email": "reviewer@example.com",
301301
"name": "BigCommerce",
302302
"date_reviewed": "2018-07-20T17:45:13+00:00"
303303
}

docs/store-operations/currencies/guide.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ You can create cart level discounts in your currency of choice. The shopper must
330330
"to_name": "Jane",
331331
"to_email": "[email protected]",
332332
"from_name": "Tarzan",
333-
"from_email": "test1@test.com",
333+
"from_email": "admin@example.com",
334334
"currency_code": "EUR" // new property
335335
}
336336
```

docs/store-operations/customers/channel-specific-customers.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ By default, the value of `channel_ids` is `null`, granting login access to any s
121121

122122
```json showLineNumbers copy
123123
{
124-
"email": "string@example.com",
125-
"first_name": "string",
126-
"last_name": "string",
124+
"email": "jane.smith@example.com",
125+
"first_name": "Jane",
126+
"last_name": "Smith",
127127
"channel_ids": [1]
128128
}
129129
```

docs/store-operations/customers/index.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,9 @@ Content-Type: application/json
228228
Accept: application/json
229229
230230
{
231-
"email": "string@test.com",
232-
"first_name": "string",
233-
"last_name": "string",
231+
"email": "john.doe@example.com",
232+
"first_name": "John",
233+
"last_name": "Doe",
234234
"channel_id": 1,
235235
"consents": ["marketing_newsletter", "abandoned_cart"],
236236
"source": "storefront"
@@ -244,9 +244,9 @@ Content-Type: application/json
244244
Accept: application/json
245245

246246
{
247-
"email": "string@test.com",
248-
"first_name": "string",
249-
"last_name": "string",
247+
"email": "john.doe@example.com",
248+
"first_name": "John",
249+
"last_name": "Doe",
250250
"channel_id": 1,
251251
"consents": [],
252252
"source": "order"

docs/store-operations/payments/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ Accept: application/json
541541
"shipping_addresses": [
542542
{
543543
"first_name": "Trishy",
544-
"last_name": "Test",
544+
"last_name": "Doe",
545545
"company": "Acme Pty Ltd",
546546
"street_1": "666 Sussex St",
547547
"street_2": "",

docs/store-operations/segments/definitions.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ Relationships that don't yet exist:
5959
* [Create segments](/docs/rest-management/customer-segmentation/segments#create-segments)
6060
* [Create shopper profiles](/docs/rest-management/customer-segmentation/shopper-profiles#create-shopper-profiles)
6161
* [Add shopper profiles to a segment](/docs/rest-management/customer-segmentation/shopper-profiles-for-a-segment#add-shopper-profiles-to-a-segment)
62-
* [Update Segments](docs/rest-management/customer-segmentation/segments#update-segments)
62+
* [Update Segments](/docs/rest-management/customer-segmentation/segments#update-segments)
6363
* [Remove shopper profiles from a segment](/docs/rest-management/customer-segmentation/shopper-profiles-for-a-segment#remove-shopper-profiles-from-a-segment)
64-
* [Delete segments](docs/rest-management/customer-segmentation/segments#delete-segments)
64+
* [Delete segments](/docs/rest-management/customer-segmentation/segments#delete-segments)
6565
* [Get all shopper profiles in a segment](/docs/rest-management/customer-segmentation/shopper-profiles-for-a-segment#get-all-shopper-profiles-in-a-segment)
6666
* [Get all segments for a shopper profile](/docs/rest-management/customer-segmentation/segments-for-a-shopper-profile#get-all-segments-for-a-shopper-profile)
6767

docs/store-operations/translations/errors.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Translations Error Handling
3-
keywords: translations, errors, localization, l18n, graphql
3+
keywords: translations, errors, localization, i18n, graphql
44
---
55
# Error Handling
66

0 commit comments

Comments
 (0)