POST v1/gethired/notify/employee

Provides a notification web hook for GetHired to notify the system that a new employee has been onboarded.

Request Information

URI Parameters

None.

Body Parameters

The notification data

NotifyEmployeeModel
NameDescriptionTypeAdditional information
employee

string

None.

company_id

string

None.

api_key

string

None.

assertion_id

string

None.

nonce

string

None.

timestamp

string

None.

signature

string

None.

Request Formats

application/json, text/json

Sample:
{
  "employee": "sample string 1",
  "company_id": "sample string 2",
  "api_key": "sample string 3",
  "assertion_id": "sample string 4",
  "nonce": "sample string 5",
  "timestamp": "sample string 6",
  "signature": "sample string 7"
}

text/xml

Sample:
<NotifyEmployeeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BDBPayroll.Integration.Web.Models.External.GetHired">
  <api_key>sample string 3</api_key>
  <assertion_id>sample string 4</assertion_id>
  <nonce>sample string 5</nonce>
  <signature>sample string 7</signature>
  <timestamp>sample string 6</timestamp>
  <company_id>sample string 2</company_id>
  <employee>sample string 1</employee>
</NotifyEmployeeModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

A response indicated whether the notification succeeded.

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.