API Resources
Bigcommerce
| API | Description |
|---|---|
| GET Bigcommerce/products?name={name}&keyword_filter={keyword_filter}&page={page}&limit={limit}&sort={sort} |
Search bigcommerce products |
| GET Bigcommerce/customers?first_name={first_name}&last_name={last_name}&company={company}&email={email}&page={page}&limit={limit}&sort={sort} |
Search bigcommerce customers |
| GET Bigcommerce/customer/{id} |
get a bigcommerce customer |
| GET Bigcommerce/customer/{id}/addresses?page={page}&limit={limit}&sort={sort} |
get a bigcommerce customer's addresses |
| GET Bigcommerce/customer/{id}/Profile |
get the profile tied to the bigcommerce customer id |
| POST Bigcommerce/customer/{id}/Profile |
create a profile by importing the bigcommerce customer. expect the bigcommerce customer dto and customer address dtos to save on bigcommerce api calls. |
| GET Bigcommerce/CustomerGroups?name={name}&is_default={is_default}&page={page}&limit={limit}&sort={sort} |
Search bigcommerce customer groups |
| GET Bigcommerce/order/{id} |
get a bigcommerce order |
| POST Bigcommerce/order/{id} |
import/reimport a bigcommerce order |
| GET Bigcommerce/Webhooks |
Search bigcommerce webhooks |
| POST Bigcommerce/hooks/order/created |
Handler for bigcommerce hook for order created. Per Bigcommerce's documentation, on success it sets the status code to 200 to tell Bigcommerce that the hook event has been handled |
| POST Bigcommerce/hooks/order/updated |
Handler for bigcommerce hook for order updated. Per Bigcommerce's documentation, on success it sets the status code to 200 to tell Bigcommerce that the hook event has been handled |
| POST Bigcommerce/hooks/order/statusUpdated |
Handler for bigcommerce hook for order status updated. Per Bigcommerce's documentation, on success it sets the status code to 200 to tell Bigcommerce that the hook event has been handled |
| POST Bigcommerce/ActivateRequiredWebhooks |
Activate or reactivate inactive webhooks required by the integration between WebLink Connect and Bigcommerce. |
| GET Bigcommerce/orderinvoices |
Search for invoices tied to a bigcommerce order |