- Api inData
- Introducción
- Autenticación
- Respuestas del API
- Client
- ClientBranch
- Employee
- OperationalSite
- HoursWorked
Obtener Empleado
Prod Env
Prod Env
GET
https://api.indata.com.co/api/v1/employees/{code}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
code
string
required
Header Params
x-api-key
string
required
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.indata.com.co/api/v1/employees/' \
--header 'x-api-key;'
Responses
🟢200Successful Response
application/json
Body
id
integer
Id
>= 0
firstName
string
required
lastName
string
Lastname
gender
enum<string>
Gender
Allowed values:
MF
code
string
Code
>= 4 characters
Match pattern:
[A-Za-z0-9]
typeIdentification
object (TypeIdentification)
required
name
string
Name
id
integer
Id
abbreviation
Abbreviation
identification
string
required
Match pattern:
[A-Za-z0-9]
birthDate
string <date>
Birthdate
position
object (Position)
required
name
string
Name
id
integer
Id
code
Code
personalAddress
string
Personaladdress
mobile
string
optional
phone
string
optional
entryDate
string <date>
Entrydate
Example:
2024-01-01 08:00:00
bloodType
enum<string>
Bloodtype
Allowed values:
ABABO
rhFactor
enum<string>
optional
Allowed values:
+-
city
object (City)
optional
name
string
Name
id
integer
Id
code
string
Code
alternatePhone
string
optional
extra1
string
optional
extra2
string
optional
extra3
string
optional
extra4
string
optional
isActive
boolean
Isactive
Default:
true
Example
{
"id": 0,
"firstName": "string",
"lastName": "string",
"gender": "M",
"code": "string",
"typeIdentification": {
"name": "string",
"id": 0,
"abbreviation": "string"
},
"identification": "string",
"birthDate": "2019-08-24",
"position": {
"name": "string",
"id": 0,
"code": "string"
},
"personalAddress": "string",
"mobile": "string",
"phone": "string",
"entryDate": "2024-01-01 08:00:00",
"bloodType": "A",
"rhFactor": "+",
"city": {
"name": "string",
"id": 0,
"code": "string"
},
"alternatePhone": "string",
"extra1": "string",
"extra2": "string",
"extra3": "string",
"extra4": "string",
"isActive": "true"
}
🟠422Validation Error
Modified at 2024-07-23 12:52:02