Connect your store using API, Getting started
You can connect your custom made store to Convertedin by creating an API with the following instructions
You'll be prompted to enter your base url for the api , for example if your API baseUrl was
https://cake-store.com/
,
your Store info api should be https://cake-store.com/convertedin/storeinfo
We expect you to create an API that complies with the following documentation
Use your token provided inside converted.in after on boarding process to authenticate the request using form-data body

All endpoints should follow the following standard pagination form Except for the store info API
{
"current_page": 1, // current page
"data": [ ],
"from": 1, // start for current page
"to": 100, // end for current page
"last_page": 23, // last available page
"per_page": 100, // limit per page
"total": 2220 // total number of entities
}
post
YOUR_BASEURL
/convertedin/storeinfo
Store Info
{
"code": 200,
"data": {
"name": "store Name",
"currency": "EGP",
"time_zone": "GMT+2",
"email": "[email protected]",
"description": "buy all your cake",
"country": "eg",
"country_code": "EG"
}
}
key | description |
name | Store name or title |
currency | currency in ISO format (USD, EUR, etc...) |
time_zone | store default timezone in your format |
email | Admin or store contact email |
description | store brief or headline |
country | operating country in ISO code (US, GB) |
Last modified 4mo ago