Businesses
Create business
This API allows the creation of a new business in the context of your organization.
post/business
Request body
Example request
{
"name": "Corner shop",
"org_id": 42,
"groups": [
1,
2,
3
],
"reach": "LOCAL",
"country": "FR",
"zipcode": "75019",
"city": "Paris",
"region": "Ile-de-France",
"categories": [
"gcid:restaurant",
"gcid:fast_food_restaurant",
"gcid:hamburger_restaurant"
],
"code": "CS-75019",
"status": "open",
"opening_date": "2025-01-01",
"address_full": "12 bis rue du coquelicot",
"lat": -3.585993,
"long": 47.870341,
"website_url": "https://www.corner-shop.co/",
"facebook_url": "https://www.facebook.com/the-corner-shop",
"twitter_url": "https://www.twitter.com/the-corner-shop",
"description_short": "lorem ipsum",
"description_long": "lorem ipsum dolor sit amet",
"open_hours": {
"monday": [
"10:00-14:00"
],
"tuesday": [
"10:00-14:00"
],
"wednesday": [
"10:00-14:00"
],
"thursday": [
"10:00-14:00"
],
"friday": [
"10:00-14:00"
],
"saturday": [
"10:00-14:00"
],
"sunday": [
"10:00-14:00"
]
},
"specific_hours": {
"open": [
{
"starts_at": "2020-01-20",
"ends_at": "2020-01-20",
"open_hours": [
"10:00-14:00"
]
}
],
"close": [
{
"starts_at": "2020-01-20",
"ends_at": "2020-01-22"
}
]
},
"contacts": [
{
"name": "Hubert Bonisseur de la Bath",
"email": "hubert@oss117.fr",
"phone_numbers": [
"+33302060628"
],
"fax": "+33302060629"
}
],
"custom_fields": {
"Parking": true,
"ManagerName": "toto",
"Surface": 35,
"DistanceFromSubway": 1.5,
"Level": "one",
"Services": [
"DisabledAccess",
"FreeParking"
],
"BannerImage": [
"image 1",
"image 2"
],
"TeamMembers": [
{
"url": "image1",
"texts": {
"name1": "value 1",
"name2": "value 2"
}
}
]
}
}Response
OK
Example response
{
"id": "5409c35a97bbc544d8e26737"
}