## 保存
#### 接口URL
> {{baseUrl}}/cms/marketing/advert_position/save
#### 请求方式
> POST
#### Content-Type
> json
#### 请求Header参数
| 参数 | 示例值 | 是否必填 | 参数描述 |
| :-------- | :----- | :----- | :---- |
| Content-Type | application/json | 选填 | - |
#### 请求Body参数
```javascript
{
"name": "风景"
}
```
## 删除
#### 接口URL
> {{baseUrl}}/cms/marketing/advert_position/delete
#### 请求方式
> POST
#### Content-Type
> json
#### 请求Header参数
| 参数 | 示例值 | 是否必填 | 参数描述 |
| :-------- | :----- | :----- | :---- |
| Content-Type | application/json | 选填 | - |
#### 请求Body参数
```javascript
{
"ids":[3]
}
```
## 明细
#### 接口URL
> {{baseUrl}}/cms/marketing/advert_position/get
#### 请求方式
> POST
#### Content-Type
> json
#### 请求Header参数
| 参数 | 示例值 | 是否必填 | 参数描述 |
| :-------- | :----- | :----- | :---- |
| Content-Type | application/json | 选填 | - |
#### 请求Body参数
```javascript
{
"id": 1
}
```
## 列表
#### 接口URL
> {{baseUrl}}/cms/marketing/advert_position/list
#### 请求方式
> POST
#### Content-Type
> json
#### 请求Header参数
| 参数 | 示例值 | 是否必填 | 参数描述 |
| :-------- | :----- | :----- | :---- |
| Content-Type | application/json | 选填 | - |
#### 请求Body参数
```javascript
{
"searchKey": {},
"offset": 0,
"limit": 10
}
```