GET GetClassAccountManageList?aId={aId}&shopId={shopId}

获取上课人列表

Request Information

URI Parameters

NameDescriptionTypeAdditional information
aId

用户id

string

Required

shopId

商城ID

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ClassAccountManageInfo
NameDescriptionTypeAdditional information
ClassAccountManageID

上课人管理ID

globally unique identifier

None.

TrueName

姓名

string

None.

MobilePhone

手机号

string

None.

ValidDocumentType

有效证件类型

integer

None.

ValidDocumentCode

证件号

string

None.

CompanyName

企业名称

string

None.

IsSelf

是否本人

boolean

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ClassAccountManageID": "dceb374d-e163-47ef-b0ba-d22d95687913",
    "TrueName": "sample string 2",
    "MobilePhone": "sample string 3",
    "ValidDocumentType": 4,
    "ValidDocumentCode": "sample string 5",
    "CompanyName": "sample string 6",
    "IsSelf": true
  },
  {
    "ClassAccountManageID": "dceb374d-e163-47ef-b0ba-d22d95687913",
    "TrueName": "sample string 2",
    "MobilePhone": "sample string 3",
    "ValidDocumentType": 4,
    "ValidDocumentCode": "sample string 5",
    "CompanyName": "sample string 6",
    "IsSelf": true
  }
]

application/xml, text/xml

Sample:
<ArrayOfClassAccountManageInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Areas.OnlineEducation.Models">
  <ClassAccountManageInfo>
    <ClassAccountManageID>dceb374d-e163-47ef-b0ba-d22d95687913</ClassAccountManageID>
    <CompanyName>sample string 6</CompanyName>
    <IsSelf>true</IsSelf>
    <MobilePhone>sample string 3</MobilePhone>
    <TrueName>sample string 2</TrueName>
    <ValidDocumentCode>sample string 5</ValidDocumentCode>
    <ValidDocumentType>4</ValidDocumentType>
  </ClassAccountManageInfo>
  <ClassAccountManageInfo>
    <ClassAccountManageID>dceb374d-e163-47ef-b0ba-d22d95687913</ClassAccountManageID>
    <CompanyName>sample string 6</CompanyName>
    <IsSelf>true</IsSelf>
    <MobilePhone>sample string 3</MobilePhone>
    <TrueName>sample string 2</TrueName>
    <ValidDocumentCode>sample string 5</ValidDocumentCode>
    <ValidDocumentType>4</ValidDocumentType>
  </ClassAccountManageInfo>
</ArrayOfClassAccountManageInfo>