HTTP请求
PUT https://api.mokahr.com/api-platform/v1/offers/custom_field/update
请求body
字段 | 必填 | 类型 | 描述 |
---|---|---|---|
id | 是 | integer | 需要修改的自定义字段的id,必填 |
name | 否 | string | 自定义字段名称,选填 |
hireMode | 否 | integer | 招聘类型 |
type | 否 | integer | 自定义字段类型 |
detail | 否 | array | 自定义字段选择项,选填 |
data.codes | 否 | array | 自定义字段选择项对应的编码 |
supplementaryLocales | 否 | object | 多语言的object,如果设置多语音一定要按照下面的格式设定参数,选填 |
supplementaryLocales.en-US | 否 | object | 多语言的英文object,选填 |
supplementaryLocales.en-US.name | 否 | string | 自定义字段的英文名称,选填 |
supplementaryLocales.en-US.detail | 否 | array | 自定义字段选择项,选填 |
isRequired | 否 | boolean | 必填,选填 |
isSensitive | 否 | boolean | 是否私密,选填 |
isVisible | 否 | boolean | 是否可见,选填 |
reapprovalRequired | 否 | boolean | 是否必审,选填 |
attributeRule | 否 | object | type为10的时候,所使用的属性规则 |
attributeRule.decimalLength | 否 | number | 小数的位数,默认为null |
attributeRule.isSupportNegative | 否 | boolean | 是否支持负数,默认不支持 |
attributeRule.numberRange | 否 | objeact | 数字范围 |
attributeRule.numberRange.min | 否 | number | 数字范围的最小值 |
attributeRule.numberRange.max | 否 | number | 数字范围的最大值 |
返回
返回的body的JSON如下
字段 | 类型 | 描述 |
---|---|---|
code | string |
|
msg | string | 接口返回值说明 |
success | boolean | 已废弃,请勿用于业务逻辑判断,请使用code来判断调用结果 |
data | object | 返回为null |
请求样例
$ curl https://api.mokahr.com/api-platform/v1/offers/custom_field/update
-u 'your-api-key:'
-X PUT
-H 'Content-Type: application/json'
-d ' { "id":"410012399", "hireMode": 1, "detail":["选项1","选项2"], "codes":["1005","1006"], "supplementaryLocales":{ "en-US": { "name":"测试-单行文本-英文名称", "detail":["选项1-e","选项2-e"] } }, "isRequired": true, "isSensitive": true, "isVisible": false, "name": "测33333试", "reapprovalRequired": true, "type": 6 } '
2
3
4
5
返回样例
{ "code": 200, "success": true, "msg": "success", "data": null }