1. JobPosting
Nuevas Apis para Integracion Clientes
  • Portal developer integraciones Trabajando.com
  • Catálogos
  • Raíz
    • JobPosting
      • Gestionar vacantes de empleo
      • Obtiene una oferta JobPosting
        GET
      • Crea una oferta JobPosting
        POST
      • Actualiza una oferta JobPosting
        PUT
      • Actualiza estado de una oferta JobPosting
        PUT
      • Obtiene listado de ofertas JobPosting para un dominio
        GET
    • Person
      • Obtiene un candidato Person
    • Apply
      • Obtiene postulaciones por oferta
  • Schemas
    • ContactPointDTO
    • Answer
    • ApplicationContact
    • DefinedTerm
    • ApplicationQuestion
    • EducationalOccupationalCredential
    • HiringOrganization
    • GeoCoordinates
    • Identifier
    • JobPostingRequest
    • MonetaryAmount
    • OfertaResponse
    • OccupationalExperienceRequirements
    • Place
    • PostalAddress
    • Usuario
    • PotentialAction
    • PropertyValue
    • QuantitativeValue
    • Question
    • JobPostingStatusRequest
    • AtsErrorDTO
    • JobPostingResponse
    • UsuarioUpdateRequest
    • Certification
    • IntegracionExternaUpdateRequest
    • Country
    • Credencial
    • DigitalDocument
    • UsuarioRequest
    • EducationalOrganization
    • ConsumerRequest
    • Evaluation
    • IntegracionExternaRequest
    • Language
    • Occupation
    • Organization
    • PersonResponse
    • Skill
    • SocialMedia
    • JobPostingItem
    • JobPostingListResponse
    • ListItem
    • UsuarioResponse
    • IntegracionExternaResponse
  1. JobPosting

Crea una oferta JobPosting

POST
/v2/private/jobposting

Solicitud

Parámetros de Header

Parámetros del Body application/jsonRequerido

Ejemplos

Respuestas

🟢201
application/json
Creado
Bodyapplication/json

🟠400
🟠401
🟠409
Solicitud Ejemplo de Solicitud
Shell
JavaScript
Java
Swift
curl --location 'https://apidev.demotbj.com/integracion/v2/private/jobposting' \
--header 'apiKey: qRQoe511eOgm2ysksxGxDoAFCXG3sfJ6' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "@context": "https://schema.org/",
    "@type": "JobPosting",
    "identifier": [
        {
            "@type": "PropertyValue",
            "name": "idAreaEmpresa",
            "value": "12"
        },
        {
            "@type": "PropertyValue",
            "name": "idActividadEmpresa",
            "value": "12"
        },
        {
            "@type": "PropertyValue",
            "name": "idTipoCargo",
            "value": "4"
        },
        {
            "@type": "PropertyValue",
            "name": "idJornada",
            "value": "1"
        },
        {
            "@type": "PropertyValue",
            "name": "idTipoContrato",
            "value": "2"
        }
    ],
    "title": "Ingeniera(o) de Acceso Abierto",
    "description": "<h3>Descripción de la Oferta</h3><p>El Coordinador Eléctrico Nacional busca un profesional... [CONTENIDO_DESCRIPCION]</p><h3>Requisitos</h3>",
    "qualifications": "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est </p>",
    "totalJobOpenings": 3,
    "hiringOrganization": {
        "@type": "Organization",
        "name": "Coordinador Eléctrico Nacional",
        "legalName": "COORDINADOR INDEPENDIENTE DEL SISTEMA ELECTRICO NACIONAL",
        "contactPoint": {
            "@type": "ContactPoint",
            "name": "Juan Pérez",
            "email": "reclutamiento@coordinador.cl",
            "contactType": "Recruitment",
            "telephone": "+56221234567"
        }
    },
    "jobLocation": {
        "@type": "Place",
        "address": {
            "@type": "PostalAddress",
            "streetAddress": "Av. Parque Isidora Sur",
            "addressLocality": "Pudahuel",
            "addressRegion": "Metropolitana de Santiago",
            "addressCountry": "Chile",
            "additionalProperty": [
                {
                    "@type": "PropertyValue",
                    "name": "idPais",
                    "value": "1"
                },
                {
                    "@type": "PropertyValue",
                    "name": "idRegion",
                    "value": "13"
                },
                {
                    "@type": "PropertyValue",
                    "name": "idComuna",
                    "value": "95"
                }
            ]
        }
    },
    "baseSalary": {
        "@type": "MonetaryAmount",
        "currency": "CLP",
        "value": {
            "@type": "QuantitativeValue",
            "value": 1500000,
            "unitText": "MONTH"
        },
        "additionalProperty": [
            {
                "@type": "PropertyValue",
                "name": "mostrarSueldo",
                "value": false
            }
        ]
    },
    "experienceRequirements": {
        "@type": "OccupationalExperienceRequirements",
        "yearsOfExperience": 12,
        "operator": "GREATER_OR_EQUAL"
    },
    "educationRequirements": [
        {
            "@type": "EducationalOccupationalCredential",
            "credentialCategory": "universitaria",
            "name": "Graduado",
            "identifier": [
                {
                    "@type": "PropertyValue",
                    "name": "idNivelAcademico",
                    "value": "3"
                },
                {
                    "@type": "PropertyValue",
                    "name": "idSituacionAcademica",
                    "value": 5
                }
            ]
        },
        {
            "@type": "EducationalOccupationalCredential",
            "name": "Carreras Solicitadas",
            "description": "Lista de carreras aptas para el cargo",
            "hasPart": [
                {
                    "@type": "EducationalOccupationalCredential",
                    "name": "Ingeniería Civil Eléctrica",
                    "identifier": {
                        "@type": "PropertyValue",
                        "name": "idCarrera",
                        "value": "123"
                    }
                },
                {
                    "@type": "EducationalOccupationalCredential",
                    "name": "Ingenieria Civil en Electricidad",
                    "identifier": {
                        "@type": "PropertyValue",
                        "name": "idCarrera",
                        "value": "124"
                    }
                }
            ]
        }
    ],
    "skills": [
        {
            "@type": "DefinedTerm",
            "name": "Dominio Computacional",
            "additionalProperty": [
                {
                    "@type": "PropertyValue",
                    "name": "idNivel",
                    "value": 6
                }
            ]
        }
    ],
    "subjectOf": [
        {
            "@type": "Question",
            "name": "Indicar su carrera y año de titulación",
            "encodingFormat": "TEXTO"
        },
        {
            "@type": "Question",
            "name": "Motivación por el cargo y experiencia relacionada",
            "encodingFormat": "TEXTO"
        },
        {
            "@type": "Question",
            "name": "Expectativas de renta",
            "encodingFormat": "TEXTO"
        },
        {
            "@type": "Question",
            "name": "¿Qué tipo de licencia de conducir tienes?",
            "encodingFormat": "MULTIPLE",
            "suggestedAnswer": [
                {
                    "@type": "Answer",
                    "text": "No poseo licencia de conducir"
                },
                {
                    "@type": "Answer",
                    "text": "A4"
                },
                {
                    "@type": "Answer",
                    "text": "B"
                },
                {
                    "@type": "Answer",
                    "text": "D"
                }
            ]
        }
    ],
    "additionalProperty": [
        {
            "@type": "PropertyValue",
            "name": "institucionesPreferidas",
            "value": "Lista de instituciones aceptables",
            "propertyID": "INSTITUTIONS_LIST",
            "subjectOf": [
                {
                    "@type": "EducationalOrganization",
                    "name": "Universidad de Chile",
                    "identifier": {
                        "@type": "PropertyValue",
                        "name": "idInstitucion",
                        "value": "65"
                    }
                },
                {
                    "@type": "EducationalOrganization",
                    "name": "Pontificia Universidad Católica",
                    "identifier": {
                        "@type": "PropertyValue",
                        "name": "idInstitucion",
                        "value": "92"
                    }
                }
            ]
        },
        {
            "@type": "PropertyValue",
            "name": "ofertaInclusiva",
            "value": true
        },
        {
            "@type": "PropertyValue",
            "name": "diasVigencia",
            "value": 30
        },
        {
            "@type": "PropertyValue",
            "name": "confidencial",
            "value": false
        },
        {
            "@type": "PropertyValue",
            "name": "idiomas",
            "propertyID": "LANGUAGE_REQUIREMENTS",
            "value": {
                "@type": "Language",
                "name": "Inglés",
                "identifier": {
                    "@type": "PropertyValue",
                    "name": "idIdioma",
                    "value": 1
                },
                "additionalProperty": {
                    "@type": "PropertyValue",
                    "name": "idNivel",
                    "value": "MEDIO",
                    "propertyID": "idNivel",
                    "valueReference": 2
                }
            }
        }
    ],
    "potentialAction": {
        "@type": "ApplyAction",
        "url": "https://empresa-externa.com/postular/6052681"
    }
}'
Respuesta Ejemplo de Respuesta
201 - Ejemplo update completo
{
    "@context": "https://schema.org/",
    "@type": "JobPosting",
    "identifier": [
        {
            "@type": "PropertyValue",
            "name": "idOferta",
            "value": "6052682"
        },
        {
            "@type": "PropertyValue",
            "name": "idAreaEmpresa",
            "value": "12"
        },
        {
            "@type": "PropertyValue",
            "name": "idActividadEmpresa",
            "value": "12"
        },
        {
            "@type": "PropertyValue",
            "name": "idTipoCargo",
            "value": "450"
        },
        {
            "@type": "PropertyValue",
            "name": "idJornada",
            "value": "1"
        },
        {
            "@type": "PropertyValue",
            "name": "idTipoContrato",
            "value": "2"
        }
    ],
    "title": "Ingeniera(o) de Acceso Abierto",
    "description": "<h3>Descripción de la Oferta</h3><p>El Coordinador Eléctrico Nacional busca un profesional... [CONTENIDO_DESCRIPCION]</p><h3>Requisitos</h3>",
    "qualifications": "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est </p>",
    "totalJobOpenings": 3,
    "hiringOrganization": {
        "@type": "Organization",
        "name": "Coordinador Eléctrico Nacional",
        "legalName": "COORDINADOR INDEPENDIENTE DEL SISTEMA ELECTRICO NACIONAL",
        "contactPoint": {
            "@type": "ContactPoint",
            "name": "Juan Pérez",
            "email": "reclutamiento@coordinador.cl",
            "contactType": "Recruitment",
            "telephone": "+56221234567"
        }
    },
    "jobLocation": {
        "@type": "Place",
        "address": {
            "@type": "PostalAddress",
            "streetAddress": "Av. Parque Isidora Sur",
            "addressLocality": "Pudahuel",
            "addressRegion": "Metropolitana de Santiago",
            "addressCountry": "Chile",
            "additionalProperty": [
                {
                    "@type": "PropertyValue",
                    "name": "idPais",
                    "value": "1"
                },
                {
                    "@type": "PropertyValue",
                    "name": "idRegion",
                    "value": "13"
                },
                {
                    "@type": "PropertyValue",
                    "name": "idComuna",
                    "value": "95"
                }
            ]
        }
    },
    "baseSalary": {
        "@type": "MonetaryAmount",
        "currency": "CLP",
        "value": {
            "@type": "QuantitativeValue",
            "value": 1500000,
            "unitText": "MONTH"
        },
        "additionalProperty": [
            {
                "@type": "PropertyValue",
                "name": "mostrarSueldo",
                "value": false
            }
        ]
    },
    "experienceRequirements": {
        "@type": "OccupationalExperienceRequirements",
        "yearsOfExperience": 12,
        "operator": "GREATER_OR_EQUAL"
    },
    "educationRequirements": [
        {
            "@type": "EducationalOccupationalCredential",
            "credentialCategory": "universitaria",
            "name": "Graduado",
            "identifier": [
                {
                    "@type": "PropertyValue",
                    "name": "idNivelAcademico",
                    "value": "3"
                },
                {
                    "@type": "PropertyValue",
                    "name": "idSituacionAcademica",
                    "value": "5"
                }
            ]
        },
        {
            "@type": "EducationalOccupationalCredential",
            "name": "Carreras Solicitadas",
            "description": "Lista de carreras aptas para el cargo",
            "hasPart": [
                {
                    "@type": "EducationalOccupationalCredential",
                    "name": "Análisis de Sistemas / Analista Programador",
                    "identifier": {
                        "@type": "PropertyValue",
                        "name": "idCarrera",
                        "value": "6"
                    }
                },
                {
                    "@type": "EducationalOccupationalCredential",
                    "name": "Administración Pública",
                    "identifier": {
                        "@type": "PropertyValue",
                        "name": "idCarrera",
                        "value": "4"
                    }
                }
            ]
        }
    ],
    "skills": [
        {
            "@type": "DefinedTerm",
            "name": "Dominio Computacional",
            "additionalProperty": [
                {
                    "@type": "PropertyValue",
                    "name": "idNivel",
                    "value": 6
                }
            ]
        }
    ],
    "subjectOf": [
        {
            "@type": "Question",
            "name": "Indicar su carrera y año de titulación",
            "encodingFormat": "TEXTO"
        },
        {
            "@type": "Question",
            "name": "Motivación por el cargo y experiencia relacionada",
            "encodingFormat": "TEXTO"
        },
        {
            "@type": "Question",
            "name": "Expectativas de renta",
            "encodingFormat": "TEXTO"
        },
        {
            "@type": "Question",
            "name": "¿Qué tipo de licencia de conducir tienes?",
            "encodingFormat": "MULTIPLE",
            "suggestedAnswer": [
                {
                    "@type": "Answer",
                    "text": "No poseo licencia de conducir"
                },
                {
                    "@type": "Answer",
                    "text": "A4"
                },
                {
                    "@type": "Answer",
                    "text": "B"
                },
                {
                    "@type": "Answer",
                    "text": "D"
                }
            ]
        }
    ],
    "additionalProperty": [
        {
            "@type": "PropertyValue",
            "name": "institucionesPreferidas",
            "value": "Lista de instituciones aceptables",
            "propertyID": "INSTITUTIONS_LIST",
            "subjectOf": [
                {
                    "@type": "EducationalOrganization",
                    "name": "Universidad Arturo Prat ( UNAP )",
                    "identifier": {
                        "@type": "PropertyValue",
                        "name": "idInstitucion",
                        "value": "53"
                    }
                },
                {
                    "@type": "EducationalOrganization",
                    "name": "Universidad del Desarrollo ( UDD )",
                    "identifier": {
                        "@type": "PropertyValue",
                        "name": "idInstitucion",
                        "value": "75"
                    }
                }
            ]
        },
        {
            "@type": "PropertyValue",
            "name": "ofertaInclusiva",
            "value": true
        },
        {
            "@type": "PropertyValue",
            "name": "diasVigencia",
            "value": 30
        },
        {
            "@type": "PropertyValue",
            "name": "confidencial",
            "value": false
        },
        {
            "@type": "PropertyValue",
            "name": "idiomas",
            "propertyID": "LANGUAGE_REQUIREMENTS",
            "value": {
                "@type": "Language",
                "name": "Inglés",
                "identifier": {
                    "@type": "PropertyValue",
                    "name": "idIdioma",
                    "value": 1
                },
                "additionalProperty": {
                    "@type": "PropertyValue",
                    "name": "idNivel",
                    "value": "MEDIO",
                    "propertyID": "idNivel",
                    "valueReference": 2
                }
            }
        }
    ],
    "potentialAction": {
        "@type": "ApplyAction",
        "url": "https://empresa-externa.com/postular/6052681"
    }
}
Modificado en 2026-08-04 14:57:01
Anterior
Obtiene una oferta JobPosting
Siguiente
Actualiza una oferta JobPosting
Built with