{"info":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","description":"<html><head></head><body><p>Documentación de la API estándar para integraciones externas con Mentor.<br>La autenticación será con el usuario y contraseña proporcionados por Summar.</p>\n\n<h1 id=\"versiones\"><strong>🔢 Versiones</strong></h1>\n<ul>\n<li><code>1.0</code>: 07/07/2026 - Versión inicial</li>\n</ul>\n<h1 id=\"pruebas-de-la-api\"><strong>🧪 Pruebas de la API</strong></h1>\n<p>Para probar las diferentes funciones, con el botón \"Run in Postman\" se pueden probar las funciones en la aplicación de Windows de Postman o directamente en un navegador, y allí se pueden informar las variables y ejecutar cada función para ver el resultado.</p>\n<h1 id=\"variables-de-la-api\"><strong>⚙️ Variables de la API</strong></h1>\n<p>Antes de ejecutar los endpoints, asegúrate de definir las siguientes variables:</p>\n<ul>\n<li><p><code>{{APIbaseUrl}}</code>: URL base de la API (ej. <code>https://clientUrl:7048/service</code>)</p>\n</li>\n<li><p><code>{{APIuser}}</code>: ID del usuario</p>\n</li>\n<li><p><code>{{APIpassword}}</code>: Contraseña del usuario</p>\n</li>\n<li><p><code>{{APIcompanyId}}</code>: ID de la Company/Empresa Navision seleccionada (necesario para todas las consultas)</p>\n</li>\n<li><p><code>{{APIemployeeId}}</code>: ID del empleado seleccionada (para las consultas filtradas por un empleado)</p>\n</li>\n<li><p><code>{{APIemployeeContractId}}</code>: ID del contrato de un empleado seleccionado (para las consultas filtradas por un contrato de empleado)</p>\n</li>\n<li><p><code>{{APIattachmentNo}}</code>: Nº del anexo seleccionado (para las consultas filtradas por un anexo)</p>\n</li>\n</ul>\n<h1 id=\"consejos-practicos\">💡 <strong>Consejos prácticos</strong></h1>\n<p>A continuación se presentan recomendaciones útiles para optimizar tus consultas OData en la API Mentor, acompañadas de ejemplos prácticos.</p>\n<hr>\n<h2 id=\"🔍-filtrado-de-datos\">🔍 Filtrado de datos</h2>\n<p>Puedes aplicar filtros sobre campos específicos utilizando el parámetro <code>$filter</code> al final de la URL.</p>\n<p><strong>Ejemplo 1</strong>: Filtrar empleados por código de empresa</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employees?$filter=mentorCompanyCode eq 'A34544551'\n\n</code></pre>\n<p><strong>Ejemplo 2</strong>: Filtrar empleados por fecha de última modificación</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employees?$filter=lastModifiedOn ge 2025-08-01T00:00:00Z\n\n</code></pre>\n<hr>\n<h2 id=\"📋-selección-de-campos\">📋 Selección de campos</h2>\n<p>Puedes limitar los campos devueltos en la respuesta usando <code>$select</code>, lo que simplifica los resultados y mejora el rendimiento.</p>\n<p><strong>Ejemplo 3</strong>: Obtener solo nombre y NIF de los empleados</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employees?$select=name,firstSurname,secondSurname,vatNumber\n\n</code></pre>\n<hr>\n<h2 id=\"📐-ordenación-de-resultados\">📐 Ordenación de resultados</h2>\n<p>Ordena los resultados por uno o varios campos utilizando <code>$orderby</code>.</p>\n<p><strong>Ejemplo 4</strong>: Ordenar empleados por fecha de última modificación (descendente)</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employees?$orderby=lastModifiedOn desc\n\n</code></pre>\n<hr>\n<h2 id=\"🔢-conteo-de-registros\">🔢 Conteo de registros</h2>\n<p>Para obtener únicamente el número de registros sin los datos, combina <code>$count=true</code> con <code>$top=0</code>.</p>\n<p><strong>Ejemplo 5</strong>: Obtener el número total de empleados sin detalles</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employees?$count=true&amp;$top=0\n\n</code></pre>\n<hr>\n<h2 id=\"📄-paginación-de-resultados\">📄 Paginación de resultados</h2>\n<p>Divide grandes volúmenes de datos en páginas usando <code>$top</code> y <code>$skip</code>.</p>\n<p><strong>Ejemplo 6</strong>: Obtener los primeros 20 empleados</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employees?$top=20\n\n</code></pre>\n<p><strong>Ejemplo 7</strong>: Obtener empleados del 21 al 40</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employees?$skip=20&amp;$top=20\n\n</code></pre>\n<hr>\n<h2 id=\"🔗-enlaces\">🔗 Enlaces</h2>\n<p><a href=\"https://www.odata.org/getting-started/basic-tutorial/\">https://www.odata.org/getting-started/basic-tutorial/</a></p>\n<p><a href=\"https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/webservices/use-filter-expressions-in-odata-uris\">https://learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/webservices/use-filter-expressions-in-odata-uris</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"🔢 Versiones","slug":"versiones"},{"content":"🧪 Pruebas de la API","slug":"pruebas-de-la-api"},{"content":"⚙️ Variables de la API","slug":"variables-de-la-api"},{"content":"💡 Consejos prácticos","slug":"consejos-practicos"}],"owner":"49520574","collectionId":"9e142efe-6f03-4508-b9b7-782e3cb09a09","publishedId":"2sBY4HU4Xc","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-07-03T09:59:23.000Z"},"item":[{"name":"🔧 Configuración General","item":[{"name":"companies","id":"ff51c779-3f96-48d6-b5b7-d2321aeed4c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/general/v1.0/companies","description":"<p>Obtiene la lista de Companies, o empresas Navision. Es necesario seleccionar la empresa Navision de trabajo para todo el resto de llamadas a la API.</p>\n<p>Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único de la company</td>\n</tr>\n<tr>\n<td>systemVersion</td>\n<td>Versión de la plataforma Dynamics NAV</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Nombre de la company</td>\n</tr>\n<tr>\n<td>displayName</td>\n<td>N/A</td>\n</tr>\n<tr>\n<td>businessProfileId</td>\n<td>N/A</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","general","v1.0","companies"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"dc328f4c-5997-4176-bcd4-ef901b1b031e","name":"companies","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/general/v1.0/companies"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"a2011c75-8faf-4d55-92fc-d292064ed159"},{"key":"Date","value":"Fri, 22 Aug 2025 07:24:22 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/general/v1.0/$metadata#companies\",\n    \"value\": [\n        {\n            \"id\": \"70886d1f-fd6e-4544-b018-013d559d8f78\",\n            \"systemVersion\": \"32615\",\n            \"name\": \"Demostraciones\",\n            \"displayName\": \"\",\n            \"businessProfileId\": \"\"\n        },\n        {\n            \"id\": \"50459f2f-25b9-4260-b82f-b814fe9be323\",\n            \"systemVersion\": \"32615\",\n            \"name\": \"Instalaci贸n\",\n            \"displayName\": \"\",\n            \"businessProfileId\": \"\"\n        }\n    ]\n}"}],"_postman_id":"ff51c779-3f96-48d6-b5b7-d2321aeed4c6"},{"name":"acronyms","id":"354926a4-e839-43bd-9240-9ea3638aec9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/general/v1.0/companies({{APIcompanyId}})/acronyms","description":"<p>Obtiene la lista de siglas de los domicilios. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único de la sigla</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código de la sigla</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Descripción de la sigla</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del registro</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>Usuario de creación del registro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del registro</td>\n</tr>\n<tr>\n<td>modifiedBy</td>\n<td>Usuario de última modificación del registro</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","general","v1.0","companies({{APIcompanyId}})","acronyms"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"1f3f73eb-e1d5-44fc-9cad-f64d792da687","name":"acronyms","originalRequest":{"method":"GET","header":[],"url":"/api/summar/general/v1.0/companies()/acronyms"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"5c2e913b-7c7a-40f3-ae66-7e310cebd4dc"},{"key":"Date","value":"Fri, 22 Aug 2025 07:37:43 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/general/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/acronyms\",\n    \"value\": [\n        {\n            \"id\": \"022c97fc-95e9-495c-97ba-6a2ba6debda1\",\n            \"code\": \"AD\",\n            \"description\": \"ALDEA\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"createdBy\": \"\",\n            \"modifiedOn\": \"2025-07-25T11:13:07.387Z\",\n            \"modifiedBy\": \"ADMIN\"\n        },\n        // ----\n        {\n            \"id\": \"bf29e380-c780-4b8e-a2c5-127fb142bdb3\",\n            \"code\": \"AV\",\n            \"description\": \"AVENIDA\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"createdBy\": \"\",\n            \"modifiedOn\": \"2025-07-25T11:13:07.4Z\",\n            \"modifiedBy\": \"ADMIN\"\n        },\n        // ---\n        {\n            \"id\": \"8773fa7d-7250-4798-92ff-5ccd42968dee\",\n            \"code\": \"CL\",\n            \"description\": \"CALLE\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"createdBy\": \"\",\n            \"modifiedOn\": \"2025-07-25T11:13:07.417Z\",\n            \"modifiedBy\": \"ADMIN\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"354926a4-e839-43bd-9240-9ea3638aec9c"},{"name":"cities","id":"428938a5-3e73-4176-96de-1679f85e19d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/general/v1.0/companies({{APIcompanyId}})/cities","description":"<p>Obtiene la lista de poblaciones. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único de la población</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código de la población</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Nombre de la población</td>\n</tr>\n<tr>\n<td>cityCodeINE</td>\n<td>Código oficial INE</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del registro</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>Usuario de creación del registro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del registro</td>\n</tr>\n<tr>\n<td>modifiedBy</td>\n<td>Usuario de última modificación del registro</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","general","v1.0","companies({{APIcompanyId}})","cities"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"f9c6aca9-622d-42f2-adf1-9594e8bc7b28","name":"cities","originalRequest":{"method":"GET","header":[],"url":"/api/summar/general/v1.0/companies()/cities"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"bd92e6b2-5f0f-4837-b76c-4d03db8147af"},{"key":"Date","value":"Fri, 22 Aug 2025 07:25:48 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/general/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/cities\",\n    \"value\": [\n        {\n            \"id\": \"eb870a04-76b0-4323-88c4-153719143aae\",\n            \"code\": \"01001\",\n            \"name\": \"ALEGRIA-DULANTZI\",\n            \"cityCodeINE\": \"01001\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"createdBy\": \"\",\n            \"modifiedOn\": \"2025-07-25T11:13:07.447Z\",\n            \"modifiedBy\": \"ADMIN\"\n        },\n        // ---\n        {\n            \"id\": \"da587b5d-3a8d-4e01-be80-fb512bf7745f\",\n            \"code\": \"43125\",\n            \"name\": \"REUS\",\n            \"cityCodeINE\": \"43123\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"createdBy\": \"\",\n            \"modifiedOn\": \"2025-07-25T11:13:10.183Z\",\n            \"modifiedBy\": \"ADMIN\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"428938a5-3e73-4176-96de-1679f85e19d4"},{"name":"postalCodes","id":"a9ac1106-5d2c-4eb9-95d1-1b3ad684013c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/general/v1.0/companies({{APIcompanyId}})/postalCodes","description":"<p>Obtiene la lista de códigos postales. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único del código postal</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código del código postal</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Descripción del código postal</td>\n</tr>\n<tr>\n<td>countyCode</td>\n<td>Código de la provincia a la que pertenece</td>\n</tr>\n<tr>\n<td>countyId</td>\n<td>Identificador único de la provincia</td>\n</tr>\n<tr>\n<td>countyName</td>\n<td>Nombre de la provincia</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del registro</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>Usuario de creación del registro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del registro</td>\n</tr>\n<tr>\n<td>modifiedBy</td>\n<td>Usuario de última modificación del registro</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","general","v1.0","companies({{APIcompanyId}})","postalCodes"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"a98ffb99-239f-48f8-a6f4-17365cffc923","name":"postalCodes","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/general/v1.0/companies({{APIcompanyId}})/postalCodes"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"ce0adc25-bce8-4fdf-8a77-0d95490017d6"},{"key":"Date","value":"Fri, 22 Aug 2025 07:26:24 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/general/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/postalCodes\",\n    \"value\": [\n        {\n            \"id\": \"ce8d5709-2999-4143-8198-c95668208713\",\n            \"code\": \"01001\",\n            \"name\": \"VITORIA-GASTEIZ\",\n            \"countyCode\": \"01\",\n            \"countyId\": \"b874d45c-f309-4370-b9da-f1057a9cf4ff\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"createdBy\": \"\",\n            \"modifiedOn\": \"2025-07-25T11:13:10.823Z\",\n            \"modifiedBy\": \"ADMIN\",\n            \"countyName\": \"ALAVA\"\n        },\n        // ---\n        {\n            \"id\": \"017f73f0-2e0b-4c81-bcb3-a85958d94917\",\n            \"code\": \"08004\",\n            \"name\": \"BARCELONA\",\n            \"countyCode\": \"08\",\n            \"countyId\": \"d559e2eb-96eb-410e-ab49-f7c49fb52dbf\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"createdBy\": \"\",\n            \"modifiedOn\": \"2025-07-25T11:13:11.293Z\",\n            \"modifiedBy\": \"ADMIN\",\n            \"countyName\": \"BARCELONA\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"a9ac1106-5d2c-4eb9-95d1-1b3ad684013c"},{"name":"counties","id":"ace087ed-c387-41ec-837f-bb027b093532","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/general/v1.0/companies({{APIcompanyId}})/counties","description":"<p>Obtiene la lista de provincias. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único de la provincia</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código de la provincia</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Nombre de la provincia</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del registro</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>Usuario de creación del registro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del registro</td>\n</tr>\n<tr>\n<td>modifiedBy</td>\n<td>Usuario de última modificación del registro</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","general","v1.0","companies({{APIcompanyId}})","counties"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"5f4f59d8-f40f-4b99-b338-c1f78dc64ea4","name":"counties","originalRequest":{"method":"GET","header":[],"url":"/api/summar/general/v1.0/companies()/counties"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"f2dc444c-cffd-4be5-8e78-f4fbd1bbe9b9"},{"key":"Date","value":"Fri, 22 Aug 2025 07:27:06 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/general/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/counties\",\n    \"value\": [\n        {\n            \"id\": \"b874d45c-f309-4370-b9da-f1057a9cf4ff\",\n            \"code\": \"01\",\n            \"name\": \"ALAVA\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"createdBy\": \"\",\n            \"modifiedOn\": \"2025-07-25T11:13:15.86Z\",\n            \"modifiedBy\": \"ADMIN\"\n        },\n        // ---\n                {\n            \"id\": \"d559e2eb-96eb-410e-ab49-f7c49fb52dbf\",\n            \"code\": \"08\",\n            \"name\": \"BARCELONA\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"createdBy\": \"\",\n            \"modifiedOn\": \"2025-07-25T11:13:15.873Z\",\n            \"modifiedBy\": \"DMIN\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"ace087ed-c387-41ec-837f-bb027b093532"},{"name":"countries","id":"11772378-83f0-4ffe-b31a-adfa63671adc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/general/v1.0/companies({{APIcompanyId}})/countries","description":"<p>Obtiene la lista de países. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único del país</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código del país</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Nombre del país</td>\n</tr>\n<tr>\n<td>alphabeticalCountryCode</td>\n<td>Código alfabético del país</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del registro</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>Usuario de creación del registro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del registro</td>\n</tr>\n<tr>\n<td>modifiedBy</td>\n<td>Usuario de última modificación del registro</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","general","v1.0","companies({{APIcompanyId}})","countries"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"3de4c4c2-b1a5-417b-bcf2-914f5cd33dac","name":"countries","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/general/v1.0/companies({{APIcompanyId}})/countries"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"ad551b51-dbe2-4e7c-8432-7ef7b930aa1e"},{"key":"Date","value":"Fri, 22 Aug 2025 07:28:05 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/general/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/countries\",\n    \"value\": [\n        {\n            \"id\": \"b6f930f1-bf31-4eb2-8468-ad59e8038ab1\",\n            \"code\": \"001\",\n            \"name\": \"FRANCIA\",\n            \"alphabeticalCountryCode\": \"FR\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"createdBy\": \"\",\n            \"modifiedOn\": \"2025-07-25T11:13:15.89Z\",\n            \"modifiedBy\": \"ADMIN\"\n        },\n        // ---\n        {\n            \"id\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n            \"code\": \"011\",\n            \"name\": \"ESPA脩A\",\n            \"alphabeticalCountryCode\": \"ES\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"createdBy\": \"\",\n            \"modifiedOn\": \"2025-07-25T11:13:15.92Z\",\n            \"modifiedBy\": \"ADMIN\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"11772378-83f0-4ffe-b31a-adfa63671adc"},{"name":"terminationCodes","id":"99a898b4-8231-4af5-860e-8dea241d1aa4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/general/v1.0/companies({{APIcompanyId}})/terminationCodes","description":"<p>Obtiene la lista de motivos de baja. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único del motivo de baja</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código del motivo de baja</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Descripción del motivo de baja</td>\n</tr>\n<tr>\n<td>redCode</td>\n<td>Código oficial del sistema RED</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del registro</td>\n</tr>\n<tr>\n<td>createdBy</td>\n<td>Usuario de creación del registro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del registro</td>\n</tr>\n<tr>\n<td>modifiedBy</td>\n<td>Usuario de última modificación del registro</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","general","v1.0","companies({{APIcompanyId}})","terminationCodes"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"f3602ba6-474f-4a15-9033-4a48786c6a7c","name":"terminationCodes","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/general/v1.0/companies({{APIcompanyId}})/terminationCodes"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"c80ee2f9-79c8-4675-92a4-d427445f4f0f"},{"key":"Date","value":"Fri, 22 Aug 2025 07:23:30 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/general/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/terminationCodes\",\n    \"value\": [\n        {\n            \"id\": \"ff5ca7ad-3ec4-4ebb-897a-f3c876143b76\",\n            \"code\": \"02\",\n            \"description\": \"Excedencia\",\n            \"redCode\": \"63\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"createdBy\": \"\",\n            \"modifiedOn\": \"2025-07-25T11:13:16.047Z\",\n            \"modifiedBy\": \"ADMIN\"\n        },\n        // ---\n        {\n            \"id\": \"c99a5f1b-8d7e-4121-becc-b5be1e628d85\",\n            \"code\": \"06\",\n            \"description\": \"Final de Contrato\",\n            \"redCode\": \"54\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"createdBy\": \"\",\n            \"modifiedOn\": \"2025-07-25T11:13:16.047Z\",\n            \"modifiedBy\": \"ADMIN\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"99a898b4-8231-4af5-860e-8dea241d1aa4"}],"id":"b37228ea-870a-440b-b6da-7b585d4acde8","description":"<p>Funciones de consulta de datos maestros de todos los módulos de la aplicación</p>\n","_postman_id":"b37228ea-870a-440b-b6da-7b585d4acde8","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}}},{"name":"🏢 Configuración Mentor","item":[{"name":"mentorCompanies","id":"c422c951-a8ad-4466-be2c-50a3592a1e60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/mentorCompanies","description":"<p>Obtiene la lista de empresas con acceso para el usuario de la API. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único de la empresa</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código de la empresa</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Nombre de la empresa</td>\n</tr>\n<tr>\n<td>organizationStructureId</td>\n<td>ID de la estructura organizativa</td>\n</tr>\n<tr>\n<td>organizationStructureCode</td>\n<td>Código de la estructura organizativa</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del registro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del registro</td>\n</tr>\n<tr>\n<td>companyPersonId</td>\n<td>ID de los datos de persona de la empresa</td>\n</tr>\n<tr>\n<td>companyPersonCode</td>\n<td>Código de los datos de persona de la empresa</td>\n</tr>\n<tr>\n<td>vatNumber</td>\n<td>C.I.F. de la empresa</td>\n</tr>\n<tr>\n<td>acronymAddressId</td>\n<td>ID de la sigla del domicilio</td>\n</tr>\n<tr>\n<td>acronymAddressCode</td>\n<td>Código de la sigla del domicilio</td>\n</tr>\n<tr>\n<td>address</td>\n<td>Dirección del domicilio</td>\n</tr>\n<tr>\n<td>number</td>\n<td>Nº del domicilio</td>\n</tr>\n<tr>\n<td>stairs</td>\n<td>Escalera del domicilio</td>\n</tr>\n<tr>\n<td>floor</td>\n<td>Piso del domicilio</td>\n</tr>\n<tr>\n<td>door</td>\n<td>Puerta del domicilio</td>\n</tr>\n<tr>\n<td>cityId</td>\n<td>ID de población</td>\n</tr>\n<tr>\n<td>cityCode</td>\n<td>Código de población</td>\n</tr>\n<tr>\n<td>cityDescription</td>\n<td>Nombre de población</td>\n</tr>\n<tr>\n<td>postalCodeId</td>\n<td>ID del Código postal</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>Código postal</td>\n</tr>\n<tr>\n<td>countyId</td>\n<td>ID de la provincia</td>\n</tr>\n<tr>\n<td>countyCode</td>\n<td>Código de la provincia</td>\n</tr>\n<tr>\n<td>countyDescription</td>\n<td>Nombre de la provincia</td>\n</tr>\n<tr>\n<td>countryId</td>\n<td>ID del país</td>\n</tr>\n<tr>\n<td>countryCode</td>\n<td>Código del país</td>\n</tr>\n<tr>\n<td>countryDescription</td>\n<td>Nombre del país</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>Número de teléfono</td>\n</tr>\n<tr>\n<td>email</td>\n<td>E-Mail</td>\n</tr>\n<tr>\n<td>web</td>\n<td>Página web</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","mentorCompanies"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"a11dbcc3-f898-4281-8b6d-7d28b4039267","name":"mentorCompanies","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/mentorCompanies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"26502f7d-3452-463b-a45f-80e81cb7e2b2"},{"key":"Date","value":"Wed, 01 Jul 2026 10:32:59 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/mentorCompanies\",\n    \"value\": [\n        {\n            \"id\": \"a5f9c1e3-b84e-42e8-8219-d2101e2a086d\",\n            \"code\": \"9876\",\n            \"name\": \"EMPRESA ALUMINIOS\",\n            \"organizationStructureId\": \"6af3c001-e572-436c-8aa8-8846c608deda\",\n            \"organizationStructureCode\": \"UOS\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"0001-01-01T00:00:00Z\",\n            \"companyPersonId\": \"5af0de94-03d2-4679-b619-0d4437c28314\",\n            \"companyPersonCode\": \"9876\",\n            \"vatNumber\": \"B11111111\",\n            \"acronymAddressCode\": \"CL\",\n            \"address\": \"SUMMAR\",\n            \"number\": \"\",\n            \"stairs\": \"\",\n            \"floor\": \"\",\n            \"door\": \"\",\n            \"cityCode\": \"01018\",\n            \"postalCode\": \"09613\",\n            \"countyCode\": \"48\",\n            \"countryCode\": \"011\",\n            \"phoneNumber\": \"\",\n            \"email\": \"\",\n            \"web\": \"\",\n            \"acronymAddressId\": \"d2180448-1405-4866-8662-520dbba5822e\",\n            \"cityId\": \"7c3d804f-f5c3-469a-9dd6-1f1dbc87581c\",\n            \"cityDescription\": \"CIGOITIA\",\n            \"postalCodeId\": \"5d0e13ed-26b7-4861-a1c3-48f927eed647\",\n            \"countyId\": \"712c5c6c-cced-47b5-bb46-d06730011dea\",\n            \"countyDescription\": \"VIZCAYA\",\n            \"countryId\": \"ec2ed5f4-9b40-4806-b067-cd9fedfdc01d\",\n            \"countryDescription\": \"ESPAÑA\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"c422c951-a8ad-4466-be2c-50a3592a1e60"},{"name":"contributionAccounts","id":"9a451630-87a7-4b19-ace1-8c0f592abf16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/contributionAccounts","description":"<p>Obtiene la lista de cuentas de cotización de las empresas. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>mentorCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>mentorCompanyCode</td>\n<td>Código de la empresa</td>\n</tr>\n<tr>\n<td>mentorCompanyName</td>\n<td>Nombre de la empresa</td>\n</tr>\n<tr>\n<td>contributionAccount</td>\n<td>Código de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Nombre de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>address</td>\n<td>Dirección del domicilio</td>\n</tr>\n<tr>\n<td>cityId</td>\n<td>ID de población</td>\n</tr>\n<tr>\n<td>cityCode</td>\n<td>Código de población</td>\n</tr>\n<tr>\n<td>cityDescription</td>\n<td>Nombre de población</td>\n</tr>\n<tr>\n<td>postalCodeId</td>\n<td>ID del Código postal</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>Código postal</td>\n</tr>\n<tr>\n<td>countyId</td>\n<td>ID de la provincia</td>\n</tr>\n<tr>\n<td>countyCode</td>\n<td>Código de la provincia</td>\n</tr>\n<tr>\n<td>countyDescription</td>\n<td>Nombre de la provincia</td>\n</tr>\n<tr>\n<td>countryId</td>\n<td>ID del país</td>\n</tr>\n<tr>\n<td>countryCode</td>\n<td>Código del país</td>\n</tr>\n<tr>\n<td>countryDescription</td>\n<td>Nombre del país</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del registro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del registro</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","contributionAccounts"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"0b338123-4d0a-4e45-9b23-5bc73a662cef","name":"contributionAccounts","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/contributionAccounts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"56797ff7-4fc5-407c-87e3-0ad0daf855fc"},{"key":"Date","value":"Wed, 01 Jul 2026 10:34:41 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/contributionAccounts\",\n    \"value\": [\n        {\n            \"id\": \"8f95c08d-be99-4fc1-8496-e8d4a7eb6a50\",\n            \"mentorCompanyCode\": \"9876\",\n            \"contributionAccount\": \"1111111111\",\n            \"name\": \"FRUITES\",\n            \"address\": \"\",\n            \"cityCode\": \"43202\",\n            \"postalCode\": \"43202\",\n            \"countyCode\": \"43\",\n            \"countryCode\": \"011\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"0001-01-01T00:00:00Z\",\n            \"mentorCompanyId\": \"a5f9c1e3-b84e-42e8-8219-d2101e2a086d\",\n            \"mentorCompanyName\": \"EMPRESA ALUMINIOS\",\n            \"cityId\": \"69472bb1-5ea9-4087-b2c9-46a4f71f60e7\",\n            \"cityDescription\": \"REUS\",\n            \"postalCodeId\": \"625d3419-ea92-43b0-90e8-4214ee2b8528\",\n            \"countyId\": \"6d971c08-3506-4c9d-b5b4-d78897da34c0\",\n            \"countyDescription\": \"TARRAGONA\",\n            \"countryId\": \"ec2ed5f4-9b40-4806-b067-cd9fedfdc01d\",\n            \"countryDescription\": \"ESPAÑA\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"9a451630-87a7-4b19-ace1-8c0f592abf16"},{"name":"workCenters","id":"9524e522-e0dd-4378-bfce-f0b9f516d5e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/workCenters","description":"<p>Obtiene la lista de centros de trabajo de las cuentas de cotización de las empresas. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único del centro de trabajo</td>\n</tr>\n<tr>\n<td>mentorCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>mentorCompanyCode</td>\n<td>Código de la empresa</td>\n</tr>\n<tr>\n<td>mentorCompanyName</td>\n<td>Nombre de la empresa</td>\n</tr>\n<tr>\n<td>contributionAccountId</td>\n<td>ID de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>contributionAccountCode</td>\n<td>Código de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código del centro de trabajo</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Nombre del centro de trabajo</td>\n</tr>\n<tr>\n<td>address</td>\n<td>Dirección del domicilio</td>\n</tr>\n<tr>\n<td>cityId</td>\n<td>ID de población</td>\n</tr>\n<tr>\n<td>cityCode</td>\n<td>Código de población</td>\n</tr>\n<tr>\n<td>cityDescription</td>\n<td>Nombre de población</td>\n</tr>\n<tr>\n<td>postalCodeId</td>\n<td>ID del Código postal</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>Código postal</td>\n</tr>\n<tr>\n<td>countyId</td>\n<td>ID de la provincia</td>\n</tr>\n<tr>\n<td>countyCode</td>\n<td>Código de la provincia</td>\n</tr>\n<tr>\n<td>countyDescription</td>\n<td>Nombre de la provincia</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del registro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del registro</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","workCenters"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"649c8d76-bc0f-4dc9-9279-f55aea28ba47","name":"workCenters","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/workCenters"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"44c7d867-5cd4-4bf6-b670-1fdcdd91bd50"},{"key":"Date","value":"Wed, 01 Jul 2026 10:34:46 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/workCenters\",\n    \"value\": [\n        {\n            \"id\": \"9c5d314e-a9fc-4131-a677-5ad1ee77ed98\",\n            \"mentorCompanyCode\": \"9876\",\n            \"contributionAccountCode\": \"1111111111\",\n            \"code\": \"111\",\n            \"name\": \"FRUITES\",\n            \"address\": \"VALENCIA\",\n            \"cityCode\": \"43202\",\n            \"postalCode\": \"43200\",\n            \"countyCode\": \"43\",\n            \"mentorCompanyId\": \"a5f9c1e3-b84e-42e8-8219-d2101e2a086d\",\n            \"mentorCompanyName\": \"EMPRESA ALUMINIOS\",\n            \"contributionAccountId\": \"8f95c08d-be99-4fc1-8496-e8d4a7eb6a50\",\n            \"cityId\": \"69472bb1-5ea9-4087-b2c9-46a4f71f60e7\",\n            \"cityDescription\": \"REUS\",\n            \"postalCodeId\": \"224d8aca-b48a-4c21-a39d-8b29aa0fe0e4\",\n            \"countyId\": \"6d971c08-3506-4c9d-b5b4-d78897da34c0\",\n            \"countyDescription\": \"TARRAGONA\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-10-30T07:39:26.727Z\"                \n        },\n        // ---\n    ]\n}"}],"_postman_id":"9524e522-e0dd-4378-bfce-f0b9f516d5e0"},{"name":"structures","id":"c34919cc-b849-4969-9fec-d821aeb34f9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/structures","description":"<p>Obtiene la lista de estructuras organizativas. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripci</strong>ó<strong>n</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único de la estructura y fecha de aplicación</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código de la estructura</td>\n</tr>\n<tr>\n<td>structureEffectiveDate</td>\n<td>Fecha de aplicación</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Descripción de la estructura</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del registro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del registro</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","structures"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"87accd4e-8923-4047-a32a-b67ada3b8518","name":"structures","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/structures"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"69029fc2-3dc8-4b29-bf15-ea11bc6d2bfb"},{"key":"Date","value":"Wed, 01 Jul 2026 15:16:55 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/structures\",\n    \"value\": [\n        {\n            \"id\": \"00000000-0000-0000-0000-000000000000\",\n            \"code\": \"01\",\n            \"structureEffectiveDate\": \"0001-01-01\",\n            \"description\": \"ESTRUCTURA CONSULTORA DE PLANIFICACIÓN\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"id\": \"00000000-0000-0000-0000-000000000000\",\n            \"code\": \"01\",\n            \"structureEffectiveDate\": \"2019-01-01\",\n            \"description\": \"ESTRUCTURA CONSULTORA DE PLANIFICACIÓN\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"0001-01-01T00:00:00Z\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"c34919cc-b849-4969-9fec-d821aeb34f9e"},{"name":"organizationUnits","id":"27faee4a-b1b9-4fcf-b2fb-302c6039393f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/organizationUnits","description":"<p>Obtiene la lista de unidades organizativas de las estructuras. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único de la UO</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código de la UO</td>\n</tr>\n<tr>\n<td>structureId</td>\n<td>ID de la estructura</td>\n</tr>\n<tr>\n<td>structureCode</td>\n<td>Código de la estructura</td>\n</tr>\n<tr>\n<td>structureEffectiveDate</td>\n<td>Fecha de aplicación</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Descripción de la UO</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del registro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del registro</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","organizationUnits"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"50eaca42-84f9-4db1-8dce-a29a781083d8","name":"organizationUnits","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/organizationUnits"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"beff0bb6-cec7-46ed-b713-ae53da87e0bf"},{"key":"Date","value":"Wed, 01 Jul 2026 15:18:08 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/organizationUnits\",\n    \"value\": [\n        {\n            \"id\": \"00000000-0000-0000-0000-000000000000\",\n            \"code\": \"ADMINISTRACION\",\n            \"structureId\": \"6af3c001-e572-436c-8aa8-8846c608deda\",            \n            \"structureCode\": \"01\",\n            \"structureEffectiveDate\": \"0001-01-01\",\n            \"description\": \"ADMINISTRACION\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"0001-01-01T00:00:00Z\"\n        },\n        {\n            \"id\": \"00000000-0000-0000-0000-000000000000\",\n            \"code\": \"ADMON\",\n            \"structureId\": \"6af3c001-e572-436c-8aa8-8846c608deda\",            \n            \"structureCode\": \"01\",\n            \"structureEffectiveDate\": \"0001-01-01\",\n            \"description\": \"ADMINISTRACIÓN GENERAL\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"0001-01-01T00:00:00Z\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"27faee4a-b1b9-4fcf-b2fb-302c6039393f"},{"name":"categories","id":"24803362-044d-415d-8ee7-50f3c6b25afb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/categories","description":"<p>Obtiene la lista de categorías. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único de la categoría</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código de la categoría</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Descripción de la categoría</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del registro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del registro</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","categories"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"25bb5682-ae24-48de-8a37-d8324f034e0e","name":"categories","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/categories"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"5f414ddb-ca0a-41ac-9592-682557eff127"},{"key":"Date","value":"Wed, 01 Jul 2026 10:34:50 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/categories\",\n    \"value\": [\n        {\n            \"id\": \"334606c8-6963-48ac-b61b-843cefce425a\",\n            \"code\": \"0\",\n            \"description\": \"test\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-10-30T07:39:26.727Z\"            \n        },\n        {\n            \"id\": \"987bed58-5e15-4ecf-991a-57b13a553d29\",\n            \"code\": \"00\",\n            \"description\": \"Administrador\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-10-30T07:39:26.727Z\"            \n        },\n        // ---\n    ]\n}"}],"_postman_id":"24803362-044d-415d-8ee7-50f3c6b25afb"},{"name":"jobPositions","id":"3ad107b8-f3ee-47e0-ba99-b62876bff3b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/categories","description":"<p>Obtiene la lista de puestos de trabajo de las empresas. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único del puesto de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionCode</td>\n<td>Código del puesto de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionDescription</td>\n<td>Descrpción del puesto de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionExtendedDescription</td>\n<td>Descrpción ampliada del puesto de trabajo</td>\n</tr>\n<tr>\n<td>mentorCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>mentorCompanyCode</td>\n<td>Código de la empresa</td>\n</tr>\n<tr>\n<td>mentorCompanyName</td>\n<td>Nombre de la empresa</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>Fecha de inicio del puesto de trabajo</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>Fecha fin del puesto de trabajo</td>\n</tr>\n<tr>\n<td>yearsOfExperience</td>\n<td>Años de experiencia previa</td>\n</tr>\n<tr>\n<td>jobPositionPurpose</td>\n<td>Missión de puesto de trabajo</td>\n</tr>\n<tr>\n<td>prlOnly</td>\n<td>Exclusivo para PRL</td>\n</tr>\n<tr>\n<td>jobPositionCustomField1</td>\n<td>Campo libre 1º</td>\n</tr>\n<tr>\n<td>jobPositionCustomField2</td>\n<td>Campo libre 2º</td>\n</tr>\n<tr>\n<td>jobPositionCustomField3</td>\n<td>Campo libre 3º</td>\n</tr>\n<tr>\n<td>jobPositionCustomField4</td>\n<td>Campo libre 4º</td>\n</tr>\n<tr>\n<td>jobPositionCustomField5</td>\n<td>Campo libre 5º</td>\n</tr>\n<tr>\n<td>jobPositionCustomField6</td>\n<td>Campo libre 6º</td>\n</tr>\n<tr>\n<td>jobPositionCustomField7</td>\n<td>Campo libre 7º</td>\n</tr>\n<tr>\n<td>jobPositionCustomField8</td>\n<td>Campo libre 8º</td>\n</tr>\n<tr>\n<td>jobPositionCustomField9</td>\n<td>Campo libre 9º</td>\n</tr>\n<tr>\n<td>jobPositionCustomField10</td>\n<td>Campo libre 10º</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del registro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del registro</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","categories"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"260b371b-7ed3-46f5-80db-b9f2e884ff9c","name":"jobPositions","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/jobPositions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"619d2a8a-534a-41ca-ac92-ab2a2b9a7b2b"},{"key":"Date","value":"Fri, 03 Jul 2026 06:43:01 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/jobPositions\",\n    \"value\": [\n        {\n            \"id\": \"840be6d8-809f-41e9-8027-8001af04887b\",\n            \"jobPositionCode\": \"ADMINIST\",\n            \"jobPositionExtendedDescription\": \"Sales Area Responsible Levante / Raw Material Purchasing Responsible Levante\",\n            \"mentorCompanyCode\": \"9876\",\n            \"startDate\": \"1990-01-01\",\n            \"endDate\": \"0001-01-01\",\n            \"yearsOfExperience\": 1,\n            \"jobPositionPurpose\": \"Desde esta opción se crean los puestos de trabajo que posteriormente se vayan asignar a cualquier empresa de Mentor. Es una tabla genérica de puestos, lo que significa que para asignar un puesto de trabajo a una empresa, previamente debe ser creado\",\n            \"prlOnly\": false,\n            \"jobPositionCustomField1\": \"\",\n            \"jobPositionCustomField2\": \"\",\n            \"jobPositionCustomField3\": \"\",\n            \"jobPositionCustomField4\": \"\",\n            \"jobPositionCustomField5\": \"\",\n            \"jobPositionCustomField6\": \"\",\n            \"jobPositionCustomField7\": \"\",\n            \"jobPositionCustomField8\": \"\",\n            \"jobPositionCustomField9\": \"\",\n            \"jobPositionCustomField10\": \"\",\n            \"jobPositionDescription\": \"Sales Area Responsible Levante / Raw Material Purc\",\n            \"mentorCompanyId\": \"a5f9c1e3-b84e-42e8-8219-d2101e2a086d\",\n            \"mentorCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-10-30T07:39:26.727Z\"         \n        },\n        // ---\n    ]\n}"}],"_postman_id":"3ad107b8-f3ee-47e0-ba99-b62876bff3b8"},{"name":"trainingLevels","id":"e172c992-fcf4-4ec2-89b9-f17b5255fd08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/trainingLevels","description":"<p>Obtiene la lista de niveles formativos de los empleados. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único del nivel formativo</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código del nivel formativo</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Descripción del nivel formativo</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del registro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del registro</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","trainingLevels"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"2e52aa7e-9a2f-4146-9e24-f0d37aadb69c","name":"trainingLevels","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/trainingLevels"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"fa043d17-867e-46f7-a63b-2cd7a8e5f4de"},{"key":"Date","value":"Wed, 01 Jul 2026 10:34:54 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/trainingLevels\",\n    \"value\": [\n        {\n            \"id\": \"05bb5557-ad0b-4eea-b0e9-6e6aba3ca55c\",\n            \"code\": \"11\",\n            \"description\": \"ESTUDIOS PRIMARIOS INCOMPLETOS\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-10-30T07:39:26.727Z\"          \n        },\n        {\n            \"id\": \"2c77a9e1-5927-4664-a087-68132a6977d6\",\n            \"code\": \"12\",\n            \"description\": \"ESTUDIOS PRIMARIOS COMPLETOS\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-10-30T07:39:26.727Z\"        \n        },\n        // ---\n    ]\n}"}],"_postman_id":"e172c992-fcf4-4ec2-89b9-f17b5255fd08"},{"name":"contracts","id":"25bd89c2-1bf2-46ff-9f26-c9f3197d0310","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/contracts","description":"<p>Obtiene la lista de tipos de contrato. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único del tipo de contrato</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código del tipo de contrato</td>\n</tr>\n<tr>\n<td>subcode</td>\n<td>Subcódigo del tipo de contrato</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Descripción del tipo de contrato</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del registro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del registro</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","contracts"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"70ab48b5-dc36-4cce-81e0-fc59114b92d8","name":"contracts","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/contracts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"513c480a-c3ad-4204-9fa2-dcf4c2d9cf6b"},{"key":"Date","value":"Wed, 01 Jul 2026 10:35:23 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/contracts\",\n    \"value\": [\n        {\n            \"id\": \"9cb93872-9dcc-4369-a513-63ddbd629fd4\",\n            \"code\": \"000\",\n            \"subcode\": \"\",\n            \"description\": \"FUNCIONARIS\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-10-30T07:39:26.727Z\"          \n        },\n        {\n            \"id\": \"1753c32d-8835-49cc-bafe-7b4fc6dfd780\",\n            \"code\": \"000\",\n            \"subcode\": \"BPF\",\n            \"description\": \"BECARIOS PROGRAMA FORMACION\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-10-30T07:39:26.727Z\"        \n        },\n        // ---\n    ]\n}"}],"_postman_id":"25bd89c2-1bf2-46ff-9f26-c9f3197d0310"},{"name":"salaryLevels","id":"4b1bc06e-859a-408f-8154-4b6c5ed70e78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/salaryLevels","description":"<p>Obtiene la lista de niveles salariales. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único del nivel salarial</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código del nivel salarial</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Descripción del nivel salarial</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del registro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del registro</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","salaryLevels"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"7bcfaf92-f5d5-4268-9658-d9ed2a3aa5bd","name":"salaryLevels","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/salaryLevels"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"ebf70836-0f85-41c5-ab79-9b7ebf4a2b2d"},{"key":"Date","value":"Wed, 01 Jul 2026 10:42:38 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/salaryLevels\",\n    \"value\": [\n        {\n            \"id\": \"64ba45ee-3e61-4ea3-aee9-b6a08bb25689\",\n            \"code\": \"001\",\n            \"description\": \"NIVEL 1\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-10-30T07:39:26.727Z\"\n        },\n        {\n            \"id\": \"663c364a-8fcf-412f-8487-c6a1dd7b0184\",\n            \"code\": \"002\",\n            \"description\": \"NIVEL 2\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-10-30T07:39:26.743Z\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"4b1bc06e-859a-408f-8154-4b6c5ed70e78"},{"name":"absenceTypes","id":"56b279cd-a73c-4991-bf54-8eb30c01b41d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/categories","description":"<p>Obtiene la lista de tipos de absentismo. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único del tipo de absentismo</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código del absentismo</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Descripción del absentismo</td>\n</tr>\n<tr>\n<td>subType</td>\n<td>Subtipo de absentismo</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del registro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del registro</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","categories"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"f55ce6b9-5c38-42db-806c-04fdc5ce6f25","name":"absentismTypes","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/absenceTypes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"b26871d1-261f-4a9c-8c6e-8bda8c8b795c"},{"key":"Date","value":"Fri, 03 Jul 2026 06:43:52 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/absenceTypes\",\n    \"value\": [\n        {\n            \"id\": \"5b9032a8-29aa-4076-91ca-7c0d01ced73f\",\n            \"code\": \"ABS\",\n            \"description\": \"abs\",\n            \"subType\": \"Enfermedad\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-10-30T07:39:26.727Z\"            \n        },\n        {\n            \"id\": \"b8d2075f-4d0f-47c9-b507-dc5144805e31\",\n            \"code\": \"ACC. COMÚN\",\n            \"description\": \"Accindente no laboral\",\n            \"subType\": \"Enfermedad\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-10-30T07:39:26.727Z\"            \n        },\n        // ---\n    ]\n}"}],"_postman_id":"56b279cd-a73c-4991-bf54-8eb30c01b41d"}],"id":"760649d8-7667-4aa6-a6ca-bd2896611138","description":"<p>Funciones de consulta de datos maestros del módulo de recursos humanos</p>\n","_postman_id":"760649d8-7667-4aa6-a6ca-bd2896611138","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}}},{"name":"👤 Empleados","item":[{"name":"employees","id":"10767eb1-ac25-49e0-bb87-68c898b8c953","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employees","description":"<p>Obtiene los datos personales de los empleados. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único del empleado</td>\n</tr>\n<tr>\n<td>mentorCompanyId</td>\n<td>ID de la empresa laboral</td>\n</tr>\n<tr>\n<td>mentorCompanyCode</td>\n<td>Código de la empresa laboral</td>\n</tr>\n<tr>\n<td>mentorCompanyName</td>\n<td>Nombre de la empresa laboral</td>\n</tr>\n<tr>\n<td>employeePersonId</td>\n<td>ID de los datos de persona del empleado</td>\n</tr>\n<tr>\n<td>employeeCode</td>\n<td>Código del empleado</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Nombre del empleado</td>\n</tr>\n<tr>\n<td>firstSurname</td>\n<td>Primer apellido del empleado</td>\n</tr>\n<tr>\n<td>secondSurname</td>\n<td>Segundo apellido del empleado</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>Nombre completo del empleado</td>\n</tr>\n<tr>\n<td>foreignCode</td>\n<td>0: '' , 1: Pasaporte , 2: Tarjeta residente , 3: Permiso Residencia , 4: N.I. extranjero</td>\n</tr>\n<tr>\n<td>vatNumber</td>\n<td>N.I.F.</td>\n</tr>\n<tr>\n<td>isResident</td>\n<td>Residente</td>\n</tr>\n<tr>\n<td>acronymAddressId</td>\n<td>ID de sigla del domicilio</td>\n</tr>\n<tr>\n<td>acronymAddressCode</td>\n<td>Sigla del domicilio</td>\n</tr>\n<tr>\n<td>address</td>\n<td>Dirección del domicilio</td>\n</tr>\n<tr>\n<td>numberingType</td>\n<td>0: '' , 1: NUM , 2: KM. , 3: S/N , 4: OTR</td>\n</tr>\n<tr>\n<td>house</td>\n<td>Nº casa del domicilio</td>\n</tr>\n<tr>\n<td>hallway</td>\n<td>Portal del domicilio</td>\n</tr>\n<tr>\n<td>block</td>\n<td>Bloque del domicilio</td>\n</tr>\n<tr>\n<td>stairs</td>\n<td>Escalera del domicilio</td>\n</tr>\n<tr>\n<td>floor</td>\n<td>Piso del domicilio</td>\n</tr>\n<tr>\n<td>door</td>\n<td>Puerta del domicilio</td>\n</tr>\n<tr>\n<td>cityId</td>\n<td>ID de la población</td>\n</tr>\n<tr>\n<td>cityCode</td>\n<td>Nombre de la población</td>\n</tr>\n<tr>\n<td>cityDescription</td>\n<td>Descripción de la población</td>\n</tr>\n<tr>\n<td>postalCodeId</td>\n<td>ID del código postal</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>Código postal</td>\n</tr>\n<tr>\n<td>countyId</td>\n<td>ID de la provincia</td>\n</tr>\n<tr>\n<td>countyCode</td>\n<td>Código de la provincia</td>\n</tr>\n<tr>\n<td>countyDescription</td>\n<td>Descripción de la provincia</td>\n</tr>\n<tr>\n<td>countryId</td>\n<td>ID del país</td>\n</tr>\n<tr>\n<td>countryCode</td>\n<td>Código del país</td>\n</tr>\n<tr>\n<td>countryDescription</td>\n<td>Descripción del país</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>Número de teléfono</td>\n</tr>\n<tr>\n<td>mobilePhoneNumber</td>\n<td>Teléfono móvil</td>\n</tr>\n<tr>\n<td>email</td>\n<td>E-Mail del empleado</td>\n</tr>\n<tr>\n<td>birthDate</td>\n<td>Fecha de nacimiento</td>\n</tr>\n<tr>\n<td>cityBirthId</td>\n<td>ID de la población de nacimiento</td>\n</tr>\n<tr>\n<td>cityBirthCode</td>\n<td>Código de la población de nacimiento</td>\n</tr>\n<tr>\n<td>cityBirthDescription</td>\n<td>Nombre de la población de nacimiento</td>\n</tr>\n<tr>\n<td>countyBirthId</td>\n<td>ID de la provincia de nacimiento</td>\n</tr>\n<tr>\n<td>countyBirthCode</td>\n<td>Código de la provincia de nacimiento</td>\n</tr>\n<tr>\n<td>countyBirthDescription</td>\n<td>Nombre de la provincia de nacimiento</td>\n</tr>\n<tr>\n<td>countryBirthId</td>\n<td>ID del país de nacimiento</td>\n</tr>\n<tr>\n<td>countryBirthCode</td>\n<td>Código del país de nacimiento</td>\n</tr>\n<tr>\n<td>countryBirthDescription</td>\n<td>Nombre del país de nacimiento</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>0: Hombre , 1: Mujer , 2: ''</td>\n</tr>\n<tr>\n<td>maritalStatus</td>\n<td>0: Soltero/a , 1: Casado/a , 2: Viudo/a , 3: Separado/a , 4: Divorciado/a , 5: ' '</td>\n</tr>\n<tr>\n<td>nationalityId</td>\n<td>ID del país de nacionalidad</td>\n</tr>\n<tr>\n<td>nationalityCode</td>\n<td>Código del país de nacionalidad</td>\n</tr>\n<tr>\n<td>nationalityDescription</td>\n<td>Nombre del país de nacionalidad</td>\n</tr>\n<tr>\n<td>fatherName</td>\n<td>Nombre del padre</td>\n</tr>\n<tr>\n<td>motherName</td>\n<td>Nombre de la madre</td>\n</tr>\n<tr>\n<td>trainingLevelId</td>\n<td>ID del nivel formativo</td>\n</tr>\n<tr>\n<td>trainingLevelCode</td>\n<td>Código del nivel formativo</td>\n</tr>\n<tr>\n<td>employeeCustomField1</td>\n<td>Campo libre 1º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField2</td>\n<td>Campo libre 2º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField3</td>\n<td>Campo libre 3º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField4</td>\n<td>Campo libre 4º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField5</td>\n<td>Campo libre 5º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField6</td>\n<td>Campo libre 6º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField7</td>\n<td>Campo libre 7º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField8</td>\n<td>Campo libre 8º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField9</td>\n<td>Campo libre 9º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField10</td>\n<td>Campo libre 10º del empleado</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del empleado</td>\n</tr>\n<tr>\n<td>lastModifiedOn</td>\n<td>Fecha de última modificación del empleado</td>\n</tr>\n<tr>\n<td>deletedOn</td>\n<td>Fecha de eliminación del empleado</td>\n</tr>\n<tr>\n<td>active</td>\n<td>Indica si el empleado está activo</td>\n</tr>\n<tr>\n<td>deleted</td>\n<td>Indica si el empleado ha sido eliminado</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","employees"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"75381976-4c64-4b2d-944b-cb1af517176b","name":"employees","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employees"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"8102a6c1-963f-46bd-8468-e2c4352e0701"},{"key":"Date","value":"Wed, 01 Jul 2026 10:44:19 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/employees\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0O29ra3RHck9qOUNJZjg0SzJ0WmhzZTZ0dzRwQlkwVnBqSGFjZDJmd3VwTG89MTswMDsn\\\"\",\n            \"id\": \"019c206c-f090-437a-b2d7-002e22ebffde\",\n            \"mentorCompanyId\": \"146bb24d-985a-4eb7-b169-bf33bd7f34d4\",\n            \"mentorCompanyCode\": \"A34544551\",\n            \"mentorCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"employeePersonId\": \"feaf8c78-b6e0-469f-8de9-2496cbf02acf\",\n            \"employeeCode\": \"12341234D\",\n            \"name\": \"FERNANDO\",\n            \"firstSurname\": \"COCO\",\n            \"secondSurname\": \"CUADRADO\",\n            \"fullName\": \"COCO  FERNANDO\",\n            \"foreignCode\": \" \",\n            \"vatNumber\": \"12341234D\",\n            \"isResident\": true,\n            \"acronymAddressId\": \"784aef73-d484-418e-a383-141e3a1b242a\",\n            \"acronymAddressCode\": \"AL\",\n            \"address\": \"ddddd\",\n            \"numberType\": \" \",\n            \"house\": \"\",\n            \"block\": \"\",\n            \"hallway\": \"5\",\n            \"stairs\": \"\",\n            \"floor\": \"\",\n            \"door\": \"\",\n            \"cityId\": \"488400bc-f983-47fc-98e1-fa7a4b55cd7b\",\n            \"cityCode\": \"01057\",\n            \"cityDescription\": \"AGURAIN-SALVATIERRA\",\n            \"postalCodeId\": \"210bf77e-6801-4cff-86f2-73e740fb1b4e\",\n            \"postalCode\": \"\",\n            \"countyCode\": \"01\",\n            \"countyId\": \"51504c5a-8d27-4b60-863c-d69e9d02640f\",\n            \"countyDescription\": \"ALAVA\",\n            \"countryCode\": \"011\",\n            \"countryId\": \"ec2ed5f4-9b40-4806-b067-cd9fedfdc01d\",\n            \"countryDescription\": \"ESPAÑA\",\n            \"phoneNumber\": \"\",\n            \"mobilePhoneNumber\": \"649731177\",\n            \"email\": \"emontserrat@summar.es\",\n            \"birthDate\": \"1973-02-28\",\n            \"cityBirthId\": \"00000000-0000-0000-0000-000000000000\",\n            \"cityBirthCode\": \"\",\n            \"cityBirthDescription\": \"\",\n            \"countyBirthId\": \"4024fa06-f5af-411f-b936-704fe250511b\",\n            \"countyBirthCode\": \"\",\n            \"countyBirthDescription\": \"\",\n            \"countryBirthId\": \"00000000-0000-0000-0000-000000000000\",\n            \"countryBirthCode\": \"\",\n            \"countryBirthDescription\": \"\",\n            \"gender\": \"Hombre\",\n            \"maritalStatus\": \"Soltero/a\",\n            \"nationalityId\": \"00000000-0000-0000-0000-000000000000\",\n            \"nationalityCode\": \"\",\n            \"nationalityDescription\": \"\",\n            \"fatherName\": \"\",\n            \"motherName\": \"\",\n            \"socialSecurityNumber\": \"123412340164\",\n            \"trainingLevelId\": \"00000000-0000-0000-0000-000000000000\",\n            \"trainingLevelCode\": \"\",\n            \"resourceCode\": \"\",\n            \"employeeCustomField1\": \"\",\n            \"employeeCustomField2\": \"\",\n            \"employeeCustomField3\": \"\",\n            \"employeeCustomField4\": \"\",\n            \"employeeCustomField5\": \"\",\n            \"employeeCustomField6\": \"\",\n            \"employeeCustomField7\": \"\",\n            \"employeeCustomField8\": \"\",\n            \"employeeCustomField9\": \"\",\n            \"employeeCustomField0\": \"\",\n            \"createdOn\": \"2025-06-27T09:38:26.537Z\",\n            \"lastModifiedOn\": \"2026-06-18T14:08:20.327Z\",\n            \"deletedOn\": \"0001-01-01T00:00:00Z\",\n            \"active\": true,\n            \"deleted\": false\n        },\n        // ---\n    ]\n}"}],"_postman_id":"10767eb1-ac25-49e0-bb87-68c898b8c953"},{"name":"employeeAbsences","id":"e6aed230-8e34-42d7-96fd-6f23a68bc6c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employeeAbsences","description":"<p>Obtiene la lista de los absentismos de los empleados. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único del absentismo</td>\n</tr>\n<tr>\n<td>employeeId</td>\n<td>ID del empleado</td>\n</tr>\n<tr>\n<td>employeeCode</td>\n<td>Código del empleado</td>\n</tr>\n<tr>\n<td>employeeName</td>\n<td>Nombre del empleado</td>\n</tr>\n<tr>\n<td>mentorCompanyId</td>\n<td>ID de la empresa de RRHH</td>\n</tr>\n<tr>\n<td>mentorCompanyCode</td>\n<td>Código de la empresa de RRHH</td>\n</tr>\n<tr>\n<td>mentorCompanyName</td>\n<td>Nombre de la empresa de RRHH</td>\n</tr>\n<tr>\n<td>contributionAccountId</td>\n<td>ID de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>contributionAccountCode</td>\n<td>Código de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>Fecha de inicio del absentismo</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>Fecha fin del absentismo</td>\n</tr>\n<tr>\n<td>startTime</td>\n<td>Hora inicio del absentismo, sólo en parciales</td>\n</tr>\n<tr>\n<td>endTime</td>\n<td>Hora fin del absentismo, sólo en parciales</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Descripción del absentismo</td>\n</tr>\n<tr>\n<td>absentismTypeId</td>\n<td>ID del tipo de absentismo</td>\n</tr>\n<tr>\n<td>absentismTypeCode</td>\n<td>Código del tipo de absentismo</td>\n</tr>\n<tr>\n<td>absentismTypeDescription</td>\n<td>Descripción del tipo de absentismo</td>\n</tr>\n<tr>\n<td>hours</td>\n<td>Horas del absentismo</td>\n</tr>\n<tr>\n<td>remarks</td>\n<td>Observaciones</td>\n</tr>\n<tr>\n<td>laborDays</td>\n<td>Días laborables</td>\n</tr>\n<tr>\n<td>workCenterId</td>\n<td>ID del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterCode</td>\n<td>Código del centro de trabajo</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del absentismo</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación del absentismo</td>\n</tr>\n<tr>\n<td>deletedOn</td>\n<td>Fecha de eliminación del absentismo</td>\n</tr>\n<tr>\n<td>deleted</td>\n<td>Indica si ha sido eliminado</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","employeeAbsences"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"85355c89-dc68-4521-9664-30df12eb8f75","name":"employeeAbsences","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employeeAbsences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"c2e5788d-c9f8-49f6-a165-08d581ab913d"},{"key":"Date","value":"Wed, 01 Jul 2026 10:44:26 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/employeeAbsences\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0O2hMaVoxaFRVNlF3QlVIVFNOMjRnVzRJOTBBTGk1aUdzK1dIUDJRdkpFZms9MTswMDsn\\\"\",\n            \"mentorCompanyCode\": \"9876\",\n            \"contributionAccountCode\": \"4366998877\",\n            \"employeeCode\": \"AUTONPRUE\",\n            \"startDate\": \"2021-03-05\",\n            \"nosecuencia\": 0,\n            \"tipo\": \"Absentismo\",\n            \"id\": \"85591ab8-2e39-4c37-ba70-ff4154bd6608\",\n            \"employeeId\": \"fe5fe105-18f7-4447-8811-92759d4b0ef1\",\n            \"employeeName\": \"ADMINISTRADORES AUTONOMO\",\n            \"mentorCompanyId\": \"a5f9c1e3-b84e-42e8-8219-d2101e2a086d\",\n            \"mentorCompanyName\": \"EMPRESA ALUMINIOS\",\n            \"contributionAccountId\": \"1d1bdd66-5870-4e9f-bc79-30f217569cdd\",\n            \"endDate\": \"2021-03-15\",\n            \"startTime\": \"00:00:00\",\n            \"endTime\": \"00:00:00\",\n            \"description\": \"\",\n            \"absentismTypeId\": \"00000000-0000-0000-0000-000000000000\",\n            \"absentismTypeCode\": \"ABS\",\n            \"absentismTypeDescription\": \"abs\",\n            \"hours\": 0,\n            \"remarks\": \"\",\n            \"laborDays\": 7,\n            \"workCenterId\": \"96fc73d3-48e4-4934-929c-807ec4d5efe1\",\n            \"workCenterCode\": \"002\",\n            \"createdOn\": \"2026-06-22T09:10:31.063Z\",\n            \"modifiedOn\": \"0001-01-01T00:00:00Z\",\n            \"deletedOn\": \"0001-01-01T00:00:00Z\",\n            \"deleted\": false\n        },\n        // ---\n    ]\n}"}],"_postman_id":"e6aed230-8e34-42d7-96fd-6f23a68bc6c1"},{"name":"employeePhotos","id":"e66a31f0-bf3d-4524-a838-c6adc1c20e7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employeePhotos({{APIemployeeId}})","description":"<p>Obtiene la foto de un empleado. Esté método sólo permite la consulta de un empleado individual. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único del empleado</td>\n</tr>\n<tr>\n<td>companyCode</td>\n<td>Código de la empresa</td>\n</tr>\n<tr>\n<td>employeeCode</td>\n<td>Código del empleado</td>\n</tr>\n<tr>\n<td>base64content</td>\n<td>Contenido en base64 de la foto del empleado</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","employeePhotos({{APIemployeeId}})"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"004ed2b8-d7d1-42a5-b876-f559edeb7459","name":"employeePhotos","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employeePhotos({{APIemployeeId}})"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"0dc9f7dd-c1dd-4dcf-82c6-303f770ef37a"},{"key":"Date","value":"Wed, 01 Jul 2026 10:44:30 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/employeePhotos/$entity\",\n    \"@odata.etag\": \"W/\\\"JzQ0O0JOMU9XM0lRbTg4UVhjbGNCMmV4djE3RTJHWWFzTGVKWGdtb3VzNnhUVms9MTswMDsn\\\"\",\n    \"id\": \"896d2cc8-49f7-4716-add2-bd5c5889f1f4\",\n    \"companyCode\": \"9876\",\n    \"employeeCode\": \"01625291L\",\n    \"base64content\": \"/9j/4AAQSkZJRgABAQEAA..................VANTmpcqVrUB//9k=\"\n}"}],"_postman_id":"e66a31f0-bf3d-4524-a838-c6adc1c20e7e"}],"id":"f52a72d7-8e82-4202-85b4-6cb2aeb3740d","description":"<p>Funciones de consulta de datos de empleados</p>\n","_postman_id":"f52a72d7-8e82-4202-85b4-6cb2aeb3740d","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}}},{"name":"📝 Contratos","item":[{"name":"workers","id":"76b98fd9-a6f0-4909-ba07-24423bd11289","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/workers","description":"<p>Obtiene los datos personales y laborales de los empleados en una sola consulta, por si se quiere evitar consultarlos por separado y tener que combinar los resultados. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único del contrato del empleado</td>\n</tr>\n<tr>\n<td>employeeId</td>\n<td>ID del empleado</td>\n</tr>\n<tr>\n<td>employeePersonId</td>\n<td>ID de los datos de persona del empleado</td>\n</tr>\n<tr>\n<td>employeeCode</td>\n<td>Código del empleado</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>Nombre completo del empleado</td>\n</tr>\n<tr>\n<td>mentorCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>mentorCompanyCode</td>\n<td>Código de la empresa</td>\n</tr>\n<tr>\n<td>mentorCompanyName</td>\n<td>Nombre de la empresa</td>\n</tr>\n<tr>\n<td>contributionAccountId</td>\n<td>ID de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>contributionAccountCode</td>\n<td>Código de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>hireDate</td>\n<td>Fecha de contratación</td>\n</tr>\n<tr>\n<td>seniorityDate</td>\n<td>Fecha de antigüedad</td>\n</tr>\n<tr>\n<td>structureCode</td>\n<td>Código de la estructura organizativa</td>\n</tr>\n<tr>\n<td>organizationalUnitCode</td>\n<td>Código de la unidad organizativa</td>\n</tr>\n<tr>\n<td>organizationalUnitDate</td>\n<td>Fecha de la unidad organizativa</td>\n</tr>\n<tr>\n<td>organizationalUnitDescription</td>\n<td>Descripción de la unidad organizativa</td>\n</tr>\n<tr>\n<td>terminationId</td>\n<td>Identificador del motivo de baja</td>\n</tr>\n<tr>\n<td>terminationCode</td>\n<td>Código de baja</td>\n</tr>\n<tr>\n<td>terminationDate</td>\n<td>Fecha de baja</td>\n</tr>\n<tr>\n<td>terminationDescription</td>\n<td>Descripción del motivo de baja</td>\n</tr>\n<tr>\n<td>workCenterId</td>\n<td>ID del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterCode</td>\n<td>Código del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterDescription</td>\n<td>Descripción del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterDate</td>\n<td>Fecha de asignación al centro de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionId</td>\n<td>ID del puesto de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionCode</td>\n<td>Código del puesto de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionDescription</td>\n<td>Descripción del puesto de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionDate</td>\n<td>Fecha del puesto de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionAdditional1Id</td>\n<td>ID del puesto de trabajo adicional 1</td>\n</tr>\n<tr>\n<td>jobPositionAdditional1Code</td>\n<td>Códigodel puesto de trabajo adicional 1</td>\n</tr>\n<tr>\n<td>jobPositionAdditional1Desc</td>\n<td>Descripción del puesto de trabajo adicional 1</td>\n</tr>\n<tr>\n<td>jobPositionAdditional1Date</td>\n<td>Fecha del puesto de trabajo adicional 1</td>\n</tr>\n<tr>\n<td>jobPositionAdditional2Id</td>\n<td>ID del puesto de trabajo adicional 2</td>\n</tr>\n<tr>\n<td>jobPositionAdditional2Code</td>\n<td>Códigodel puesto de trabajo adicional 2</td>\n</tr>\n<tr>\n<td>jobPositionAdditional2Desc</td>\n<td>Descripción del puesto de trabajo adicional 2</td>\n</tr>\n<tr>\n<td>jobPositionAdditional2Date</td>\n<td>Fecha del puesto de trabajo adicional 2</td>\n</tr>\n<tr>\n<td>positionSlotCode</td>\n<td>Código de plaza de trabajo</td>\n</tr>\n<tr>\n<td>positionSlotDate</td>\n<td>Fecha de plaza de trabajo</td>\n</tr>\n<tr>\n<td>categoryId</td>\n<td>ID de la categoría</td>\n</tr>\n<tr>\n<td>categoryCode</td>\n<td>Código de la categoría</td>\n</tr>\n<tr>\n<td>categoryDescription</td>\n<td>Descripción de la categoría</td>\n</tr>\n<tr>\n<td>categoryDate</td>\n<td>Fecha de asignación a la categoría</td>\n</tr>\n<tr>\n<td>workdayPercentage</td>\n<td>Porcentaje de jornada</td>\n</tr>\n<tr>\n<td>workdayType</td>\n<td>0: Completa , 1: Reducida , 2: Parcial , 3: Pluriempleo</td>\n</tr>\n<tr>\n<td>workdayHours</td>\n<td>Horas semanales de trabajo</td>\n</tr>\n<tr>\n<td>workHoursTimeUnit</td>\n<td>0: Diarias , 1: Semanales , 2: Mensuales , 3: Anuales</td>\n</tr>\n<tr>\n<td>workingDays</td>\n<td>Días de trabajo</td>\n</tr>\n<tr>\n<td>workingDaysTimeUnit</td>\n<td>0: Semanales , 1: Mensuales , 2: Anuales</td>\n</tr>\n<tr>\n<td>workdayDate</td>\n<td>Fecha de asignación de la jornada</td>\n</tr>\n<tr>\n<td>contractId</td>\n<td>ID del tipo de contrato</td>\n</tr>\n<tr>\n<td>contractCode</td>\n<td>Código del tipo de contrato</td>\n</tr>\n<tr>\n<td>contractSubCode</td>\n<td>Subcódigo del tipo de contrato</td>\n</tr>\n<tr>\n<td>contractDescription</td>\n<td>Descripción del tipo de contrato</td>\n</tr>\n<tr>\n<td>contractDate</td>\n<td>Fecha de asignación del tipo de contrato</td>\n</tr>\n<tr>\n<td>contractDuration</td>\n<td>Duración del contrato</td>\n</tr>\n<tr>\n<td>durationTimeUnit</td>\n<td>0: '' , 1: Días , 2: Meses , 3: Años</td>\n</tr>\n<tr>\n<td>expirationDate</td>\n<td>Fecha de vencimiento del contrato</td>\n</tr>\n<tr>\n<td>salaryLevelId</td>\n<td>ID del nivel salarial</td>\n</tr>\n<tr>\n<td>salaryLevelCode</td>\n<td>Código del nivel salarial</td>\n</tr>\n<tr>\n<td>salaryLevelDescription</td>\n<td>Descripción del nivel salarial</td>\n</tr>\n<tr>\n<td>salaryLevelDate</td>\n<td>Fecha de asignación del nivel salarial</td>\n</tr>\n<tr>\n<td>informativeHours</td>\n<td>Horas por día informadas</td>\n</tr>\n<tr>\n<td>workingHours</td>\n<td>Horas de trabajo</td>\n</tr>\n<tr>\n<td>workHoursOnMonday</td>\n<td>Nº horas trabajadas en lunes</td>\n</tr>\n<tr>\n<td>workHoursOnTuesday</td>\n<td>Nº horas trabajadas en martes</td>\n</tr>\n<tr>\n<td>workHoursOnWednesday</td>\n<td>Nº horas trabajadas en miércoles</td>\n</tr>\n<tr>\n<td>workHoursOnThursday</td>\n<td>Nº horas trabajadas en jueves</td>\n</tr>\n<tr>\n<td>workHoursOnFriday</td>\n<td>Nº horas trabajadas en viernes</td>\n</tr>\n<tr>\n<td>workHoursOnSaturday</td>\n<td>Nº horas trabajadas en sábado</td>\n</tr>\n<tr>\n<td>workHoursOnSunday</td>\n<td>Nº horas trabajadas en domingo</td>\n</tr>\n<tr>\n<td>workOnHolidays</td>\n<td>Trabaja días festivos</td>\n</tr>\n<tr>\n<td>workHoursOnHolidays</td>\n<td>Nº horas trabajadas en festivos</td>\n</tr>\n<tr>\n<td>historicalCustomField1</td>\n<td>Campo libre histórico 1º</td>\n</tr>\n<tr>\n<td>historicalCustomField1Date</td>\n<td>Fecha de asignación del campo libre hist. 1º</td>\n</tr>\n<tr>\n<td>historicalCustomField2</td>\n<td>Campo libre histórico 2º</td>\n</tr>\n<tr>\n<td>historicalCustomField2Date</td>\n<td>Fecha de asignación del campo libre hist. 2º</td>\n</tr>\n<tr>\n<td>historicalCustomField3</td>\n<td>Campo libre histórico 3º</td>\n</tr>\n<tr>\n<td>historicalCustomField3Date</td>\n<td>Fecha de asignación del campo libre hist. 3º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField1</td>\n<td>Campo libre 1º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField2</td>\n<td>Campo libre 2º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField3</td>\n<td>Campo libre 3º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField4</td>\n<td>Campo libre 4º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField5</td>\n<td>Campo libre 5º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField6</td>\n<td>Campo libre 6º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField7</td>\n<td>Campo libre 7º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField8</td>\n<td>Campo libre 8º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField9</td>\n<td>Campo libre 9º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField10</td>\n<td>Campo libre 10º</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Nombre del empleado</td>\n</tr>\n<tr>\n<td>firstSurname</td>\n<td>Primer apellido</td>\n</tr>\n<tr>\n<td>secondSurname</td>\n<td>Segundo apellido</td>\n</tr>\n<tr>\n<td>foreignCode</td>\n<td>0: '' , 1: Pasaporte , 2: Tarjeta residente , 3: Permiso Residencia , 4: N.I. extranjero</td>\n</tr>\n<tr>\n<td>vatNumber</td>\n<td>N.I.F.</td>\n</tr>\n<tr>\n<td>isResident</td>\n<td>Residente</td>\n</tr>\n<tr>\n<td>acronymAddressId</td>\n<td>ID de la sigla del domicilio</td>\n</tr>\n<tr>\n<td>acronymAddressCode</td>\n<td>Código de la sigla</td>\n</tr>\n<tr>\n<td>address</td>\n<td>Dirección del domicilio</td>\n</tr>\n<tr>\n<td>numberType</td>\n<td>0: '' , 1: NUM , 2: KM. , 3: S/N , 4: OTR</td>\n</tr>\n<tr>\n<td>house</td>\n<td>Nº casa del domicilio</td>\n</tr>\n<tr>\n<td>hallway</td>\n<td>Portal del domicilio</td>\n</tr>\n<tr>\n<td>block</td>\n<td>Bloque del domicilio</td>\n</tr>\n<tr>\n<td>stairs</td>\n<td>Escalera del domicilio</td>\n</tr>\n<tr>\n<td>floor</td>\n<td>Piso del domicilio</td>\n</tr>\n<tr>\n<td>door</td>\n<td>Puerta del domicilio</td>\n</tr>\n<tr>\n<td>cityId</td>\n<td>ID de la población</td>\n</tr>\n<tr>\n<td>cityCode</td>\n<td>Código de la población</td>\n</tr>\n<tr>\n<td>cityDescription</td>\n<td>Descripción de la población</td>\n</tr>\n<tr>\n<td>postalCodeId</td>\n<td>ID del código postal</td>\n</tr>\n<tr>\n<td>postalCode</td>\n<td>Código postal</td>\n</tr>\n<tr>\n<td>countyId</td>\n<td>ID de la provincia</td>\n</tr>\n<tr>\n<td>countyCode</td>\n<td>Código de la provincia</td>\n</tr>\n<tr>\n<td>countyDescription</td>\n<td>Nombre de la provincia</td>\n</tr>\n<tr>\n<td>countryId</td>\n<td>ID del país</td>\n</tr>\n<tr>\n<td>countryCode</td>\n<td>Código del país</td>\n</tr>\n<tr>\n<td>countryDescription</td>\n<td>Nombre del país</td>\n</tr>\n<tr>\n<td>phoneNumber</td>\n<td>Número de teléfono</td>\n</tr>\n<tr>\n<td>mobilePhoneNumber</td>\n<td>Número de teléfono móvil</td>\n</tr>\n<tr>\n<td>email</td>\n<td>E-Mail del empleado</td>\n</tr>\n<tr>\n<td>birthDate</td>\n<td>Fecha de nacimiento</td>\n</tr>\n<tr>\n<td>cityBirthId</td>\n<td>ID de la población de nacimiento</td>\n</tr>\n<tr>\n<td>cityBirthCode</td>\n<td>Código de la población de nacimiento</td>\n</tr>\n<tr>\n<td>cityBirthDescription</td>\n<td>Nombre de la población de nacimiento</td>\n</tr>\n<tr>\n<td>countyBirthId</td>\n<td>ID de la provincia de nacimiento</td>\n</tr>\n<tr>\n<td>countyBirthCode</td>\n<td>Código de la provincia de nacimiento</td>\n</tr>\n<tr>\n<td>countyBirthDescription</td>\n<td>Nombre de la provincia de nacimiento</td>\n</tr>\n<tr>\n<td>countryBirthId</td>\n<td>ID del país de nacimiento</td>\n</tr>\n<tr>\n<td>countryBirthCode</td>\n<td>Código del país de nacimiento</td>\n</tr>\n<tr>\n<td>countryBirthDescription</td>\n<td>Nombre del país de nacimiento</td>\n</tr>\n<tr>\n<td>gender</td>\n<td>0: Hombre , 1: Mujer , 2: ''</td>\n</tr>\n<tr>\n<td>maritalStatus</td>\n<td>0: Soltero/a , 1: Casado/a , 2: Viudo/a , 3: Separado/a , 4: Divorciado/a , 5: ' '</td>\n</tr>\n<tr>\n<td>nationalityId</td>\n<td>ID de la nacionalidad del empleado</td>\n</tr>\n<tr>\n<td>nationalityCode</td>\n<td>Código de la nacionalidad del empleado</td>\n</tr>\n<tr>\n<td>nationalityDescription</td>\n<td>Descripción de la nacionalidad del empleado</td>\n</tr>\n<tr>\n<td>fatherName</td>\n<td>Nombre del padre</td>\n</tr>\n<tr>\n<td>motherName</td>\n<td>Nombre de la madre</td>\n</tr>\n<tr>\n<td>socialSecurityNumber</td>\n<td>Número de afiliación a la seguridad social</td>\n</tr>\n<tr>\n<td>trainingLevelId</td>\n<td>ID del nivel formativo</td>\n</tr>\n<tr>\n<td>trainingLevelCode</td>\n<td>Código del nivel formativo</td>\n</tr>\n<tr>\n<td>resourceCode</td>\n<td>Código de recurso del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField1</td>\n<td>Campo libre 1º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField2</td>\n<td>Campo libre 2º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField3</td>\n<td>Campo libre 3º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField4</td>\n<td>Campo libre 4º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField5</td>\n<td>Campo libre 5º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField6</td>\n<td>Campo libre 6º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField7</td>\n<td>Campo libre 7º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField8</td>\n<td>Campo libre 8º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField9</td>\n<td>Campo libre 9º del empleado</td>\n</tr>\n<tr>\n<td>employeeCustomField10</td>\n<td>Campo libre 10º del empleado</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación</td>\n</tr>\n<tr>\n<td>lastModifiedOn</td>\n<td>Fecha de última modificación</td>\n</tr>\n<tr>\n<td>deletedOn</td>\n<td>Fecha de eliminación</td>\n</tr>\n<tr>\n<td>active</td>\n<td>Indica si el contrato del empleado está activo</td>\n</tr>\n<tr>\n<td>deleted</td>\n<td>Indica si el contrato del empleado ha sido eliminado</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","workers"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"1ab4f930-3c5c-4546-9ede-f6ab1adfb52e","name":"workers","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/workers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"9eb73ada-861d-4085-80c9-de95b6b00901"},{"key":"Date","value":"Wed, 01 Jul 2026 10:47:23 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/workers\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0O2VTWWFqczMwQTdNUUdFanRBckcyRmxOVzl2K2U2V3BGTTVXTDljSTByYzQ9MTswMDsn\\\"\",\n            \"id\": \"768b85ff-d231-49af-9d79-063be0cda8d3\",\n            \"employeeId\": \"768b85ff-d231-49af-9d79-063be0cda8d3\",\n            \"employeePersonId\": \"4ca0b3a3-c54f-4390-94eb-4e52be599e77\",\n            \"employeeCode\": \"39652451Z\",\n            \"fullName\": \"GOMEZ PLAZA ANTONIO\",\n            \"mentorCompanyId\": \"146bb24d-985a-4eb7-b169-bf33bd7f34d4\",\n            \"mentorCompanyCode\": \"A34544551\",\n            \"mentorCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"contributionAccountId\": \"4d1766b7-a9a4-4893-8c9c-5f016e695d38\",\n            \"contributionAccountCode\": \"08452225455\",\n            \"hireDate\": \"2011-01-03\",\n            \"seniorityDate\": \"2011-01-03\",\n            \"structureCode\": \"01\",\n            \"organizationalUnitCode\": \"PGMBCN\",\n            \"organizationalUnitDate\": \"2011-01-03\",\n            \"organizationalUnitDescription\": \"PROGRAMACIÓN\",\n            \"terminationId\": \"00000000-0000-0000-0000-000000000000\",\n            \"terminationCode\": \"\",\n            \"terminationDate\": \"0001-01-01\",\n            \"terminationDescription\": \"\",\n            \"workCenterId\": \"cfd693b2-f852-4181-9287-82631928618f\",\n            \"workCenterCode\": \"001\",\n            \"workCenterDate\": \"2015-01-01\",\n            \"workCenterDescription\": \"Central\",\n            \"jobPositionId\": \"2c475fcc-4b4e-4863-919a-8e81648c3246\",\n            \"jobPositionCode\": \"P.JUNIOR\",\n            \"jobPositionDescription\": \"PROGRAMADOR JUNIOR\",\n            \"jobPositionDate\": \"2015-01-01\",\n            \"jobPositionAdditional1Id\": \"00000000-0000-0000-0000-000000000000\",\n            \"jobPositionAdditional1Code\": \"\",\n            \"jobPositionAdditional1Desc\": \"\",\n            \"jobPositionAdditional1Date\": \"2011-01-03\",\n            \"jobPositionAdditional2Id\": \"00000000-0000-0000-0000-000000000000\",\n            \"jobPositionAdditional2Code\": \"\",\n            \"jobPositionAdditional2Desc\": \"\",\n            \"jobPositionAdditional2Date\": \"2011-01-03\",\n            \"PositionSlot\": \"\",\n            \"PositionSlotDate\": \"2011-01-03\",\n            \"categoryId\": \"1bdf3dc8-960b-4b91-9fb5-7b98d3371383\",\n            \"categoryCode\": \"035\",\n            \"categoryDescription\": \"Recepcionista\",\n            \"workdayPercentage\": 50,\n            \"workdayType\": \"Parcial\",\n            \"workdayHours\": 20,\n            \"workHoursTimeUnit\": \"Semanales\",\n            \"workingDays\": 5,\n            \"workingDaysTimeUnit\": \"Semanales\",\n            \"workdayDate\": \"2011-01-03\",\n            \"contractId\": \"5a3e4390-0a05-43a4-a333-b6631b6297e2\",\n            \"contractCode\": \"200\",\n            \"contractSubCode\": \"\",\n            \"contractDescription\": \"INDEFINIDO T.PARCIAL ORDINARIO\",\n            \"contractDate\": \"2011-01-03\",\n            \"contractDuration\": 0,\n            \"durationTimeUnit\": \"0\",\n            \"expirationDate\": \"0001-01-01\",\n            \"salaryLevelId\": \"659185e9-2fdc-4bde-8fd7-ddc25c0f1bcb\",\n            \"salaryLevelCode\": \"G1\",\n            \"salaryLevelDescription\": \"GRUPO 1\",\n            \"salaryLevelDate\": \"2015-01-01\",\n            \"informativeHours\": false,\n            \"workingHours\": 0,\n            \"workHoursOnMonday\": 0,\n            \"workHoursOnTuesday\": 0,\n            \"workHoursOnWednesday\": 0,\n            \"workHoursOnThursday\": 0,\n            \"workHoursOnFriday\": 0,\n            \"workHoursOnSaturday\": 0,\n            \"workHoursOnSunday\": 0,\n            \"workOnHolidays\": false,\n            \"historicalCustomField1\": \"\",\n            \"historicalCustomField1Date\": \"2011-01-03\",\n            \"historicalCustomField2\": \"\",\n            \"historicalCustomField2Date\": \"2011-01-03\",\n            \"historicalCustomField3\": \"\",\n            \"historicalCustomField3Date\": \"2011-01-03\",\n            \"employeeContractCustomField1\": \"\",\n            \"employeeContractCustomField2\": \"\",\n            \"employeeContractCustomField3\": \"\",\n            \"employeeContractCustomField4\": \"\",\n            \"employeeContractCustomField5\": \"\",\n            \"employeeContractCustomField6\": \"\",\n            \"employeeContractCustomField7\": \"\",\n            \"employeeContractCustomField8\": \"\",\n            \"employeeContractCustomField9\": \"\",\n            \"employeeContractCustomField10\": \"\",\n            \"name\": \"ANTONIO\",\n            \"firstSurname\": \"GOMEZ\",\n            \"secondSurname\": \"PLAZA\",\n            \"foreignCode\": \" \",\n            \"vatNumber\": \"39652451Z\",\n            \"isResident\": true,\n            \"acronymAddressId\": \"d2180448-1405-4866-8662-520dbba5822e\",\n            \"acronymAddressCode\": \"CL\",\n            \"address\": \"PLASENCIA\",\n            \"numberType\": \" \",\n            \"house\": \"45\",\n            \"block\": \"\",\n            \"hallway\": \"\",\n            \"stairs\": \"\",\n            \"floor\": \"4\",\n            \"door\": \"2\",\n            \"cityId\": \"39576acd-9303-4497-8031-dbdd0d555eba\",\n            \"cityCode\": \"43125\",\n            \"cityDescription\": \"REUS\",\n            \"postalCodeId\": \"91a5ee43-c8bf-49e8-9196-8ec6be4d5fe2\",\n            \"postalCode\": \"43203\",\n            \"countyId\": \"6d971c08-3506-4c9d-b5b4-d78897da34c0\",\n            \"countyCode\": \"43\",\n            \"countyDescription\": \"TARRAGONA\",\n            \"countryId\": \"ec2ed5f4-9b40-4806-b067-cd9fedfdc01d\",\n            \"countryCode\": \"011\",\n            \"countryDescription\": \"ESPAÑA\",\n            \"phoneNumber\": \"977458521\",\n            \"mobilePhoneNumber\": \"\",\n            \"email\": \"\",\n            \"birthDate\": \"1971-08-22\",\n            \"cityBirthId\": \"39576acd-9303-4497-8031-dbdd0d555eba\",\n            \"cityBirthCode\": \"43125\",\n            \"cityBirthDescription\": \"REUS\",\n            \"countyBirthId\": \"6d971c08-3506-4c9d-b5b4-d78897da34c0\",\n            \"countyBirthCode\": \"43\",\n            \"countyBirthDescription\": \"TARRAGONA\",\n            \"countryBirthId\": \"ec2ed5f4-9b40-4806-b067-cd9fedfdc01d\",\n            \"countryBirthCode\": \"011\",\n            \"countryBirthDescription\": \"ESPAÑA\",\n            \"gender\": \"Hombre\",\n            \"maritalStatus\": \"Soltero/a\",\n            \"nationalityId\": \"ec2ed5f4-9b40-4806-b067-cd9fedfdc01d\",\n            \"nationalityCode\": \"011\",\n            \"nationalityDescription\": \"ESPAÑOLA\",\n            \"fatherName\": \"\",\n            \"motherName\": \"\",\n            \"socialSecurityNumber\": \"431254578525\",\n            \"trainingLevelId\": \"6f66dec9-f950-4cd9-835a-54ccc4a470f4\",\n            \"trainingLevelCode\": \"54\",\n            \"resourceCode\": \"\",\n            \"employeeFreeField1\": \"\",\n            \"employeeFreeField2\": \"\",\n            \"employeeFreeField3\": \"\",\n            \"employeeFreeField4\": \"\",\n            \"employeeFreeField5\": \"\",\n            \"employeeFreeField6\": \"\",\n            \"employeeFreeField7\": \"\",\n            \"employeeFreeField8\": \"\",\n            \"employeeFreeField9\": \"\",\n            \"employeeFreeField10\": \"\",\n            \"createdOn\": \"2026-06-18T14:08:20.983Z\",\n            \"lastModifiedOn\": \"2026-06-18T14:08:20.983Z\",\n            \"lastUpdateTerminationOn\": \"0001-01-01T00:00:00Z\",\n            \"deletedOn\": \"0001-01-01T00:00:00Z\",\n            \"active\": true,\n            \"deleted\": false\n        },\n        // ---\n    ]\n}"}],"_postman_id":"76b98fd9-a6f0-4909-ba07-24423bd11289"},{"name":"employeeContracts","id":"559ded84-0769-4ffb-89e1-c7f91e9673da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employeeContracts","description":"<p>Obtiene la lista de las contrataciones, o datos laborales, de los empleados. Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único del contrato del empleado</td>\n</tr>\n<tr>\n<td>employeeId</td>\n<td>ID del empleado</td>\n</tr>\n<tr>\n<td>employeePersonId</td>\n<td>ID de los datos de persona del empleado</td>\n</tr>\n<tr>\n<td>employeeCode</td>\n<td>Código del empleado</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>Nombre completo del empleado</td>\n</tr>\n<tr>\n<td>mentorCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>mentorCompanyCode</td>\n<td>Código de la empresa</td>\n</tr>\n<tr>\n<td>mentorCompanyName</td>\n<td>Nombre de la empresa</td>\n</tr>\n<tr>\n<td>contributionAccountId</td>\n<td>ID de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>contributionAccountCode</td>\n<td>Código de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>hireDate</td>\n<td>Fecha de contratación</td>\n</tr>\n<tr>\n<td>seniorityDate</td>\n<td>Fecha de antigüedad</td>\n</tr>\n<tr>\n<td>structureCode</td>\n<td>Código de la estructura organizativa</td>\n</tr>\n<tr>\n<td>organizationalUnitCode</td>\n<td>Código de la unidad organizativa</td>\n</tr>\n<tr>\n<td>organizationalUnitDate</td>\n<td>Fecha de la unidad organizativa</td>\n</tr>\n<tr>\n<td>organizationalUnitDescription</td>\n<td>Descripción de la unidad organizativa</td>\n</tr>\n<tr>\n<td>terminationId</td>\n<td>Identificador del motivo de baja</td>\n</tr>\n<tr>\n<td>terminationCode</td>\n<td>Código de baja</td>\n</tr>\n<tr>\n<td>terminationDate</td>\n<td>Fecha de baja</td>\n</tr>\n<tr>\n<td>terminationDescription</td>\n<td>Descripción del motivo de baja</td>\n</tr>\n<tr>\n<td>workCenterId</td>\n<td>ID del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterCode</td>\n<td>Código del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterDescription</td>\n<td>Descripción del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterDate</td>\n<td>Fecha de asignación al centro de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionId</td>\n<td>ID del puesto de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionCode</td>\n<td>Código del puesto de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionDescription</td>\n<td>Descripción del puesto de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionDate</td>\n<td>Fecha del puesto de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionAdditional1Id</td>\n<td>ID del puesto de trabajo adicional 1</td>\n</tr>\n<tr>\n<td>jobPositionAdditional1Code</td>\n<td>Códigodel puesto de trabajo adicional 1</td>\n</tr>\n<tr>\n<td>jobPositionAdditional1Desc</td>\n<td>Descripción del puesto de trabajo adicional 1</td>\n</tr>\n<tr>\n<td>jobPositionAdditional1Date</td>\n<td>Fecha del puesto de trabajo adicional 1</td>\n</tr>\n<tr>\n<td>jobPositionAdditional2Id</td>\n<td>ID del puesto de trabajo adicional 2</td>\n</tr>\n<tr>\n<td>jobPositionAdditional2Code</td>\n<td>Códigodel puesto de trabajo adicional 2</td>\n</tr>\n<tr>\n<td>jobPositionAdditional2Desc</td>\n<td>Descripción del puesto de trabajo adicional 2</td>\n</tr>\n<tr>\n<td>jobPositionAdditional2Date</td>\n<td>Fecha del puesto de trabajo adicional 2</td>\n</tr>\n<tr>\n<td>positionSlotCode</td>\n<td>Código de plaza de trabajo</td>\n</tr>\n<tr>\n<td>positionSlotDate</td>\n<td>Fecha de plaza de trabajo</td>\n</tr>\n<tr>\n<td>categoryId</td>\n<td>ID de la categoría</td>\n</tr>\n<tr>\n<td>categoryCode</td>\n<td>Código de la categoría</td>\n</tr>\n<tr>\n<td>categoryDescription</td>\n<td>Descripción de la categoría</td>\n</tr>\n<tr>\n<td>categoryDate</td>\n<td>Fecha de asignación a la categoría</td>\n</tr>\n<tr>\n<td>workdayPercentage</td>\n<td>Porcentaje de jornada</td>\n</tr>\n<tr>\n<td>workdayType</td>\n<td>0: Completa , 1: Reducida , 2: Parcial , 3: Pluriempleo</td>\n</tr>\n<tr>\n<td>workdayHours</td>\n<td>Horas semanales de trabajo</td>\n</tr>\n<tr>\n<td>workHoursTimeUnit</td>\n<td>0: Diarias , 1: Semanales , 2: Mensuales , 3: Anuales</td>\n</tr>\n<tr>\n<td>workingDays</td>\n<td>Días de trabajo</td>\n</tr>\n<tr>\n<td>workingDaysTimeUnit</td>\n<td>0: Semanales , 1: Mensuales , 2: Anuales</td>\n</tr>\n<tr>\n<td>workdayDate</td>\n<td>Fecha de asignación de la jornada</td>\n</tr>\n<tr>\n<td>contractId</td>\n<td>ID del tipo de contrato</td>\n</tr>\n<tr>\n<td>contractCode</td>\n<td>Código del tipo de contrato</td>\n</tr>\n<tr>\n<td>contractSubCode</td>\n<td>Subcódigo del tipo de contrato</td>\n</tr>\n<tr>\n<td>contractDescription</td>\n<td>Descripción del tipo de contrato</td>\n</tr>\n<tr>\n<td>contractDate</td>\n<td>Fecha de asignación del tipo de contrato</td>\n</tr>\n<tr>\n<td>contractDuration</td>\n<td>Duración del contrato</td>\n</tr>\n<tr>\n<td>durationTimeUnit</td>\n<td>0: '' , 1: Días , 2: Meses , 3: Años</td>\n</tr>\n<tr>\n<td>expirationDate</td>\n<td>Fecha de vencimiento del contrato</td>\n</tr>\n<tr>\n<td>salaryLevelId</td>\n<td>ID del nivel salarial</td>\n</tr>\n<tr>\n<td>salaryLevelCode</td>\n<td>Código del nivel salarial</td>\n</tr>\n<tr>\n<td>salaryLevelDescription</td>\n<td>Descripción del nivel salarial</td>\n</tr>\n<tr>\n<td>salaryLevelDate</td>\n<td>Fecha de asignación del nivel salarial</td>\n</tr>\n<tr>\n<td>informativeHours</td>\n<td>Horas por día informadas</td>\n</tr>\n<tr>\n<td>workingHours</td>\n<td>Horas de trabajo</td>\n</tr>\n<tr>\n<td>workHoursOnMonday</td>\n<td>Nº horas trabajadas en lunes</td>\n</tr>\n<tr>\n<td>workHoursOnTuesday</td>\n<td>Nº horas trabajadas en martes</td>\n</tr>\n<tr>\n<td>workHoursOnWednesday</td>\n<td>Nº horas trabajadas en miércoles</td>\n</tr>\n<tr>\n<td>workHoursOnThursday</td>\n<td>Nº horas trabajadas en jueves</td>\n</tr>\n<tr>\n<td>workHoursOnFriday</td>\n<td>Nº horas trabajadas en viernes</td>\n</tr>\n<tr>\n<td>workHoursOnSaturday</td>\n<td>Nº horas trabajadas en sábado</td>\n</tr>\n<tr>\n<td>workHoursOnSunday</td>\n<td>Nº horas trabajadas en domingo</td>\n</tr>\n<tr>\n<td>workOnHolidays</td>\n<td>Trabaja días festivos</td>\n</tr>\n<tr>\n<td>workHoursOnHolidays</td>\n<td>Nº horas trabajadas en festivos</td>\n</tr>\n<tr>\n<td>historicalCustomField1</td>\n<td>Campo libre histórico 1º</td>\n</tr>\n<tr>\n<td>historicalCustomField1Date</td>\n<td>Fecha de asignación del campo libre hist. 1º</td>\n</tr>\n<tr>\n<td>historicalCustomField2</td>\n<td>Campo libre histórico 2º</td>\n</tr>\n<tr>\n<td>historicalCustomField2Date</td>\n<td>Fecha de asignación del campo libre hist. 2º</td>\n</tr>\n<tr>\n<td>historicalCustomField3</td>\n<td>Campo libre histórico 3º</td>\n</tr>\n<tr>\n<td>historicalCustomField3Date</td>\n<td>Fecha de asignación del campo libre hist. 3º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField1</td>\n<td>Campo libre 1º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField2</td>\n<td>Campo libre 2º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField3</td>\n<td>Campo libre 3º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField4</td>\n<td>Campo libre 4º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField5</td>\n<td>Campo libre 5º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField6</td>\n<td>Campo libre 6º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField7</td>\n<td>Campo libre 7º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField8</td>\n<td>Campo libre 8º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField9</td>\n<td>Campo libre 9º</td>\n</tr>\n<tr>\n<td>employeeContractCustomField10</td>\n<td>Campo libre 10º</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación</td>\n</tr>\n<tr>\n<td>lastModifiedOn</td>\n<td>Fecha de última modificación</td>\n</tr>\n<tr>\n<td>deletedOn</td>\n<td>Fecha de eliminación</td>\n</tr>\n<tr>\n<td>lastUpdateTerminationOn</td>\n<td>Fecha de última modificación de la fecha de baja</td>\n</tr>\n<tr>\n<td>active</td>\n<td>Indica si el contrato del empleado está activo</td>\n</tr>\n<tr>\n<td>deleted</td>\n<td>Indica si el contrato del empleado ha sido eliminado</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","employeeContracts"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"e7267e38-289a-4f70-b4da-05fd0a04a388","name":"employeeContracts","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employeeContracts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"f217db88-7cad-4fe2-aa65-ad9681910ccb"},{"key":"Date","value":"Wed, 01 Jul 2026 10:47:30 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/employeeContracts\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0OzYvSlNmTmtRREFPc0dveWFvMU55N0p3SHl3bkUyQnlsbU9XVHo0NnF3aWM9MTswMDsn\\\"\",\n            \"id\": \"768b85ff-d231-49af-9d79-063be0cda8d3\",\n            \"employeeId\": \"768b85ff-d231-49af-9d79-063be0cda8d3\",\n            \"employeePersonId\": \"4ca0b3a3-c54f-4390-94eb-4e52be599e77\",\n            \"employeeCode\": \"39652451Z\",\n            \"fullName\": \"GOMEZ PLAZA ANTONIO\",\n            \"mentorCompanyId\": \"146bb24d-985a-4eb7-b169-bf33bd7f34d4\",\n            \"mentorCompanyCode\": \"A34544551\",\n            \"mentorCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"contributionAccountId\": \"4d1766b7-a9a4-4893-8c9c-5f016e695d38\",\n            \"contributionAccountCode\": \"08452225455\",\n            \"hireDate\": \"2011-01-03\",\n            \"seniorityDate\": \"2011-01-03\",\n            \"structureCode\": \"01\",\n            \"organizationalUnitCode\": \"PGMBCN\",\n            \"organizationalUnitDate\": \"2011-01-03\",\n            \"organizationalUnitDescription\": \"PROGRAMACIÓN\",\n            \"terminationId\": \"00000000-0000-0000-0000-000000000000\",\n            \"terminationCode\": \"\",\n            \"terminationDate\": \"0001-01-01\",\n            \"terminationDescription\": \"\",\n            \"workCenterId\": \"cfd693b2-f852-4181-9287-82631928618f\",\n            \"workCenterCode\": \"001\",\n            \"workCenterDate\": \"2015-01-01\",\n            \"workCenterDescription\": \"Central\",\n            \"jobPositionId\": \"2c475fcc-4b4e-4863-919a-8e81648c3246\",\n            \"jobPositionCode\": \"P.JUNIOR\",\n            \"jobPositionDescription\": \"PROGRAMADOR JUNIOR\",\n            \"jobPositionDate\": \"2015-01-01\",\n            \"jobPositionAdditional1Id\": \"00000000-0000-0000-0000-000000000000\",\n            \"jobPositionAdditional1Code\": \"\",\n            \"jobPositionAdditional1Desc\": \"\",\n            \"jobPositionAdditional1Date\": \"2011-01-03\",\n            \"jobPositionAdditional2Id\": \"00000000-0000-0000-0000-000000000000\",\n            \"jobPositionAdditional2Code\": \"\",\n            \"jobPositionAdditional2Desc\": \"\",\n            \"jobPositionAdditional2Date\": \"2011-01-03\",\n            \"PositionSlot\": \"\",\n            \"PositionSlotDate\": \"2011-01-03\",\n            \"categoryId\": \"1bdf3dc8-960b-4b91-9fb5-7b98d3371383\",\n            \"categoryCode\": \"035\",\n            \"categoryDescription\": \"Recepcionista\",\n            \"workdayPercentage\": 50,\n            \"workdayType\": \"Parcial\",\n            \"workdayHours\": 20,\n            \"workHoursTimeUnit\": \"Semanales\",\n            \"workingDays\": 5,\n            \"workingDaysTimeUnit\": \"Semanales\",\n            \"workdayDate\": \"2011-01-03\",\n            \"contractId\": \"5a3e4390-0a05-43a4-a333-b6631b6297e2\",\n            \"contractCode\": \"200\",\n            \"contractSubCode\": \"\",\n            \"contractDescription\": \"INDEFINIDO T.PARCIAL ORDINARIO\",\n            \"contractDate\": \"2011-01-03\",\n            \"contractDuration\": 0,\n            \"durationTimeUnit\": \"0\",\n            \"expirationDate\": \"0001-01-01\",\n            \"salaryLevelId\": \"659185e9-2fdc-4bde-8fd7-ddc25c0f1bcb\",\n            \"salaryLevelCode\": \"G1\",\n            \"salaryLevelDescription\": \"GRUPO 1\",\n            \"salaryLevelDate\": \"2015-01-01\",\n            \"informativeHours\": false,\n            \"workingHours\": 0,\n            \"workHoursOnMonday\": 0,\n            \"workHoursOnTuesday\": 0,\n            \"workHoursOnWednesday\": 0,\n            \"workHoursOnThursday\": 0,\n            \"workHoursOnFriday\": 0,\n            \"workHoursOnSaturday\": 0,\n            \"workHoursOnSunday\": 0,\n            \"workOnHolidays\": false,\n            \"historicalCustomField1\": \"\",\n            \"historicalCustomField1Date\": \"2011-01-03\",\n            \"historicalCustomField2\": \"\",\n            \"historicalCustomField2Date\": \"2011-01-03\",\n            \"historicalCustomField3\": \"\",\n            \"historicalCustomField3Date\": \"2011-01-03\",\n            \"employeeContractCustomField1\": \"\",\n            \"employeeContractCustomField2\": \"\",\n            \"employeeContractCustomField3\": \"\",\n            \"employeeContractCustomField4\": \"\",\n            \"employeeContractCustomField5\": \"\",\n            \"employeeContractCustomField6\": \"\",\n            \"employeeContractCustomField7\": \"\",\n            \"employeeContractCustomField8\": \"\",\n            \"employeeContractCustomField9\": \"\",\n            \"employeeContractCustomField10\": \"\",\n            \"createdOn\": \"2026-06-18T14:08:20.983Z\",\n            \"lastModifiedOn\": \"2026-06-18T14:08:20.983Z\",\n            \"deletedOn\": \"0001-01-01T00:00:00Z\",\n            \"lastUpdateTerminationOn\": \"0001-01-01T00:00:00Z\",\n            \"active\": true,\n            \"deleted\": false\n        },\n        // ---\n    ]\n}"}],"_postman_id":"559ded84-0769-4ffb-89e1-c7f91e9673da"},{"name":"employeeContractChanges","id":"f4128152-6415-4f30-991d-2e09de5a100b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employeeContractChanges","description":"<p>Obtiene la lista de los históricos de cambios dentro de las contrataciones (cambios de categoría, jornada, contrato, etc...).</p>\n<p>También se puede realizar la consulta filtrada por un único dato laboral o contratación con la siguiente llamada:</p>\n<p><code>{{APIbaseURL}}</code>/api/summar/labor/v1.0/companies({{APIcompanyId}})/employeeContracts(<code>{{APIemployeeContractId}}</code>)/employeeContractChanges</p>\n<p>Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Identificador único del registro de histórico de cambios</td>\n</tr>\n<tr>\n<td>employeeContractID</td>\n<td>ID del contrato del empleado</td>\n</tr>\n<tr>\n<td>employeeId</td>\n<td>ID del empleado</td>\n</tr>\n<tr>\n<td>employeePersonId</td>\n<td>ID de los datos de persona del empleado</td>\n</tr>\n<tr>\n<td>employeeCode</td>\n<td>Código del empleado</td>\n</tr>\n<tr>\n<td>fullName</td>\n<td>Nombre completo del empleado</td>\n</tr>\n<tr>\n<td>mentorCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>mentorCompanyCode</td>\n<td>Código de la empresa</td>\n</tr>\n<tr>\n<td>mentorCompanyName</td>\n<td>Nombre de la empresa</td>\n</tr>\n<tr>\n<td>contributionAccountId</td>\n<td>ID de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>contributionAccountCode</td>\n<td>Código de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>hireDate</td>\n<td>Fecha de contratación</td>\n</tr>\n<tr>\n<td>structureCode</td>\n<td>Código de la estructura organizativa</td>\n</tr>\n<tr>\n<td>organizationalUnitCode</td>\n<td>Código de la unidad organizativa</td>\n</tr>\n<tr>\n<td>organizationalUnitDate</td>\n<td>Fecha de la unidad organizativa</td>\n</tr>\n<tr>\n<td>organizationalUnitDescription</td>\n<td>Descripción de la unidad organizativa</td>\n</tr>\n<tr>\n<td>workCenterId</td>\n<td>ID del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterCode</td>\n<td>Código del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterDescription</td>\n<td>Descripción del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterDate</td>\n<td>Fecha de asignación al centro de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionId</td>\n<td>ID del puesto de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionCode</td>\n<td>Código del puesto de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionDescription</td>\n<td>Descripción del puesto de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionDate</td>\n<td>Fecha del puesto de trabajo</td>\n</tr>\n<tr>\n<td>jobPositionAdditional1Id</td>\n<td>ID del puesto de trabajo adicional 1</td>\n</tr>\n<tr>\n<td>jobPositionAdditional1Code</td>\n<td>Códigodel puesto de trabajo adicional 1</td>\n</tr>\n<tr>\n<td>jobPositionAdditional1Desc</td>\n<td>Descripción del puesto de trabajo adicional 1</td>\n</tr>\n<tr>\n<td>jobPositionAdditional1Date</td>\n<td>Fecha del puesto de trabajo adicional 1</td>\n</tr>\n<tr>\n<td>jobPositionAdditional2Id</td>\n<td>ID del puesto de trabajo adicional 2</td>\n</tr>\n<tr>\n<td>jobPositionAdditional2Code</td>\n<td>Códigodel puesto de trabajo adicional 2</td>\n</tr>\n<tr>\n<td>jobPositionAdditional2Desc</td>\n<td>Descripción del puesto de trabajo adicional 2</td>\n</tr>\n<tr>\n<td>jobPositionAdditional2Date</td>\n<td>Fecha del puesto de trabajo adicional 2</td>\n</tr>\n<tr>\n<td>positionSlotCode</td>\n<td>Código de plaza de trabajo</td>\n</tr>\n<tr>\n<td>positionSlotDate</td>\n<td>Fecha de plaza de trabajo</td>\n</tr>\n<tr>\n<td>categoryId</td>\n<td>ID de la categoría</td>\n</tr>\n<tr>\n<td>categoryCode</td>\n<td>Código de la categoría</td>\n</tr>\n<tr>\n<td>categoryDescription</td>\n<td>Descripción de la categoría</td>\n</tr>\n<tr>\n<td>categoryDate</td>\n<td>Fecha de asignación a la categoría</td>\n</tr>\n<tr>\n<td>workdayPercentage</td>\n<td>Porcentaje de jornada</td>\n</tr>\n<tr>\n<td>workdayType</td>\n<td>0: Completa , 1: Reducida , 2: Parcial , 3: Pluriempleo</td>\n</tr>\n<tr>\n<td>workdayHours</td>\n<td>Horas semanales de trabajo</td>\n</tr>\n<tr>\n<td>workHoursTimeUnit</td>\n<td>0: Diarias , 1: Semanales , 2: Mensuales , 3: Anuales</td>\n</tr>\n<tr>\n<td>workingDays</td>\n<td>Días de trabajo</td>\n</tr>\n<tr>\n<td>workingDaysTimeUnit</td>\n<td>0: Semanales , 1: Mensuales , 2: Anuales</td>\n</tr>\n<tr>\n<td>workdayDate</td>\n<td>Fecha de asignación de la jornada</td>\n</tr>\n<tr>\n<td>contractId</td>\n<td>ID del tipo de contrato</td>\n</tr>\n<tr>\n<td>contractCode</td>\n<td>Código del tipo de contrato</td>\n</tr>\n<tr>\n<td>contractSubCode</td>\n<td>Subcódigo del tipo de contrato</td>\n</tr>\n<tr>\n<td>contractDescription</td>\n<td>Descripción del tipo de contrato</td>\n</tr>\n<tr>\n<td>contractDate</td>\n<td>Fecha de asignación del tipo de contrato</td>\n</tr>\n<tr>\n<td>salaryLevelId</td>\n<td>ID del nivel salarial</td>\n</tr>\n<tr>\n<td>salaryLevelCode</td>\n<td>Código del nivel salarial</td>\n</tr>\n<tr>\n<td>salaryLevelDescription</td>\n<td>Descripción del nivel salarial</td>\n</tr>\n<tr>\n<td>salaryLevelDate</td>\n<td>Fecha de asignación del nivel salarial</td>\n</tr>\n<tr>\n<td>historicalCustomField1</td>\n<td>Campo libre histórico 1º</td>\n</tr>\n<tr>\n<td>historicalCustomField1Date</td>\n<td>Fecha de asignación del campo libre hist. 1º</td>\n</tr>\n<tr>\n<td>historicalCustomField2</td>\n<td>Campo libre histórico 2º</td>\n</tr>\n<tr>\n<td>historicalCustomField2Date</td>\n<td>Fecha de asignación del campo libre hist. 2º</td>\n</tr>\n<tr>\n<td>historicalCustomField3</td>\n<td>Campo libre histórico 3º</td>\n</tr>\n<tr>\n<td>historicalCustomField3Date</td>\n<td>Fecha de asignación del campo libre hist. 3º</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de última modificación</td>\n</tr>\n<tr>\n<td>active</td>\n<td>Indica si el contrato del empleado está activo</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","employeeContractChanges"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"f66a1636-95af-4cd4-ba92-c76df374596d","name":"employeeContractChanges","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employeeContractChanges"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"e53431a6-4a17-468c-bba5-b1f2e9bd2f4e"},{"key":"Date","value":"Wed, 01 Jul 2026 10:59:40 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/employeeContractChanges\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0O0VkQmF3RmJjWHcwVlNxTWEwbzlxYytKTHQzaWRlSk9ORzh6QXFGMytJNTA9MTswMDsn\\\"\",\n            \"id\": \"afac1f2d-b039-4a4d-9d3d-02e873bf7b55\",\n            \"employeeId\": \"30b75794-d32d-4db0-a7b1-c83d09a9b475\",\n            \"employeePersonId\": \"0c05265b-ed1f-4a8d-90a3-6c7747862d0f\",\n            \"employeeCode\": \"CICLOPS\",\n            \"fullName\": \"ROTATIVO PRUEBA CICLO\",\n            \"mentorCompanyId\": \"146bb24d-985a-4eb7-b169-bf33bd7f34d4\",\n            \"mentorCompanyCode\": \"A34544551\",\n            \"mentorCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"contributionAccountId\": \"4d1766b7-a9a4-4893-8c9c-5f016e695d38\",\n            \"contributionAccountCode\": \"08452225455\",\n            \"hireDate\": \"2024-07-01\",\n            \"structureCode\": \"01\",\n            \"organizationalUnitCode\": \"RRHH\",\n            \"organizationalUnitDate\": \"2024-07-01\",\n            \"organizationalUnitDescription\": \"RRHH\",\n            \"workCenterId\": \"cfd693b2-f852-4181-9287-82631928618f\",\n            \"workCenterCode\": \"001\",\n            \"workCenterDate\": \"2024-07-01\",\n            \"workCenterDescription\": \"Central\",\n            \"jobPositionId\": \"33c4b2f8-1322-4016-9dbb-8cb11a49dd71\",\n            \"jobPositionCode\": \"D.RRHH\",\n            \"jobPositionDescription\": \"DIRECTOR RRHH\",\n            \"jobPositionDate\": \"2024-07-01\",\n            \"jobPositionAdditional1Id\": \"00000000-0000-0000-0000-000000000000\",\n            \"jobPositionAdditional1Code\": \"\",\n            \"jobPositionAdditional1Desc\": \"\",\n            \"jobPositionAdditional1Date\": \"2024-07-01\",\n            \"jobPositionAdditional2Id\": \"00000000-0000-0000-0000-000000000000\",\n            \"jobPositionAdditional2Code\": \"\",\n            \"jobPositionAdditional2Desc\": \"\",\n            \"jobPositionAdditional2Date\": \"2024-07-01\",\n            \"PositionSlot\": \"1\",\n            \"PositionSlotDate\": \"2024-07-01\",\n            \"categoryId\": \"24681af9-d093-4bb9-91f6-651f5ac5947d\",\n            \"categoryCode\": \"417\",\n            \"categoryDescription\": \"Técnico\",\n            \"workdayPercentage\": 0,\n            \"workdayType\": \"Completa\",\n            \"workdayHours\": 40,\n            \"workHoursTimeUnit\": \"Semanales\",\n            \"workingDays\": 5,\n            \"workingDaysTimeUnit\": \"Semanales\",\n            \"workdayDate\": \"2024-07-01\",\n            \"contractId\": \"04608d87-82d9-46b3-8a28-8be1c9b569f6\",\n            \"contractCode\": \"109\",\n            \"contractSubCode\": \"\",\n            \"contractDescription\": \"TRANSFOR.INDEFINIDO T.COMPLETO\",\n            \"contractDate\": \"2024-07-01\",\n            \"salaryLevelId\": \"659185e9-2fdc-4bde-8fd7-ddc25c0f1bcb\",\n            \"salaryLevelCode\": \"G1\",\n            \"salaryLevelDescription\": \"GRUPO 1\",\n            \"salaryLevelDate\": \"2024-07-01\",\n            \"historicalCustomField1\": \"\",\n            \"historicalCustomField1Date\": \"2024-07-01\",\n            \"historicalCustomField2\": \"\",\n            \"historicalCustomField2Date\": \"2024-07-01\",\n            \"historicalCustomField3\": \"\",\n            \"historicalCustomField3Date\": \"2024-07-01\",\n            \"createdOn\": \"2026-06-18T14:08:21.407Z\",\n            \"modifiedOn\": \"2026-06-18T14:08:21.407Z\",\n            \"active\": true\n        },\n        // ---\n    ]\n}"}],"_postman_id":"f4128152-6415-4f30-991d-2e09de5a100b"}],"id":"f27f8bca-a61b-4ecb-abaa-97117960efa6","description":"<p>Funciones de consulta de datos contractuales de los empleados</p>\n","_postman_id":"f27f8bca-a61b-4ecb-abaa-97117960efa6","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}}},{"name":"🧷 Anexos","item":[{"name":"employeeAttachments","id":"e08f4913-14c1-4cb2-86aa-3f637964dfea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employeeAttachments","description":"<p>Obtiene la lista de los anexos de los empleados.</p>\n<p>Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attachemtnNo</td>\n<td>Identificador único del anexo</td>\n</tr>\n<tr>\n<td>mentorCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>mentorCompanyCode</td>\n<td>Código de la empresa</td>\n</tr>\n<tr>\n<td>mentorCompanyName</td>\n<td>nombre de la empresa</td>\n</tr>\n<tr>\n<td>employeeId</td>\n<td>ID del empleado</td>\n</tr>\n<tr>\n<td>employeeCode</td>\n<td>Código del empleado</td>\n</tr>\n<tr>\n<td>employeeName</td>\n<td>Nombre del empleado</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Descripción del anexo</td>\n</tr>\n<tr>\n<td>publish</td>\n<td>Indica si el anexo se publica en los portales web</td>\n</tr>\n<tr>\n<td>classificationCode</td>\n<td>Código de clasificación del anexo</td>\n</tr>\n<tr>\n<td>classificationSubcode</td>\n<td>Subcódigo de clasificación del anexo</td>\n</tr>\n<tr>\n<td>classificationDescription</td>\n<td>Descripción de la clasificación</td>\n</tr>\n<tr>\n<td>lasModificationDate</td>\n<td>Fecha de la última modificación del anexo</td>\n</tr>\n<tr>\n<td>lasModificationTime</td>\n<td>Hora de la última modificación del anexo</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","employeeAttachments"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"37ac83d3-a3f1-410d-8f6a-67c746c601dd","name":"employeeAttachments","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employeeAttachments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"78669ce9-e40b-4454-a17e-cf60076bf931"},{"key":"Date","value":"Wed, 01 Jul 2026 11:02:06 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/employeeAttachments\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0OzRLN0YrdkRobnhoQ3F1aTNxTFlOQUlMRXRHME5EL2xJREZLZjZqVmJnRVE9MTswMDsn\\\"\",\n            \"attachemtnNo\": 170,\n            \"mentorCompanyId\": \"146bb24d-985a-4eb7-b169-bf33bd7f34d4\",\n            \"mentorCompanyCode\": \"A34544551\",\n            \"mentorCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"employeeId\": \"af904e10-eff2-4f18-80f9-19b39c768109\",\n            \"employeeCode\": \"36712408S\",\n            \"employeeName\": \"RUEDA GALLEGO DIANA\",\n            \"description\": \"Documento protocolo Covid-19\",\n            \"publish\": true,\n            \"classificationCode\": \"NOMINA\",\n            \"classificationSubcode\": \"DOCUMENTO\",\n            \"classificationDescription\": \"Documentación\",\n            \"lastModificationDate\": \"2025-02-06\",\n            \"lastModificationTime\": \"15:59:04.557\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"e08f4913-14c1-4cb2-86aa-3f637964dfea"},{"name":"employeeAttachmentContents","id":"7a2a6ff6-99ef-46d6-a76c-c9054487f689","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employeeAttachmentContents({{APIattachmentNo}})","description":"<p>Obtiene el contenido codificado en base64 de un anexo. Esta consulta sólo permite realizarse individualmente por cada anexo.</p>\n<p>Descripción de los campos:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Campo</strong></th>\n<th><strong>Descripción</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attachmentNo</td>\n<td>Identificador único del anexo</td>\n</tr>\n<tr>\n<td>base64content</td>\n<td>Contenido del anexos en base64</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","companies({{APIcompanyId}})","employeeAttachmentContents({{APIattachmentNo}})"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"995f0d4a-5a95-47e5-a9f7-6ec7c089a7c2","name":"employeeAttachmentContents","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/companies({{APIcompanyId}})/employeeAttachmentContents({{APIattachmentNo}})"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"73aa77c4-b325-4649-a8bf-ca94e34f4936"},{"key":"Date","value":"Wed, 01 Jul 2026 11:03:00 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/api/summar/mentor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/employeeAttachmentContents/$entity\",\n    \"@odata.etag\": \"W/\\\"JzQ0O2VYazhrb1NtTmI3Vlk5eEk0a3YwNGJvSDk1TVI1OVkydXZKem9qQkpDRE09MTswMDsn\\\"\",\n    \"attachmentNo\": 170,\n    \"base64content\": \"JVBERi0xLjUNCjQgMCBvYmoNCjw8L1R5c.............AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"\n}"}],"_postman_id":"7a2a6ff6-99ef-46d6-a76c-c9054487f689"}],"id":"eac8abae-dccb-4741-b8be-8fa333ed61a4","description":"<p>Funciones de consulta de anexos de los empleados</p>\n","_postman_id":"eac8abae-dccb-4741-b8be-8fa333ed61a4","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}}},{"name":"🏷️ Definición campos","item":[{"name":"GeneralMetadata","id":"a4488630-5a22-4e96-b568-3102e5f46fc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/general/v1.0/$metadata","description":"<p>Obtiene la información técnica (tipo de dato y longitud) de los campos que devuelve cada consulta de los servicios publicados de la configuración general.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","general","v1.0","$metadata"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"ba5ffb8d-70d1-4213-93b2-77d2bf4d3fe2","name":"GeneralMetadata","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/general/v1.0/$metadata"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/xml"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"41c76595-468f-48c6-b31a-e96254aa47ba"},{"key":"Date","value":"Wed, 01 Jul 2026 15:19:22 GMT"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<edmx:Edmx Version=\"4.0\" xmlns:edmx=\"http://docs.oasis-open.org/odata/ns/edmx\">\n    <edmx:DataServices>\n        <Schema Namespace=\"Microsoft.NAV\" xmlns=\"http://docs.oasis-open.org/odata/ns/edm\">\n            <EntityType Name=\"activity\">\n                <Key>\n                    <PropertyRef Name=\"id\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" Nullable=\"false\" />\n                <Property Name=\"code\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"customerId\" Type=\"Edm.Guid\" />\n                <Property Name=\"customerCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"customerName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"description\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"startDate\" Type=\"Edm.Date\" />\n                <Property Name=\"endDate\" Type=\"Edm.Date\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"createdBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <NavigationProperty Name=\"customer\" Type=\"Microsoft.NAV.customer\" ContainsTarget=\"true\" />\n            </EntityType>\n            <EntityType Name=\"realEstate\">\n                <Key>\n                    <PropertyRef Name=\"id\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" Nullable=\"false\" />\n                <Property Name=\"code\" Type=\"Edm.String\" MaxLength=\"4\" />\n                <Property Name=\"customerCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"customerId\" Type=\"Edm.Guid\" />\n                <Property Name=\"address\" Type=\"Edm.String\" MaxLength=\"40\" />\n                <Property Name=\"cadastralReference\" Type=\"Edm.String\" MaxLength=\"25\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"createdBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <NavigationProperty Name=\"customer\" Type=\"Microsoft.NAV.customer\" ContainsTarget=\"true\" />\n            </EntityType>\n            <EntityType Name=\"customer\">\n                <Key>\n                    <PropertyRef Name=\"id\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" Nullable=\"false\" />\n                <Property Name=\"code\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"name\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"vatRegistrationNo\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"createdBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n            </EntityType>\n            <EntityType Name=\"realEstatePurchase\">\n                <Key>\n                    <PropertyRef Name=\"id\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" Nullable=\"false\" />\n                <Property Name=\"companyCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"companyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"accountingVendorCode\" Type=\"Edm.String\" MaxLength=\"20\" />\n                <Property Name=\"accountingVendorId\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" MaxLength=\"4\" />\n                <Property Name=\"customerCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"customerId\" Type=\"Edm.Guid\" />\n                <Property Name=\"address\" Type=\"Edm.String\" MaxLength=\"40\" />\n                <Property Name=\"cadastralReference\" Type=\"Edm.String\" MaxLength=\"25\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"createdBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <NavigationProperty Name=\"customer\" Type=\"Microsoft.NAV.customer\" ContainsTarget=\"true\" />\n            </EntityType>\n            <EntityType Name=\"taxSetup\">\n                <Key>\n                    <PropertyRef Name=\"id\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" Nullable=\"false\" />\n                <Property Name=\"code\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"startDate\" Type=\"Edm.Date\" />\n                <Property Name=\"type\" Type=\"Edm.String\" />\n                <Property Name=\"description\" Type=\"Edm.String\" MaxLength=\"40\" />\n                <Property Name=\"vatPct\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"ecPct\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"vatSubject\" Type=\"Edm.Boolean\" />\n                <Property Name=\"vatExempt\" Type=\"Edm.Boolean\" />\n                <Property Name=\"vatAlreadyCharged\" Type=\"Edm.Boolean\" />\n                <Property Name=\"ec\" Type=\"Edm.Boolean\" />\n                <Property Name=\"agriculturalVAT\" Type=\"Edm.Boolean\" />\n                <Property Name=\"deductibleVAT\" Type=\"Edm.Boolean\" />\n                <Property Name=\"operationType\" Type=\"Edm.String\" />\n                <Property Name=\"vatCashRegime\" Type=\"Edm.Boolean\" />\n                <Property Name=\"oneStopShop\" Type=\"Edm.Boolean\" />\n                <Property Name=\"vatExemptionCode\" Type=\"Edm.String\" MaxLength=\"2\" />\n                <Property Name=\"vatExemptionType\" Type=\"Edm.String\" />\n                <Property Name=\"igicExemptionCode\" Type=\"Edm.String\" MaxLength=\"2\" />\n                <Property Name=\"igicExemptionType\" Type=\"Edm.String\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"createdBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n            </EntityType>\n            <EntityType Name=\"acronym\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"2\" />\n                <Property Name=\"description\" Type=\"Edm.String\" MaxLength=\"20\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"createdBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n            </EntityType>\n            <EntityType Name=\"city\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"10\" />\n                <Property Name=\"name\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"cityCodeINE\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"createdBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n            </EntityType>\n            <EntityType Name=\"postalCode\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"10\" />\n                <Property Name=\"name\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"countyCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"countyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"createdBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"countyName\" Type=\"Edm.String\" MaxLength=\"30\" />\n            </EntityType>\n            <EntityType Name=\"county\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"10\" />\n                <Property Name=\"name\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"createdBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n            </EntityType>\n            <EntityType Name=\"country\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"3\" />\n                <Property Name=\"name\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"alphabeticalCountryCode\" Type=\"Edm.String\" MaxLength=\"2\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"createdBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n            </EntityType>\n            <EntityType Name=\"collaborator\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"10\" />\n                <Property Name=\"name\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"deactivated\" Type=\"Edm.Boolean\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"createdBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n            </EntityType>\n            <EntityType Name=\"roadType\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"5\" />\n                <Property Name=\"name\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"createdBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n            </EntityType>\n            <EntityType Name=\"paymentMethod\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"10\" />\n                <Property Name=\"description\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"createdBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n            </EntityType>\n            <EntityType Name=\"paymentTerm\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"10\" />\n                <Property Name=\"description\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"createdBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n            </EntityType>\n            <EntityType Name=\"edsWithholdingSetup\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"10\" />\n                <Property Name=\"perceptionType\" Type=\"Edm.String\" MaxLength=\"4\" />\n                <Property Name=\"withholdingType\" Type=\"Edm.String\" MaxLength=\"4\" />\n                <Property Name=\"calculationType\" Type=\"Edm.String\" MaxLength=\"4\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"createdBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n            </EntityType>\n            <EntityType Name=\"terminationCode\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"3\" />\n                <Property Name=\"description\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"redCode\" Type=\"Edm.String\" MaxLength=\"2\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"createdBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedBy\" Type=\"Edm.String\" MaxLength=\"50\" />\n            </EntityType>\n            <EntityType Name=\"company\">\n                <Key>\n                    <PropertyRef Name=\"id\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" Nullable=\"false\" />\n                <Property Name=\"systemVersion\" Type=\"Edm.String\" />\n                <Property Name=\"name\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"displayName\" Type=\"Edm.String\" MaxLength=\"250\" />\n                <Property Name=\"businessProfileId\" Type=\"Edm.String\" MaxLength=\"250\" />\n                <NavigationProperty Name=\"activities\" Type=\"Collection(Microsoft.NAV.activity)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"realEstates\" Type=\"Collection(Microsoft.NAV.realEstate)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"customers\" Type=\"Collection(Microsoft.NAV.customer)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"realEstatePurchases\" Type=\"Collection(Microsoft.NAV.realEstatePurchase)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"taxSetups\" Type=\"Collection(Microsoft.NAV.taxSetup)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"acronyms\" Type=\"Collection(Microsoft.NAV.acronym)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"cities\" Type=\"Collection(Microsoft.NAV.city)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"postalCodes\" Type=\"Collection(Microsoft.NAV.postalCode)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"counties\" Type=\"Collection(Microsoft.NAV.county)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"countries\" Type=\"Collection(Microsoft.NAV.country)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"collaborators\" Type=\"Collection(Microsoft.NAV.collaborator)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"roadTypes\" Type=\"Collection(Microsoft.NAV.roadType)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"paymentMethods\" Type=\"Collection(Microsoft.NAV.paymentMethod)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"paymentTerms\" Type=\"Collection(Microsoft.NAV.paymentTerm)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"edsWithholdingSetups\" Type=\"Collection(Microsoft.NAV.edsWithholdingSetup)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"terminationCodes\" Type=\"Collection(Microsoft.NAV.terminationCode)\" ContainsTarget=\"true\" />\n                <Annotation Term=\"OData.Community.Keys.V1.AlternateKeys\">\n                    <Collection>\n                        <Record Type=\"OData.Community.Keys.V1.AlternateKey\">\n                            <PropertyValue Property=\"Key\">\n                                <Collection>\n                                    <Record Type=\"OData.Community.Keys.V1.PropertyRef\">\n                                        <PropertyValue Property=\"Alias\" String=\"businessProfileId\" />\n                                        <PropertyValue Property=\"Name\" PropertyPath=\"businessProfileId\" />\n                                    </Record>\n                                </Collection>\n                            </PropertyValue>\n                        </Record>\n                        <Record Type=\"OData.Community.Keys.V1.AlternateKey\">\n                            <PropertyValue Property=\"Key\">\n                                <Collection>\n                                    <Record Type=\"OData.Community.Keys.V1.PropertyRef\">\n                                        <PropertyValue Property=\"Alias\" String=\"name\" />\n                                        <PropertyValue Property=\"Name\" PropertyPath=\"name\" />\n                                    </Record>\n                                </Collection>\n                            </PropertyValue>\n                        </Record>\n                    </Collection>\n                </Annotation>\n            </EntityType>\n            <EntityType Name=\"subscriptions\">\n                <Key>\n                    <PropertyRef Name=\"subscriptionId\" />\n                </Key>\n                <Property Name=\"subscriptionId\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"150\" />\n                <Property Name=\"notificationUrl\" Type=\"Edm.String\" />\n                <Property Name=\"resource\" Type=\"Edm.String\" />\n                <Property Name=\"userId\" Type=\"Edm.Guid\" />\n                <Property Name=\"lastModifiedDateTime\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"clientState\" Type=\"Edm.String\" MaxLength=\"250\" />\n                <Property Name=\"expirationDateTime\" Type=\"Edm.DateTimeOffset\" />\n            </EntityType>\n            <EntityContainer Name=\"NAV\">\n                <EntitySet Name=\"activities\" EntityType=\"Microsoft.NAV.activity\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"realEstates\" EntityType=\"Microsoft.NAV.realEstate\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"customers\" EntityType=\"Microsoft.NAV.customer\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"realEstatePurchases\" EntityType=\"Microsoft.NAV.realEstatePurchase\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"taxSetups\" EntityType=\"Microsoft.NAV.taxSetup\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"acronyms\" EntityType=\"Microsoft.NAV.acronym\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"cities\" EntityType=\"Microsoft.NAV.city\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"postalCodes\" EntityType=\"Microsoft.NAV.postalCode\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"counties\" EntityType=\"Microsoft.NAV.county\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"countries\" EntityType=\"Microsoft.NAV.country\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"collaborators\" EntityType=\"Microsoft.NAV.collaborator\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"roadTypes\" EntityType=\"Microsoft.NAV.roadType\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"paymentMethods\" EntityType=\"Microsoft.NAV.paymentMethod\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"paymentTerms\" EntityType=\"Microsoft.NAV.paymentTerm\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"edsWithholdingSetups\" EntityType=\"Microsoft.NAV.edsWithholdingSetup\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"terminationCodes\" EntityType=\"Microsoft.NAV.terminationCode\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"companies\" EntityType=\"Microsoft.NAV.company\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"subscriptions\" EntityType=\"Microsoft.NAV.subscriptions\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"true\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"true\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"true\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n            </EntityContainer>\n        </Schema>\n    </edmx:DataServices>\n</edmx:Edmx>"}],"_postman_id":"a4488630-5a22-4e96-b568-3102e5f46fc1"},{"name":"MentorMetadata","id":"caf4b336-d401-422d-aea2-a064dee07e37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/$metadata","description":"<p>Obtiene la información técnica (tipo de dato y longitud) de los campos que devuelve cada consulta del resto de servicios publicados.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}},"urlObject":{"path":["api","summar","mentor","v1.0","$metadata"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"3c143772-3bc2-4e94-b0ea-797a2dd54ce5","name":"MentorMetadata","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/mentor/v1.0/$metadata"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/xml"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.0"},{"key":"OData-Version","value":"4.0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Credentials","value":"true"},{"key":"Access-Control-Expose-Headers","value":"Date, Content-Length, Server, OData-Version"},{"key":"request-id","value":"f065425f-47da-450d-abde-16376b6bbf8b"},{"key":"Date","value":"Wed, 01 Jul 2026 15:19:26 GMT"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<edmx:Edmx Version=\"4.0\" xmlns:edmx=\"http://docs.oasis-open.org/odata/ns/edmx\">\n    <edmx:DataServices>\n        <Schema Namespace=\"Microsoft.NAV\" xmlns=\"http://docs.oasis-open.org/odata/ns/edm\">\n            <EntityType Name=\"employee\">\n                <Key>\n                    <PropertyRef Name=\"id\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" Nullable=\"false\" />\n                <Property Name=\"mentorCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"mentorCompanyCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"mentorCompanyName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"employeePersonId\" Type=\"Edm.Guid\" />\n                <Property Name=\"employeeCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"name\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"firstSurname\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"secondSurname\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"fullName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"foreignCode\" Type=\"Edm.String\" />\n                <Property Name=\"vatNumber\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"isResident\" Type=\"Edm.Boolean\" />\n                <Property Name=\"acronymAddressId\" Type=\"Edm.Guid\" />\n                <Property Name=\"acronymAddressCode\" Type=\"Edm.String\" MaxLength=\"2\" />\n                <Property Name=\"address\" Type=\"Edm.String\" MaxLength=\"40\" />\n                <Property Name=\"numberType\" Type=\"Edm.String\" />\n                <Property Name=\"house\" Type=\"Edm.String\" MaxLength=\"4\" />\n                <Property Name=\"block\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"hallway\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"stairs\" Type=\"Edm.String\" MaxLength=\"4\" />\n                <Property Name=\"floor\" Type=\"Edm.String\" MaxLength=\"4\" />\n                <Property Name=\"door\" Type=\"Edm.String\" MaxLength=\"4\" />\n                <Property Name=\"cityId\" Type=\"Edm.Guid\" />\n                <Property Name=\"cityCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"cityDescription\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"postalCodeId\" Type=\"Edm.Guid\" />\n                <Property Name=\"postalCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"countyCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"countyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countyDescription\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"countryCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"countryId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countryDescription\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"phoneNumber\" Type=\"Edm.String\" MaxLength=\"20\" />\n                <Property Name=\"mobilePhoneNumber\" Type=\"Edm.String\" MaxLength=\"20\" />\n                <Property Name=\"email\" Type=\"Edm.String\" MaxLength=\"100\" />\n                <Property Name=\"birthDate\" Type=\"Edm.Date\" />\n                <Property Name=\"cityBirthId\" Type=\"Edm.Guid\" />\n                <Property Name=\"cityBirthCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"cityBirthDescription\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"countyBirthId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countyBirthCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"countyBirthDescription\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"countryBirthId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countryBirthCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"countryBirthDescription\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"gender\" Type=\"Edm.String\" />\n                <Property Name=\"maritalStatus\" Type=\"Edm.String\" />\n                <Property Name=\"nationalityId\" Type=\"Edm.Guid\" />\n                <Property Name=\"nationalityCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"nationalityDescription\" Type=\"Edm.String\" MaxLength=\"20\" />\n                <Property Name=\"fatherName\" Type=\"Edm.String\" MaxLength=\"15\" />\n                <Property Name=\"motherName\" Type=\"Edm.String\" MaxLength=\"15\" />\n                <Property Name=\"socialSecurityNumber\" Type=\"Edm.String\" MaxLength=\"12\" />\n                <Property Name=\"trainingLevelId\" Type=\"Edm.Guid\" />\n                <Property Name=\"trainingLevelCode\" Type=\"Edm.String\" MaxLength=\"2\" />\n                <Property Name=\"resourceCode\" Type=\"Edm.String\" MaxLength=\"20\" />\n                <Property Name=\"employeeCustomField1\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeCustomField2\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeCustomField3\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeCustomField4\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeCustomField5\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeCustomField6\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeCustomField7\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeCustomField8\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeCustomField9\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeCustomField0\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"lastModifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"deletedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"active\" Type=\"Edm.Boolean\" />\n                <Property Name=\"deleted\" Type=\"Edm.Boolean\" />\n            </EntityType>\n            <EntityType Name=\"employeePhoto\">\n                <Key>\n                    <PropertyRef Name=\"id\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" Nullable=\"false\" />\n                <Property Name=\"companyCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"employeeCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"base64content\" Type=\"Edm.String\" />\n            </EntityType>\n            <EntityType Name=\"worker\">\n                <Key>\n                    <PropertyRef Name=\"id\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" Nullable=\"false\" />\n                <Property Name=\"employeeId\" Type=\"Edm.Guid\" />\n                <Property Name=\"employeePersonId\" Type=\"Edm.Guid\" />\n                <Property Name=\"employeeCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"fullName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"mentorCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"mentorCompanyCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"mentorCompanyName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"contributionAccountId\" Type=\"Edm.Guid\" />\n                <Property Name=\"contributionAccountCode\" Type=\"Edm.String\" MaxLength=\"11\" />\n                <Property Name=\"hireDate\" Type=\"Edm.Date\" />\n                <Property Name=\"seniorityDate\" Type=\"Edm.Date\" />\n                <Property Name=\"structureId\" Type=\"Edm.Guid\" />\n                <Property Name=\"structureCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"structureDate\" Type=\"Edm.Date\" />\n                <Property Name=\"structureDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"organizationalUnitId\" Type=\"Edm.Guid\" />\n                <Property Name=\"organizationalUnitCode\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"organizationalUnitDate\" Type=\"Edm.Date\" />\n                <Property Name=\"organizationalUnitDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"terminationId\" Type=\"Edm.Guid\" />\n                <Property Name=\"terminationCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"terminationDate\" Type=\"Edm.Date\" />\n                <Property Name=\"terminationDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"workCenterId\" Type=\"Edm.Guid\" />\n                <Property Name=\"workCenterCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"workCenterDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"workCenterDate\" Type=\"Edm.Date\" />\n                <Property Name=\"jobPositionId\" Type=\"Edm.Guid\" />\n                <Property Name=\"jobPositionCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"jobPositionDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionDate\" Type=\"Edm.Date\" />\n                <Property Name=\"jobPositionAdditional1Id\" Type=\"Edm.Guid\" />\n                <Property Name=\"jobPositionAdditional1Code\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"jobPositionAdditional1Desc\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionAdditional1Date\" Type=\"Edm.Date\" />\n                <Property Name=\"jobPositionAdditional2Id\" Type=\"Edm.Guid\" />\n                <Property Name=\"jobPositionAdditional2Code\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"jobPositionAdditional2Desc\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionAdditional2Date\" Type=\"Edm.Date\" />\n                <Property Name=\"PositionSlotCode\" Type=\"Edm.String\" MaxLength=\"20\" />\n                <Property Name=\"PositionSlotDate\" Type=\"Edm.Date\" />\n                <Property Name=\"categoryId\" Type=\"Edm.Guid\" />\n                <Property Name=\"categoryCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"categoryDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"workdayPercentage\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workdayType\" Type=\"Edm.String\" />\n                <Property Name=\"workdayHours\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workHoursTimeUnit\" Type=\"Edm.String\" />\n                <Property Name=\"workingDays\" Type=\"Edm.Int32\" />\n                <Property Name=\"workingDaysTimeUnit\" Type=\"Edm.String\" />\n                <Property Name=\"workdayDate\" Type=\"Edm.Date\" />\n                <Property Name=\"contractId\" Type=\"Edm.Guid\" />\n                <Property Name=\"contractCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"contractSubCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"contractDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"contractDate\" Type=\"Edm.Date\" />\n                <Property Name=\"contractDuration\" Type=\"Edm.Int32\" />\n                <Property Name=\"durationTimeUnit\" Type=\"Edm.String\" />\n                <Property Name=\"expirationDate\" Type=\"Edm.Date\" />\n                <Property Name=\"salaryLevelId\" Type=\"Edm.Guid\" />\n                <Property Name=\"salaryLevelCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"salaryLevelDescription\" Type=\"Edm.String\" MaxLength=\"40\" />\n                <Property Name=\"salaryLevelDate\" Type=\"Edm.Date\" />\n                <Property Name=\"informativeHours\" Type=\"Edm.Boolean\" />\n                <Property Name=\"workingHours\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workHoursOnMonday\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workHoursOnTuesday\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workHoursOnWednesday\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workHoursOnThursday\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workHoursOnFriday\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workHoursOnSaturday\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workHoursOnSunday\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workOnHolidays\" Type=\"Edm.Boolean\" />\n                <Property Name=\"historicalCustomField1\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"historicalCustomField1Date\" Type=\"Edm.Date\" />\n                <Property Name=\"historicalCustomField2\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"historicalCustomField2Date\" Type=\"Edm.Date\" />\n                <Property Name=\"historicalCustomField3\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"historicalCustomField3Date\" Type=\"Edm.Date\" />\n                <Property Name=\"employeeContractCustomField1\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField2\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField3\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField4\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField5\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField6\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField7\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField8\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField9\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField10\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"name\" Type=\"Edm.String\" />\n                <Property Name=\"firstSurname\" Type=\"Edm.String\" />\n                <Property Name=\"secondSurname\" Type=\"Edm.String\" />\n                <Property Name=\"foreignCode\" Type=\"Edm.String\" />\n                <Property Name=\"vatNumber\" Type=\"Edm.String\" />\n                <Property Name=\"isResident\" Type=\"Edm.Boolean\" />\n                <Property Name=\"acronymAddressId\" Type=\"Edm.Guid\" />\n                <Property Name=\"acronymAddressCode\" Type=\"Edm.String\" />\n                <Property Name=\"address\" Type=\"Edm.String\" />\n                <Property Name=\"numberType\" Type=\"Edm.String\" />\n                <Property Name=\"house\" Type=\"Edm.String\" />\n                <Property Name=\"hallway\" Type=\"Edm.String\" />\n                <Property Name=\"block\" Type=\"Edm.String\" />\n                <Property Name=\"stairs\" Type=\"Edm.String\" />\n                <Property Name=\"floor\" Type=\"Edm.String\" />\n                <Property Name=\"door\" Type=\"Edm.String\" />\n                <Property Name=\"cityId\" Type=\"Edm.Guid\" />\n                <Property Name=\"cityCode\" Type=\"Edm.String\" />\n                <Property Name=\"cityDescription\" Type=\"Edm.String\" />\n                <Property Name=\"postalCodeId\" Type=\"Edm.Guid\" />\n                <Property Name=\"postalCode\" Type=\"Edm.String\" />\n                <Property Name=\"countyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countyCode\" Type=\"Edm.String\" />\n                <Property Name=\"countyDescription\" Type=\"Edm.String\" />\n                <Property Name=\"countryId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countryCode\" Type=\"Edm.String\" />\n                <Property Name=\"countryDescription\" Type=\"Edm.String\" />\n                <Property Name=\"phoneNumber\" Type=\"Edm.String\" />\n                <Property Name=\"mobilePhoneNumber\" Type=\"Edm.String\" />\n                <Property Name=\"email\" Type=\"Edm.String\" />\n                <Property Name=\"birthDate\" Type=\"Edm.Date\" />\n                <Property Name=\"cityBirthId\" Type=\"Edm.Guid\" />\n                <Property Name=\"cityBirthCode\" Type=\"Edm.String\" />\n                <Property Name=\"cityBirthDescription\" Type=\"Edm.String\" />\n                <Property Name=\"countyBirthId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countyBirthCode\" Type=\"Edm.String\" />\n                <Property Name=\"countyBirthDescription\" Type=\"Edm.String\" />\n                <Property Name=\"countryBirthId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countryBirthCode\" Type=\"Edm.String\" />\n                <Property Name=\"countryBirthDescription\" Type=\"Edm.String\" />\n                <Property Name=\"gender\" Type=\"Edm.String\" />\n                <Property Name=\"maritalStatus\" Type=\"Edm.String\" />\n                <Property Name=\"nationalityId\" Type=\"Edm.Guid\" />\n                <Property Name=\"nationalityCode\" Type=\"Edm.String\" />\n                <Property Name=\"nationalityDescription\" Type=\"Edm.String\" />\n                <Property Name=\"fatherName\" Type=\"Edm.String\" />\n                <Property Name=\"motherName\" Type=\"Edm.String\" />\n                <Property Name=\"socialSecurityNumber\" Type=\"Edm.String\" />\n                <Property Name=\"trainingLevelId\" Type=\"Edm.Guid\" />\n                <Property Name=\"trainingLevelCode\" Type=\"Edm.String\" />\n                <Property Name=\"resourceCode\" Type=\"Edm.String\" />\n                <Property Name=\"employeeCustomField1\" Type=\"Edm.String\" />\n                <Property Name=\"employeeCustomField2\" Type=\"Edm.String\" />\n                <Property Name=\"employeeCustomField3\" Type=\"Edm.String\" />\n                <Property Name=\"employeeCustomField4\" Type=\"Edm.String\" />\n                <Property Name=\"employeeCustomField5\" Type=\"Edm.String\" />\n                <Property Name=\"employeeCustomField6\" Type=\"Edm.String\" />\n                <Property Name=\"employeeCustomField7\" Type=\"Edm.String\" />\n                <Property Name=\"employeeCustomField8\" Type=\"Edm.String\" />\n                <Property Name=\"employeeCustomField9\" Type=\"Edm.String\" />\n                <Property Name=\"employeeCustomField10\" Type=\"Edm.String\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"lastModifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"lastUpdateTerminationOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"deletedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"active\" Type=\"Edm.Boolean\" />\n                <Property Name=\"deleted\" Type=\"Edm.Boolean\" />\n            </EntityType>\n            <EntityType Name=\"employeeContract\">\n                <Key>\n                    <PropertyRef Name=\"id\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" Nullable=\"false\" />\n                <Property Name=\"employeeId\" Type=\"Edm.Guid\" />\n                <Property Name=\"employeePersonId\" Type=\"Edm.Guid\" />\n                <Property Name=\"employeeCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"fullName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"mentorCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"mentorCompanyCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"mentorCompanyName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"contributionAccountId\" Type=\"Edm.Guid\" />\n                <Property Name=\"contributionAccountCode\" Type=\"Edm.String\" MaxLength=\"11\" />\n                <Property Name=\"hireDate\" Type=\"Edm.Date\" />\n                <Property Name=\"seniorityDate\" Type=\"Edm.Date\" />\n                <Property Name=\"structureId\" Type=\"Edm.Guid\" />\n                <Property Name=\"structureCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"structureDate\" Type=\"Edm.Date\" />\n                <Property Name=\"structureDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"organizationalUnitId\" Type=\"Edm.Guid\" />\n                <Property Name=\"organizationalUnitCode\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"organizationalUnitDate\" Type=\"Edm.Date\" />\n                <Property Name=\"organizationalUnitDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"terminationId\" Type=\"Edm.Guid\" />\n                <Property Name=\"terminationCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"terminationDate\" Type=\"Edm.Date\" />\n                <Property Name=\"terminationDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"workCenterId\" Type=\"Edm.Guid\" />\n                <Property Name=\"workCenterCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"workCenterDate\" Type=\"Edm.Date\" />\n                <Property Name=\"workCenterDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionId\" Type=\"Edm.Guid\" />\n                <Property Name=\"jobPositionCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"jobPositionDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionDate\" Type=\"Edm.Date\" />\n                <Property Name=\"jobPositionAdditional1Id\" Type=\"Edm.Guid\" />\n                <Property Name=\"jobPositionAdditional1Code\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"jobPositionAdditional1Desc\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionAdditional1Date\" Type=\"Edm.Date\" />\n                <Property Name=\"jobPositionAdditional2Id\" Type=\"Edm.Guid\" />\n                <Property Name=\"jobPositionAdditional2Code\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"jobPositionAdditional2Desc\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionAdditional2Date\" Type=\"Edm.Date\" />\n                <Property Name=\"PositionSlotCode\" Type=\"Edm.String\" MaxLength=\"20\" />\n                <Property Name=\"PositionSlotDate\" Type=\"Edm.Date\" />\n                <Property Name=\"categoryId\" Type=\"Edm.Guid\" />\n                <Property Name=\"categoryCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"categoryDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"workdayPercentage\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workdayType\" Type=\"Edm.String\" />\n                <Property Name=\"workdayHours\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workHoursTimeUnit\" Type=\"Edm.String\" />\n                <Property Name=\"workingDays\" Type=\"Edm.Int32\" />\n                <Property Name=\"workingDaysTimeUnit\" Type=\"Edm.String\" />\n                <Property Name=\"workdayDate\" Type=\"Edm.Date\" />\n                <Property Name=\"contractId\" Type=\"Edm.Guid\" />\n                <Property Name=\"contractCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"contractSubCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"contractDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"contractDate\" Type=\"Edm.Date\" />\n                <Property Name=\"contractDuration\" Type=\"Edm.Int32\" />\n                <Property Name=\"durationTimeUnit\" Type=\"Edm.String\" />\n                <Property Name=\"expirationDate\" Type=\"Edm.Date\" />\n                <Property Name=\"salaryLevelId\" Type=\"Edm.Guid\" />\n                <Property Name=\"salaryLevelCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"salaryLevelDescription\" Type=\"Edm.String\" MaxLength=\"40\" />\n                <Property Name=\"salaryLevelDate\" Type=\"Edm.Date\" />\n                <Property Name=\"informativeHours\" Type=\"Edm.Boolean\" />\n                <Property Name=\"workingHours\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workHoursOnMonday\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workHoursOnTuesday\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workHoursOnWednesday\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workHoursOnThursday\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workHoursOnFriday\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workHoursOnSaturday\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workHoursOnSunday\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workOnHolidays\" Type=\"Edm.Boolean\" />\n                <Property Name=\"historicalCustomField1\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"historicalCustomField1Date\" Type=\"Edm.Date\" />\n                <Property Name=\"historicalCustomField2\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"historicalCustomField2Date\" Type=\"Edm.Date\" />\n                <Property Name=\"historicalCustomField3\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"historicalCustomField3Date\" Type=\"Edm.Date\" />\n                <Property Name=\"employeeContractCustomField1\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField2\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField3\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField4\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField5\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField6\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField7\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField8\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField9\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"employeeContractCustomField10\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"lastModifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"deletedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"lastUpdateTerminationOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"active\" Type=\"Edm.Boolean\" />\n                <Property Name=\"deleted\" Type=\"Edm.Boolean\" />\n            </EntityType>\n            <EntityType Name=\"employeeContractChange\">\n                <Key>\n                    <PropertyRef Name=\"id\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" Nullable=\"false\" />\n                <Property Name=\"employeeId\" Type=\"Edm.Guid\" />\n                <Property Name=\"employeePersonId\" Type=\"Edm.Guid\" />\n                <Property Name=\"employeeCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"fullName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"mentorCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"mentorCompanyCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"mentorCompanyName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"contributionAccountId\" Type=\"Edm.Guid\" />\n                <Property Name=\"contributionAccountCode\" Type=\"Edm.String\" MaxLength=\"11\" />\n                <Property Name=\"hireDate\" Type=\"Edm.Date\" />\n                <Property Name=\"structureId\" Type=\"Edm.Guid\" />\n                <Property Name=\"structureCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"structureDate\" Type=\"Edm.Date\" />\n                <Property Name=\"structureDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"organizationalUnitId\" Type=\"Edm.Guid\" />\n                <Property Name=\"organizationalUnitCode\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"organizationalUnitDate\" Type=\"Edm.Date\" />\n                <Property Name=\"organizationalUnitDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"workCenterId\" Type=\"Edm.Guid\" />\n                <Property Name=\"workCenterCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"workCenterDate\" Type=\"Edm.Date\" />\n                <Property Name=\"workCenterDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionId\" Type=\"Edm.Guid\" />\n                <Property Name=\"jobPositionCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"jobPositionDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionDate\" Type=\"Edm.Date\" />\n                <Property Name=\"jobPositionAdditional1Id\" Type=\"Edm.Guid\" />\n                <Property Name=\"jobPositionAdditional1Code\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"jobPositionAdditional1Desc\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionAdditional1Date\" Type=\"Edm.Date\" />\n                <Property Name=\"jobPositionAdditional2Id\" Type=\"Edm.Guid\" />\n                <Property Name=\"jobPositionAdditional2Code\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"jobPositionAdditional2Desc\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionAdditional2Date\" Type=\"Edm.Date\" />\n                <Property Name=\"PositionSlot\" Type=\"Edm.String\" MaxLength=\"20\" />\n                <Property Name=\"PositionSlotDate\" Type=\"Edm.Date\" />\n                <Property Name=\"categoryId\" Type=\"Edm.Guid\" />\n                <Property Name=\"categoryCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"categoryDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"workdayPercentage\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workdayType\" Type=\"Edm.String\" />\n                <Property Name=\"workdayHours\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workHoursTimeUnit\" Type=\"Edm.String\" />\n                <Property Name=\"workingDays\" Type=\"Edm.Int32\" />\n                <Property Name=\"workingDaysTimeUnit\" Type=\"Edm.String\" />\n                <Property Name=\"workdayDate\" Type=\"Edm.Date\" />\n                <Property Name=\"contractId\" Type=\"Edm.Guid\" />\n                <Property Name=\"contractCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"contractSubCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"contractDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"contractDate\" Type=\"Edm.Date\" />\n                <Property Name=\"salaryLevelId\" Type=\"Edm.Guid\" />\n                <Property Name=\"salaryLevelCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"salaryLevelDescription\" Type=\"Edm.String\" MaxLength=\"40\" />\n                <Property Name=\"salaryLevelDate\" Type=\"Edm.Date\" />\n                <Property Name=\"historicalCustomField1\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"historicalCustomField1Date\" Type=\"Edm.Date\" />\n                <Property Name=\"historicalCustomField2\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"historicalCustomField2Date\" Type=\"Edm.Date\" />\n                <Property Name=\"historicalCustomField3\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"historicalCustomField3Date\" Type=\"Edm.Date\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"active\" Type=\"Edm.Boolean\" />\n            </EntityType>\n            <EntityType Name=\"employeeAttachment\">\n                <Key>\n                    <PropertyRef Name=\"attachemtnNo\" />\n                </Key>\n                <Property Name=\"attachemtnNo\" Type=\"Edm.Int32\" Nullable=\"false\" />\n                <Property Name=\"mentorCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"mentorCompanyCode\" Type=\"Edm.String\" MaxLength=\"20\" />\n                <Property Name=\"mentorCompanyName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"employeeId\" Type=\"Edm.Guid\" />\n                <Property Name=\"employeeCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"employeeName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"description\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"publish\" Type=\"Edm.Boolean\" />\n                <Property Name=\"classificationCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"classificationSubcode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"classificationDescription\" Type=\"Edm.String\" />\n                <Property Name=\"lastModificationDate\" Type=\"Edm.Date\" />\n                <Property Name=\"lastModificationTime\" Type=\"Edm.String\" />\n            </EntityType>\n            <EntityType Name=\"employeeAttachmentContent\">\n                <Key>\n                    <PropertyRef Name=\"attachmentNo\" />\n                </Key>\n                <Property Name=\"attachmentNo\" Type=\"Edm.Int32\" Nullable=\"false\" />\n                <Property Name=\"base64content\" Type=\"Edm.String\" />\n            </EntityType>\n            <EntityType Name=\"employeeAbsence\">\n                <Key>\n                    <PropertyRef Name=\"mentorCompanyCode\" />\n                    <PropertyRef Name=\"contributionAccountCode\" />\n                    <PropertyRef Name=\"employeeCode\" />\n                    <PropertyRef Name=\"startDate\" />\n                    <PropertyRef Name=\"nosecuencia\" />\n                    <PropertyRef Name=\"tipo\" />\n                </Key>\n                <Property Name=\"mentorCompanyCode\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"9\" />\n                <Property Name=\"contributionAccountCode\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"11\" />\n                <Property Name=\"employeeCode\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"9\" />\n                <Property Name=\"startDate\" Type=\"Edm.Date\" Nullable=\"false\" />\n                <Property Name=\"nosecuencia\" Type=\"Edm.Int64\" Nullable=\"false\" />\n                <Property Name=\"tipo\" Type=\"Edm.String\" Nullable=\"false\" />\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"employeeId\" Type=\"Edm.Guid\" />\n                <Property Name=\"employeeName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"mentorCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"mentorCompanyName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"contributionAccountId\" Type=\"Edm.Guid\" />\n                <Property Name=\"endDate\" Type=\"Edm.Date\" />\n                <Property Name=\"startTime\" Type=\"Edm.String\" />\n                <Property Name=\"endTime\" Type=\"Edm.String\" />\n                <Property Name=\"description\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"AbsentismTypeId\" Type=\"Edm.Guid\" />\n                <Property Name=\"absentismTypeCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"AbsentismTypeDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"hours\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"remarks\" Type=\"Edm.String\" MaxLength=\"250\" />\n                <Property Name=\"laborDays\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"workCenterId\" Type=\"Edm.Guid\" />\n                <Property Name=\"workCenterCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"deletedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"deleted\" Type=\"Edm.Boolean\" />\n            </EntityType>\n            <EntityType Name=\"mentorCompany\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                    <PropertyRef Name=\"companyPersonCode\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"9\" />\n                <Property Name=\"name\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"organizationStructureCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"companyPersonId\" Type=\"Edm.Guid\" />\n                <Property Name=\"companyPersonCode\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"9\" />\n                <Property Name=\"vatNumber\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"acronymAddressCode\" Type=\"Edm.String\" MaxLength=\"2\" />\n                <Property Name=\"address\" Type=\"Edm.String\" MaxLength=\"40\" />\n                <Property Name=\"number\" Type=\"Edm.String\" MaxLength=\"4\" />\n                <Property Name=\"stairs\" Type=\"Edm.String\" MaxLength=\"4\" />\n                <Property Name=\"floor\" Type=\"Edm.String\" MaxLength=\"4\" />\n                <Property Name=\"door\" Type=\"Edm.String\" MaxLength=\"4\" />\n                <Property Name=\"cityCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"postalCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"countyCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"countryCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"phoneNumber\" Type=\"Edm.String\" MaxLength=\"20\" />\n                <Property Name=\"email\" Type=\"Edm.String\" MaxLength=\"100\" />\n                <Property Name=\"web\" Type=\"Edm.String\" MaxLength=\"80\" />\n                <Property Name=\"acronymAddressId\" Type=\"Edm.Guid\" />\n                <Property Name=\"cityId\" Type=\"Edm.Guid\" />\n                <Property Name=\"cityDescription\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"postalCodeId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countyDescription\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"countryId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countryDescription\" Type=\"Edm.String\" MaxLength=\"30\" />\n            </EntityType>\n            <EntityType Name=\"contributionAccount\">\n                <Key>\n                    <PropertyRef Name=\"mentorCompanyCode\" />\n                    <PropertyRef Name=\"contributionAccount\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"mentorCompanyCode\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"9\" />\n                <Property Name=\"contributionAccount\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"11\" />\n                <Property Name=\"name\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"address\" Type=\"Edm.String\" MaxLength=\"40\" />\n                <Property Name=\"cityCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"postalCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"countyCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"countryCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"mentorCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"mentorCompanyName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"cityId\" Type=\"Edm.Guid\" />\n                <Property Name=\"cityDescription\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"postalCodeId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countyDescription\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"countryId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countryDescription\" Type=\"Edm.String\" MaxLength=\"30\" />\n            </EntityType>\n            <EntityType Name=\"jobPosition\">\n                <Key>\n                    <PropertyRef Name=\"jobPositionCode\" />\n                    <PropertyRef Name=\"mentorCompanyCode\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"jobPositionCode\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"10\" />\n                <Property Name=\"jobPositionExtendedDescription\" Type=\"Edm.String\" MaxLength=\"250\" />\n                <Property Name=\"mentorCompanyCode\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"9\" />\n                <Property Name=\"startDate\" Type=\"Edm.Date\" />\n                <Property Name=\"endDate\" Type=\"Edm.Date\" />\n                <Property Name=\"yearsOfExperience\" Type=\"Edm.Int32\" />\n                <Property Name=\"trainigLevelCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"jobPositionPurpose\" Type=\"Edm.String\" MaxLength=\"250\" />\n                <Property Name=\"prlOnly\" Type=\"Edm.Boolean\" />\n                <Property Name=\"jobPositionCustomField1\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionCustomField2\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionCustomField3\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionCustomField4\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionCustomField5\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionCustomField6\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionCustomField7\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionCustomField8\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionCustomField9\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionCustomField10\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"jobPositionDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"mentorCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"mentorCompanyName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"employeeAmount\" Type=\"Edm.Int32\" />\n                <Property Name=\"trainigLevelDescription\" Type=\"Edm.String\" MaxLength=\"250\" />\n            </EntityType>\n            <EntityType Name=\"trainingLevel\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"2\" />\n                <Property Name=\"description\" Type=\"Edm.String\" MaxLength=\"200\" />\n            </EntityType>\n            <EntityType Name=\"category\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"3\" />\n                <Property Name=\"description\" Type=\"Edm.String\" MaxLength=\"30\" />\n            </EntityType>\n            <EntityType Name=\"absenceType\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"10\" />\n                <Property Name=\"description\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"subType\" Type=\"Edm.String\" MaxLength=\"4\" />\n            </EntityType>\n            <EntityType Name=\"contract\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                    <PropertyRef Name=\"subcode\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"3\" />\n                <Property Name=\"subcode\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"3\" />\n                <Property Name=\"description\" Type=\"Edm.String\" MaxLength=\"50\" />\n            </EntityType>\n            <EntityType Name=\"salaryLevel\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"10\" />\n                <Property Name=\"description\" Type=\"Edm.String\" MaxLength=\"40\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n            </EntityType>\n            <EntityType Name=\"structure\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                    <PropertyRef Name=\"structureEffectiveDate\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"10\" />\n                <Property Name=\"structureEffectiveDate\" Type=\"Edm.Date\" Nullable=\"false\" />\n                <Property Name=\"description\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n            </EntityType>\n            <EntityType Name=\"organizationUnit\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                    <PropertyRef Name=\"structureCode\" />\n                    <PropertyRef Name=\"structureEffectiveDate\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"30\" />\n                <Property Name=\"structureCode\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"10\" />\n                <Property Name=\"structureEffectiveDate\" Type=\"Edm.Date\" Nullable=\"false\" />\n                <Property Name=\"description\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n            </EntityType>\n            <EntityType Name=\"workCenter\">\n                <Key>\n                    <PropertyRef Name=\"mentorCompanyCode\" />\n                    <PropertyRef Name=\"contributionAccountCode\" />\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"mentorCompanyCode\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"9\" />\n                <Property Name=\"contributionAccountCode\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"11\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"3\" />\n                <Property Name=\"name\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"address\" Type=\"Edm.String\" MaxLength=\"40\" />\n                <Property Name=\"cityCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"postalCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"countyCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"mentorCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"mentorCompanyName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"contributionAccountId\" Type=\"Edm.Guid\" />\n                <Property Name=\"cityId\" Type=\"Edm.Guid\" />\n                <Property Name=\"cityDescription\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"postalCodeId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countyDescription\" Type=\"Edm.String\" MaxLength=\"30\" />\n            </EntityType>\n            <EntityType Name=\"company\">\n                <Key>\n                    <PropertyRef Name=\"id\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" Nullable=\"false\" />\n                <Property Name=\"systemVersion\" Type=\"Edm.String\" />\n                <Property Name=\"name\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"displayName\" Type=\"Edm.String\" MaxLength=\"250\" />\n                <Property Name=\"businessProfileId\" Type=\"Edm.String\" MaxLength=\"250\" />\n                <NavigationProperty Name=\"employees\" Type=\"Collection(Microsoft.NAV.employee)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"employeePhotos\" Type=\"Collection(Microsoft.NAV.employeePhoto)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"workers\" Type=\"Collection(Microsoft.NAV.worker)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"employeeContracts\" Type=\"Collection(Microsoft.NAV.employeeContract)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"employeeContractChanges\" Type=\"Collection(Microsoft.NAV.employeeContractChange)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"employeeAttachments\" Type=\"Collection(Microsoft.NAV.employeeAttachment)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"employeeAttachmentContents\" Type=\"Collection(Microsoft.NAV.employeeAttachmentContent)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"employeeAbsences\" Type=\"Collection(Microsoft.NAV.employeeAbsence)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"mentorCompanies\" Type=\"Collection(Microsoft.NAV.mentorCompany)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"contributionAccounts\" Type=\"Collection(Microsoft.NAV.contributionAccount)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"jobPositions\" Type=\"Collection(Microsoft.NAV.jobPosition)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"trainingLevels\" Type=\"Collection(Microsoft.NAV.trainingLevel)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"categories\" Type=\"Collection(Microsoft.NAV.category)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"absenceTypes\" Type=\"Collection(Microsoft.NAV.absenceType)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"contracts\" Type=\"Collection(Microsoft.NAV.contract)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"salaryLevels\" Type=\"Collection(Microsoft.NAV.salaryLevel)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"structures\" Type=\"Collection(Microsoft.NAV.structure)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"organizationUnits\" Type=\"Collection(Microsoft.NAV.organizationUnit)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"workCenters\" Type=\"Collection(Microsoft.NAV.workCenter)\" ContainsTarget=\"true\" />\n                <Annotation Term=\"OData.Community.Keys.V1.AlternateKeys\">\n                    <Collection>\n                        <Record Type=\"OData.Community.Keys.V1.AlternateKey\">\n                            <PropertyValue Property=\"Key\">\n                                <Collection>\n                                    <Record Type=\"OData.Community.Keys.V1.PropertyRef\">\n                                        <PropertyValue Property=\"Alias\" String=\"businessProfileId\" />\n                                        <PropertyValue Property=\"Name\" PropertyPath=\"businessProfileId\" />\n                                    </Record>\n                                </Collection>\n                            </PropertyValue>\n                        </Record>\n                        <Record Type=\"OData.Community.Keys.V1.AlternateKey\">\n                            <PropertyValue Property=\"Key\">\n                                <Collection>\n                                    <Record Type=\"OData.Community.Keys.V1.PropertyRef\">\n                                        <PropertyValue Property=\"Alias\" String=\"name\" />\n                                        <PropertyValue Property=\"Name\" PropertyPath=\"name\" />\n                                    </Record>\n                                </Collection>\n                            </PropertyValue>\n                        </Record>\n                    </Collection>\n                </Annotation>\n            </EntityType>\n            <EntityType Name=\"subscriptions\">\n                <Key>\n                    <PropertyRef Name=\"subscriptionId\" />\n                </Key>\n                <Property Name=\"subscriptionId\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"150\" />\n                <Property Name=\"notificationUrl\" Type=\"Edm.String\" />\n                <Property Name=\"resource\" Type=\"Edm.String\" />\n                <Property Name=\"userId\" Type=\"Edm.Guid\" />\n                <Property Name=\"lastModifiedDateTime\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"clientState\" Type=\"Edm.String\" MaxLength=\"250\" />\n                <Property Name=\"expirationDateTime\" Type=\"Edm.DateTimeOffset\" />\n            </EntityType>\n            <EntityContainer Name=\"NAV\">\n                <EntitySet Name=\"employees\" EntityType=\"Microsoft.NAV.employee\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"employeePhotos\" EntityType=\"Microsoft.NAV.employeePhoto\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"workers\" EntityType=\"Microsoft.NAV.worker\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"employeeContracts\" EntityType=\"Microsoft.NAV.employeeContract\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"employeeContractChanges\" EntityType=\"Microsoft.NAV.employeeContractChange\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"employeeAttachments\" EntityType=\"Microsoft.NAV.employeeAttachment\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"employeeAttachmentContents\" EntityType=\"Microsoft.NAV.employeeAttachmentContent\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"employeeAbsences\" EntityType=\"Microsoft.NAV.employeeAbsence\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"mentorCompanies\" EntityType=\"Microsoft.NAV.mentorCompany\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"contributionAccounts\" EntityType=\"Microsoft.NAV.contributionAccount\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"jobPositions\" EntityType=\"Microsoft.NAV.jobPosition\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"trainingLevels\" EntityType=\"Microsoft.NAV.trainingLevel\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"categories\" EntityType=\"Microsoft.NAV.category\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"absenceTypes\" EntityType=\"Microsoft.NAV.absenceType\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"contracts\" EntityType=\"Microsoft.NAV.contract\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"salaryLevels\" EntityType=\"Microsoft.NAV.salaryLevel\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"structures\" EntityType=\"Microsoft.NAV.structure\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"organizationUnits\" EntityType=\"Microsoft.NAV.organizationUnit\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"workCenters\" EntityType=\"Microsoft.NAV.workCenter\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"companies\" EntityType=\"Microsoft.NAV.company\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n                <EntitySet Name=\"subscriptions\" EntityType=\"Microsoft.NAV.subscriptions\">\n                    <Annotation Term=\"Org.OData.Capabilities.V1.ChangeTracking\">\n                        <Record>\n                            <PropertyValue Property=\"Supported\" Bool=\"false\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.DeleteRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Deletable\" Bool=\"true\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.InsertRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Insertable\" Bool=\"true\" />\n                        </Record>\n                    </Annotation>\n                    <Annotation Term=\"Org.OData.Capabilities.V1.UpdateRestrictions\">\n                        <Record>\n                            <PropertyValue Property=\"Updatable\" Bool=\"true\" />\n                        </Record>\n                    </Annotation>\n                </EntitySet>\n            </EntityContainer>\n        </Schema>\n    </edmx:DataServices>\n</edmx:Edmx>"}],"_postman_id":"caf4b336-d401-422d-aea2-a064dee07e37"}],"id":"6f01577f-ac86-4047-977e-5eda4f6c9211","description":"<p>Definición técnica de los campos de cada consulta</p>\n","_postman_id":"6f01577f-ac86-4047-977e-5eda4f6c9211","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","id":"9e142efe-6f03-4508-b9b7-782e3cb09a09","name":"🔌API Mentor","type":"collection"}}}],"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]}},"event":[{"listen":"prerequest","script":{"id":"03002437-ea4e-4417-bae1-f787b5c7af46","type":"text/javascript","requests":{},"exec":[""]}},{"listen":"test","script":{"id":"77d8ad35-85ab-4607-82ea-cdd5a4d2bd9f","type":"text/javascript","requests":{},"exec":[""]}}]}