GrowSpace
지도서비스 API

Place UID별 Details 수정

2026년 09월 16일

한 프로젝트에 업로드 된 모든 플레이스의 상세 정보를 업데이트하기 위해 다음과 같은 API를 사용합니다.

📍 PUT /open-api/v1/place/{id}

Request Header

KeyValueDescription
api-key{YOUR_API_Key}

Path Parameter

KeyValueDescription
idNumber찾고자하는 플레이스의 고유 번호

Request Body

{
"categoryId" : 1,
"placeAreaUid" : "B01",
"imageId" : 13,
"trn" : [
{
"language" : "def",
"description" : "description",
"name" : "place name 1"
}
]
}

Response Body

200

{
"id": 2,
"placeAreaUid": "B01",
"image": {
"id": 13,
"type": "place",
"image": [
{
"id": 12,
"url": "https://…"
}
]
},
"createDate": "2025-07-16 10:49:52",
"updateDate": "2025-07-16",
"trn": [
{
"language": "def",
"name": "place name 1",
"description": "description"
}
],
"category": "Main category",
"subCategory": "Sub category"
}

400

{
 "error": "Invalid request"
}

cURL

curl --location --request PUT 'https://space.api-freegrow.com/open-api/v1/place/2' 
--header 'api-key: {YOUR_API_KEY}' 
--header 'Content-Type: application/json' 
--data '{
"categoryId" : 1,
"placeAreaUid" : "B01",
"imageId" : 13,
"trn" : [
{
"language" : "def",
"description" : "description",
"name" : "place name 1"
}
]
}'

관련 안내서

서비스 사용법이 궁금하다면 Growspace Studio 가이드 바로가기

PDF로 내려받아 현장에서 보세요