POST api/MemberCenterImport?tutorId={tutorId}&mcStudentId={mcStudentId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
tutorId

integer

Required

mcStudentId

integer

Required

Body Parameters

StudentAddModel
NameDescriptionTypeAdditional information
FirstName

string

Required

LastName

string

Required

Gender

string

Required

GradeLevel

GradeLevel

Required

Teacher

string

Required

SchoolId

integer

None.

SSID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "FirstName": "sample string 1",
  "LastName": "sample string 2",
  "Gender": "sample string 3",
  "GradeLevel": 0,
  "Teacher": "sample string 4",
  "SchoolId": 1,
  "SSID": 1
}

application/xml, text/xml

Sample:
<StudentAddModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Objects.StudentObjects.StudentModels.InputModel">
  <FirstName>sample string 1</FirstName>
  <Gender>sample string 3</Gender>
  <GradeLevel>KINDERGARTEN</GradeLevel>
  <LastName>sample string 2</LastName>
  <SSID>1</SSID>
  <SchoolId>1</SchoolId>
  <Teacher>sample string 4</Teacher>
</StudentAddModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.