POST api/Hireology

Stores the information provided about the user being onboarded

Request Information

Parameters

NameDescriptionAdditional information
request
Information about the user being onboarded

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "UniqueId": "sample string 1",
  "CompanyCode": "sample string 2",
  "Email": "sample string 3",
  "FirstName": "sample string 4",
  "LastName": "sample string 5"
}

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">
  <CompanyCode>sample string 2</CompanyCode>
  <Email>sample string 3</Email>
  <FirstName>sample string 4</FirstName>
  <LastName>sample string 5</LastName>
  <UniqueId>sample string 1</UniqueId>
</OnboardingRequest>

Response Information

HttpWebResponse

Response body formats

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

Sample:

Sample not available.