Enable building creation in post endpoint
Created by: josedcs
Building service user can create Building using Mapbox place name
- BI-1004 Allow for building creation
depends on changes from OLTP to be ran: https://github.com/Blocp/oltp/pull/68
Making a post request to local building service building endpoint with body in the following format
{
"place_name": "10425 South Freeman Avenue, Inglewood, California 90304, United States"
}
returns
{
"data": {
"bbl": null,
"bin": null,
"borough": null,
"building_id": 1189754,
"lot_id": 879230,
"place_name": "10425 South Freeman Avenue, Inglewood, California 90304, United States",
"street_address": [
null
],
"targeting_score": null,
"zipcode": null
}
}
