- Api inData
- Introducción
- Autenticación
- Respuestas del API
- Client
- ClientBranch
- Employee
- OperationalSite
- HoursWorked
Create Employee
Prod Env
Prod Env
POST
https://api.indata.com.co/api/v1/employees
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
x-api-key
string
required
Body Params application/json
firstName
string
Firstname
lastName
string
Lastname
gender
enum<string>
Gender
Allowed values:
MF
code
string
Code
>= 4 characters
Match pattern:
[A-Za-z0-9]
identification
string
Identification
Match pattern:
[A-Za-z0-9]
birthDate
string <date>
Birthdate
personalAddress
string
Personaladdress
mobile
string
Mobile
phone
string
Phone
entryDate
string <date-time>
Entrydate
Example:
2024-01-01 08:00:00
bloodType
enum<string>
Bloodtype
Allowed values:
ABABO
rhFactor
enum<string>
Rhfactor
Allowed values:
+-
alternatePhone
string
Alternatephone
extra1
string
Extra1
extra2
string
Extra2
extra3
string
Extra3
extra4
string
Extra4
isActive
boolean
Isactive
Default:
true
typeIdentification
object (TypeIdentificationCreate)
required
name
string
Name
Examples:
DNIPasaporteLicencia de Conducir
position
object (PositionCreate)
required
name
string
Name
city
object (CityCreate)
optional
name
string
Name
Example
{
"firstName": "Arturo",
"lastName": "Navarro",
"gender": "F",
"code": "e87ke",
"identification": "56148",
"birthDate": "2023-09-08",
"personalAddress": "Poblado Alberto Quintana, 1",
"mobile": "951-747-080",
"phone": "941 762 086",
"entryDate": "2024-07-22T20:20:18.105Z",
"bloodType": "O",
"rhFactor": "-",
"alternatePhone": "959 198 223",
"extra1": "voluptas",
"extra2": "ea",
"extra3": "reprehenderit",
"extra4": "perferendis",
"isActive": true,
"typeIdentification": {
"name": "Licencia de Conducir"
},
"position": {
"name": "Supervisor"
},
"city": {
"name": "Elche"
}
}
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 POST 'https://api.indata.com.co/api/v1/employees' \
--header 'x-api-key;' \
--header 'Content-Type: application/json' \
--data-raw '{
"firstName": "Arturo",
"lastName": "Navarro",
"gender": "F",
"code": "e87ke",
"identification": "56148",
"birthDate": "2023-09-08",
"personalAddress": "Poblado Alberto Quintana, 1",
"mobile": "951-747-080",
"phone": "941 762 086",
"entryDate": "2024-07-22T20:20:18.105Z",
"bloodType": "O",
"rhFactor": "-",
"alternatePhone": "959 198 223",
"extra1": "voluptas",
"extra2": "ea",
"extra3": "reprehenderit",
"extra4": "perferendis",
"isActive": true,
"typeIdentification": {
"name": "Licencia de Conducir"
},
"position": {
"name": "Supervisor"
},
"city": {
"name": "Elche"
}
}'
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 13:06:59