importing products using api

Hello Everyone,

I am quite new to SugarCrm so your help is appreciated.

it goes like this:
we have products that are in PIMCORE and we want to import all the products into sugar or just use them directly from pim core

is there any way to import them using api or any other method?

thank you in advance

Parents
  • . Using the SugarCRM API

    SugarCRM provides a robust API that you can utilize to import products programmatically. Here’s how you can do it:

    - Using the SugarCRM API

    SugarCRM provides a robust API that you can utilize to import products programmatically. Here’s how you can do it:

    Authenticate with SugarCRM API:
    Use OAuth2 or Basic Authentication to connect to your SugarCRM instance.


    Retrieve Products from Pimcore:
    Use Pimcore’s API to fetch the products you want to import.

    Create Products in SugarCRM:
    Use the SugarCRM API to create new product records. You’ll typically send a POST request to the /Products endpoint with the product data.

    Or 

    Using Data Import Tools
    If you prefer not to work directly with APIs, consider the following options:

    CSV Import:

    Export your products from Pimcore in CSV format.
    Use the SugarCRM import feature to upload the CSV file directly into SugarCRM

    Here you have some information that maybe can help you to have an idea or another to do the import, I hope I can help you!

  • Thank you for you response !
    so that involve creating a web interface or just a script that does it

    should the data be mapped to SugarCrm objects or it can be posted as it is?

    and what if we already have products, would the existing products be updated or just new entries will be created

Reply Children