POST api/survey/employer?webUserId={webUserId}&surveyType={surveyType}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
webUserId

string

Required

surveyType

string

Required

Body Parameters

None.

Response Information

Resource Description

SurveyEmployerInfo
NameDescriptionTypeAdditional information
WebUserID

string

None.

UserName

string

None.

WebUserRoles

string

None.

EmailAddress

string

None.

AgencyNumber

integer

None.

AgencyClassificationCode

string

None.

AgencyClassification

string

None.

ReportedEmployeeCount

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "WebUserID": "sample string 1",
  "UserName": "sample string 2",
  "WebUserRoles": "sample string 3",
  "EmailAddress": "sample string 4",
  "AgencyNumber": 1,
  "AgencyClassificationCode": "sample string 5",
  "AgencyClassification": "sample string 6",
  "ReportedEmployeeCount": 1
}

application/xml, text/xml

Sample:
<SurveyEmployerInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FRSOwinAuthentication.Service.Models">
  <AgencyClassification>sample string 6</AgencyClassification>
  <AgencyClassificationCode>sample string 5</AgencyClassificationCode>
  <AgencyNumber>1</AgencyNumber>
  <EmailAddress>sample string 4</EmailAddress>
  <ReportedEmployeeCount>1</ReportedEmployeeCount>
  <UserName>sample string 2</UserName>
  <WebUserID>sample string 1</WebUserID>
  <WebUserRoles>sample string 3</WebUserRoles>
</SurveyEmployerInfo>