Get an employee number
get
{basePath}/employees
{basePath}/employees?OrgShortName=tfoinc&LocRef= fdmnh144&EmployeeId=5
API returns a specific employee.
Request
Supported Media Types
- application/json
Query Parameters
-
EmployeeId(required): integer(int64)
Employee ID number.
-
LocRef(required): string
The location identifier. Will be forced to lower-case.
-
OrgShortName(required): string
The organization identifier. Will be forced to lower-case.
Header Parameters
-
If-Modified-Since: string
If-Modified-Since HTTP header
-
If-None-Match: string
If-None-Match HTTP header
Response
Supported Media Types
- application/json
200 Response
The employee number.
Headers
-
ETag: string
The current entity-tag for the selected representation. See RFC 7232 Section 2.3 (https://tools.ietf.org/html/rfc7232#section-2.3).
-
Last-Modified: string
A timestamp indicating the date and time at which the origin server believes the selected representation was last modified. See RFC 7232 Section 2.2 (https://tools.ietf.org/html/rfc7232#section-2.2).
Root Schema : EmployeeView
Type:
object
A view of an employee for integrators.
Show Source
-
employeeNumber(required):
integer(int32)
Minimum Value:
1
Employee number.Example:42
304 Response
304 Not Modified
Headers
-
ETag: string
The current entity-tag for the selected representation. See RFC 7232 Section 2.3
-
Last-Modified: string
A timestamp indicating the date and time at which the origin server believes the selected representation was last modified. See RFC 7232 Section 2.2
400 Response
400 Bad Request
Root Schema : EmployeesApiProblemDetails
Type:
object
Problem details is used as standard model for reporting details when HTTP error status code is returned. This definition is defined by [RFC7807](https://tools.ietf.org/html/rfc7807).
The content type for this response is `application/problem+json`
Show Source
-
details:
string
A human-readable explanation specific to this occurrence of the problem.Example:
The OrgShortName value is required.
-
instance:
string
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.Example:
required_value_missing
-
title:
string
A short, human-readable summary of the problem type.Example:
Required value not specified.
-
type:
string
A URI reference that identifies the problem type. When this member is not present, its value is assumed to be "about:blank".Example:
error:validation
Example:
{
"type":"error:validation",
"title":"Required value not specified.",
"details":"The OrgShortName value is required.",
"instance":"required_value_missing"
}
401 Response
401 Unauthorized
403 Response
403 Forbidden
404 Response
404 Requested resource not found
Examples
Example Request Body
Not applicable for this endpoint.
Example Response Body
The following example shows the contents of the response body in JSON format:
{
"employeeNumber": 42
}