通过指定教育经历ID,更改当前登录用户的职业经历数据。
Request
HTTP request
PATCH https://www.featapi.com/api/user/education/{id}/
Parameters
Path parameters
Parameter name | Value | Description |
---|---|---|
id | string | 教育经历数据ID |
Authorization
该请求需要授权以下scopes访问权限:
Scopes |
---|
user_education |
For more information, see the authentication and authorization page.
Request body
In the request body, supply a User.education resource with the following properties:
Property name | Value | Description | Notes |
---|---|---|---|
必填 | |||
type | enum | 这是教育类型。分别为高中、大学和培训机构 | Education.type |
organization | string | 教育经历所在的学校名 | 纯文本 |
title | string | 这是教育经历的专业名或培训主题。当教育类型为大学或培训机构时,该字段为必填,否则为null | 纯文本 |
city | string | 城市名。当教育类型为高中时,该字段为必填,否则为null | 纯文本 |
since | string | 起始日期 | 日期格式:YYYY-MM-DD |
until | string | 结束日期 | 日期格式: YYYY-MM-DD。如果该职业经历为仍在任职,则改为null |
publish | boolean | 是否确认发布 | 默认:true |
选填 | |||
description | string | 教育经历描述 | 纯文本 |
pic | file | 教育经历的相关图片 | 仅允许图片文件 |
Response
如果请求成功,根据path参数指定的数据ID,该API返回对应ID的User.Education教育经历数据在响应体信息。
200 Update an education successfully
{
"data": {
"id": 121,
"user": 7815769374283,
"type": 100,
"organization": "广东财经大学",
"title": "计算机",
"since": "2013-01-01",
"until": "2016-01-01",
"description": "无",
"city": null,
"pic": null,
"status": 100
}
}
400 Validation Exception
示例返回数据可参考 API Common – Validation Exception
404 Not found
示例返回数据可参考 API Common – Resource Not Found