Create Place

A place is a location with a name (like a specific restaurant in a complex or a company inside a building)

$.post('https://api.bringg.com/partner_api/places/', {name: "Somewhere", address: "Corner of this and that"}, function(data) {
    console.log(data);
});
Language