API DocsAPI Docs
put/api/group/poi/{id}
put/api/group/poi/{id}
修改POI别名
Basic Information
Request Method:
put
Request URL:
https://www.lycoo.com/api/group/poi/{id}
Tags:
小组POI管理
Description
修改小组POI的别名。需要用户已登录且为小组成员。
Path Parameters
Path Parameters Explanation
Path parameters are variables in the URL path, for example:
https://www.lycoo.com/api/group/poi/:id
Parameter Name | Type | Required | Example Value | Description |
---|---|---|---|---|
id | string | Required | abc123 | 小组POI的ID |
Header Parameters
Header Parameters Explanation
Header parameters are used to pass additional information, such as authentication credentials, content type, etc.
Parameter Name | Type | Required | Example Value | Description |
---|---|---|---|---|
Authorization | string | Required | Bearer sha_1234567890abcdef... | The authentication header is used to verify the identity of API requests, containing an access token Format: Bearer {token} |
Request Body Parameters
Request Body Parameters Explanation
Request body parameters are used to pass complex structured data, typically using the following format: application/json
Parameter Details
Parameter Name | Type | Required | Example Value | Description |
---|---|---|---|---|
alias | string | Required | example | 自定义的POI别名 |
JSON Example
{
"alias": "string"
}
Response Example
200POI别名更新成功
{
"success": true,
"message": "string"
}
400
401
403
404
500