# 【 保存其他页面资料信息(步骤6)】接口文档 v1.0.0
**所属平台**: PhalApi开源接口框架
**接口地址**: `https://material.glotradeso.com/?s=App.SiteCollection_Collection.SaveOtherPage`
**请求方式**: POST
## 接口基本信息
- **功能描述**: 保存或更新其他页面资料,包括FAQ附件、资料下载附件、自定义页面列表
- **返回格式**: JSON
## 请求参数说明
### 系统参数
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| s | string | 必填 | 接口服务名,固定为`App.SiteCollection_Collection.SaveOtherPage` |
### 业务参数
| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| collection_id | int | 必填 | 资料收集ID |
| faq_files | array | 可选 | FAQ附件JSON数组 |
| download_files | array | 可选 | 资料下载附件JSON数组 |
| custom_pages | array | 可选 | 自定义页面列表JSON数组 |
## 返回字段
| 返回字段 | 类型 | 说明 |
|---|---|---|
| ret | int | 接口状态码,`200`表示成功,`4xx`表示客户端非法请求,`5xx`表示服务端异常 |
| data | object/array/混合 | 接口返回的业务数据,由不同的API接口决定不同的数据返回字段和结构。|
| msg | 字符串 | 提示信息,面向技术人员的帮助或错误提示信息,成功返回时为空字符串 |
| data.collection_id | int | 资料收集ID|
| data.status | string | 状态|
## 请求示例
```bash
curl -X POST 'https://material.glotradeso.com/?s=App.SiteCollection_Collection.SaveOtherPage' \
-H 'Content-Type: application/json' \
-d '{"collection_id":"","faq_files":"","download_files":"","custom_pages":""}'
```
返回示例:
```json
```