3️⃣ Set Map Color by Place
You can freely change the color of each place on the map.
📍 PUT
/open-api/v1/map/{id}
PUT
/open-api/v1/map/{id}
Request Header
Key
Value
Description
api-key
{YOUR_API_Key}
Path Parameter
Key
Value
Description
Place ID
{YOUR_Place_ID}
Place unique ID
Request Body
※ To modify a specific field, add the desired properties to it.
{
"properties" : {
"color" : "#4000fe",
"icon" : "🚀",
"name" : "rocket"
}
}
cURL
curl --location --request PUT 'https://space.api-freegrow.com/open-api/v1/map/a3' \
--header 'api-key: {YOUR_API_KEY} \
--header 'Content-Type: application/json' \
--data '{
"properties" : {
"color" : "#4000fe",
"icon" : "🚀",
"name" : "rocket"
}
}’
Last updated