Skip to main content
POST
/
api
/
v1
/
technician
/
create
Crear nuevo técnico
curl --request POST \
  --url https://api.raul.ugps.io/api/v1/technician/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "technician_name": "Juan Pérez",
  "city_id": "uuid",
  "phone": "+56912345678",
  "email": "tecnico@example.com",
  "address": "Av. Providencia 123"
}
'
{}

Authorizations

Authorization
string
header
required

Bearer token authentication

Body

application/json
technician_name
string
required

Nombre del técnico

Example:

"Juan Pérez"

city_id
string

ID de la ciudad

Example:

"uuid"

phone
string

Teléfono

Example:

"+56912345678"

email
string

Email

Example:

"tecnico@example.com"

address
string

Dirección

Example:

"Av. Providencia 123"

Response

201 - application/json

Técnico creado exitosamente

The response is of type object.