Create store
Create store
POST
https://integrations.mipos.shop/api/v1/store
Create a store within the platform
Headers
Name
Type
Description
Content-Type
string
application/json
Authorization
string
Bearer {access_token}
Request Body
Name
Type
Description
direction
string
Store location in the country
latitude
string
Latitude coordinate
longitude
string
Longitude coordinate
name
string
Name of the store
country_code
string
Country code where the store is located
{
"message": "Store created.",
"data": {
"id": 1,
"name": "Test Store",
"country": "México",
"direction": "D.F.",
"location_point": {
"type": "Point",
"coordinates": [
-73.98615270853043,
40.74894149554006
]
}
}
}
Last updated
Was this helpful?