POST api/Registration

Request Information

URI Parameters

None.

Body Parameters

CandidateRegistrationModel
NameDescriptionTypeAdditional information
FirstName

string

None.

LastName

string

None.

EmailId

string

None.

Phone

string

None.

Company

string

None.

BrandId

integer

None.

CourseId

integer

None.

CertId

integer

None.

AtpId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "FirstName": "sample string 1",
  "LastName": "sample string 2",
  "EmailId": "sample string 3",
  "Phone": "sample string 4",
  "Company": "sample string 5",
  "BrandId": 1,
  "CourseId": 1,
  "CertId": 1,
  "AtpId": 1
}

application/xml, text/xml

Sample:
<CandidateRegistrationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VMEduWebAPI2.Models">
  <AtpId>1</AtpId>
  <BrandId>1</BrandId>
  <CertId>1</CertId>
  <Company>sample string 5</Company>
  <CourseId>1</CourseId>
  <EmailId>sample string 3</EmailId>
  <FirstName>sample string 1</FirstName>
  <LastName>sample string 2</LastName>
  <Phone>sample string 4</Phone>
</CandidateRegistrationModel>

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.