简要描述:

  • 根据学校id及班级id获取家长列表

接口版本:

版本号 制定人 制定日期 修订日期
v0.1 dev 2019-09-02 init

请求URL:

请求方式:

  • GET

认证方式:

  • HMAC

详细可参见 开放平台API的认证说明

请求头:

参数名 是否必须 类型 说明
Content-Type string 请求类型: application/json
Date string http协议标准头
Authorization string hmac 签名
idp-open-id string 用户openid
idp-access-token string 用户access_token
sdp-app-id string 应用租户ID,具体信息获取方式参见应用的sdp-app-id参数获取方式

请求参数:

参数名 是否必须 类型 默认值 说明
school_id long 学校id
class_id long 年级id
with_detail bool false 附带详细信息

返回示例:

正确时返回:

  1. [
  2. {
  3. "id": 0,
  4. "account": "string",
  5. "real_name": "string",
  6. "nick_name": "string",
  7. "relations": [
  8. {
  9. "id": "string",
  10. "display_name": "string",
  11. "relation": "string",
  12. "relation_name": "string"
  13. }
  14. ]
  15. }
  16. ]

错误时返回:

返回参数说明:

参数名 类型 说明
id long 家长ID
account string 帐号
real_name string 真实姓名
nick_name string 昵称 无昵称的情况下会自动将真实姓名写入昵称
relations array[GuardianChildrenVO] 关系列表
GuardianChildrenVO
参数名 类型 说明
id long 孩子ID
display_name string 孩子名字
relation string 关系 mother father other grandfather grandmother grandpa_m grandma_m
relation_name string 关系名称 母亲 父亲 其他 爷爷 奶奶 姥爷 姥姥
作者:wangtc  创建时间:2019-09-18 11:04
 更新时间:2023-11-14 10:57