简要描述:

  • 获取导游本团信息.

请求URL:

  • /api/guide/guideteaminfo

请求参数:

参数名 是否必须 类型 说明
teamId int32 团Id

入参示例:

  1. https://localhost:6001/api/guide/guideteaminfo?teamId=23

返回示例:

正确时返回:

  1. {
  2. "code": 200,
  3. "success": true,
  4. "message": null,
  5. "result": {
  6. "scanTime": "2019-08-14T16:48:54.277371+08:00",
  7. "contactPhone": "13812341235"
  8. }
  9. }

错误时返回:

  1. {
  2. "code": 500,
  3. "success": false,
  4. "message": "Value cannot be null.\r\nParameter name: teamId",
  5. "result": null
  6. }

返回参数说明:

Data数据说明

参数名 类型 说明
contactPhone string 本团联系电话
scanTime datetime 本团扫码时间

备注:

-