POST api/Hireology

Stores the information provided about the user being onboarded

Request Information

Parameters

Name Description
request

(param in the body)

Information about the user being onboarded

Request body formats

application/json, text/json

Sample:
{
  "UniqueId": "",
  "CompanyCode": "",
  "Email": "",
  "FirstName": "",
  "LastName": "",
  "CellPhone": ""
}

application/xml, text/xml

Sample:
<OnboardingRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Netchex.API.External.Areas.Onboarding.Models">
  <CellPhone></CellPhone>
  <CompanyCode></CompanyCode>
  <Email></Email>
  <FirstName></FirstName>
  <LastName></LastName>
  <UniqueId></UniqueId>
</OnboardingRequest>

Response Information

HttpWebResponse

Response body formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.