同步分组

请求URL
https://api.mytijian.com/open-api/V2/ws/group/syncGroup?accessToken=ACCESS_TOKEN&nonce=NONCE&sign=SIGN
请求协议:HTTPS
请求方式:POST
需要签名: 是
URL参数:

参数名 是否必须 类型 说明
accessToken string 当前有效的accessToken
nonce string 当前有效的nonce
sign string 数据sign值
POST参数示例
  1. {
  2. "hisGroupCode": 10625777,
  3. "hisGroupName": "adddffffff-FM",
  4. "companyId": 2323,
  5. "capacity": 1000,
  6. "expiredDate": "2022-03-02 10:00:00",
  7. "mealId": 12234,
  8. gender:1,
  9. marriage:0
  10. }
参数名 是否必须 类型 说明
hisGroupCode string 内网分组code
hisGroupName string 内网分组名称
companyId string 平台单位id
capacity string 额度
expiredDate string 过期时间
mealId int 套餐id
gender int 性别:0 男性,1女性 ,2不限 null 空
marriage int 婚姻 0 未婚 1 已婚 2不限 null 空

正确返回示例:

  1. {
  2. "data": {
  3. "examineeGroupId":123
  4. },
  5. "msg": "success",
  6. "success": "T"
  7. }
参数名 是否必须 类型 说明
examineeGroupId int 平台分组id

修改分组

请求URL
https://api.mytijian.com/open-api/V2/ws/group/modifyGroup?accessToken=ACCESS_TOKEN&nonce=NONCE&sign=SIGN
请求协议:HTTPS
请求方式:POST
需要签名: 是
URL参数:

参数名 是否必须 类型 说明
accessToken string 当前有效的accessToken
nonce string 当前有效的nonce
sign string 数据sign值
POST参数示例
  1. {
  2. "hisGroupCode": 10625777,
  3. "hisGroupName": "adddffffff-FM",
  4. "mealId": 12234
  5. }
参数名 是否必须 类型 说明
hisGroupCode string 内网分组code
hisGroupName string 内网分组名称
mealId int 套餐id

正确返回示例:

  1. {
  2. "data": {
  3. },
  4. "msg": "success",
  5. "success": "T"
  6. }
文档更新时间: 2022-04-21 12:22