List Your Products On Jet.com Using Api Call

List Your Products On Jet.com Using Api Call
Jet.com is an e-commerce platform, which provides a powerful marketplace to his partners. But products listing on Jet.com is not quite simple as other platforms. To upload products on Jet.com, first, you need to register their Partner program. After receiving approval, you will able to access Jet API to upload products.


You can also check our ready Jet API template, using this tool you can easily manage products and orders on Jet.com.

Start Product Listing in Jet.com via API call

Initially, you have Test API environment access. After login in the Jet partner account, go in the API tab at the left side. Where you can find Test API keys, which are going to use for authentication.

jet api key access

Jet API Authentication:

Send API user and merchant pass in the request body to authenticate Jet API. Use below PHP code to authenticate. After that, you will get id_token, which will pass in the header to execute further API calls.

Jet API Call to Add Product Sku:

Now you have the id_token, lets write a code to add products SKU in Jet.com. Complete SKU Products parameter information described here: https://developer.jet.com/docs/overview

Need to Implement This :  Get Quote

Pass previously get authentication id_token in header request. Make sure the content type is JSON. Below request product parameters are required to upload SKU.

After executing the above code new Product SKU added in Jet.com. Although Jet has another method to upload products, that is the Bulk JSON File Upload method. This method used to upload large number of products at one time. If you have limited products then a single SKU method is best.

You May Also Like:

How to Add New Product in Bigcommerce via API V2
How to Connect With Cloudshare Rest API
How to Get Opportunity Data from Salesforce Through API in PHP
How to Install Magento Security Patch via Putty
Code to Use Paypal Payment Gateway on Website

After adding SKU in jet com, use this same method to add Inventory and Price data of products. Your added product status goes to Under Review. After reviewing uploaded products by Jet, your SKU goes live. Must share with others. Thanks

Recommended Posts For You

About Harish

I am professional web developer and blogger. Use this blog to share own api and other web development experience with you. I do accept paid work. Write to me at - [email protected]

View all posts by Harish

5 thoughts on “List Your Products On Jet.com Using Api Call”

  1. It’s a pity you do781&2#n;t have a donate button! I’d without a doubt donate to this excellent blog! I suppose for now i’ll settle for bookmarking and adding your RSS feed to my Google account. I look forward to new updates and will share this website with my Facebook group. Chat soon!

  2. Hi
    I did the same that you mention in your above script regarding to the create new product on jet but it did not work for me . after run this it return nothing and did not create any product on my account.
    can you please let me know what I did wrong.

  3. yes the code works, however i needed to not verify SSL
    my issue is i am stuck on the upload sku invitory how do i get the object array too json
    how does the object array look

    1. Hi Allen, making object array to json quite easy. See this example:

      $inventory[] = array(
      ‘fulfillment_node_id’ => ‘cf0d2b2**********1a96117598c’,
      ‘quantity’ => ’10’
      );
      $inv_data = array(
      ‘fulfillment_nodes’ => $inventory
      );
      $inv_body = json_encode($inv_data);

Leave a Comment

Your email address will not be published. Required fields are marked *