Skip to content

Commit

Permalink
Merge branch 'main' into DEVDOCS-5502
Browse files Browse the repository at this point in the history
  • Loading branch information
bc-traciporter authored Oct 18, 2023
2 parents a88b2a6 + 682d521 commit a6e44c2
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/api-docs/apps/guide/apps-01-introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Here's how to get started with BigCommerce development:

3. [Create a Developer Portal account](https://devtools.bigcommerce.com/) to register and submit apps.

4. [Join the Developer Community](https://support.bigcommerce.com/s/group/0F913000000HLjECAW/bigcommerce-developers) to get help from other BigCommerce developers.
4. [Join the Developer Community](/community) to get help from other BigCommerce developers.
5. [Check out the Marketplace](https://www.bigcommerce.com/marketplace/) to get inspiration on what to build.


Expand Down
3 changes: 2 additions & 1 deletion docs/api-docs/getting-started/api-status-codes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ This article covers [REST](#rest-api-http-status-codes) and [GraphQL](#graphql-a
| **400** | **Bad Request** | Issued when a malformed request was sent. The request could not be completed due to a URL restriction. Check the URL for ports that may conflict with site permissions. |
| **401** | **Unauthorized** | This response is sent when your client failed to provide credentials or its credentials were invalid. |
| **403** | **Forbidden** | Returned when permissions do not allow the operation. |
| **404** | **Does not exist** | The requested entity does not exist. |
| **404** | **Does Not Exist** | The requested entity does not exist. |
| **405** | **Method Not Allowed** | The resource was found, but doesn't support the request method. Issued when either a specific method isn’t yet implemented on a resource, or the resource doesn’t support the method at all. For example, a `PUT` on `/orders` is invalid, but a `PUT` on `/orders/{_id_}` is valid. |
| **406** | **Not Acceptable** | When the client specifies a response content type in the `Accept` header that is not supported. |
| **409** | **Conflict** | A change requested by the client is being rejected, due to a condition imposed by the server. The exact reasons for this response will vary from one resource to the next. An example might be attempting to delete a category whose deletion would cause products to be orphaned. Additional information about the conflict, and about how to resolve it, might be available in the response's `details` section. |
Expand All @@ -50,6 +50,7 @@ This article covers [REST](#rest-api-http-status-codes) and [GraphQL](#graphql-a
| **422** | **Missing or Invalid Data** | The request cannot be processed either because it omitted required fields or because it contained invalid data. See the response for more details. |
| **423** | **Locked Status Code** | The requested resource is currently locked and unavailable.|
| **429** | **Too Many Requests** | When an OAuth client exceeds the [rate limit](/api-docs/getting-started/best-practices#api-rate-limits) for API requests to a store. |
| **499** | **Client Closed Request** | A client terminates the connection before receiving a response. |

### 5xx Server Error

Expand Down
2 changes: 1 addition & 1 deletion docs/api-docs/partner/support.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ As a BigCommerce partner, you have access to a wide variety of support resources

## Developer community

The [Developer community](https://support.bigcommerce.com/s/group/0F913000000HLjECAW/bigcommerce-developers) is a forum for web developers working with BigCommerce APIs, creating a custom theme, or building a custom app or integration. Find answers, browse topics, and talk to other developers in this group.
The [Developer community](/community) is a hub for web developers working with BigCommerce APIs, creating a custom theme, or building a custom app or integration. Find answers, browse topics, and talk to other developers in this group.

## Developer blog

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -496,8 +496,12 @@ When you uninstall an app with an associated shipping carrier, you also automati
The response payload will display shipping quotes from lowest to highest price.
</Callout>

### Incomplete postcodes

Shipping provider integrations should plan to handle incomplete postcodes when handling shipping quotes. Incomplete postcodes can occur when stores use [digital wallets](https://support.bigcommerce.com/s/article/Online-Payment-Methods?language=en_US#digital-wallet) as a payment method. Digital wallets truncate postcodes for shipping addresses in the UK and Canada as they only provide the first three characters to shipping provider integrations.

Digital wallets truncate postcodes only when they generate shipping quotes. Complete postcodes are available once a shopper places the order. Shipping providers can read and fetch order data after order placement.

## Including product metadata in rate requests

BigCommerce passes carrier-specific product metadata to a carrier service in a rate request via product and variant metafields. This product metadata can be useful if your service depends on specific fields that are not existent on BigCommerce products or variants by default.
Expand Down
1 change: 1 addition & 0 deletions docs/api-docs/webhooks/about-webhooks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ Accept: application/json
<Callout type="info">
* The `destination` URL must be served on port **443**; custom ports are not currently supported.
* It can take up to one minute for a newly created webhook to work.
* A webhook subscription becomes deactivated after 90 days of inactivity.
</Callout>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ Warnings will not block a theme's upload, but these onscreen and/or log messages

* If a custom theme does not render properly after you upload and apply it to a storefront, make sure you have created the theme's zip file using the `stencil bundle` command, on a Mac OS, Linux computer, or virtual machine. Using the `stencil bundle` command will exclude Windows-specific errors that have occurred on some bundles.

* If you repeatedly encounter the same error or warning and neither this page nor our KB resolves the problem, see support resources for theme developers in our [Developer Community](https://support.bigcommerce.com/s/group/0F913000000HLjECAW/bigcommerce-developers).
* If you repeatedly encounter the same error or warning and neither this page nor our KB resolves the problem, see support resources for theme developers in our [Developer Community](/community).
2 changes: 1 addition & 1 deletion docs/stencil-docs/getting-started/about-stencil.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ For information on Blueprint, BigCommerce's legacy theme framework, see [Bluepri

## Support

### [Developer Community](https://support.bigcommerce.com/s/group/0F913000000HLjECAW/bigcommerce-developers)
### [Developer Community](/community)
This is a great place to get help from other developers who work on the BigCommerce platform. If you have BigCommerce specific questions this is the best place to ask. It’s also great for beginners to get assistance.

### [Stack Overflow](https://stackoverflow.com/questions/tagged/bigcommerce)
Expand Down

0 comments on commit a6e44c2

Please sign in to comment.