Creating winning targeted marketing strategy with customer insights
Are you ready to transform your marketing strategy? Watch an insightful webinar with Ruohonjuuri, tailored specifically for e-commerce and omnichannel retailers.
Are you ready to transform your marketing strategy? Watch an insightful webinar with Ruohonjuuri, tailored specifically for e-commerce and omnichannel retailers.
API documentation
Custobar has five built-in entity types that form the basis of the data model in Custobar. All the entity types have multiple optional fields, which are utilised in various places in Custobar.
Custobar supports importing data using HTTP apis in JSON or CSV formats. Read about the different formats data can be imported into Custobar.
To import your data to Custobar, you can use the Custobar API. Below are examples using curl
to upload the data.
In all the examples below, replace mycompany
with your company name as it is used in your company's Custobar app.
Customers
curl -X POST -u USER -H "Content-Type: application/json" \
--data-binary @customers.json \
https://COMPANY.custobar.com/api/customers/upload/
Events
curl -X POST -u USER -H "Content-Type: application/json" \
--data-binary @events.json \
https://COMPANY.custobar.com/api/events/
Products
curl -X POST -u USER -H "Content-Type: application/json" \
--data-binary @products.json \
https://COMPANY.custobar.com/api/products/upload/
Shops
curl -X POST -u USER -H "Content-Type: application/json" \
--data-binary @shops.json \
https://COMPANY.custobar.com/api/shops/upload/
Sales
curl -X POST -u USER -H "Content-Type: application/json" \
--data-binary @sales.json \
https://COMPANY.custobar.com/api/sales/upload/
It's also possible to use sftp to transfer the files. Files are transferred to directory /srv/sftp/mycompany/tocustobar
on your Custobar server.
For further details, please contact Custobar support.