{"info":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","description":"<html><head></head><body><p>Documentación de la API estándar para integraciones externas con Labor.<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>: 01/09/2025 - 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<li><p><code>{{APIemployeeJournalLineId}}</code>: ID del registro del diario de altas/modificaciones (para las modificaciones o eliminaciones de registros del diario)</p>\n</li>\n<li><p><code>{{APIterminationJournalLineId}}</code>: ID del registro del diario de bajas (para las modificaciones o eliminaciones de registros del diario)</p>\n</li>\n<li><p><code>{{APIincidentsJournalLineId}}</code>: ID del registro del diario de incidencias (para las modificaciones o eliminaciones de registros del diario)</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 de Labor Summar, 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/labor/v1.0/companies({{APIcompanyId}})/employees?$filter=laborCompanyCode 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/labor/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/labor/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/labor/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/labor/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/labor/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/labor/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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","publishedId":"2sBY4HSP7x","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-07-03T07:49:58.000Z"},"item":[{"name":"🔧 Configuración General","item":[{"name":"companies","id":"2c122c25-9cfe-4e8d-800f-03b74f0e47b1","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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","general","v1.0","companies"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"77cd112b-09fd-4fda-b755-2ef345e35a25","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":"2c122c25-9cfe-4e8d-800f-03b74f0e47b1"},{"name":"acronyms","id":"d4a8bc23-138e-4dd4-85a8-91866598504b","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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","general","v1.0","companies({{APIcompanyId}})","acronyms"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"1adf4a42-6bcf-48c8-9d89-d04be18c65c2","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":"d4a8bc23-138e-4dd4-85a8-91866598504b"},{"name":"cities","id":"36cca461-e57f-4cc6-ade9-b1a58769a1a8","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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","general","v1.0","companies({{APIcompanyId}})","cities"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"d9756f81-518f-4935-827e-f9dce8ba0d34","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":"36cca461-e57f-4cc6-ade9-b1a58769a1a8"},{"name":"postalCodes","id":"e2f06d34-b89c-497c-98a5-bef9869cd848","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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","general","v1.0","companies({{APIcompanyId}})","postalCodes"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"967ec926-4ac1-429e-a27c-6054b78a9e0e","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":"e2f06d34-b89c-497c-98a5-bef9869cd848"},{"name":"counties","id":"35983509-49a8-4506-93e4-c7d5c1a4cfda","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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","general","v1.0","companies({{APIcompanyId}})","counties"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"d370738e-9e8b-4d3e-a03b-32eb24f94808","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":"35983509-49a8-4506-93e4-c7d5c1a4cfda"},{"name":"countries","id":"7184939f-9ac1-4d14-a9a5-3a686069784e","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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","general","v1.0","companies({{APIcompanyId}})","countries"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"694ed482-0d25-4494-adf0-8aaf296052b7","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":"7184939f-9ac1-4d14-a9a5-3a686069784e"},{"name":"terminationCodes","id":"01f6b96a-7b0b-4ae0-b61e-daca21b4f88e","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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","general","v1.0","companies({{APIcompanyId}})","terminationCodes"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"940938f8-6312-47bb-aec4-7b2152cffc54","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":"01f6b96a-7b0b-4ae0-b61e-daca21b4f88e"}],"id":"c76bfc14-160b-45bb-bf20-fa34e928c265","description":"<p>Funciones de consulta de datos maestros de todos los módulos de la aplicación</p>\n","_postman_id":"c76bfc14-160b-45bb-bf20-fa34e928c265","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}}},{"name":"🏢 Configuración Laboral","item":[{"name":"laborCompanies","id":"7481fca7-0cad-48db-9b8d-e31b261abfce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/laborCompanies","description":"<p>Obtiene la lista de empresas laborales 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>agreementId</td>\n<td>Identificador único del convenio</td>\n</tr>\n<tr>\n<td>agreementCode</td>\n<td>Código del convenio al que pertenece la empresa</td>\n</tr>\n<tr>\n<td>agreementDescription</td>\n<td>Descripción del convenio</td>\n</tr>\n<tr>\n<td>laborCompanyCustomField1</td>\n<td>Campo libre 1º de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCustomField2</td>\n<td>Campo libre 2º de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCustomField3</td>\n<td>Campo libre 3º de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCustomField4</td>\n<td>Campo libre 4º de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCustomField5</td>\n<td>Campo libre 5º de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCustomField6</td>\n<td>Campo libre 6º de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCustomField7</td>\n<td>Campo libre 7º de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCustomField8</td>\n<td>Campo libre 8º de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCustomField9</td>\n<td>Campo libre 9º de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCustomField10</td>\n<td>Campo libre 10º de la empresa</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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","laborCompanies"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"7297c199-78b6-4476-a531-c006a6d954f2","name":"laborCompanies","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/laborCompanies"},"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":"5979964c-9b89-45e6-aaef-76704851e740"},{"key":"Date","value":"Fri, 22 Aug 2025 09:00:46 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/laborCompanies\",\n    \"value\": [\n        {\n            \"id\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"code\": \"A34544551\",\n            \"name\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"agreementCode\": \"OFICAT\",\n            \"laborCompanyCustomField1\": \"\",\n            \"laborCompanyCustomField2\": \"\",\n            \"laborCompanyCustomField3\": \"\",\n            \"laborCompanyCustomField4\": \"\",\n            \"laborCompanyCustomField5\": \"\",\n            \"laborCompanyCustomField6\": \"\",\n            \"laborCompanyCustomField7\": \"\",\n            \"laborCompanyCustomField8\": \"\",\n            \"laborCompanyCustomField9\": \"\",\n            \"laborCompanyCustomField10\": \"\",            \n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-07-25T11:13:16.123Z\",\n            \"agreementId\": \"0d9e2aea-64bd-4c85-b0c7-e4fe8af03bac\",\n            \"agreementDescription\": \"OFICINAS Y DESPACHOS DE CATALUÑA\",\n            \"companyPersonId\": \"2e8b9009-2d6c-40e1-ab3c-7dbd7c6fcc6d\",\n            \"companyPersonCode\": \"A34544551\",\n            \"vatNumber\": \"A34544551\",\n            \"acronymAddressCode\": \"CL\",\n            \"address\": \"BALMES\",\n            \"number\": \"124\",\n            \"stairs\": \"\",\n            \"floor\": \"1\",\n            \"door\": \"A\",\n            \"cityCode\": \"08900\",\n            \"postalCode\": \"08019\",\n            \"countyCode\": \"08\",\n            \"countryCode\": \"011\",\n            \"phoneNumber\": \"933545354\",\n            \"email\": \"soporte@summar.es\",\n            \"web\": \"\",\n            \"acronymAddressId\": \"8773fa7d-7250-4798-92ff-5ccd42968dee\",\n            \"cityId\": \"d572ae73-68c9-4e83-bbcf-ff2dbcca2058\",\n            \"cityDescription\": \"BARCELONA\",\n            \"postalCodeId\": \"48472e45-15a6-4dfa-85a6-03cda5b9cfbf\",\n            \"countyId\": \"d559e2eb-96eb-410e-ab49-f7c49fb52dbf\",\n            \"countyDescription\": \"BARCELONA\",\n            \"countryId\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n            \"countryDescription\": \"ESPAÑA\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"7481fca7-0cad-48db-9b8d-e31b261abfce"},{"name":"contributionAccounts","id":"731b459a-ca8a-443b-8a2f-1ff00745a1af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/contributionAccounts","description":"<p>Obtiene la lista de cuentas de cotización de las empresas laborales. 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>laborCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCode</td>\n<td>Código de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyName</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>agreementId</td>\n<td>Identificador único del convenio</td>\n</tr>\n<tr>\n<td>agreementCode</td>\n<td>Código del convenio al que pertenece la cuenta de cotización</td>\n</tr>\n<tr>\n<td>agreementDescription</td>\n<td>Descripción del convenio</td>\n</tr>\n<tr>\n<td>contributionAccCustomField1</td>\n<td>Campo libre 1º de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>contributionAccCustomField2</td>\n<td>Campo libre 2º de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>contributionAccCustomField3</td>\n<td>Campo libre 3º de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>contributionAccCustomField4</td>\n<td>Campo libre 4º de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>contributionAccCustomField5</td>\n<td>Campo libre 5º de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>contributionAccCustomField6</td>\n<td>Campo libre 6º de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>contributionAccCustomField7</td>\n<td>Campo libre 7º de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>contributionAccCustomField8</td>\n<td>Campo libre 8º de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>contributionAccCustomField9</td>\n<td>Campo libre 9º de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>contributionAccCustomField10</td>\n<td>Campo libre 10º de la cuenta de cotización</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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","contributionAccounts"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"0b49fce8-1121-4651-bb02-b99558c58c0e","name":"contributionAccounts","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/contributionAccounts"},"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":"f3ae9be4-35f5-4b90-97d8-6b6b90558403"},{"key":"Date","value":"Fri, 22 Aug 2025 09:16:40 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientURL:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/contributionAccounts\",\n    \"value\": [\n        {\n            \"id\": \"e335f7fb-c4cc-43db-b9a7-bc3e4b7be401\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"contributionAccount\": \"08452225455\",\n            \"name\": \"Barcelona\",\n            \"address\": \"\",\n            \"cityCode\": \"08900\",\n            \"postalCode\": \"08005\",\n            \"countyCode\": \"08\",\n            \"countryCode\": \"011\",\n            \"agreementCode\": \"OFICAT\",\n            \"contributionAccCustomField1\": \"\",\n            \"contributionAccCustomField2\": \"\",\n            \"contributionAccCustomField3\": \"\",\n            \"contributionAccCustomField4\": \"\",\n            \"contributionAccCustomField5\": \"\",\n            \"contributionAccCustomField6\": \"\",\n            \"contributionAccCustomField7\": \"\",\n            \"contributionAccCustomField8\": \"\",\n            \"contributionAccCustomField9\": \"\",\n            \"contributionAccCustomField10\": \"\",            \n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-07-25T11:13:16.187Z\",\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"laborCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"cityId\": \"00419797-1fd3-41cb-8c88-bf6e7ba89ec5\",\n            \"cityDescription\": \"BARCELONA\",\n            \"postalCodeId\": \"d99cfc9d-65f2-4dfb-8306-694b26278192\",\n            \"countyId\": \"1703b5b7-c5af-44b4-be83-43f050997c50\",\n            \"countyDescription\": \"BARCELONA\",\n            \"countryId\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n            \"countryDescription\": \"ESPAÑA\",\n            \"agreementId\": \"00000000-0000-0000-0000-000000000000\",\n            \"agreementDescription\": \"OFICINAS Y DESPACHOS DE CATALUÑA\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"731b459a-ca8a-443b-8a2f-1ff00745a1af"},{"name":"workCenters","id":"443768f7-becc-4bcf-bfdb-5f0919cb8394","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/workCenters","description":"<p>Obtiene la lista de centros de trabajo de las cuentas de cotización de las empresas laborales. 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>laborCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCode</td>\n<td>Código de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyName</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>agreementId</td>\n<td>Identificador único del convenio</td>\n</tr>\n<tr>\n<td>agreementCode</td>\n<td>Código del convenio al que pertenece la cuenta de cotización</td>\n</tr>\n<tr>\n<td>agreementDescription</td>\n<td>Descripción del convenio</td>\n</tr>\n<tr>\n<td>hours</td>\n<td>Horas de trabajo semanales</td>\n</tr>\n<tr>\n<td>workCenterCustomField1</td>\n<td>Campo libre 1º del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterCustomField2</td>\n<td>Campo libre 2º del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterCustomField3</td>\n<td>Campo libre 3º del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterCustomField4</td>\n<td>Campo libre 4º del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterCustomField5</td>\n<td>Campo libre 5º del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterCustomField6</td>\n<td>Campo libre 6º del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterCustomField7</td>\n<td>Campo libre 7º del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterCustomField8</td>\n<td>Campo libre 8º del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterCustomField9</td>\n<td>Campo libre 9º del centro de trabajo</td>\n</tr>\n<tr>\n<td>workCenterCustomField10</td>\n<td>Campo libre 10º del centro de trabajo</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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","workCenters"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"35b986f0-9710-4b40-b731-1496009e076f","name":"workCenters","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/workCenters"},"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":"479df88a-56f4-4e83-b2b9-1a14e9fdce1d"},{"key":"Date","value":"Fri, 22 Aug 2025 09:24:43 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/workCenters\",\n    \"value\": [\n        {\n            \"id\": \"6ce8e009-91a6-410a-8d02-784fa8349381\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"contributionAccountCode\": \"08452225455\",\n            \"code\": \"001\",\n            \"name\": \"Delegación Tarragona\",\n            \"address\": \"C/Ramon y Cajal 56\",\n            \"cityCode\": \"43900\",\n            \"postalCode\": \"43005\",\n            \"countyCode\": \"43\",\n            \"agreementCode\": \"OFICAT\",\n            \"hours\": 40,\n            \"workCenterCustomField1\": \"\",\n            \"workCenterCustomField2\": \"\",\n            \"workCenterCustomField3\": \"\",\n            \"workCenterCustomField4\": \"\",\n            \"workCenterCustomField5\": \"\",\n            \"workCenterCustomField6\": \"\",\n            \"workCenterCustomField7\": \"\",\n            \"workCenterCustomField8\": \"\",\n            \"workCenterCustomField9\": \"\",\n            \"workCenterCustomField10\": \"\",            \n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"laborCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"contributionAccountId\": \"e335f7fb-c4cc-43db-b9a7-bc3e4b7be401\",\n            \"cityId\": \"00419797-1fd3-41cb-8c88-bf6e7ba89ec5\",\n            \"cityDescription\": \"TARRAGONA\",\n            \"postalCodeId\": \"d99cfc9d-65f2-4dfb-8306-694b26278192\",\n            \"countyId\": \"1703b5b7-c5af-44b4-be83-43f050997c50\",\n            \"countyDescription\": \"TARRAGONA\",\n            \"agreementId\": \"0d9e2aea-64bd-4c85-b0c7-e4fe8af03bac\",\n            \"agreementDescription\": \"OFICINAS Y DESPACHOS DE CATALUÑA\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"443768f7-becc-4bcf-bfdb-5f0919cb8394"},{"name":"agreements","id":"3a815bba-e026-4170-b4b2-f2345db4bb13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/agreements","description":"<p>Obtiene la lista de convenios colectivos. 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 convenio</td>\n</tr>\n<tr>\n<td>agreementCode</td>\n<td>Código del convenio</td>\n</tr>\n<tr>\n<td>year</td>\n<td>Año de la última versión del convenio</td>\n</tr>\n<tr>\n<td>month</td>\n<td>Mes de la última versión del convenio</td>\n</tr>\n<tr>\n<td>name</td>\n<td>Nombre del convenio</td>\n</tr>\n<tr>\n<td>annualHours</td>\n<td>Horas anuales del convenio</td>\n</tr>\n<tr>\n<td>officialCode</td>\n<td>Código oficial</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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","agreements"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"5cedad44-55c8-4462-947b-399fa6009c37","name":"agreements","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/agreements"},"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":"2b033050-40b9-4e66-9780-a5f8b7e2258f"},{"key":"Date","value":"Fri, 22 Aug 2025 09:30:09 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/agreements\",\n    \"value\": [\n        {\n            \"id\": \"0d9e2aea-64bd-4c85-b0c7-e4fe8af03bac\",\n            \"agreementCode\": \"OFICAT\",\n            \"year\": \"\",\n            \"month\": \" \",\n            \"name\": \"OFICINAS Y DESPACHOS DE CATALUÑA\",\n            \"annualHours\": 1772,\n            \"officialCode\": \"79000375011994\"\n        },\n        // ---\n        {\n            \"id\": \"f21ad369-4b51-4f1d-b4a0-2471fee1ce57\",\n            \"agreementCode\": \"OFICINAS\",\n            \"year\": \"2017\",\n            \"month\": \"Enero\",\n            \"name\": \"Convenio Colectivo Oficinas y Despachos Valencia\",\n            \"annualHours\": 1776,\n            \"officialCode\": \"46000805011981\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"3a815bba-e026-4170-b4b2-f2345db4bb13"},{"name":"categories","id":"50348a94-17cf-48b8-a09d-bb7518b47455","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/categories","description":"<p>Obtiene la lista de categorías de los convenios colectivos. 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>agreementId</td>\n<td>ID del convenio</td>\n</tr>\n<tr>\n<td>agreementCode</td>\n<td>Código del convenio</td>\n</tr>\n<tr>\n<td>agreementYear</td>\n<td>Año de la última versión del convenio</td>\n</tr>\n<tr>\n<td>agreementMonth</td>\n<td>Mes de la última versión del convenio</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</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","categories"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"37e0d075-e2e3-4f0d-aae2-29ab862205ad","name":"categories","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/categories"},"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":"628dedff-f89c-425f-839e-1b6bd4e8a5b1"},{"key":"Date","value":"Fri, 22 Aug 2025 09:33:57 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/categories\",\n    \"value\": [\n        {\n            \"id\": \"d98c18f0-5202-4705-9f82-649ac5c9dd94\",\n            \"agreementCode\": \"OFICAT\",\n            \"agreementYear\": \"\",\n            \"agreementMonth\": \" \",\n            \"code\": \"417\",\n            \"description\": \"GRUPO 3 NIVEL 1\",\n            \"agreementId\": \"0d9e2aea-64bd-4c85-b0c7-e4fe8af03bac\"\n        },\n        {\n            \"id\": \"6b0b86a5-905b-4c3e-8ee3-ab5044996108\",\n            \"agreementCode\": \"OFICAT\",\n            \"agreementYear\": \"\",\n            \"agreementMonth\": \" \",\n            \"code\": \"418\",\n            \"description\": \"GRUPO 3 NIVEL 2\",\n            \"agreementId\": \"0d9e2aea-64bd-4c85-b0c7-e4fe8af03bac\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"50348a94-17cf-48b8-a09d-bb7518b47455"},{"name":"trainingLevels","id":"2582df64-96f5-434e-b85b-671e6a47ec0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/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</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","trainingLevels"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"a0c90690-a923-4412-a4ef-6cd03b1daa87","name":"trainingLevels","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/trainingLevels"},"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":"4166e744-810b-48b7-acb3-1c285231e0b7"},{"key":"Date","value":"Fri, 22 Aug 2025 09:38:47 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/trainingLevels\",\n    \"value\": [\n        {\n            \"id\": \"0eef30e7-9ee4-4f5a-97c7-cb5a504f495b\",\n            \"code\": \"11\",\n            \"description\": \"ESTUDIOS PRIMARIOS INCOMPLETOS\"\n        },\n        // ---\n        {\n            \"id\": \"8827eb3b-5cab-4b14-99f5-47821d50c5a4\",\n            \"code\": \"23\",\n            \"description\": \"PRIMERA ETAPA DE EDUCACIÓN SECUNDARIA CON TÍTULO DE GRADUADO ESCOLAR O EQUIVALENTE\"\n        },\n        // ---\n        {\n            \"id\": \"c22939f2-5ede-4879-8465-75a1a117c233\",\n            \"code\": \"61\",\n            \"description\": \"DOCTORADO UNIVERSITARIO\"\n        },\n        {\n            \"id\": \"aab522cb-7d52-4bb0-b138-959e0f522ecc\",\n            \"code\": \"80\",\n            \"description\": \"SIN ESTUDIOS\"\n        }\n    ]\n}"}],"_postman_id":"2582df64-96f5-434e-b85b-671e6a47ec0f"},{"name":"incidents","id":"fd4e75c2-1a96-4b55-a750-9caa0ee6b377","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/incidents","description":"<p>Obtiene la lista de códigos de incidencias. Se utilizan para el diario de incidencias (ausencias, variables de nómina, etc...). 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 de incidencia</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código de incidencia</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Descripción del código de incidencia</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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","incidents"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"6f13d874-5d71-41df-8379-5a2485c8f394","name":"incidents","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/incidents"},"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":"3b9973a3-a808-4f17-a534-2663f02f6e72"},{"key":"Date","value":"Fri, 22 Aug 2025 09:56:29 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/SUASOR_USERservice/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/incidents\",\n    \"value\": [\n        {\n            \"id\": \"36a3b8cc-7b3e-4044-a32a-08b5fbc50a6f\",\n            \"code\": \"ACC. COMÚN\",\n            \"description\": \"Accindente no laboral\"\n        },\n        {\n            \"id\": \"b3c91eed-070c-40f5-81f4-c0403ba37e53\",\n            \"code\": \"ACC.LAB\",\n            \"description\": \"ACCIDENTE LABORAL\"\n        },\n        // ---\n        {\n            \"id\": \"2a0d676f-3af6-4b9f-b010-0a7387845409\",\n            \"code\": \"H.EXTRA\",\n            \"description\": \"HORAS EXTRA NORMALES\"\n        },\n        {\n            \"id\": \"26985da4-9f17-4325-b7b2-a3c5f85b232d\",\n            \"code\": \"H.NOCT\",\n            \"description\": \"Horas nocturnas\"\n        },\n        // ---\n        {\n            \"id\": \"e940e048-19d6-46a1-b117-9e7ec47d2e21\",\n            \"code\": \"MATRIMONIO\",\n            \"description\": \"Permiso por matrimonio\"\n        },\n        {\n            \"id\": \"760f4c96-683b-4f62-b96c-d681f0f84081\",\n            \"code\": \"MÉDICO\",\n            \"description\": \"Visita médica\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"fd4e75c2-1a96-4b55-a750-9caa0ee6b377"},{"name":"absenceReasons","id":"019aa7a8-165b-4f09-b72a-c6631905408f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/absenceReasons","description":"<p>Obtiene la lista de motivos 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 motivo de absentismo</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código motivo de absentismo</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Descripción del motivo de absentismo</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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","absenceReasons"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"3129f61e-d2d3-4aba-89ed-b0dda324dd52","name":"absenceReasons","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/absenceReasons"},"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":"bd35480e-e6bf-457b-b710-69d5d53905cb"},{"key":"Date","value":"Fri, 22 Aug 2025 09:59:39 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/absenceReasons\",\n    \"value\": [\n        {\n            \"id\": \"d90b4170-2d6d-4444-899d-6f77cf3be926\",\n            \"code\": \"01\",\n            \"description\": \"Faltas Injustificadas\"\n        },\n        {\n            \"id\": \"db305960-64b1-4b36-9eaa-0a634b57f24e\",\n            \"code\": \"02\",\n            \"description\": \"Permiso Remunerado\"\n        },\n        {\n            \"id\": \"8ec4eaea-a269-43e7-b0d2-291fbe3b5d40\",\n            \"code\": \"03\",\n            \"description\": \"Visitas Médicas\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"019aa7a8-165b-4f09-b72a-c6631905408f"},{"name":"contracts","id":"92409d07-a31c-4d46-a9b8-3664aade3e16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/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</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","contracts"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"d1ebfce5-d120-4a06-b040-e1a42402f125","name":"contracts","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/contracts"},"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":"b6498a5d-16fd-4a73-8651-192492a3c332"},{"key":"Date","value":"Fri, 22 Aug 2025 10:02:32 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/contracts\",\n    \"value\": [\n        {\n            \"id\": \"134cf1c1-8a7f-499a-9916-2e80aef3cf57\",\n            \"code\": \"100\",\n            \"subcode\": \"\",\n            \"description\": \"INDEFINIDO T.COMPLETO ORDINAR.\"\n        },\n        // ---\n        {\n            \"id\": \"783d8687-29f1-427d-b48f-187147be6521\",\n            \"code\": \"401\",\n            \"subcode\": \"\",\n            \"description\": \"OBRA O SERVICIO DETERMINADO TIEMPO COMPLETO\"\n        },\n        {\n            \"id\": \"2554991a-6e47-4aee-ab16-960caded1cc6\",\n            \"code\": \"401\",\n            \"subcode\": \"CEE\",\n            \"description\": \"OBRA O SERV. DETERMIN. T.COMPLETO.CTROS.ESP.EMPLEO\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"92409d07-a31c-4d46-a9b8-3664aade3e16"},{"name":"costCenters","id":"3f419b74-0e4a-4ba8-9de9-117587281bd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/costCenters","description":"<p>Obtiene la lista de códigos de centros de coste o secciones de cada empresa. 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 sección de coste</td>\n</tr>\n<tr>\n<td>laborCompanyId</td>\n<td>ID de la empresa laboral</td>\n</tr>\n<tr>\n<td>laborCompanyCode</td>\n<td>Código de la empresa laboral</td>\n</tr>\n<tr>\n<td>laborCompanyName</td>\n<td>Nombre de la empresa laboral</td>\n</tr>\n<tr>\n<td>level1Code</td>\n<td>Código del nivel 1 de la sección de coste</td>\n</tr>\n<tr>\n<td>level2Code</td>\n<td>Código del nivel 2 de la sección de coste</td>\n</tr>\n<tr>\n<td>level3Code</td>\n<td>Código del nivel 3 de la sección de coste</td>\n</tr>\n<tr>\n<td>level4Code</td>\n<td>Código del nivel 4 de la sección de coste</td>\n</tr>\n<tr>\n<td>sectionDescription</td>\n<td>Descripción de la sección de coste</td>\n</tr>\n<tr>\n<td>dimensionCode1</td>\n<td>Código de dimensión de nivel 1</td>\n</tr>\n<tr>\n<td>dimensionCode2</td>\n<td>Código de dimensión de nivel 2</td>\n</tr>\n<tr>\n<td>dimensionCode3</td>\n<td>Código de dimensión de nivel 3</td>\n</tr>\n<tr>\n<td>dimensionCode4</td>\n<td>Código de dimensión de nivel 4</td>\n</tr>\n<tr>\n<td>dimensionDescription1</td>\n<td>Descripción de dimensión de nivel 1</td>\n</tr>\n<tr>\n<td>dimensionDescription2</td>\n<td>Descripción de dimensión de nivel 2</td>\n</tr>\n<tr>\n<td>dimensionDescription3</td>\n<td>Descripción de dimensión de nivel 3</td>\n</tr>\n<tr>\n<td>dimensionDescription3</td>\n<td>Descripción de dimensión de nivel 4</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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","costCenters"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"fa6d89fc-9f95-4aeb-80a6-6c1f110c34e9","name":"costCenters","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/costCenters"},"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":"8403f5b6-8b82-4d81-aa99-344eb7fbc6d4"},{"key":"Date","value":"Fri, 22 Aug 2025 10:10:35 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/costCenters\",\n    \"value\": [\n        {\n            \"id\": \"94a540e8-6ac7-474f-a3a7-7a393d6a16d5\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"level1Code\": \"\",\n            \"level2Code\": \"\",\n            \"level3Code\": \"\",\n            \"level4Code\": \"BCN\",\n            \"sectionDescription\": \"ADMIN \",\n            \"laborCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\"\n        },\n        {\n            \"id\": \"05be0c9d-17ea-4220-a55c-d89f39bb0148\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"level1Code\": \"\",\n            \"level2Code\": \"\",\n            \"level3Code\": \"\",\n            \"level4Code\": \"COM\",\n            \"sectionDescription\": \"COMERCIAL \",\n            \"laborCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\"\n        },\n        {\n            \"id\": \"6de98e61-4ba5-454d-a13e-875a3a181d14\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"level1Code\": \"\",\n            \"level2Code\": \"\",\n            \"level3Code\": \"\",\n            \"level4Code\": \"CONSUL\",\n            \"sectionDescription\": \"CONSULTORIA \",\n            \"laborCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"3f419b74-0e4a-4ba8-9de9-117587281bd2"},{"name":"departments","id":"bf904390-925f-4d02-9314-e3108ea743f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/departments","description":"<p>Obtiene la lista de códigos de departamentos de cada empresa. 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 departamento</td>\n</tr>\n<tr>\n<td>code</td>\n<td>Código del departamento</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Descripción del departamento</td>\n</tr>\n<tr>\n<td>laborCompanyId</td>\n<td>ID de la empresa laboral</td>\n</tr>\n<tr>\n<td>laborCompanyCode</td>\n<td>Código de la empresa laboral</td>\n</tr>\n<tr>\n<td>laborCompanyName</td>\n<td>Nombre de la empresa laboral</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>contributionAccount</td>\n<td>Código de la cuenta de cotización</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>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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","departments"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"5867fabc-47fc-4ef1-8ce2-7c412716d29a","name":"departments","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/departments"},"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":"a8829c32-910d-4cbe-a560-cc8db53c0647"},{"key":"Date","value":"Tue, 16 Sep 2025 11:40:40 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/departments\",\n    \"value\": [\n        {\n            \"id\": \"cfb5eb03-dcdd-4018-b03e-70dc7f515b5d\",\n            \"code\": \"ADMON\",\n            \"description\": \"ADMINISTRACION\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"contributionAccount\": \"08452225455\",\n            \"workCenterCode\": \"001\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-09-15T10:38:11.097Z\",\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"laborCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"contributionAccountId\": \"e335f7fb-c4cc-43db-b9a7-bc3e4b7be401\",\n            \"workCenterId\": \"68e1147a-ac1a-468d-b4d0-1dbc4931ace6\",\n            \"workCenterDescription\": \"Central \"\n        },\n        {\n            \"id\": \"37e03a4b-8108-4ff7-b99c-575cc4d6b2f5\",\n            \"code\": \"HARD\",\n            \"description\": \"HARDWARE\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"contributionAccount\": \"08452225455\",\n            \"workCenterCode\": \"001\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-09-15T10:38:11.097Z\",\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"laborCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"contributionAccountId\": \"e335f7fb-c4cc-43db-b9a7-bc3e4b7be401\",\n            \"workCenterId\": \"68e1147a-ac1a-468d-b4d0-1dbc4931ace6\",\n            \"workCenterDescription\": \"Central \"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"bf904390-925f-4d02-9314-e3108ea743f7"},{"name":"salaryLevels","id":"314c735f-6ab0-45d5-a66d-564412a9d29d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/salaryLevels","description":"<p>Obtiene la lista de códigos 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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","salaryLevels"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"2198da1f-9979-43b0-bbb1-a65b7e784bad","name":"salaryLevels","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/salaryLevels"},"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":"96942b7c-03f0-4b0c-b012-d457e3bd5d72"},{"key":"Date","value":"Tue, 16 Sep 2025 12:03:14 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/salaryLevels\",\n    \"value\": [\n        {\n            \"id\": \"3b4cdf7a-8b4d-430d-8570-dbdf3ac7b5ce\",\n            \"code\": \"N1\",\n            \"description\": \"NIVEL 1\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-09-15T10:38:11.25Z\"\n        },\n        {\n            \"id\": \"9efffe82-1bc1-4315-9ddb-c564b6626776\",\n            \"code\": \"N2\",\n            \"description\": \"NIVEL 2\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-09-15T10:38:11.25Z\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"314c735f-6ab0-45d5-a66d-564412a9d29d"}],"id":"13c27f01-4716-4cc8-a76a-86afc2fdca12","description":"<p>Funciones de consulta de datos maestros del módulo de nómina</p>\n","_postman_id":"13c27f01-4716-4cc8-a76a-86afc2fdca12","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}}},{"name":"👤 Empleados","item":[{"name":"employees","id":"d0250d79-cde8-4a07-bb5b-ac770b71526d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/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>laborCompanyId</td>\n<td>ID de la empresa laboral</td>\n</tr>\n<tr>\n<td>laborCompanyCode</td>\n<td>Código de la empresa laboral</td>\n</tr>\n<tr>\n<td>laborCompanyName</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>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 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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","employees"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"e915cccc-bbe0-4b08-8901-cb96b2293fd5","name":"employees","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/employees"},"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":"e4b5718e-dc68-4efb-9431-be21b5e80bde"},{"key":"Date","value":"Fri, 22 Aug 2025 10:14:08 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/employees\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0O2RsTExWRUhyS3JOdXdGVEp1QUJadW5NOFFtbkM2cWtITkl1NlhlT0tXMFk9MTswMDsn\\\"\",\n            \"id\": \"602f55a9-afbd-41e5-bf58-6144a0fd5306\",\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"laborCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"employeePersonId\": \"39443c04-25b9-4df0-9472-e1323f9d2768\",\n            \"employeeCode\": \"39875645D\",\n            \"name\": \"ALFREDO\",\n            \"firstSurname\": \"SOLANO\",\n            \"secondSurname\": \"BARILA\",\n            \"fullName\": \"SOLANO BARILA ALFREDO\",\n            \"foreignCode\": \" \",\n            \"vatNumber\": \"87654321X\",\n            \"isResident\": true,\n            \"acronymAddressId\": \"8773fa7d-7250-4798-92ff-5ccd42968dee\",\n            \"acronymAddressCode\": \"CL\",\n            \"address\": \"PRIM\",\n            \"numberType\": \" \",\n            \"house\": \"345\",\n            \"block\": \"\",\n            \"hallway\": \"\",\n            \"stairs\": \"\",\n            \"floor\": \"1\",\n            \"door\": \"1\",\n            \"cityId\": \"329d34c1-982f-4f57-a523-c51e4741b5f6\",\n            \"cityCode\": \"01057\",\n            \"cityDescription\": \"AGURAIN-SALVATIERRA\",\n            \"postalCodeId\": \"cc0f1492-13fd-4461-9989-fe5ae22e5bbf\",\n            \"postalCode\": \"01100\",\n            \"countyCode\": \"01\",\n            \"countyId\": \"b874d45c-f309-4370-b9da-f1057a9cf4ff\",\n            \"countyDescription\": \"ALAVA\",\n            \"countryCode\": \"011\",\n            \"countryId\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n            \"countryDescription\": \"ESPAÑA\",\n            \"phoneNumber\": \"9771245XX\",\n            \"mobilePhoneNumber\": \"6251122XX\",\n            \"email\": \"solano@summar.es\",\n            \"birthDate\": \"1965-08-15\",\n            \"cityBirthId\": \"da587b5d-3a8d-4e01-be80-fb512bf7745f\",\n            \"cityBirthCode\": \"43125\",\n            \"cityBirthDescription\": \"REUS\",\n            \"countyBirthId\": \"1703b5b7-c5af-44b4-be83-43f050997c50\",\n            \"countyBirthCode\": \"43\",\n            \"countyBirthDescription\": \"TARRAGONA\",\n            \"countryBirthId\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n            \"countryBirthCode\": \"011\",\n            \"countryBirthDescription\": \"ESPAÑA\",\n            \"gender\": \"Hombre\",\n            \"maritalStatus\": \"Casado/a\",\n            \"nationalityId\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n            \"nationalityCode\": \"011\",\n            \"nationalityDescription\": \"ESPAÑOLA\",\n            \"fatherName\": \"\",\n            \"motherName\": \"\",\n            \"socialSecurityNumber\": \"431534354545\",\n            \"trainingLevelId\": \"4eb120b4-0b7b-4acc-b264-2ca1095b267d\",\n            \"trainingLevelCode\": \"55\",\n            \"resourceCode\": \"10124\",\n            \"employeeCustomField1\": \"\",\n            \"employeeCustomField2\": \"\",\n            \"employeeCustomField3\": \"\",\n            \"employeeCustomField4\": \"\",\n            \"employeeCustomField5\": \"\",\n            \"employeeCustomField6\": \"\",\n            \"employeeCustomField7\": \"\",\n            \"employeeCustomField8\": \"\",\n            \"employeeCustomField9\": \"\",\n            \"employeeCustomField0\": \"\",            \n            \"createdOn\": \"2025-07-25T11:13:19.967Z\",\n            \"lastModifiedOn\": \"2025-07-25T11:13:19.967Z\",\n            \"deletedOn\": \"0001-01-01T00:00:00Z\",\n            \"active\": true,\n            \"deleted\": false\n        },\n        // ---\n    ]\n}"}],"_postman_id":"d0250d79-cde8-4a07-bb5b-ac770b71526d"},{"name":"employeeAbsences","id":"2ded5663-dd93-43aa-8c15-09c99f8c9085","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/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>laborCompanyId</td>\n<td>ID de la empresa laboral</td>\n</tr>\n<tr>\n<td>laborCompanyCode</td>\n<td>Código de la empresa laboral</td>\n</tr>\n<tr>\n<td>laborCompanyName</td>\n<td>Nombre de la empresa laboral</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>partial</td>\n<td>Indica si es un absentismo parcial, o de día completo</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>partOfDay</td>\n<td>Valor de parcialidad (sobre 1)</td>\n</tr>\n<tr>\n<td>lineNo</td>\n<td>Número de línea del absentismo</td>\n</tr>\n<tr>\n<td>type</td>\n<td>Tipo de absentismo</td>\n</tr>\n<tr>\n<td>subtype</td>\n<td>Subtipo de absentismo</td>\n</tr>\n<tr>\n<td>absenceReasonId</td>\n<td>ID del motivo de absentismo</td>\n</tr>\n<tr>\n<td>absenceReasonCode</td>\n<td>Código del motivo de absentismo</td>\n</tr>\n<tr>\n<td>absenceReasonDescription</td>\n<td>Descripción del motivo de absentismo</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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","employeeAbsences"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"b2bf6a2e-5c99-4e4f-9e9f-6556bd305f72","name":"employeeAbsences","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/employeeAbsences"},"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":"f3151efd-c3fe-4916-9b40-2a919e317fa5"},{"key":"Date","value":"Fri, 22 Aug 2025 10:32:32 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/employeeAbsences\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0O2NvekcyU1BNYkRaL2ZnWXErN0F4QWN2eVdTcENjZ1AwOEtuMFRvUWlnU009MTswMDsn\\\"\",\n            \"id\": \"3b31116d-2fb4-4501-983b-084ced62f654\",\n            \"employeeId\": \"ef70b343-4e51-4c8f-862b-946c47db59dd\",\n            \"employeeCode\": \"39545454D\",\n            \"employeeName\": \"CANTOS ROLDAN MARIA\",\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"laborCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"contributionAccountId\": \"2e1eb0d1-bb8e-4d76-a1b4-cc2aade8f592\",\n            \"contributionAccountCode\": \"01254112524\",\n            \"startDate\": \"2021-06-20\",\n            \"endDate\": \"2021-06-30\",\n            \"partial\": false,\n            \"startTime\": \"00:00:00\",\n            \"endTime\": \"00:00:00\",\n            \"partOfDay\": 0,\n            \"lineNo\": 0,\n            \"type\": \"Dias no trabajados\",\n            \"subtype\": \" \",\n            \"absenceReasonId\": \"9bbf1558-5696-4b2a-9b19-3cb1e9d779ea\",\n            \"absenceReasonCode\": \"05\",\n            \"absenceReasonDescription\": \"Permiso por matrimonio\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"0001-01-01T00:00:00Z\",\n            \"deletedOn\": \"0001-01-01T00:00:00Z\",\n            \"deleted\": false\n        },\n        // ---\n    ]\n}"}],"_postman_id":"2ded5663-dd93-43aa-8c15-09c99f8c9085"},{"name":"employeePhotos","id":"73a2819a-e4cd-4366-b7e9-6ef418d09582","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","employeePhotos({{APIemployeeId}})"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"e7779c33-5b85-4aae-a079-243e34a429cf","name":"employeePhotos","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/employeePhotos({{APIemployeeId}})"},"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":"624d6420-fafc-4f27-baa8-bb4590afbb93"},{"key":"Date","value":"Fri, 22 Aug 2025 11:12:13 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/employeePhotos/$entity\",\n    \"@odata.etag\": \"W/\\\"JzQ0O3ZaSkUvc0tJUGxOZC9QNVdFSkN3TjRtcUdWS1RKTVU5M3ZVVm1Ya3pBRVk9MTswMDsn\\\"\",\n    \"id\": \"602f55a9-afbd-41e5-bf58-6144a0fd5306\",\n    \"companyCode\": \"A34544551\",\n    \"employeeCode\": \"39875645D\",\n    \"base64content\": \"/9j/4AAQSkZJRgABAQEAAAAAAAD/2wBDAAkGBxQTEhMUEhQUFRQWFBQVFBQUFhQUFBYVFBQWFxQUFBQYHCggGBolHBQUITEhJSkrLi4uFyAzODMsOCgtLiv/2wBDAQoKCg4NDhsQEBosJR8kLCwsLCwsLCwsLCwsLCwsLCwsLCwsKywsLCwsLCssLCwsLCwsLCwsLCwsLCwrLCwsMiz/wAARCAEMALwDASIAAhEBAxEB/8QAHAAAAQUBAQEAAAAAAAAAAAAAAAECBAUGAwcI/8QAPhAAAQMCBAMFBgMGBQUAAAAAAQACEQMEBRIh..................G30rmXN9RZTsx26t7uGT7OsR/kvIk/7Z2ePn0Wa/aP27DM9pbPiqRFWo3/xgzLGn8f0nntCVL+1btY24qGypH92wg1Hg6PqA6MHMN+vgvNrl+kO0e3jzCdV2yu95vunmFEq1C7dQkxCEISEIQgBCEIAXWjWIGnNck5qjW0y6KUieWoyplRiE/KjKgGIT8qMqAYhPyoyoBiE/KjKgGhdrevlM7rnlRlQEqg8El7jq3UePAhOccw72jjJDuZk6E81DyqeHy2DEQhMQa9YmAdxxXFPeNUmVQc1CdlRlQDUJ+VJlQDUJ2VGVANTmpcqVrUB//9k=\"\n}"}],"_postman_id":"73a2819a-e4cd-4366-b7e9-6ef418d09582"}],"id":"c730a60c-b742-495a-bc87-e82ebf4d5273","description":"<p>Funciones de consulta de datos de empleados</p>\n","_postman_id":"c730a60c-b742-495a-bc87-e82ebf4d5273","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}}},{"name":"📝 Contratos","item":[{"name":"workers","id":"4e7a2640-c4e4-461b-b313-d70e977f663c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/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>laborCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCode</td>\n<td>Código de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyName</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>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>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>agreementId</td>\n<td>ID del convenio</td>\n</tr>\n<tr>\n<td>agreementCode</td>\n<td>Código del convenio</td>\n</tr>\n<tr>\n<td>agreementDescription</td>\n<td>Nombre del convenio</td>\n</tr>\n<tr>\n<td>agreementDate</td>\n<td>Fecha de asignación al convenio</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>jobPosition</td>\n<td>Descripción del puesto de trabajo</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>socialExclusionCode</td>\n<td>Código de exclusión social/víctimas</td>\n</tr>\n<tr>\n<td>socialExclusionDescription</td>\n<td>Descripción de la exclusión social/víctimas</td>\n</tr>\n<tr>\n<td>exemptionCode</td>\n<td>Código de bonificación</td>\n</tr>\n<tr>\n<td>exemptionSubcode</td>\n<td>Subcódigo de bonificación</td>\n</tr>\n<tr>\n<td>exemptionDescription</td>\n<td>Descripción de la bonificación</td>\n</tr>\n<tr>\n<td>exemptionDate</td>\n<td>Fecha de asignación de la bonificación</td>\n</tr>\n<tr>\n<td>exemptionEndDate</td>\n<td>Fecha de vencimiento de la bonificación</td>\n</tr>\n<tr>\n<td>professionalGroupCode</td>\n<td>Código de grupo profesional</td>\n</tr>\n<tr>\n<td>professionalGroupDescription</td>\n<td>Descripción del grupo profesional</td>\n</tr>\n<tr>\n<td>professionalGroupDate</td>\n<td>Fecha de asignación del grupo profesional</td>\n</tr>\n<tr>\n<td>contributionGroupCode</td>\n<td>Código del grupo de cotización</td>\n</tr>\n<tr>\n<td>contributionGroupDate</td>\n<td>Fecha de asignación del grupo de cotización</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>workSchedule</td>\n<td>Horario contrato</td>\n</tr>\n<tr>\n<td>informativeHours</td>\n<td>Horas por día informadas</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>foreignWorkExemption</td>\n<td>Indicador exención de trabajo en el extranjero</td>\n</tr>\n<tr>\n<td>foreignWorkExemptionDate</td>\n<td>Fecha de asignación de exención extranjero</td>\n</tr>\n<tr>\n<td>cnoCode</td>\n<td>Código del CNO</td>\n</tr>\n<tr>\n<td>cnoDescription</td>\n<td>Descripción del CNO</td>\n</tr>\n<tr>\n<td>cnoDate</td>\n<td>Fecha de asignación del CNO</td>\n</tr>\n<tr>\n<td>agrarianContributionMode</td>\n<td>0: '' , 1: Mensual , 2: Por jornadas reales</td>\n</tr>\n<tr>\n<td>contributionExclusionCode</td>\n<td>Código de exclusión cotización</td>\n</tr>\n<tr>\n<td>contributionExclusionDescription</td>\n<td>Descripción de la exclusión cotización</td>\n</tr>\n<tr>\n<td>probationaryPeriodEndDate</td>\n<td>Fecha final periodo de prueba</td>\n</tr>\n<tr>\n<td>departmentId</td>\n<td>ID del departamento</td>\n</tr>\n<tr>\n<td>departmentCode</td>\n<td>Código del departamento</td>\n</tr>\n<tr>\n<td>departmentDescription</td>\n<td>Descripción del departamento</td>\n</tr>\n<tr>\n<td>unemploymentConditionCode</td>\n<td>Código de desempleo</td>\n</tr>\n<tr>\n<td>unemploymentConditionDescription</td>\n<td>Descripción de desempleo</td>\n</tr>\n<tr>\n<td>employmentRelationshipCode</td>\n<td>Código de relación laboral</td>\n</tr>\n<tr>\n<td>employmentRelationshipDescr</td>\n<td>Descripción de relación laboral</td>\n</tr>\n<tr>\n<td>collectiveEmployeeCode</td>\n<td>Código colectivo del trabajador</td>\n</tr>\n<tr>\n<td>collectiveEmployeeDescription</td>\n<td>Descripción colectivo del trabajador</td>\n</tr>\n<tr>\n<td>collectiveSSCode</td>\n<td>Código colectivo reducción seguridad social</td>\n</tr>\n<tr>\n<td>collectiveSSDescription</td>\n<td>Descripción colectivo reducción seguridad social</td>\n</tr>\n<tr>\n<td>substitutionCauseCode</td>\n<td>Código causa sustitución</td>\n</tr>\n<tr>\n<td>substitutionCauseDescription</td>\n<td>Descripción causa sustitución</td>\n</tr>\n<tr>\n<td>iRPFExemption</td>\n<td>Indicador exención de IRPF</td>\n</tr>\n<tr>\n<td>socialSecurityExemption</td>\n<td>Indicador exención de seguridad social</td>\n</tr>\n<tr>\n<td>iRPFPercentage</td>\n<td>Porcentaje de IRPF</td>\n</tr>\n<tr>\n<td>firstContractPermanentDisc</td>\n<td>Indicador primer contrato fijo discontinuo</td>\n</tr>\n<tr>\n<td>contractPermanentDiscDate</td>\n<td>Fecha de primer contrato fijo discontinuo</td>\n</tr>\n<tr>\n<td>endDateForeignAutorization</td>\n<td>Fecha de vigencia autorización extranjeros</td>\n</tr>\n<tr>\n<td>foreignAutorizationCode</td>\n<td>Autorización para extranjeros</td>\n</tr>\n<tr>\n<td>foreignAutorizationDescription</td>\n<td>Descripción autorización extranjeros</td>\n</tr>\n<tr>\n<td>foreignAutorizationRemarks</td>\n<td>Observaciones autorización extranjeros</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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","workers"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"aac9a566-dba4-4f20-beed-0901c6a04693","name":"workers","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/workers"},"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":"352a64ae-d0d0-48fb-b948-fbd0d0aade8c"},{"key":"Date","value":"Mon, 25 Aug 2025 07:27:10 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/workers\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0O1RMbC9QMXp0VnY0MWliaXdMWG9ReWJ4NnVjRFFJaXFYMitSWDJ3NkxQdmM9MTswMDsn\\\"\",\n            \"id\": \"c21a6ad7-4c2d-487f-94ff-831fe9ee78be\",\n            \"employeeId\": \"602f55a9-afbd-41e5-bf58-6144a0fd5306\",\n            \"employeePersonId\": \"39443c04-25b9-4df0-9472-e1323f9d2768\",\n            \"employeeCode\": \"39875645D\",\n            \"fullName\": \"SOLANO BARILA ALFREDO\",\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"laborCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"contributionAccountId\": \"e335f7fb-c4cc-43db-b9a7-bc3e4b7be401\",\n            \"contributionAccountCode\": \"08452225455\",\n            \"hireDate\": \"2003-01-15\",\n            \"seniorityDate\": \"2012-03-01\",\n            \"terminationId\": \"00000000-0000-0000-0000-000000000000\",\n            \"terminationCode\": \"\",\n            \"terminationDate\": \"0001-01-01\",\n            \"workCenterId\": \"68e1147a-ac1a-468d-b4d0-1dbc4931ace6\",\n            \"workCenterCode\": \"001\",\n            \"workCenterDescription\": \"Central \",\n            \"workCenterDate\": \"2003-01-15\",\n            \"agreementId\": \"0d9e2aea-64bd-4c85-b0c7-e4fe8af03bac\",\n            \"agreementCode\": \"OFICAT\",\n            \"agreementDescription\": \"OFICINAS Y DESPACHOS DE CATALUÑA\",\n            \"agreementDate\": \"2016-01-01\",\n            \"categoryId\": \"8ada7f00-4e43-4996-a0ad-ec8666983ccb\",\n            \"categoryCode\": \"415\",\n            \"categoryDescription\": \"GRUPO 1\",\n            \"categoryDate\": \"2016-01-01\",\n            \"jobPosition\": \"\",\n            \"workdayPercentage\": 62.5,\n            \"workdayType\": \"Parcial\",\n            \"workdayHours\": 25,\n            \"workHoursTimeUnit\": \"Semanales\",\n            \"workingDays\": 5,\n            \"workingDaysTimeUnit\": \"Semanales\",             \n            \"workdayDate\": \"2015-10-15\",\n            \"contractId\": \"134cf1c1-8a7f-499a-9916-2e80aef3cf57\",\n            \"contractCode\": \"100\",\n            \"contractSubCode\": \"\",\n            \"contractDescription\": \"INDEFINIDO T.COMPLETO ORDINAR.\",\n            \"contractDate\": \"2003-01-15\",\n            \"expirationDate\": \"0001-01-01\",\n            \"socialExclusionCode\": \"\",\n            \"socialExclusionDescription\": \"\",\n            \"exemptionCode\": \"\",\n            \"exemptionSubcode\": \"\",\n            \"exemptionDescription\": \"\",\n            \"exemptionDate\": \"0001-01-01\",\n            \"exemptionEndDate\": \"0001-01-01\",\n            \"professionalGroupCode\": \"\",\n            \"professionalGroupDescription\": \"\",\n            \"professionalGroupDate\": \"0001-01-01\",\n            \"contributionGroupCode\": \"\",\n            \"contributionGroupDate\": \"0001-01-01\",\n            \"salaryLevelId\": \"00000000-0000-0000-0000-000000000000\",\n            \"salaryLevelCode\": \"\",\n            \"salaryLevelDescription\": \"\",\n            \"salaryLevelDate\": \"2003-01-15\",\n            \"workSchedule\": \"\",\n            \"informativeHours\": false,\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            \"workHoursOnHolidays\": 0,\n            \"historicalCustomField1\": \"\",\n            \"historicalCustomField1Date\": \"2003-01-15\",\n            \"historicalCustomField2\": \"\",\n            \"historicalCustomField2Date\": \"2003-01-15\",\n            \"historicalCustomField3\": \"\",\n            \"historicalCustomField3Date\": \"2003-01-15\",\n            \"foreignWorkExemption\": false,\n            \"foreignWorkExemptionDate\": \"0001-01-01\",\n            \"cnoCode\": \"\",\n            \"cnoDescription\": \"\",\n            \"cnoDate\": \"0001-01-01\",\n            \"agrarianContributionMode\": \" \",\n            \"contributionExclusionCode\": \"\",\n            \"contributionExclusionDescription\": \"\",\n            \"probationaryPeriodEndDate\": \"0001-01-01\",\n            \"departmentId\": \"00000000-0000-0000-0000-000000000000\",\n            \"departmentCode\": \"\",\n            \"departmentDescription\": \"\",\n            \"unemploymentConditionCode\": \"\",\n            \"unemploymentConditionDescription\": \"\",\n            \"employmentRelationshipCode\": \"\",\n            \"employmentRelationshipDescr\": \"\",\n            \"collectiveEmployeeCode\": \"\",\n            \"collectiveEmployeeDescription\": \"\",\n            \"collectiveSSCode\": \"\",\n            \"collectiveSSDescription\": \"\",\n            \"substitutionCauseCode\": \"\",\n            \"substitutionCauseDescription\": \"\",\n            \"iRPFExemption\": false,\n            \"socialSecurityExemption\": false,\n            \"iRPFPercentage\": 0,\n            \"firstContractPermanentDisc\": false,\n            \"contractPermanentDiscDate\": \"0001-01-01\",\n            \"endDateForeignAutorization\": \"0001-01-01\",\n            \"foreignAutorizationCode\": \"\",\n            \"foreignAutorizationDescription\": \"\",\n            \"foreignAutorizationRemarks\": \"\",\n            \"employeeContractCustomField1\": \"\",\n            \"employeeContractCustomField2\": \"\",\n            \"employeeContractCustomField3\": \"\",\n            \"employeeContractCustomField4\": \"\",\n            \"employeeContractCustomField5\": \"\",\n            \"employeeContractCustomField6\": \"\",\n            \"employeeContractCustomField7\": \"\",\n            \"employeeContractCustomField8\": \"\",\n            \"employeeContractCustomField9\": \"\",\n            \"employeeContractCustomField10\": \"\",              \n            \"name\": \"ALFREDO\",\n            \"firstSurname\": \"SOLANO\",\n            \"secondSurname\": \"BARILA\",\n            \"foreignCode\": \" \",\n            \"vatNumber\": \"87654321X\",\n            \"isResident\": true,\n            \"acronymAddressId\": \"8773fa7d-7250-4798-92ff-5ccd42968dee\",\n            \"acronymAddressCode\": \"CL\",\n            \"address\": \"PRIM\",\n            \"numberType\": \" \",\n            \"house\": \"345\",\n            \"block\": \"\",\n            \"hallway\": \"\",\n            \"stairs\": \"\",\n            \"floor\": \"1\",\n            \"door\": \"1\",\n            \"cityId\": \"da587b5d-3a8d-4e01-be80-fb512bf7745f\",\n            \"cityCode\": \"43125\",\n            \"cityDescription\": \"REUS\",\n            \"postalCodeId\": \"e16caba3-681e-45b9-a79e-e28aef9ef9fd\",\n            \"postalCode\": \"43205\",\n            \"countyId\": \"1703b5b7-c5af-44b4-be83-43f050997c50\",\n            \"countyCode\": \"43\",\n            \"countyDescription\": \"TARRAGONA\",\n            \"countryId\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n            \"countryCode\": \"011\",\n            \"countryDescription\": \"ESPAÑA\",\n            \"phoneNumber\": \"977124578\",\n            \"mobilePhoneNumber\": \"600111213\",\n            \"email\": \"soporte@summar.es\",\n            \"birthDate\": \"1965-08-15\",\n            \"cityBirthId\": \"da587b5d-3a8d-4e01-be80-fb512bf7745f\",\n            \"cityBirthCode\": \"43125\",\n            \"cityBirthDescription\": \"REUS\",\n            \"countyBirthId\": \"1703b5b7-c5af-44b4-be83-43f050997c50\",\n            \"countyBirthCode\": \"43\",\n            \"countyBirthDescription\": \"TARRAGONA\",\n            \"countryBirthId\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n            \"countryBirthCode\": \"011\",\n            \"countryBirthDescription\": \"ESPAÑA\",\n            \"gender\": \"Hombre\",\n            \"maritalStatus\": \"Casado/a\",\n            \"nationalityId\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n            \"nationalityCode\": \"011\",\n            \"nationalityDescription\": \"ESPAÑOLA\",\n            \"fatherName\": \"\",\n            \"motherName\": \"\",\n            \"socialSecurityNumber\": \"431534354545\",\n            \"trainingLevelId\": \"4eb120b4-0b7b-4acc-b264-2ca1095b267d\",\n            \"trainingLevelCode\": \"55\",\n            \"resourceCode\": \"101425\",\n            \"employeeFreeField1\": \"\",\n            \"employeeFreeField2\": \"\",\n            \"employeeFreeField3\": \"\",\n            \"employeeFreeField4\": \"\",\n            \"employeeFreeField5\": \"\",\n            \"employeeFreeField6\": \"\",\n            \"employeeFreeField7\": \"\",\n            \"employeeFreeField8\": \"\",\n            \"employeeFreeField9\": \"\",\n            \"employeeFreeField10\": \"\",            \n            \"createdOn\": \"2025-07-25T11:13:19.967Z\",\n            \"lastModifiedOn\": \"2025-07-25T11:13:19.967Z\",\n            \"deletedOn\": \"0001-01-01T00:00:00Z\",\n            \"active\": true,\n            \"deleted\": false\n        },\n        // ---\n    ]\n}"}],"_postman_id":"4e7a2640-c4e4-461b-b313-d70e977f663c"},{"name":"employeeContracts","id":"dca8048e-8c90-4b41-9ff4-33588d72b42e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/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>laborCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCode</td>\n<td>Código de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyName</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>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>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>agreementId</td>\n<td>ID del convenio</td>\n</tr>\n<tr>\n<td>agreementCode</td>\n<td>Código del convenio</td>\n</tr>\n<tr>\n<td>agreementDescription</td>\n<td>Nombre del convenio</td>\n</tr>\n<tr>\n<td>agreementDate</td>\n<td>Fecha de asignación al convenio</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>jobPosition</td>\n<td>Descripción del puesto de trabajo</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 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>socialExclusionCode</td>\n<td>Código de exclusión social/víctimas</td>\n</tr>\n<tr>\n<td>socialExclusionDescription</td>\n<td>Descripción de la exclusión social/víctimas</td>\n</tr>\n<tr>\n<td>exemptionCode</td>\n<td>Código de bonificación</td>\n</tr>\n<tr>\n<td>exemptionSubcode</td>\n<td>Subcódigo de bonificación</td>\n</tr>\n<tr>\n<td>exemptionDescription</td>\n<td>Descripción de la bonificación</td>\n</tr>\n<tr>\n<td>exemptionDate</td>\n<td>Fecha de asignación de la bonificación</td>\n</tr>\n<tr>\n<td>exemptionEndDate</td>\n<td>Fecha de vencimiento de la bonificación</td>\n</tr>\n<tr>\n<td>professionalGroupCode</td>\n<td>Código de grupo profesional</td>\n</tr>\n<tr>\n<td>professionalGroupDescription</td>\n<td>Descripción del grupo profesional</td>\n</tr>\n<tr>\n<td>professionalGroupDate</td>\n<td>Fecha de asignación del grupo profesional</td>\n</tr>\n<tr>\n<td>contributionGroupCode</td>\n<td>Código del grupo de cotización</td>\n</tr>\n<tr>\n<td>contributionGroupDate</td>\n<td>Fecha de asignación del grupo de cotización</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>workSchedule</td>\n<td>Horario contrato</td>\n</tr>\n<tr>\n<td>informativeHours</td>\n<td>Horas por día informadas</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>foreignWorkExemption</td>\n<td>Indicador exención de trabajo en el extranjero</td>\n</tr>\n<tr>\n<td>foreignWorkExemptionDate</td>\n<td>Fecha de asignación de exención extranjero</td>\n</tr>\n<tr>\n<td>cnoCode</td>\n<td>Código del CNO</td>\n</tr>\n<tr>\n<td>cnoDescription</td>\n<td>Descripción del CNO</td>\n</tr>\n<tr>\n<td>cnoDate</td>\n<td>Fecha de asignación del CNO</td>\n</tr>\n<tr>\n<td>agrarianContributionMode</td>\n<td>0: '' , 1: Mensual , 2: Por jornadas reales</td>\n</tr>\n<tr>\n<td>contributionExclusionCode</td>\n<td>Código de exclusión cotización</td>\n</tr>\n<tr>\n<td>contributionExclusionDescription</td>\n<td>Descripción de la exclusión cotización</td>\n</tr>\n<tr>\n<td>probationaryPeriodEndDate</td>\n<td>Fecha final periodo de prueba</td>\n</tr>\n<tr>\n<td>departmentId</td>\n<td>ID del departamento</td>\n</tr>\n<tr>\n<td>departmentCode</td>\n<td>Código del departamento</td>\n</tr>\n<tr>\n<td>departmentDescription</td>\n<td>Descripción del departamento</td>\n</tr>\n<tr>\n<td>unemploymentConditionCode</td>\n<td>Código de desempleo</td>\n</tr>\n<tr>\n<td>unemploymentConditionDescription</td>\n<td>Descripción de desempleo</td>\n</tr>\n<tr>\n<td>employmentRelationshipCode</td>\n<td>Código de relación laboral</td>\n</tr>\n<tr>\n<td>employmentRelationshipDescr</td>\n<td>Descripción de relación laboral</td>\n</tr>\n<tr>\n<td>collectiveEmployeeCode</td>\n<td>Código colectivo del trabajador</td>\n</tr>\n<tr>\n<td>collectiveEmployeeDescription</td>\n<td>Descripción colectivo del trabajador</td>\n</tr>\n<tr>\n<td>collectiveSSCode</td>\n<td>Código colectivo reducción seguridad social</td>\n</tr>\n<tr>\n<td>collectiveSSDescription</td>\n<td>Descripción colectivo reducción seguridad social</td>\n</tr>\n<tr>\n<td>substitutionCauseCode</td>\n<td>Código causa sustitución</td>\n</tr>\n<tr>\n<td>substitutionCauseDescription</td>\n<td>Descripción causa sustitución</td>\n</tr>\n<tr>\n<td>iRPFExemption</td>\n<td>Indicador exención de IRPF</td>\n</tr>\n<tr>\n<td>socialSecurityExemption</td>\n<td>Indicador exención de seguridad social</td>\n</tr>\n<tr>\n<td>iRPFPercentage</td>\n<td>Porcentaje de IRPF</td>\n</tr>\n<tr>\n<td>firstContractPermanentDisc</td>\n<td>Indicador primer contrato fijo discontinuo</td>\n</tr>\n<tr>\n<td>contractPermanentDiscDate</td>\n<td>Fecha de primer contrato fijo discontinuo</td>\n</tr>\n<tr>\n<td>endDateForeignAutorization</td>\n<td>Fecha de vigencia autorización extranjeros</td>\n</tr>\n<tr>\n<td>foreignAutorizationCode</td>\n<td>Autorización para extranjeros</td>\n</tr>\n<tr>\n<td>foreignAutorizationDescription</td>\n<td>Descripción autorización extranjeros</td>\n</tr>\n<tr>\n<td>foreignAutorizationRemarks</td>\n<td>Observaciones autorización extranjeros</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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","employeeContracts"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"037fc805-321d-41f0-9402-f10402e58651","name":"employeeContracts","originalRequest":{"method":"GET","header":[],"url":"/api/summar/labor/v1.0/companies()/employeeContracts"},"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":"385333c5-19b5-4149-baf1-3c6c16abe274"},{"key":"Date","value":"Mon, 25 Aug 2025 08:07:38 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/employeeContracts\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0O2c1cFIvV2pUYXQrL2l1dEtuYkI5TTdMVmRUVUdsL2F3MEpnSnJBYzU5eHc9MTswMDsn\\\"\",\n            \"id\": \"c21a6ad7-4c2d-487f-94ff-831fe9ee78be\",\n            \"employeeId\": \"602f55a9-afbd-41e5-bf58-6144a0fd5306\",\n            \"employeePersonId\": \"39443c04-25b9-4df0-9472-e1323f9d2768\",\n            \"employeeCode\": \"39875645D\",\n            \"fullName\": \"SOLANO BARILA ALFREDO\",\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"laborCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"contributionAccountId\": \"e335f7fb-c4cc-43db-b9a7-bc3e4b7be401\",\n            \"contributionAccountCode\": \"08452225455\",\n            \"hireDate\": \"2003-01-15\",\n            \"seniorityDate\": \"2012-03-01\",\n            \"terminationId\": \"00000000-0000-0000-0000-000000000000\",\n            \"terminationCode\": \"\",\n            \"terminationDate\": \"0001-01-01\",\n            \"workCenterId\": \"68e1147a-ac1a-468d-b4d0-1dbc4931ace6\",\n            \"workCenterCode\": \"001\",\n            \"workCenterDescription\": \"Central \",\n            \"workCenterDate\": \"2003-01-15\",\n            \"agreementId\": \"0d9e2aea-64bd-4c85-b0c7-e4fe8af03bac\",\n            \"agreementCode\": \"OFICAT\",\n            \"agreementDescription\": \"OFICINAS Y DESPACHOS DE CATALUÑA\",\n            \"agreementDate\": \"2016-01-01\",\n            \"categoryId\": \"8ada7f00-4e43-4996-a0ad-ec8666983ccb\",\n            \"categoryCode\": \"415\",\n            \"categoryDescription\": \"GRUPO 1\",\n            \"categoryDate\": \"2016-01-01\",\n            \"jobPosition\": \"\",\n            \"workdayPercentage\": 62.5,\n            \"workdayType\": \"Parcial\",\n            \"workdayHours\": 25,\n            \"workHoursTimeUnit\": \"Semanales\",\n            \"workingDays\": 5,\n            \"workingDaysTimeUnit\": \"Semanales\",            \n            \"workdayDate\": \"2015-10-15\",\n            \"contractId\": \"134cf1c1-8a7f-499a-9916-2e80aef3cf57\",\n            \"contractCode\": \"100\",\n            \"contractSubCode\": \"\",\n            \"contractDescription\": \"INDEFINIDO T.COMPLETO ORDINAR.\",\n            \"contractDate\": \"2003-01-15\",\n            \"contractDuration\": 0,\n            \"durationTimeUnit\": \" \",            \n            \"expirationDate\": \"0001-01-01\",\n            \"socialExclusionCode\": \"\",\n            \"socialExclusionDescription\": \"\",\n            \"exemptionCode\": \"\",\n            \"exemptionSubcode\": \"\",\n            \"exemptionDescription\": \"\",\n            \"exemptionDate\": \"0001-01-01\",\n            \"exemptionEndDate\": \"0001-01-01\",\n            \"professionalGroupCode\": \"\",\n            \"professionalGroupDescription\": \"\",\n            \"professionalGroupDate\": \"0001-01-01\",\n            \"contributionGroupCode\": \"\",\n            \"contributionGroupDate\": \"0001-01-01\",\n            \"salaryLevelId\": \"00000000-0000-0000-0000-000000000000\",\n            \"salaryLevelCode\": \"\",\n            \"salaryLevelDescription\": \"\",\n            \"salaryLevelDate\": \"2003-01-15\",\n            \"workSchedule\": \"\",\n            \"informativeHours\": false,\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            \"workHoursOnHolidays\": 0,\n            \"historicalCustomField1\": \"\",\n            \"historicalCustomField1Date\": \"2003-01-15\",\n            \"historicalCustomField2\": \"\",\n            \"historicalCustomField2Date\": \"2003-01-15\",\n            \"historicalCustomField3\": \"\",\n            \"historicalCustomField3Date\": \"2003-01-15\",\n            \"foreignWorkExemption\": false,\n            \"foreignWorkExemptionDate\": \"0001-01-01\",\n            \"cnoCode\": \"\",\n            \"cnoDescription\": \"\",\n            \"cnoDate\": \"0001-01-01\",\n            \"agrarianContributionMode\": \" \",\n            \"contributionExclusionCode\": \"\",\n            \"contributionExclusionDescription\": \"\",\n            \"probationaryPeriodEndDate\": \"0001-01-01\",\n            \"departmentId\": \"00000000-0000-0000-0000-000000000000\",\n            \"departmentCode\": \"\",\n            \"departmentDescription\": \"\",\n            \"unemploymentConditionCode\": \"\",\n            \"unemploymentConditionDescription\": \"\",\n            \"employmentRelationshipCode\": \"\",\n            \"employmentRelationshipDescr\": \"\",\n            \"collectiveEmployeeCode\": \"\",\n            \"collectiveEmployeeDescription\": \"\",\n            \"collectiveSSCode\": \"\",\n            \"collectiveSSDescription\": \"\",\n            \"substitutionCauseCode\": \"\",\n            \"substitutionCauseDescription\": \"\",\n            \"iRPFExemption\": false,\n            \"socialSecurityExemption\": false,\n            \"iRPFPercentage\": 0,\n            \"firstContractPermanentDisc\": false,\n            \"contractPermanentDiscDate\": \"0001-01-01\",\n            \"endDateForeignAutorization\": \"0001-01-01\",\n            \"foreignAutorizationCode\": \"\",\n            \"foreignAutorizationDescription\": \"\",\n            \"foreignAutorizationRemarks\": \"\",\n            \"employeeContractCustomField1\": \"\",\n            \"employeeContractCustomField2\": \"\",\n            \"employeeContractCustomField3\": \"\",\n            \"employeeContractCustomField4\": \"\",\n            \"employeeContractCustomField5\": \"\",\n            \"employeeContractCustomField6\": \"\",\n            \"employeeContractCustomField7\": \"\",\n            \"employeeContractCustomField8\": \"\",\n            \"employeeContractCustomField9\": \"\",\n            \"employeeContractCustomField10\": \"\",            \n            \"createdOn\": \"2025-07-25T11:13:19.967Z\",\n            \"lastModifiedOn\": \"2025-07-25T11:13:19.967Z\",\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":"dca8048e-8c90-4b41-9ff4-33588d72b42e"},{"name":"employeeContractChanges","id":"bc154997-1fd1-4a87-8f42-95381be80b85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/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>laborCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCode</td>\n<td>Código de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyName</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>changeDate</td>\n<td>Fecha de aplicación del cambio</td>\n</tr>\n<tr>\n<td>changeEndDate</td>\n<td>Fecha fin de aplicación del cambio</td>\n</tr>\n<tr>\n<td>terminationDate</td>\n<td>Fecha fin de aplicación del cambio</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>workCenterUpdate</td>\n<td>Indica si se ha modificado el centro de trabajo en este cambio</td>\n</tr>\n<tr>\n<td>agreementId</td>\n<td>ID del convenio</td>\n</tr>\n<tr>\n<td>agreementCode</td>\n<td>Código del convenio</td>\n</tr>\n<tr>\n<td>agreementDescription</td>\n<td>Nombre del convenio</td>\n</tr>\n<tr>\n<td>agreementDate</td>\n<td>Fecha de asignación al convenio</td>\n</tr>\n<tr>\n<td>agreementUpdate</td>\n<td>Indica si se ha modificado el convenio en este cambio</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>categoryUpdate</td>\n<td>Indica si se ha modificado la categoría en este cambio</td>\n</tr>\n<tr>\n<td>jobPosition</td>\n<td>Descripción del puesto de trabajo</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>Tipo de jornada laboral</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>Unidad de tiempo horas de trabajo</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>Unidad de tiempo días de trabajo</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>workdayUpdate</td>\n<td>Indica si se ha modificado la jornada en este cambio</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>contractUpdate</td>\n<td>Indica si se ha modificado el tipo de contrato en este cambio</td>\n</tr>\n<tr>\n<td>exemptionCode</td>\n<td>Código de bonificación</td>\n</tr>\n<tr>\n<td>exemptionSubcode</td>\n<td>Subcódigo de bonificación</td>\n</tr>\n<tr>\n<td>exemptionDescription</td>\n<td>Descripción de la bonificación</td>\n</tr>\n<tr>\n<td>exemptionDate</td>\n<td>Fecha de asignación de la bonificación</td>\n</tr>\n<tr>\n<td>exemptionEndDate</td>\n<td>Fecha de vencimiento de la bonificación</td>\n</tr>\n<tr>\n<td>exemptionCode</td>\n<td>Actualización de de bonificación</td>\n</tr>\n<tr>\n<td>professionalGroupCode</td>\n<td>Código de grupo profesional</td>\n</tr>\n<tr>\n<td>professionalGroupDescription</td>\n<td>Descripción del grupo profesional</td>\n</tr>\n<tr>\n<td>professionalGroupDate</td>\n<td>Fecha del asignación del grupo profesional</td>\n</tr>\n<tr>\n<td>professionalGroupUpdate</td>\n<td>Actualización del asignación del grupo profesional</td>\n</tr>\n<tr>\n<td>contributionGroupCode</td>\n<td>Código del grupo de cotización</td>\n</tr>\n<tr>\n<td>contributionGroupDate</td>\n<td>Fecha de asignación del grupo de cotización</td>\n</tr>\n<tr>\n<td>contributionGroupUpdate</td>\n<td>Actualizaióm del grupo de cotización</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>salaryLevelUpdate</td>\n<td>Actualizació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 camp libre hist. 1º</td>\n</tr>\n<tr>\n<td>historicalCustomField1Update</td>\n<td>Actualización del camp 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 camp libre hist. 2º</td>\n</tr>\n<tr>\n<td>historicalCustomField2Update</td>\n<td>Actualización del camp 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 camp libre hist. 3º</td>\n</tr>\n<tr>\n<td>historicalCustomField3Update</td>\n<td>Actualización del camp libre hist. 3º</td>\n</tr>\n<tr>\n<td>foreignWorkExemption\"</td>\n<td>Indicador exención de trabajo en el extranjero</td>\n</tr>\n<tr>\n<td>foreignWorkExemptionDate</td>\n<td>Fecha de asignación de exención extranjero</td>\n</tr>\n<tr>\n<td>foreignWorkExemptionUpdate</td>\n<td>Actualización de exención extranjero</td>\n</tr>\n<tr>\n<td>iRPFPercentage</td>\n<td>Porcentaje de IRPF</td>\n</tr>\n<tr>\n<td>collectiveSSCode</td>\n<td>Código colectivo reducción seguridad social</td>\n</tr>\n<tr>\n<td>collectiveSSDescription</td>\n<td>Descripción colectivo reducción seguridad social</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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","employeeContractChanges"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"43bae0c7-d827-4455-a060-ed39e4e9ef34","name":"employeeContractChanges","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/employeeContractChanges"},"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":"670c35e7-ef43-4fa4-9d35-62feeace3264"},{"key":"Date","value":"Mon, 25 Aug 2025 08:43:01 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/employeeContractChanges\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0O2pRWVRBUThLZ3pBSEtDY3VsOUtUUVFVWmw3QWVKSERZR2Y4cnhQelUrbjQ9MTswMDsn\\\"\",\n            \"id\": \"1a657f53-2864-4742-9ff4-8835e78667a8\",\n            \"employeeContractID\": \"c21a6ad7-4c2d-487f-94ff-831fe9ee78be\",\n            \"employeePersonId\": \"39443c04-25b9-4df0-9472-e1323f9d2768\",\n            \"employeeId\": \"602f55a9-afbd-41e5-bf58-6144a0fd5306\",\n            \"employeeCode\": \"39875645D\",\n            \"fullName\": \"SOLANO BARILA ALFREDO\",\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"laborCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"contributionAccountId\": \"e335f7fb-c4cc-43db-b9a7-bc3e4b7be401\",\n            \"contributionAccountCode\": \"08452225455\",\n            \"hireDate\": \"2003-01-15\",\n            \"changeDate\": \"2003-01-15\",\n            \"changeEndDate\": \"0001-01-01\",\n            \"terminationDate\": \"0001-01-01\",\n            \"workCenterId\": \"68e1147a-ac1a-468d-b4d0-1dbc4931ace6\",\n            \"workCenterCode\": \"001\",\n            \"workCenterDescription\": \"Central \",\n            \"workCenterDate\": \"2003-01-15\",\n            \"workCenterUpdate\": true,\n            \"agreementId\": \"bca9f643-5b6a-42f1-8d7c-9c3811740330\",\n            \"agreementCode\": \"CONSULT\",\n            \"agreementDescription\": \"Convenio Consultorias\",\n            \"agreementDate\": \"2003-01-15\",\n            \"agreementUpdate\": true,\n            \"categoryId\": \"2dac6899-e957-461a-8483-6747b8082b14\",\n            \"categoryCode\": \"006\",\n            \"categoryDescription\": \"TITULADO SUPERIOR\",\n            \"jobPosition\": \"\",\n            \"categoryDate\": \"2003-01-15\",\n            \"categoryUpdate\": true,\n            \"workdayPercentage\": 0,\n            \"workdayType\": \"Completa\",\n            \"workdayHours\": 40,\n            \"workHoursTimeUnit\": \"Semanales\",\n            \"workingDays\": 5,\n            \"workingDaysTimeUnit\": \"Semanales\",\n            \"workdayDate\": \"2003-01-15\",\n            \"workdayUpdate\": true,\n            \"contractId\": \"134cf1c1-8a7f-499a-9916-2e80aef3cf57\",\n            \"contractCode\": \"100\",\n            \"contractDescription\": \"INDEFINIDO T.COMPLETO ORDINAR.\",\n            \"contractDate\": \"2003-01-15\",\n            \"expirationDate\": \"0001-01-01\",            \n            \"contractUpdate\": true,\n            \"exemptionCode\": \"\",\n            \"exemptionSubcode\": \"\",\n            \"exemptionDescription\": \"\",\n            \"exemptionDate\": \"0001-01-01\",\n            \"exemptionEndDate\": \"0001-01-01\",\n            \"exemptionUpdate\": false,\n            \"professionalGroupCode\": \"\",\n            \"professionalGroupDescription\": \"\",\n            \"professionalGroupDate\": \"0001-01-01\",\n            \"professionalGroupUpdate\": false,\n            \"contributionGroupCode\": \"\",\n            \"contributionGroupDate\": \"0001-01-01\",\n            \"contributionGroupUpdate\": false,\n            \"salaryLevelId\": \"00000000-0000-0000-0000-000000000000\",\n            \"salaryLevelCode\": \"\",\n            \"salaryLevelDescription\": \"\",\n            \"salaryLevelDate\": \"0001-01-01\",\n            \"salaryLevelUpdate\": false,\n            \"historicalCustomField1\": \"\",\n            \"historicalCustomField1Date\": \"0001-01-01\",\n            \"historicalCustomField1Update\": false,\n            \"historicalCustomField2\": \"\",\n            \"historicalCustomField2Date\": \"0001-01-01\",\n            \"historicalCustomField2Update\": false,\n            \"historicalCustomField3\": \"\",\n            \"historicalCustomField3Date\": \"0001-01-01\",\n            \"historicalCustomField3Update\": false,\n            \"foreignWorkExemption\": false,\n            \"foreignWorkExemptionDate\": \"0001-01-01\",\n            \"foreignWorkExemptionUpdate\": false,\n            \"iRPFPercentage\": 0,\n            \"collectiveSSCode\": \"\",\n            \"collectiveSSDescription\": \"\",            \n            \"createdOn\": \"2025-07-25T11:13:19.967Z\",\n            \"modifiedOn\": \"2025-07-25T11:13:19.967Z\",\n            \"active\": true\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0O3Rqcmw0SXNXK015OHVzamtJZXJvbFlZeHE2eE1aN3h4MU14K1JQODRWaFE9MTswMDsn\\\"\",\n            \"id\": \"6ebe1a23-6815-4db7-8c06-d2be6598320d\",\n            \"employeeContractID\": \"c21a6ad7-4c2d-487f-94ff-831fe9ee78be\",\n            \"employeePersonId\": \"39443c04-25b9-4df0-9472-e1323f9d2768\",\n            \"employeeId\": \"602f55a9-afbd-41e5-bf58-6144a0fd5306\",\n            \"employeeCode\": \"39875645D\",\n            \"fullName\": \"SOLANO BARILA ALFREDO\",\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"laborCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"contributionAccountId\": \"e335f7fb-c4cc-43db-b9a7-bc3e4b7be401\",\n            \"contributionAccountCode\": \"08452225455\",\n            \"hireDate\": \"2003-01-15\",\n            \"changeDate\": \"2012-06-01\",\n            \"terminationDate\": \"0001-01-01\",\n            \"workCenterId\": \"68e1147a-ac1a-468d-b4d0-1dbc4931ace6\",\n            \"workCenterCode\": \"001\",\n            \"workCenterDescription\": \"Central \",\n            \"workCenterDate\": \"2003-01-15\",\n            \"workCenterUpdate\": false,\n            \"agreementId\": \"bca9f643-5b6a-42f1-8d7c-9c3811740330\",\n            \"agreementCode\": \"CONSULT\",\n            \"agreementDescription\": \"Convenio Consultorias\",\n            \"agreementDate\": \"2003-01-15\",\n            \"agreementUpdate\": false,\n            \"categoryId\": \"820c1ce6-f655-4d82-b807-7a6dbd7ba953\",\n            \"categoryCode\": \"002\",\n            \"categoryDescription\": \"GRADUADO SOCIAL\",\n            \"jobPosition\": \"\",\n            \"categoryDate\": \"2012-06-01\",\n            \"categoryUpdate\": true,\n            \"workdayPercentage\": 50,\n            \"workdayType\": \"Parcial\",\n            \"workdayHours\": 20,\n            \"workHoursTimeUnit\": \"Semanales\",\n            \"workingDays\": 5,\n            \"workingDaysTimeUnit\": \"Semanales\",            \n            \"workdayDate\": \"2010-05-01\",\n            \"workdayUpdate\": false,\n            \"contractId\": \"134cf1c1-8a7f-499a-9916-2e80aef3cf57\",\n            \"contractCode\": \"100\",\n            \"contractDescription\": \"INDEFINIDO T.COMPLETO ORDINAR.\",\n            \"contractDate\": \"2003-01-15\",\n            \"expirationDate\": \"0001-01-01\",            \n            \"contractUpdate\": false,\n            \"exemptionCode\": \"\",\n            \"exemptionSubcode\": \"\",\n            \"exemptionDescription\": \"\",\n            \"exemptionDate\": \"0001-01-01\",\n            \"exemptionEndDate\": \"0001-01-01\",\n            \"exemptionUpdate\": false,\n            \"professionalGroupCode\": \"\",\n            \"professionalGroupDescription\": \"\",\n            \"professionalGroupDate\": \"0001-01-01\",\n            \"professionalGroupUpdate\": false,\n            \"contributionGroupCode\": \"\",\n            \"contributionGroupDate\": \"0001-01-01\",\n            \"contributionGroupUpdate\": false,\n            \"salaryLevelId\": \"00000000-0000-0000-0000-000000000000\",\n            \"salaryLevelCode\": \"\",\n            \"salaryLevelDescription\": \"\",\n            \"salaryLevelDate\": \"0001-01-01\",\n            \"salaryLevelUpdate\": false,\n            \"historicalCustomField1\": \"\",\n            \"historicalCustomField1Date\": \"0001-01-01\",\n            \"historicalCustomField1Update\": false,\n            \"historicalCustomField2\": \"\",\n            \"historicalCustomField2Date\": \"0001-01-01\",\n            \"historicalCustomField2Update\": false,\n            \"historicalCustomField3\": \"\",\n            \"historicalCustomField3Date\": \"0001-01-01\",\n            \"historicalCustomField3Update\": false,\n            \"foriegnWorkExemption\": false,\n            \"foriegnWorkExemptionDate\": \"0001-01-01\",\n            \"foriegnWorkExemptionUpdate\": false,\n            \"iRPFPercentage\": 0,\n            \"collectiveSSCode\": \"\",\n            \"collectiveSSDescription\": \"\",            \n            \"createdOn\": \"2025-07-25T11:13:19.983Z\",\n            \"modifiedOn\": \"2025-07-25T11:13:19.983Z\",\n            \"active\": true\n        },\n        // ---\n    ]\n}"}],"_postman_id":"bc154997-1fd1-4a87-8f42-95381be80b85"},{"name":"employeeCostCenters","id":"ce45edab-f0dd-458b-a510-b5e087437b21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/employeeCostCenters","description":"<p>Obtiene la lista de los centros de coste o secciones a los que están asignados los empleados.</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(<code>{{APIcompanyId}}</code>)/employeeContracts(<code>{{APIemployeeContractId}}</code>)/employeeCostCenters</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 asignación de la sección del trabajador</td>\n</tr>\n<tr>\n<td>employeeId</td>\n<td>ID del empleado</td>\n</tr>\n<tr>\n<td>employeeContractID</td>\n<td>ID de la contratación 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>laborCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCode</td>\n<td>Código de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyName</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>year</td>\n<td>Año de aplicación de la asginación</td>\n</tr>\n<tr>\n<td>month</td>\n<td>Mes de aplicación de la asginación</td>\n</tr>\n<tr>\n<td>level1Code</td>\n<td>Código del nivel 1 de la sección</td>\n</tr>\n<tr>\n<td>level2Code</td>\n<td>Código del nivel 2 de la sección</td>\n</tr>\n<tr>\n<td>level3Code</td>\n<td>Código del nivel 3 de la sección</td>\n</tr>\n<tr>\n<td>level4Code</td>\n<td>Código del nivel 4 de la sección</td>\n</tr>\n<tr>\n<td>costCenterId</td>\n<td>ID de la sección</td>\n</tr>\n<tr>\n<td>costCenterDescription</td>\n<td>Descripción de la sección</td>\n</tr>\n<tr>\n<td>percentage</td>\n<td>Porcentaje de dedicación a la sección</td>\n</tr>\n<tr>\n<td>employeeActive</td>\n<td>Indica si el empleado está activo</td>\n</tr>\n<tr>\n<td>currentDistribution</td>\n<td>Indica si es la asignación vigente</td>\n</tr>\n<tr>\n<td>dimensionCode1</td>\n<td>Código de dimensión de nivel 1</td>\n</tr>\n<tr>\n<td>dimensionCode2</td>\n<td>Código de dimensión de nivel 2</td>\n</tr>\n<tr>\n<td>dimensionCode3</td>\n<td>Código de dimensión de nivel 3</td>\n</tr>\n<tr>\n<td>dimensionCode4</td>\n<td>Código de dimensión de nivel 4</td>\n</tr>\n<tr>\n<td>dimensionDescription1</td>\n<td>Descripción de dimensión de nivel 1</td>\n</tr>\n<tr>\n<td>dimensionDescription2</td>\n<td>Descripción de dimensión de nivel 2</td>\n</tr>\n<tr>\n<td>dimensionDescription3</td>\n<td>Descripción de dimensión de nivel 3</td>\n</tr>\n<tr>\n<td>dimensionDescription4</td>\n<td>Descripción de dimensión de nivel 4</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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","employeeCostCenters"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"7c445e20-cd26-4cf6-a09e-0babf29f6a14","name":"employeeCostCenters","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/employeeCostCenters"},"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":"dffd13ec-02d0-4e75-a25a-b598f8174a16"},{"key":"Date","value":"Mon, 25 Aug 2025 15:59:15 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/employeeCostCenters\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0OzM1dU9ldGs5anFkNUtHa21HdWVlVW9WdTJMWnpvWHVwYlEweUI2aEVFM1U9MTswMDsn\\\"\",\n            \"id\": \"6b5bee50-4221-4955-af2a-5314b8437bc5\",\n            \"employeeId\": \"602f55a9-afbd-41e5-bf58-6144a0fd5306\",\n            \"employeeContractID\": \"c21a6ad7-4c2d-487f-94ff-831fe9ee78be\",\n            \"employeeCode\": \"39875645D\",\n            \"fullName\": \"SOLANO BARILA ALFREDO\",\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"laborCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"contributionAccountId\": \"e335f7fb-c4cc-43db-b9a7-bc3e4b7be401\",\n            \"contributionAccountCode\": \"08452225455\",\n            \"hireDate\": \"2003-01-15\",\n            \"year\": \"2015\",\n            \"month\": \"Diciembre\",\n            \"level1Code\": \"\",\n            \"level2Code\": \"BCN\",\n            \"level3Code\": \"CONSULT\",\n            \"level4Code\": \"COM\",\n            \"costCenterId\": \"3ffc207a-4ce9-46a3-bd20-ebaa33c1f7c7\",\n            \"costCenterDescription\": \"DELEGACIÓN BARCELONA CONSULTORIA COMERCIAL \",\n            \"percentage\": 90,\n            \"employeeActive\": true,\n            \"currentDistribution\": true,\n            \"dimensionCode1\": \"\",\n            \"dimensionCode2\": \"\",\n            \"dimensionCode3\": \"\",\n            \"dimensionCode4\": \"\",\n            \"dimensionDescription1\": \"\",\n            \"dimensionDescription2\": \"\",\n            \"dimensionDescription3\": \"\",\n            \"dimensionDescription4\": \"\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-08-25T15:55:49.287Z\"\n        },\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0O3JocjFWOW04Y3FpYTVrU3hzTy9nMGR3cFNNRXNLUTh1aHMyYVYxOWkwRWs9MTswMDsn\\\"\",\n            \"id\": \"9cea8b3b-6303-4f2d-82bb-adf11889a0b3\",\n            \"employeeId\": \"602f55a9-afbd-41e5-bf58-6144a0fd5306\",\n            \"employeeContractID\": \"c21a6ad7-4c2d-487f-94ff-831fe9ee78be\",\n            \"employeeCode\": \"39875645D\",\n            \"fullName\": \"SOLANO BARILA ALFREDO\",\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"laborCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"contributionAccountId\": \"e335f7fb-c4cc-43db-b9a7-bc3e4b7be401\",\n            \"contributionAccountCode\": \"08452225455\",\n            \"hireDate\": \"2003-01-15\",\n            \"year\": \"2015\",\n            \"month\": \"Diciembre\",\n            \"level1Code\": \"\",\n            \"level2Code\": \"BCN\",\n            \"level3Code\": \"CONSULT\",\n            \"level4Code\": \"CONSUL\",\n            \"costCenterId\": \"29c400d7-0b5f-4c47-a15d-27a52043a67e\",\n            \"costCenterDescription\": \"DELEGACIÓN BARCELONA CONSULTORIA CONSULTORIA \",\n            \"percentage\": 10,\n            \"employeeActive\": true,\n            \"currentDistribution\": true,\n            \"dimensionCode1\": \"\",\n            \"dimensionCode2\": \"\",\n            \"dimensionCode3\": \"\",\n            \"dimensionCode4\": \"\",\n            \"dimensionDescription1\": \"\",\n            \"dimensionDescription2\": \"\",\n            \"dimensionDescription3\": \"\",\n            \"dimensionDescription4\": \"\",            \n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-08-25T15:55:49.287Z\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"ce45edab-f0dd-458b-a510-b5e087437b21"}],"id":"568a2388-b273-4284-8b14-77d6b7a2529f","description":"<p>Funciones de consulta de datos contractuales de los empleados</p>\n","_postman_id":"568a2388-b273-4284-8b14-77d6b7a2529f","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}}},{"name":"🧷 Anexos","item":[{"name":"employeeAttachments","id":"c74bbd03-1189-4635-af75-2f7f21d9bda7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/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>attachmentNo</td>\n<td>Identificador único del anexo</td>\n</tr>\n<tr>\n<td>laborCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCode</td>\n<td>Código de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyName</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>lastModificationDate</td>\n<td>Fecha de la última modificación del anexo</td>\n</tr>\n<tr>\n<td>lastModificationTime</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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","employeeAttachments"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"2bafb2ed-1105-4027-af05-59ccb84acffe","name":"employeeAttachments","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/employeeAttachments"},"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":"cc88e960-f948-4cef-8be2-fffa1fc0ca70"},{"key":"Date","value":"Mon, 25 Aug 2025 16:25:46 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/employeeAttachments\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0O3RrOVdsMlRQcE05dit6TXRCdXZrVDQ1N3kzcXZ4dTN4bFNDTXFsQitVRzA9MTswMDsn\\\"\",\n            \"attachmentNo\": 5002110,\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"laborCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"employeeId\": \"602f55a9-afbd-41e5-bf58-6144a0fd5306\",\n            \"employeeCode\": \"39875645D\",\n            \"employeeName\": \"SOLANO BARILA ALFREDO\",\n            \"description\": \"Contrato de SOLANO BARILA ALFREDO\",\n            \"publish\": false,\n            \"classificationCode\": \"NOMINA\",\n            \"classificationSubcode\": \"CONTRATOS\",\n            \"classificationDescription\": \"Contratos de nómina\",\n            \"lastModificationDate\": \"2017-03-09\",\n            \"lastModificationTime\": \"17:21:38.9\"\n        },\n        // ---\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0O2NWd2FEcFZYL2Z6aFlLSDlQRUdTQS9namF6MWs1bzJLKzZtQktBcEhpRW89MTswMDsn\\\"\",\n            \"attachmentNo\": 5002444,\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"laborCompanyName\": \"CONSULTORA DE PLANIFICACIÓN, S.A.\",\n            \"employeeId\": \"602f55a9-afbd-41e5-bf58-6144a0fd5306\",\n            \"employeeCode\": \"39875645D\",\n            \"employeeName\": \"SOLANO BARILA ALFREDO\",\n            \"description\": \"Nómina Agosto de 2020\",\n            \"publish\": true,\n            \"classificationCode\": \"RRHH\",\n            \"classificationSubcode\": \"REC. SAL.\",\n            \"classificationDescription\": \"Recibos salariales de nómina\",\n            \"lastModificationDate\": \"2020-08-03\",\n            \"lastModificationTime\": \"08:30:42.15\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"c74bbd03-1189-4635-af75-2f7f21d9bda7"},{"name":"employeeAttachmentContents","id":"4e92c7b3-4a5f-4a8a-87a2-f458fa40f8cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","employeeAttachmentContents({{APIattachmentNo}})"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"8d01bc89-4006-40bf-9ef4-6b3fc3aa8629","name":"employeeAttachmentContents","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/employeeAttachmentContents({{APIattachmentNo}})"},"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":"a43dc7b5-481f-47b6-91fd-beb36bdd9acc"},{"key":"Date","value":"Mon, 25 Aug 2025 16:39:01 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/employeeAttachmentContents/$entity\",\n    \"@odata.etag\": \"W/\\\"JzQ0OzZHWVVJaVYrU2Jhb1NubDVaSTV2WEx3UjVodWRTallLTHNQUjI0ZVhPZ1k9MTswMDsn\\\"\",\n    \"attachmentNo\": 5002444,\n    \"base64content\": \"JVBERi0xLjMNCjEgMCBvYmoNCl.....................vb3QgMTIgMCBSIC9JbmZvIDEzIDAgUiA+Pg0Kc3RhcnR4cmVmDQo2ODYwNA0KJSVFT0Y=\"\n}"}],"_postman_id":"4e92c7b3-4a5f-4a8a-87a2-f458fa40f8cd"}],"id":"d1f3a7c5-307a-4cec-890a-f88a982385da","description":"<p>Funciones de consulta de anexos de los empleados</p>\n","_postman_id":"d1f3a7c5-307a-4cec-890a-f88a982385da","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}}},{"name":"📰 Diarios","item":[{"name":"employeeJournalLines","id":"92205284-5d1d-4724-9a1f-0eae255e3041","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/employeeJournalLines","description":"<p>Obtiene la lista de los registros pendientes en el diario de altas/modificaciones.<br />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 del diario</td>\n</tr>\n<tr>\n<td>lineNo</td>\n<td>Nº de línea del diario</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>laborCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCode</td>\n<td>Código 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 o modificación</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>Primer apellido</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>endDateForeignAutorization</td>\n<td>Fecha de vigencia autorización extranjeros</td>\n</tr>\n<tr>\n<td>foreignAutorizationCode</td>\n<td>Autorización para extranjeros</td>\n</tr>\n<tr>\n<td>foreignAutorizationDescription</td>\n<td>Descripción autorización extranjeros</td>\n</tr>\n<tr>\n<td>foreignAutorizationRemarks</td>\n<td>Observaciones autorización extranjeros</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>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º de 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>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>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>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>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>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>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>disabilityDegreePercentage</td>\n<td>Porcentaje grado de discapacidad</td>\n</tr>\n<tr>\n<td>disabilityStartDate</td>\n<td>Fecha de inicio de la discapacidad</td>\n</tr>\n<tr>\n<td>nationalityId</td>\n<td>ID de la nacionalidad</td>\n</tr>\n<tr>\n<td>nationalityCode</td>\n<td>Código de la 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>countryIdIban</td>\n<td>ID del país de IBAN</td>\n</tr>\n<tr>\n<td>alphabeticalCountryCodeIban</td>\n<td>Código alfabético del país de IBAN</td>\n</tr>\n<tr>\n<td>bankCode</td>\n<td>Código del banco</td>\n</tr>\n<tr>\n<td>branchCode</td>\n<td>Código de la sucursal</td>\n</tr>\n<tr>\n<td>checkDigit</td>\n<td>Dígito de control de la cuenta bancaria</td>\n</tr>\n<tr>\n<td>backAccountNumber</td>\n<td>Número de la cuenta bancaria</td>\n</tr>\n<tr>\n<td>backAccountNumberBban</td>\n<td>Número de la cuenta BBAN</td>\n</tr>\n<tr>\n<td>checkDigitIban</td>\n<td>Dígito de control IBAN</td>\n</tr>\n<tr>\n<td>bankSwiftCode</td>\n<td>Código Swift</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>resourceCode</td>\n<td>Código de recurso</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>seniorityDate</td>\n<td>Fecha de antigüedad</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>agreementId</td>\n<td>ID del convenio</td>\n</tr>\n<tr>\n<td>agreementCode</td>\n<td>Código del convenio</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>jobPosition</td>\n<td>Descripción del puesto de trabajo</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 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>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>expirationDate</td>\n<td>Fecha de vencimiento del 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>socialExclusionCode</td>\n<td>Código de exclusión social/víctimas</td>\n</tr>\n<tr>\n<td>socialExclusionDescription</td>\n<td>Descripción de la exclusión social/víctimas</td>\n</tr>\n<tr>\n<td>workSchedule</td>\n<td>Horario contrato</td>\n</tr>\n<tr>\n<td>informativeHours</td>\n<td>Horas por día informadas</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>contributionGroupCode</td>\n<td>Código del grupo de cotización</td>\n</tr>\n<tr>\n<td>agrarianContributionMode</td>\n<td>0: '' , 1: Mensual , 2: Por jornadas reales</td>\n</tr>\n<tr>\n<td>contributionExclusionCode</td>\n<td>Código de exclusión cotización</td>\n</tr>\n<tr>\n<td>contributionExclusionDescription</td>\n<td>Descripción de la exclusión cotización</td>\n</tr>\n<tr>\n<td>probationaryPeriodEndDate</td>\n<td>Fecha final periodo de prueba</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>historicalCustomField1</td>\n<td>Campo libre histórico 1º</td>\n</tr>\n<tr>\n<td>historicalCustomField2</td>\n<td>Campo libre histórico 2º</td>\n</tr>\n<tr>\n<td>historicalCustomField3</td>\n<td>Campo libre histórico 3º</td>\n</tr>\n<tr>\n<td>cnoCode</td>\n<td>Código del CNO</td>\n</tr>\n<tr>\n<td>cnoDescription</td>\n<td>Descripción del CNO</td>\n</tr>\n<tr>\n<td>departmentId</td>\n<td>ID del departamento</td>\n</tr>\n<tr>\n<td>departmentCode</td>\n<td>Código del departamento</td>\n</tr>\n<tr>\n<td>departmentDescription</td>\n<td>Descripción del departamento</td>\n</tr>\n<tr>\n<td>employmentRelationshipCode</td>\n<td>Código de relación laboral</td>\n</tr>\n<tr>\n<td>employmentRelationshipDescr</td>\n<td>Descripción de relación laboral</td>\n</tr>\n<tr>\n<td>collectiveEmployeeCode</td>\n<td>Código colectivo del trabajador</td>\n</tr>\n<tr>\n<td>collectiveEmployeeDescription</td>\n<td>Descripción colectivo del trabajador</td>\n</tr>\n<tr>\n<td>collectiveSSCode</td>\n<td>Código colectivo reducción seguridad social</td>\n</tr>\n<tr>\n<td>collectiveSSDescription</td>\n<td>Descripción colectivo reducción seguridad social</td>\n</tr>\n<tr>\n<td>contractPermanentDiscDate</td>\n<td>Fecha 1r contrato fijo discontinuo</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>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>costCenterId</td>\n<td>ID de la sección</td>\n</tr>\n<tr>\n<td>costCenterLevel1Code</td>\n<td>Código del nivel 1 de la sección</td>\n</tr>\n<tr>\n<td>costCenterLevel2Code</td>\n<td>Código del nivel 2 de la sección</td>\n</tr>\n<tr>\n<td>costCenterLevel3Code</td>\n<td>Código del nivel 3 de la sección</td>\n</tr>\n<tr>\n<td>costCenterLevel4Code</td>\n<td>Código del nivel 4 de la sección</td>\n</tr>\n<tr>\n<td>costCenterDescription</td>\n<td>Descripción de la sección</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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","employeeJournalLines"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"9804cadb-5cfe-48f1-90b8-8c1b79788a90","name":"employeeJournalLines","originalRequest":{"method":"GET","header":[],"url":"/api/summar/labor/v1.0/companies()/employeeJournalLines"},"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":"5bfc79e5-ee90-46ed-93f7-a13d3457f3be"},{"key":"Date","value":"Tue, 26 Aug 2025 05:11:29 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/employeeJournalLines\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0O1B0UndUa1pycUJoMWM1SmFwL1l6dTZ3YWZERDhZVWMzbDhmcSs4UldNVGs9MTswMDsn\\\"\",\n            \"id\": \"76bdf243-ee4b-4baf-a917-20cb09fd4bca\",\n            \"lineNo\": 576,\n            \"employeeId\": \"392928b2-45db-4731-b485-10ec66185ec0\",\n            \"employeeCode\": \"39852647H\",\n            \"name\": \"PABLO\",\n            \"firstSurname\": \"BARRERA\",\n            \"secondSurname\": \"SORIA\",\n            \"foreignCode\": \" \",\n            \"vatNumber\": \"39852647H\",\n            \"isResident\": true,\n            \"endDateForeignAutorization\": \"0001-01-01\",\n            \"foreignAutorizationCode\": \"\",\n            \"foreignAutorizationDescription\": \"\",\n            \"foreignAutorizationRemarks\": \"\",\n            \"acronymAddressId\": \"8773fa7d-7250-4798-92ff-5ccd42968dee\",\n            \"acronymAddressCode\": \"CL\",\n            \"address\": \"BARQUILLO\",\n            \"numberingType\": \" \",\n            \"house\": \"10\",\n            \"hallway\": \"\",\n            \"block\": \"\",\n            \"stairs\": \"\",\n            \"floor\": \"2\",\n            \"door\": \"A\",\n            \"cityId\": \"df81b77e-1d39-4545-b6bf-039f2e1afb1d\",\n            \"cityCode\": \"28900\",\n            \"postalCodeId\": \"62234e74-3b76-486e-8315-a1503a383cf9\",\n            \"postalCode\": \"28001\",\n            \"countyId\": \"2cd5f494-cd7f-47b5-97fa-e5024d8456d6\",\n            \"countyCode\": \"28\",\n            \"countryId\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n            \"countryCode\": \"011\",\n            \"phoneNumber\": \"912415417\",\n            \"mobilePhoneNumber\": \"600442211\",\n            \"email\": \"barrera@summar.es\",\n            \"birthDate\": \"1970-06-12\",\n            \"cityBirthId\": \"df81b77e-1d39-4545-b6bf-039f2e1afb1d\",\n            \"cityBirthCode\": \"28900\",\n            \"countyBirthId\": \"2cd5f494-cd7f-47b5-97fa-e5024d8456d6\",\n            \"countyBirthCode\": \"28\",\n            \"countryBirthId\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n            \"countryBirthCode\": \"011\",\n            \"gender\": \"Hombre\",\n            \"maritalStatus\": \"Casado/a\",\n            \"disabilityDegreePercentage\": 0,\n            \"nationalityId\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n            \"nationalityCode\": \"011\",\n            \"fatherName\": \"\",\n            \"motherName\": \"\",\n            \"countryIdIban\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n            \"alphabeticalCountryCodeIban\": \"ES\",\n            \"bankCode\": \"0182\",\n            \"branchCode\": \"0014\",\n            \"checkDigit\": \"12\",\n            \"backAccountNumber\": \"0012020147\",\n            \"backAccountNumberBban\": \"\",\n            \"checkDigitIban\": \"\",\n            \"bankSwiftCode\": \"\",\n            \"socialSecurityNumber\": \"285201463268\",\n            \"trainingLevelId\": \"4eb120b4-0b7b-4acc-b264-2ca1095b267d\",\n            \"trainingLevelCode\": \"55\",\n            \"laborCompanyId\": \"eaf9f60e-717c-4811-969b-e785bbb54ce6\",\n            \"laborCompanyCode\": \"B43020403\",\n            \"contributionAccountId\": \"8488e68a-9fb5-4f51-accc-98efc039e5ef\",\n            \"contributionAccountCode\": \"08256525412\",\n            \"hireDate\": \"2025-08-01\",\n            \"seniorityDate\": \"2025-08-01\",\n            \"workCenterId\": \"2f51fa2b-217a-439c-af09-2f06e1cc88ed\",\n            \"workCenterCode\": \"001\",\n            \"agreementId\": \"d84dea0b-debd-4da6-88b7-339d6eb025ff\",\n            \"agreementCode\": \"CONSULTORA\",\n            \"categoryId\": \"62930a03-506d-482c-b71e-28900fd0f154\",\n            \"categoryCode\": \"023\",\n            \"jobPosition\": \"Jefe de primera\",\n            \"workdayPercentage\": 0,\n            \"workdayType\": \"Completa\",\n            \"workdayHours\": 0,\n            \"workHoursTimeUnit\": \"Semanales\",\n            \"workingDays\": 5,\n            \"workingDaysTimeUnit\": \"Semanales\",            \n            \"contractId\": \"134cf1c1-8a7f-499a-9916-2e80aef3cf57\",\n            \"contractCode\": \"100\",\n            \"contractSubCode\": \"\",\n            \"expirationDate\": \"0001-01-01\",\n            \"contractDuration\": 0,\n            \"durationTimeUnit\": \" \",\n            \"socialExclusionCode\": \"\",\n            \"socialExclusionDescription\": \"\",\n            \"workSchedule\": \"\",\n            \"informativeHours\": false,\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            \"workHoursOnHolidays\": 0,\n            \"contributionGroupCode\": \"02\",\n            \"agrarianContributionMode\": \"Sin modalidad de cotización\",\n            \"contributionExclusionCode\": \"\",\n            \"contributionExclusionDescription\": \"\",\n            \"probationaryPeriodEndDate\": \"0001-01-01\",\n            \"salaryLevelId\": \"00000000-0000-0000-0000-000000000000\",\n            \"salaryLevelCode\": \"\",\n            \"salaryLevelDescription\": \"\",\n            \"historicalCustomField1\": \"\",\n            \"historicalCustomField2\": \"\",\n            \"historicalCustomField3\": \"\",\n            \"cnoCode\": \"\",\n            \"cnoDescription\": \"\",\n            \"departmentId\": \"00000000-0000-0000-0000-000000000000\",\n            \"departmentCode\": \"\",\n            \"departmentDescription\": \"\",\n            \"employmentRelationshipCode\": \"\",\n            \"employmentRelationshipDescr\": \"\",\n            \"collectiveEmployeeCode\": \"\",\n            \"collectiveEmployeeDescription\": \"\",\n            \"collectiveSSCode\": \"\",\n            \"collectiveSSDescription\": \"\",\n            \"contractPermanentDiscDate\": \"0001-01-01\",\n            \"employeeContractCustomField1\": \"\",\n            \"employeeContractCustomField2\": \"\",\n            \"employeeContractCustomField3\": \"\",\n            \"employeeContractCustomField4\": \"\",\n            \"employeeContractCustomField5\": \"\",\n            \"employeeContractCustomField6\": \"\",\n            \"employeeContractCustomField7\": \"\",\n            \"employeeContractCustomField8\": \"\",\n            \"employeeContractCustomField9\": \"\",\n            \"employeeContractCustomField10\": \"\",  \n            \"employeeCustomField1\": \"\",\n            \"employeeCustomField2\": \"\",\n            \"employeeCustomField3\": \"\",\n            \"employeeCustomField4\": \"\",\n            \"employeeCustomField5\": \"\",\n            \"employeeCustomField6\": \"\",\n            \"employeeCustomField7\": \"\",\n            \"employeeCustomField8\": \"\",\n            \"employeeCustomField9\": \"\",\n            \"employeeCustomField10\": \"\",          \n            \"costCenterId\": \"d926d300-397d-43e8-8b6e-15791c5688c1\",\n            \"costCenterLevel1Code\": \"\",\n            \"costCenterLevel2Code\": \"BNA\",\n            \"costCenterLevel3Code\": \"DIR\",\n            \"costCenterLevel4Code\": \"ADM\",\n            \"costCenterDescription\": \"Dirección Administ.Bna\",\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-08-26T05:11:18.04Z\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"92205284-5d1d-4724-9a1f-0eae255e3041"},{"name":"employeeJournalLines","id":"d4c848c6-408d-419d-8b05-784a01268074","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"employeeCode\": \"34452124X\",\r\n    \"name\": \"MARIA\",\r\n    \"firstSurname\": \"GARCIA\",\r\n    \"secondSurname\": \"LOPEZ\",\r\n    \"foreignCode\": \" \",\r\n    \"vatNumber\": \"34452124X\",\r\n    \"acronymAddressCode\": \"CL\",\r\n    \"address\": \"FLEMING\",\r\n    \"house\": \"25\",\r\n    \"stairs\": \"A\",\r\n    \"floor\": \"2\",\r\n    \"door\": \"1\",\r\n    \"cityCode\": \"28900\",\r\n    \"postalCode\": \"28108\",\r\n    \"countyCode\": \"28\",\r\n    \"countryCode\": \"011\",\r\n    \"phoneNumber\": \"600747576\",\r\n    \"mobilePhoneNumber\": \"626554455\",\r\n    \"email\": \"diario@summar.es\",\r\n    \"birthDate\": \"2001-07-02\",\r\n    \"cityBirthCode\": \"28900\",\r\n    \"countyBirthCode\": \"28\",\r\n    \"countryBirthCode\": \"011\",\r\n    \"gender\": \"Mujer\",\r\n    \"maritalStatus\": \"Soltero/a\",\r\n    \"nationalityCode\": \"011\",\r\n    \"socialSecurityNumber\": \"284521012014\",\r\n    \"trainingLevelCode\": \"32\",\r\n    \"laborCompanyCode\": \"B43020403\",\r\n    \"contributionAccountCode\": \"08256525412\",\r\n    \"hireDate\": \"2025-08-15\",\r\n    \"seniorityDate\": \"2025-08-15\",\r\n    \"workCenterCode\": \"001\",\r\n    \"agreementCode\": \"CONSULTORA\",\r\n    \"categoryId\": \"62930a03-506d-482c-b71e-28900fd0f154\",\r\n    \"categoryCode\": \"035\",\r\n    \"jobPosition\": \"Consultora\",\r\n    \"workdayPercentage\": 0,\r\n    \"workdayType\": \"Completa\",\r\n    \"workdayHours\": 0,\r\n    \"contractCode\": \"100\",\r\n    \"contractSubCode\": \"\",\r\n    \"expirationDate\": \"0001-01-01\",\r\n    \"costCenterLevel1Code\": \"\",\r\n    \"costCenterLevel2Code\": \"BNA\",\r\n    \"costCenterLevel3Code\": \"DIR\",\r\n    \"costCenterLevel4Code\": \"ADM\"\r\n},","options":{"raw":{"language":"json"}}},"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/employeeJournalLines","description":"<p>Creación de un registro nuevo en el diario de altas/modificaciones.</p>\n<p>Los campos son los mismos que devuelve la consulta anterior, excepto el 'id' y 'lineNo' que lo asigna el proceso de inserción, y los campos de descripción.</p>\n<p>Las asignaciones de los campos que tienen tabla asociada se puede hacer o por ID o por Code, en el ejemplo se ha optado por los campos Code.</p>\n<p>Para crear un registro de modificación es necesario informar los campos clave de empleado: <em>employeeCode, laborCompanyCode</em> (o también: <em>employeeId, laborCompanyId</em>)</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","employeeJournalLines"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"073ba455-aa71-4908-a0bd-fd46030f3f17","name":"employeeJournalLines","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"employeeCode\": \"34452124X\",\r\n    \"name\": \"MARIA\",\r\n    \"firstSurname\": \"GARCIA\",\r\n    \"secondSurname\": \"LOPEZ\",\r\n    \"foreignCode\": \" \",\r\n    \"vatNumber\": \"34452124X\",\r\n    \"acronymAddressCode\": \"CL\",\r\n    \"address\": \"FLEMING\",\r\n    \"house\": \"25\",\r\n    \"stairs\": \"A\",\r\n    \"floor\": \"2\",\r\n    \"door\": \"1\",\r\n    \"cityId\": \"df81b77e-1d39-4545-b6bf-039f2e1afb1d\",\r\n    \"cityCode\": \"28900\",\r\n    \"postalCode\": \"28108\",\r\n    \"countyCode\": \"28\",\r\n    \"countryCode\": \"011\",\r\n    \"phoneNumber\": \"600747576\",\r\n    \"mobilePhoneNumber\": \"626554455\",\r\n    \"email\": \"diario@summar.es\",\r\n    \"birthDate\": \"2001-07-02\",\r\n    \"cityBirthCode\": \"28900\",\r\n    \"countyBirthCode\": \"28\",\r\n    \"countryBirthCode\": \"011\",\r\n    \"gender\": \"Mujer\",\r\n    \"maritalStatus\": \"Soltero/a\",\r\n    \"nationalityCode\": \"011\",\r\n    \"socialSecurityNumber\": \"284521012014\",\r\n    \"trainingLevelCode\": \"32\",\r\n    \"laborCompanyCode\": \"B43020403\",\r\n    \"contributionAccountCode\": \"08256525412\",\r\n    \"hireDate\": \"2025-08-15\",\r\n    \"seniorityDate\": \"2025-08-15\",\r\n    \"workCenterCode\": \"001\",\r\n    \"agreementCode\": \"CONSULTORA\",\r\n    \"categoryId\": \"62930a03-506d-482c-b71e-28900fd0f154\",\r\n    \"categoryCode\": \"035\",\r\n    \"jobPosition\": \"Consultora\",\r\n    \"workdayPercentage\": 0,\r\n    \"workdayType\": \"Completa\",\r\n    \"workdayHours\": 0,\r\n    \"contractCode\": \"100\",\r\n    \"contractSubCode\": \"\",\r\n    \"expirationDate\": \"0001-01-01\",\r\n    \"costCenterLevel1Code\": \"\",\r\n    \"costCenterLevel2Code\": \"BNA\",\r\n    \"costCenterLevel3Code\": \"DIR\",\r\n    \"costCenterLevel4Code\": \"ADM\"\r\n},","options":{"raw":{"language":"json"}}},"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/employeeJournalLines"},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Location","value":"https://mysilaeapitest.summar.es:7048/SUASOR_USER/api/summar/labor/v1.0/companies(70886d1f-fd6e-4544-b018-013d559d8f78)/employeeJournalLines(73c9915c-f6bd-4d9c-8959-ae399df2c3e7)"},{"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":"ab407536-baf1-49ca-9b61-57b75ba56959"},{"key":"Date","value":"Tue, 26 Aug 2025 05:25:56 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/employeeJournalLines/$entity\",\n    \"@odata.etag\": \"W/\\\"JzQ0O0hkRFdraCtEWGQxOVlLd0lWeStCWGFZS0dDSmJOQ0VCdlZtRE5YcHVQMm89MTswMDsn\\\"\",\n    \"id\": \"73c9915c-f6bd-4d9c-8959-ae399df2c3e7\",\n    \"lineNo\": 2161,\n    \"employeeId\": \"00000000-0000-0000-0000-000000000000\",\n    \"employeeCode\": \"34452124X\",\n    \"name\": \"MARIA\",\n    \"firstSurname\": \"GARCIA\",\n    \"secondSurname\": \"LOPEZ\",\n    \"foreignCode\": \" \",\n    \"vatNumber\": \"34452124X\",\n    \"acronymAddressId\": \"8773fa7d-7250-4798-92ff-5ccd42968dee\",\n    \"acronymAddressCode\": \"CL\",\n    \"address\": \"FLEMING\",\n    \"house\": \"25\",\n    \"stairs\": \"A\",\n    \"floor\": \"2\",\n    \"door\": \"1\",\n    \"cityId\": \"df81b77e-1d39-4545-b6bf-039f2e1afb1d\",\n    \"cityCode\": \"28900\",\n    \"postalCodeId\": \"eb2415af-eb10-45b9-976b-75994df38fbc\",\n    \"postalCode\": \"28108\",\n    \"countyId\": \"2cd5f494-cd7f-47b5-97fa-e5024d8456d6\",\n    \"countyCode\": \"28\",\n    \"countryId\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n    \"countryCode\": \"011\",\n    \"phoneNumber\": \"600747576\",\n    \"mobilePhoneNumber\": \"626554455\",\n    \"email\": \"diario@summar.es\",\n    \"birthDate\": \"2001-07-02\",\n    \"cityBirthId\": \"df81b77e-1d39-4545-b6bf-039f2e1afb1d\",\n    \"cityBirthCode\": \"28900\",\n    \"countyBirthId\": \"2cd5f494-cd7f-47b5-97fa-e5024d8456d6\",\n    \"countyBirthCode\": \"28\",\n    \"countryBirthId\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n    \"countryBirthCode\": \"011\",\n    \"gender\": \"Mujer\",\n    \"maritalStatus\": \"Soltero/a\",\n    \"nationalityId\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n    \"nationalityCode\": \"011\",\n    \"socialSecurityNumber\": \"284521012014\",\n    \"trainingLevelId\": \"2be978a9-d765-4e8e-b9eb-9354dd212349\",\n    \"trainingLevelCode\": \"32\",\n    \"laborCompanyId\": \"eaf9f60e-717c-4811-969b-e785bbb54ce6\",\n    \"laborCompanyCode\": \"B43020403\",\n    \"contributionAccountId\": \"8488e68a-9fb5-4f51-accc-98efc039e5ef\",\n    \"contributionAccountCode\": \"08256525412\",\n    \"hireDate\": \"2025-08-15\",\n    \"seniorityDate\": \"2025-08-15\",\n    \"workCenterId\": \"2f51fa2b-217a-439c-af09-2f06e1cc88ed\",\n    \"workCenterCode\": \"001\",\n    \"agreementId\": \"d84dea0b-debd-4da6-88b7-339d6eb025ff\",\n    \"agreementCode\": \"CONSULTORA\",\n    \"categoryId\": \"62930a03-506d-482c-b71e-28900fd0f154\",\n    \"categoryCode\": \"035\",\n    \"jobPosition\": \"Consultora\",\n    \"workdayPercentage\": 0,\n    \"workdayType\": \"Completa\",\n    \"workdayHours\": 0,\n    \"workHoursTimeUnit\": \"Semanales\",\n    \"workingDays\": 0,\n    \"workingDaysTimeUnit\": \"Semanales\",    \n    \"contractId\": \"00000000-0000-0000-0000-000000000000\",\n    \"contractCode\": \"100\",\n    \"contractSubCode\": \"\",\n    \"expirationDate\": \"0001-01-01\",\n    \"contractDuration\": 0,\n    \"durationTimeUnit\": \" \",\n    \"contributionGroupCode\": \"02\",\n    \"salaryLevelId\": \"00000000-0000-0000-0000-000000000000\",\n    \"salaryLevelCode\": \"\",\n    \"salaryLevelDescription\": \"\",\n    \"historicalCustomField1\": \"\",\n    \"historicalCustomField2\": \"\",\n    \"historicalCustomField3\": \"\",\n    \"cnoCode\": \"\",\n    \"cnoDescription\": \"\",\n    \"departmentId\": \"00000000-0000-0000-0000-000000000000\",\n    \"departmentCode\": \"\",\n    \"departmentDescription\": \"\",\n    \"employmentRelationshipCode\": \"\",\n    \"employmentRelationshipDescr\": \"\",\n    \"collectiveEmployeeCode\": \"\",\n    \"collectiveEmployeeDescription\": \"\",\n    \"collectiveSSCode\": \"\",\n    \"collectiveSSDescription\": \"\",\n    \"contractPermanentDiscDate\": \"0001-01-01\",\n    \"employeeContractCustomField1\": \"\",\n    \"employeeContractCustomField2\": \"\",\n    \"employeeContractCustomField3\": \"\",\n    \"employeeContractCustomField4\": \"\",\n    \"employeeContractCustomField5\": \"\",\n    \"employeeContractCustomField6\": \"\",\n    \"employeeContractCustomField7\": \"\",\n    \"employeeContractCustomField8\": \"\",\n    \"employeeContractCustomField9\": \"\",\n    \"employeeContractCustomField10\": \"\",    \n    \"costCenterId\": \"d926d300-397d-43e8-8b6e-15791c5688c1\",\n    \"costCenterLevel1Code\": \"\",\n    \"costCenterLevel2Code\": \"BNA\",\n    \"costCenterLevel3Code\": \"DIR\",\n    \"costCenterLevel4Code\": \"ADM\",\n    \"costCenterDescription\": \"Dirección Administ.Bna\",\n    \"createdOn\": \"2025-08-26T05:25:55.623Z\",\n    \"modifiedOn\": \"2025-08-26T05:25:55.623Z\"\n}"}],"_postman_id":"d4c848c6-408d-419d-8b05-784a01268074"},{"name":"employeeJournalLines","id":"d6f8ddda-8739-4b39-aa96-71949bfd26b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"trainingLevelCode\": \"52\",\r\n    \"jobPosition\": \"Consultora laboral\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/employeeJournalLines({{APIemployeeJournalLineId}})","description":"<p>Actualización parcial o completa de un registro existente del diario de altas/modificaciones.</p>\n<p>En este caso hay que pasar el ID del regsitro a actualizar en la URL, y se pueden enviar sólo los campos a modificar, en el resto se mantendrá su valor actual.</p>\n<p>En la respuesta se obtiene el contenido completo del registro modificado</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","employeeJournalLines({{APIemployeeJournalLineId}})"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"38828a3c-c8a7-4593-af6a-4c8c03cddfbb","name":"employeeJournalLines","originalRequest":{"method":"PATCH","header":[{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"trainingLevelCode\": \"52\",\r\n    \"jobPosition\": \"Consultora laboral\"\r\n}","options":{"raw":{"language":"json"}}},"url":"/api/summar/labor/v1.0/companies()/employeeJournalLines()"},"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":"dfb620d8-5766-4f49-8b30-b1aa3fe19c22"},{"key":"Date","value":"Tue, 26 Aug 2025 05:30:10 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/employeeJournalLines/$entity\",\n    \"@odata.etag\": \"W/\\\"JzQ0O1hJck5GZ3ZEeVp2Y0ZucUVlcTlaMlQxamdrd0JzbVJQYVpkYzQ4Ulc2dnM9MTswMDsn\\\"\",\n    \"id\": \"73c9915c-f6bd-4d9c-8959-ae399df2c3e7\",\n    \"lineNo\": 2161,\n    \"employeeId\": \"00000000-0000-0000-0000-000000000000\",\n    \"employeeCode\": \"34452124X\",\n    \"name\": \"MARIA\",\n    \"firstSurname\": \"GARCIA\",\n    \"secondSurname\": \"LOPEZ\",\n    \"foreignCode\": \" \",\n    \"vatNumber\": \"34452124X\",\n    \"acronymAddressId\": \"8773fa7d-7250-4798-92ff-5ccd42968dee\",\n    \"acronymAddressCode\": \"CL\",\n    \"address\": \"FLEMING\",\n    \"house\": \"25\",\n    \"stairs\": \"A\",\n    \"floor\": \"2\",\n    \"door\": \"1\",\n    \"cityId\": \"df81b77e-1d39-4545-b6bf-039f2e1afb1d\",\n    \"cityCode\": \"28900\",\n    \"postalCodeId\": \"eb2415af-eb10-45b9-976b-75994df38fbc\",\n    \"postalCode\": \"28108\",\n    \"countyId\": \"2cd5f494-cd7f-47b5-97fa-e5024d8456d6\",\n    \"countyCode\": \"28\",\n    \"countryId\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n    \"countryCode\": \"011\",\n    \"phoneNumber\": \"600747576\",\n    \"mobilePhoneNumber\": \"626554455\",\n    \"email\": \"diario@summar.es\",\n    \"birthDate\": \"2001-07-02\",\n    \"cityBirthId\": \"df81b77e-1d39-4545-b6bf-039f2e1afb1d\",\n    \"cityBirthCode\": \"28900\",\n    \"countyBirthId\": \"2cd5f494-cd7f-47b5-97fa-e5024d8456d6\",\n    \"countyBirthCode\": \"28\",\n    \"countryBirthId\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n    \"countryBirthCode\": \"011\",\n    \"gender\": \"Mujer\",\n    \"maritalStatus\": \"Soltero/a\",\n    \"disabilityDegreePercentage\": 0,\n    \"nationalityId\": \"85383edd-615b-48fd-9412-ab533b414b92\",\n    \"nationalityCode\": \"011\",\n    \"socialSecurityNumber\": \"284521012014\",\n    \"trainingLevelId\": \"0e5b3638-b6b2-46b7-a87c-1c0efd9ddcbe\",\n    \"trainingLevelCode\": \"52\",\n    \"laborCompanyId\": \"eaf9f60e-717c-4811-969b-e785bbb54ce6\",\n    \"laborCompanyCode\": \"B43020403\",\n    \"contributionAccountId\": \"8488e68a-9fb5-4f51-accc-98efc039e5ef\",\n    \"contributionAccountCode\": \"08256525412\",\n    \"hireDate\": \"2025-08-15\",\n    \"seniorityDate\": \"2025-08-15\",\n    \"workCenterId\": \"2f51fa2b-217a-439c-af09-2f06e1cc88ed\",\n    \"workCenterCode\": \"001\",\n    \"agreementId\": \"d84dea0b-debd-4da6-88b7-339d6eb025ff\",\n    \"agreementCode\": \"CONSULTORA\",\n    \"categoryId\": \"dccfa06b-2df4-43cd-9b80-243cc841923a\",\n    \"categoryCode\": \"035\",\n    \"jobPosition\": \"Consultora laboral\",\n    \"workdayPercentage\": 0,\n    \"workdayType\": \"Completa\",\n    \"workdayHours\": 0,\n    \"workHoursTimeUnit\": \"Semanales\",\n    \"workingDays\": 5,\n    \"workingDaysTimeUnit\": \"Semanales\",    \n    \"contractId\": \"134cf1c1-8a7f-499a-9916-2e80aef3cf57\",\n    \"contractCode\": \"100\",\n    \"contractSubCode\": \"\",\n    \"expirationDate\": \"0001-01-01\",\n    \"contractDuration\": 0,\n    \"durationTimeUnit\": \" \",\n    \"contributionGroupCode\": \"02\",\n    \"salaryLevelId\": \"00000000-0000-0000-0000-000000000000\",\n    \"salaryLevelCode\": \"\",\n    \"salaryLevelDescription\": \"\",\n    \"historicalCustomField1\": \"\",\n    \"historicalCustomField2\": \"\",\n    \"historicalCustomField3\": \"\",\n    \"cnoCode\": \"\",\n    \"cnoDescription\": \"\",\n    \"departmentId\": \"00000000-0000-0000-0000-000000000000\",\n    \"departmentCode\": \"\",\n    \"departmentDescription\": \"\",\n    \"employmentRelationshipCode\": \"\",\n    \"employmentRelationshipDescr\": \"\",\n    \"collectiveEmployeeCode\": \"\",\n    \"collectiveEmployeeDescription\": \"\",\n    \"collectiveSSCode\": \"\",\n    \"collectiveSSDescription\": \"\",\n    \"contractPermanentDiscDate\": \"0001-01-01\",\n    \"employeeContractCustomField1\": \"\",\n    \"employeeContractCustomField2\": \"\",\n    \"employeeContractCustomField3\": \"\",\n    \"employeeContractCustomField4\": \"\",\n    \"employeeContractCustomField5\": \"\",\n    \"employeeContractCustomField6\": \"\",\n    \"employeeContractCustomField7\": \"\",\n    \"employeeContractCustomField8\": \"\",\n    \"employeeContractCustomField9\": \"\",\n    \"employeeContractCustomField10\": \"\",    \n    \"employeeCustomField1\": \"\",\n    \"employeeCustomField2\": \"\",\n    \"employeeCustomField3\": \"\",\n    \"employeeCustomField4\": \"\",\n    \"employeeCustomField5\": \"\",\n    \"employeeCustomField6\": \"\",\n    \"employeeCustomField7\": \"\",\n    \"employeeCustomField8\": \"\",\n    \"employeeCustomField9\": \"\",\n    \"employeeCustomField10\": \"\",\n    \"costCenterId\": \"d926d300-397d-43e8-8b6e-15791c5688c1\",\n    \"costCenterLevel1Code\": \"\",\n    \"costCenterLevel2Code\": \"BNA\",\n    \"costCenterLevel3Code\": \"DIR\",\n    \"costCenterLevel4Code\": \"ADM\",\n    \"costCenterDescription\": \"Dirección Administ.Bna\",\n    \"createdOn\": \"2025-08-26T05:25:55.623Z\",\n    \"modifiedOn\": \"2025-08-26T05:30:10.38Z\"\n}"}],"_postman_id":"d6f8ddda-8739-4b39-aa96-71949bfd26b5"},{"name":"employeeJournalLines","id":"a3d9cbaf-3a25-47ae-be40-472eb121d5b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/employeeJournalLines({{APIemployeeJournalLineId}})","description":"<p>Eliminación de un registro existente del diario de altas/modificaciones. Hay que pasar el ID del regsitro a actualizar en la URL, sin nada en el body.</p>\n<p>La respuesta tampoco devuelve ningún contenido, hay que revisar que el estado de la respuesta sea el 204 para confirmar que la eliminación ha sido correcta.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","employeeJournalLines({{APIemployeeJournalLineId}})"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"0f898359-ca15-4657-95aa-47c1e957676e","name":"employeeJournalLines","originalRequest":{"method":"DELETE","header":[],"url":"/api/summar/labor/v1.0/companies()/employeeJournalLines()"},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.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":"bef3c0fd-847f-44f7-8429-429db4936ad4"},{"key":"Date","value":"Tue, 26 Aug 2025 05:45:33 GMT"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a3d9cbaf-3a25-47ae-be40-472eb121d5b1"},{"name":"terminationJournalLines","id":"1193b435-3061-4c0a-b028-033e1ce47e56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/terminationJournalLines","description":"<p>Obtiene la lista de los registros pendientes en el diario de bajas.<br />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 del diario</td>\n</tr>\n<tr>\n<td>lineNo</td>\n<td>Número de línea del diario</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>laborCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCode</td>\n<td>Código 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>workCenterCode</td>\n<td>Código del centro de trabajo</td>\n</tr>\n<tr>\n<td>hireDate</td>\n<td>Fecha de contratación</td>\n</tr>\n<tr>\n<td>employeeContractId</td>\n<td>ID de la contratación del empleado</td>\n</tr>\n<tr>\n<td>terminationId</td>\n<td>ID del motivo de baja</td>\n</tr>\n<tr>\n<td>terminationCode</td>\n<td>Código del motivo de baja</td>\n</tr>\n<tr>\n<td>terminationDate</td>\n<td>Fecha de la baja</td>\n</tr>\n<tr>\n<td>vacationDaysTaken</td>\n<td>Días de vacaciones disfrutados</td>\n</tr>\n<tr>\n<td>forceVacationDays</td>\n<td>Permite forzar el número de días de vacaciones a pagar</td>\n</tr>\n<tr>\n<td>processNegativeVacationDays</td>\n<td>Indica si se quieren procesar vacaciones negativas</td>\n</tr>\n<tr>\n<td>noVacationPay</td>\n<td>Indica si no se quieren pagar vacaciones</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creación del regsitro</td>\n</tr>\n<tr>\n<td>modifiedOn</td>\n<td>Fecha de 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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","terminationJournalLines"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"b80f7bed-9695-43d8-8598-76f85891df7e","name":"terminationJournalLines","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/terminationJournalLines"},"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":"2200fd7e-c1db-40b9-970c-528f59285089"},{"key":"Date","value":"Tue, 26 Aug 2025 07:50:15 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/terminationJournalLines\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0O2h6bDU2c3dUWWhDOEV1L0RaRGZSYWtPemVOd0VtVFZaQ3BQbzB4OWpnQXM9MTswMDsn\\\"\",\n            \"id\": \"8453d3ed-42bf-4592-891f-f79ee7c14431\",\n            \"lineNo\": 28,\n            \"employeeId\": \"a0e8d0e5-0d82-4341-929f-8ef1bf345901\",\n            \"employeeCode\": \"33564026B\",\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"contributionAccountId\": \"2e1eb0d1-bb8e-4d76-a1b4-cc2aade8f592\",\n            \"contributionAccountCode\": \"01254112524\",\n            \"workCenterCode\": \"\",\n            \"hireDate\": \"2017-01-01\",\n            \"employeeContractId\": \"208a9888-7304-4b98-a50f-e01183d441e3\",\n            \"terminationId\": \"c99a5f1b-8d7e-4121-becc-b5be1e628d85\",\n            \"terminationCode\": \"06\",\n            \"terminationDate\": \"2025-08-31\",\n            \"vacationDaysTaken\": 0,\n            \"forceVacationDays\": 0,\n            \"processNegativeVacationDays\": false,\n            \"noVacationPay\": false,\n            \"createdOn\": \"2025-08-26T07:49:49.857Z\",\n            \"modifiedOn\": \"2025-08-26T07:50:01.233Z\"\n        }\n    ]\n}"}],"_postman_id":"1193b435-3061-4c0a-b028-033e1ce47e56"},{"name":"terminationJournalLines","id":"ac6c68f3-db1e-4627-b619-d3189dfa05c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"employeeCode\": \"32454544A\",\r\n\"laborCompanyCode\": \"A34544551\",\r\n\"contributionAccountCode\": \"08452225455\",\r\n\"hireDate\": \"2008-01-15\",\r\n\"terminationDate\": \"2025-09-01\",\r\n\"terminationCode\": \"06\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/terminationJournalLines","description":"<p>Creación de un registro nuevo en el diario de bajas.</p>\n<p>Los campos son los mismos que devuelve la consulta anterior, excepto el 'id' que lo asigna el proceso de inserción.</p>\n<p>Las asignaciones de los campos que tienen tabla asociada se puede hacer o por ID o por Code, en el ejemplo se ha optado por los campos Code.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","terminationJournalLines"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"767f43ca-71d8-4f92-9e14-67a328b536cf","name":"terminationJournalLines","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"employeeCode\": \"32454544A\",\r\n\"laborCompanyCode\": \"A34544551\",\r\n\"contributionAccountCode\": \"08452225455\",\r\n\"hireDate\": \"2008-01-15\",\r\n\"terminationDate\": \"2025-09-01\",\r\n\"terminationCode\": \"06\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/terminationJournalLines"},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Location","value":"https://mysilaeapitest.summar.es:7048/SUASOR_USER/api/summar/labor/v1.0/companies(70886d1f-fd6e-4544-b018-013d559d8f78)/terminationJournalLines(e9f48a66-9d73-4647-b584-68712647ead9)"},{"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":"94f2154e-4310-45a4-943b-6566635f375b"},{"key":"Date","value":"Tue, 26 Aug 2025 10:41:06 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/terminationJournalLines/$entity\",\n    \"@odata.etag\": \"W/\\\"JzQ0OzBpbEpBc2hJZ3dCSnRWd0ptSFZNSllYZGVUMGVMMytRMDRQcS83eUREekk9MTswMDsn\\\"\",\n    \"id\": \"e9f48a66-9d73-4647-b584-68712647ead9\",\n    \"lineNo\": 30,\n    \"employeeId\": \"ac8652b3-fb7d-42de-8bc9-f14ce430f913\",\n    \"employeeCode\": \"32454544A\",\n    \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n    \"laborCompanyCode\": \"A34544551\",\n    \"contributionAccountId\": \"e335f7fb-c4cc-43db-b9a7-bc3e4b7be401\",\n    \"contributionAccountCode\": \"08452225455\",\n    \"workCenterCode\": \"\",\n    \"hireDate\": \"2008-01-15\",\n    \"employeeContractId\": \"7ca8ddda-d105-44d4-a2cf-32bfa5a0c4b7\",\n    \"terminationId\": \"c99a5f1b-8d7e-4121-becc-b5be1e628d85\",\n    \"terminationCode\": \"06\",\n    \"terminationDate\": \"2025-09-01\",\n    \"vacationDaysTaken\": 0,\n    \"forceVacationDays\": 0,\n    \"processNegativeVacationDays\": false,\n    \"noVacationPay\": false,\n    \"createdOn\": \"2025-08-26T10:41:06.823Z\",\n    \"modifiedOn\": \"2025-08-26T10:41:06.823Z\"\n}"}],"_postman_id":"ac6c68f3-db1e-4627-b619-d3189dfa05c0"},{"name":"terminationJournalLines","id":"d951b906-924a-46f1-9506-5c2add0721fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"terminationCode\": \"07\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/terminationJournalLines({{APIterminationJournalLineId}})","description":"<p>Actualización parcial o completa de un registro existente del diario de bajas.</p>\n<p>En este caso hay que pasar el ID del regsitro a actualizar en la URL, y se pueden enviar sólo los campos a modificar, en el resto se mantendrá su valor actual.</p>\n<p>En la respuesta se obtiene el contenido completo del registro modificado</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","terminationJournalLines({{APIterminationJournalLineId}})"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"a5e67ffd-1ce5-4579-93bb-b4449c6efa8c","name":"terminationJournalLines","originalRequest":{"method":"PATCH","header":[{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"terminationCode\": \"07\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/terminationJournalLines({{APIterminationJournalLineId}})"},"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":"aec81eb7-3c20-4922-aa86-2d45ac2ab73a"},{"key":"Date","value":"Tue, 26 Aug 2025 10:43:10 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clinetUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/terminationJournalLines/$entity\",\n    \"@odata.etag\": \"W/\\\"JzQ0O3Mya09lcnlzVWlQOUtFR0RPQkU2QTJMeDNwa0t6eVJqWEZpWDRnWS9UZEk9MTswMDsn\\\"\",\n    \"id\": \"e9f48a66-9d73-4647-b584-68712647ead9\",\n    \"lineNo\": 30,\n    \"employeeId\": \"ac8652b3-fb7d-42de-8bc9-f14ce430f913\",\n    \"employeeCode\": \"32454544A\",\n    \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n    \"laborCompanyCode\": \"A34544551\",\n    \"contributionAccountId\": \"e335f7fb-c4cc-43db-b9a7-bc3e4b7be401\",\n    \"contributionAccountCode\": \"08452225455\",\n    \"workCenterCode\": \"\",\n    \"hireDate\": \"2008-01-15\",\n    \"employeeContractId\": \"7ca8ddda-d105-44d4-a2cf-32bfa5a0c4b7\",\n    \"terminationId\": \"c440e94e-c606-405b-a110-3c2abc89828c\",\n    \"terminationCode\": \"07\",\n    \"terminationDate\": \"2025-09-01\",\n    \"vacationDaysTaken\": 0,\n    \"forceVacationDays\": 0,\n    \"processNegativeVacationDays\": false,\n    \"noVacationPay\": false,\n    \"createdOn\": \"2025-08-26T10:41:06.823Z\",\n    \"modifiedOn\": \"2025-08-26T10:43:10.227Z\"\n}"}],"_postman_id":"d951b906-924a-46f1-9506-5c2add0721fe"},{"name":"terminationJournalLines","id":"174120c4-bd59-464b-b976-1cdc12c2bc45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/terminationJournalLines({{APIterminationJournalLineId}})","description":"<p>Eliminación de un registro existente del diario de bajas. Hay que pasar el ID del regsitro a actualizar en la URL, sin nada en el body.</p>\n<p>La respuesta tampoco devuelve ningún contenido, hay que revisar que el estado de la respuesta sea el 204 para confirmar que la eliminación ha sido correcta.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","terminationJournalLines({{APIterminationJournalLineId}})"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"41731d67-755d-4445-a540-e475ab95deff","name":"terminationJournalLines","originalRequest":{"method":"DELETE","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/terminationJournalLines({{APIterminationJournalLineId}})"},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.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":"be835c5d-e4c4-4171-8a97-873724c21b28"},{"key":"Date","value":"Tue, 26 Aug 2025 10:45:42 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":""}],"_postman_id":"174120c4-bd59-464b-b976-1cdc12c2bc45"},{"name":"IncidentsJournalLines","id":"524704d6-9438-45e1-aa22-8e58648ee86a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/IncidentsJournalLines","description":"<p>Obtiene la lista de los registros pendientes en el diario de incidencias. Este diario se utiliza tanto para el envío de absentismos como para el envío de variables de nómina.</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 del diario</td>\n</tr>\n<tr>\n<td>lineNo</td>\n<td>Número de línea del diario</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>laborCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCode</td>\n<td>Código 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>incidentId</td>\n<td>ID del código de incidencia</td>\n</tr>\n<tr>\n<td>incidentCode</td>\n<td>Código de incidencia</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>Fecha inicio de la incidencia</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>Fecha fin de la incidencia</td>\n</tr>\n<tr>\n<td>hours</td>\n<td>Nº de Horas, sólo aplica en ausencias parciales</td>\n</tr>\n<tr>\n<td>quantity</td>\n<td>Cantidad o importe, aplica en variables</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</tbody>\n</table>\n</div>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","IncidentsJournalLines"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"dc577511-7df8-48dc-89e9-2f589e6c3c6d","name":"IncidentsJournalLines","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/IncidentsJournalLines"},"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":"e9708a55-e5c2-4297-a549-0983ae2b417b"},{"key":"Date","value":"Tue, 26 Aug 2025 12:59:39 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/IncidentsJournalLines\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0O2k0dmN4UkZLSm9xaGw2WVVoZEpVTzFMTzlOdm1Ra0tBMDN3dWVFWTRPRmM9MTswMDsn\\\"\",\n            \"id\": \"a7e8982c-b7fd-411e-9fc9-9b455db12d73\",\n            \"lineNo\": 320000,\n            \"employeeId\": \"c9409643-2290-412c-9344-4e0af639c857\",\n            \"employeeCode\": \"32232124Q\",\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"contributionAccountId\": \"e335f7fb-c4cc-43db-b9a7-bc3e4b7be401\",\n            \"contributionAccountCode\": \"08452225455\",\n            \"incidentId\": \"2a0d676f-3af6-4b9f-b010-0a7387845409\",\n            \"incidentCode\": \"H.EXTRA\",\n            \"startDate\": \"2025-10-01\",\n            \"endDate\": \"2025-10-31\",\n            \"hours\": 0,\n            \"quantity\": 4.5,\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-07-25T11:13:18.717Z\"\n        },\n        // ---\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0OzhsN2IrTkE1bEJqOWtQWmo2UGFkYmR6Q3dQcTV3TXpDNGRaZkRNaE5YNDg9MTswMDsn\\\"\",\n            \"id\": \"479a0cf8-a45a-4c40-991a-a4cbc11cd7a4\",\n            \"lineNo\": 450000,\n            \"employeeId\": \"eedafa01-5af5-4f9d-a9e7-dfc61d8da76f\",\n            \"employeeCode\": \"39555454P\",\n            \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"contributionAccountId\": \"e335f7fb-c4cc-43db-b9a7-bc3e4b7be401\",\n            \"contributionAccountCode\": \"08452225455\",\n            \"incidentId\": \"60faade6-cce8-41af-8fe2-01ad197a129f\",\n            \"incidentCode\": \"HORASSINDI\",\n            \"startDate\": \"2025-07-08\",\n            \"endDate\": \"2025-07-08\",\n            \"hours\": 5,\n            \"quantity\": 0,\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"2025-07-25T11:13:18.717Z\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"524704d6-9438-45e1-aa22-8e58648ee86a"},{"name":"IncidentsJournalLines","id":"6e2eb66c-cb1f-4375-8aab-8b113f9791e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"employeeCode\": \"33564026B\",\r\n    \"laborCompanyCode\": \"A34544551\",\r\n    \"contributionAccountCode\": \"01254112524\",\r\n    \"incidentCode\": \"H.EXTRA\",\r\n    \"startDate\": \"2025-07-01\",\r\n    \"endDate\": \"2025-07-30\",\r\n    \"quantity\": 60\r\n}","options":{"raw":{"language":"json"}}},"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/IncidentsJournalLines","description":"<p>Creación de un registro nuevo en el diario de incidencias.</p>\n<p>Los campos son los mismos que devuelve la consulta anterior, excepto el 'id' que lo asigna el proceso de inserción.</p>\n<p>Las asignaciones de los campos que tienen tabla asociada se puede hacer o por ID o por Code, en el ejemplo se ha optado por los campos Code.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","IncidentsJournalLines"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"de67c6c8-13b9-4e45-8b68-b48ac8e7e894","name":"IncidentsJournalLines","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"employeeCode\": \"33564026B\",\r\n    \"laborCompanyCode\": \"A34544551\",\r\n    \"contributionAccountCode\": \"01254112524\",\r\n    \"incidentCode\": \"H.EXTRA\",\r\n    \"startDate\": \"2025-07-01\",\r\n    \"endDate\": \"2025-07-30\",\r\n    \"quantity\": 60\r\n}","options":{"raw":{"language":"json"}}},"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/IncidentsJournalLines"},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json; odata.metadata=minimal"},{"key":"Content-Encoding","value":"gzip"},{"key":"Location","value":"https://mysilaeapitest.summar.es:7048/SUASOR_USER/api/summar/labor/v1.0/companies(70886d1f-fd6e-4544-b018-013d559d8f78)/IncidentsJournalLines(d9b88d54-0d5c-4b18-a9b0-567b95c0280a)"},{"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":"b3948383-cb89-4ec8-8abc-86cc50f69b48"},{"key":"Date","value":"Tue, 26 Aug 2025 13:17:01 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/IncidentsJournalLines/$entity\",\n    \"@odata.etag\": \"W/\\\"JzQ0O2NTR2daODljSmtNV3lmbzJYYkoyOElBVitqb0ZXLy9lc3JYeXU5dWpTdFE9MTswMDsn\\\"\",\n    \"id\": \"d9b88d54-0d5c-4b18-a9b0-567b95c0280a\",\n    \"lineNo\": 500000,\n    \"employeeId\": \"a0e8d0e5-0d82-4341-929f-8ef1bf345901\",\n    \"employeeCode\": \"33564026B\",\n    \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n    \"laborCompanyCode\": \"A34544551\",\n    \"contributionAccountId\": \"2e1eb0d1-bb8e-4d76-a1b4-cc2aade8f592\",\n    \"contributionAccountCode\": \"01254112524\",\n    \"incidentId\": \"2a0d676f-3af6-4b9f-b010-0a7387845409\",\n    \"incidentCode\": \"H.EXTRA\",\n    \"startDate\": \"2025-07-01\",\n    \"endDate\": \"2025-07-30\",\n    \"hours\": 0,\n    \"quantity\": 60,\n    \"createdOn\": \"2025-08-26T13:17:01.26Z\",\n    \"modifiedOn\": \"2025-08-26T13:17:01.26Z\"\n}"}],"_postman_id":"6e2eb66c-cb1f-4375-8aab-8b113f9791e7"},{"name":"IncidentsJournalLines","id":"31412ee1-751b-4fee-8d87-20b1da39e1fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"quantity\": 40\r\n}","options":{"raw":{"language":"json"}}},"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/IncidentsJournalLines({{APIincidentsJournalLineId}})","description":"<p>Actualización parcial o completa de un registro existente del diario de bajas.</p>\n<p>En este caso hay que pasar el ID del regsitro a actualizar en la URL, y se pueden enviar sólo los campos a modificar, en el resto se mantendrá su valor actual.</p>\n<p>En la respuesta se obtiene el contenido completo del registro modificado.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","IncidentsJournalLines({{APIincidentsJournalLineId}})"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"01213e99-19c2-4b22-bc42-85706236bfe6","name":"IncidentsJournalLines","originalRequest":{"method":"PATCH","header":[{"key":"If-Match","value":"*","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"quantity\": 40\r\n}","options":{"raw":{"language":"json"}}},"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/IncidentsJournalLines({{APIincidentsJournalLineId}})"},"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":"e9a7bbcc-34f2-4296-81ca-15ab45b77e95"},{"key":"Date","value":"Tue, 26 Aug 2025 13:30:18 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/IncidentsJournalLines/$entity\",\n    \"@odata.etag\": \"W/\\\"JzQ0O1NaNnBSUXNsUUk1TTFXWnRJck5GbWdyc2VXR0xTY05xQ0VoUElRdk9CdVE9MTswMDsn\\\"\",\n    \"id\": \"d9b88d54-0d5c-4b18-a9b0-567b95c0280a\",\n    \"lineNo\": 500000,\n    \"employeeId\": \"a0e8d0e5-0d82-4341-929f-8ef1bf345901\",\n    \"employeeCode\": \"33564026B\",\n    \"laborCompanyId\": \"7fd03d4f-88d7-475b-b5ab-7ae540008813\",\n    \"laborCompanyCode\": \"A34544551\",\n    \"contributionAccountId\": \"2e1eb0d1-bb8e-4d76-a1b4-cc2aade8f592\",\n    \"contributionAccountCode\": \"01254112524\",\n    \"incidentId\": \"2a0d676f-3af6-4b9f-b010-0a7387845409\",\n    \"incidentCode\": \"H.EXTRA\",\n    \"startDate\": \"2025-07-01\",\n    \"endDate\": \"2025-07-30\",\n    \"hours\": 0,\n    \"quantity\": 40,\n    \"createdOn\": \"2025-08-26T13:17:01.26Z\",\n    \"modifiedOn\": \"2025-08-26T13:30:18.877Z\"\n}"}],"_postman_id":"31412ee1-751b-4fee-8d87-20b1da39e1fe"},{"name":"IncidentsJournalLines","id":"239197db-27d9-4690-83f2-16a4b7edb615","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"If-Match","value":"*","type":"text"}],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/IncidentsJournalLines({{APIincidentsJournalLineId}})","description":"<p>Eliminación de un registro existente del diario de bajas. Hay que pasar el ID del regsitro a actualizar en la URL, sin nada en el body.</p>\n<p>La respuesta tampoco devuelve ningún contenido, hay que revisar que el estado de la respuesta sea el 204 para confirmar que la eliminación ha sido correcta.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","IncidentsJournalLines({{APIincidentsJournalLineId}})"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"b4e0a27f-0498-4962-adf0-37bbc9eeeb6d","name":"IncidentsJournalLines","originalRequest":{"method":"DELETE","header":[{"key":"If-Match","value":"*","type":"text"}],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/IncidentsJournalLines({{APIincidentsJournalLineId}})"},"status":"No Content","code":204,"_postman_previewlanguage":"Text","header":[{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Encoding","value":"gzip"},{"key":"Server","value":"Microsoft-HTTPAPI/2.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":"79a9477f-3b1e-454e-8cee-5546a5ddfe48"},{"key":"Date","value":"Tue, 26 Aug 2025 13:33:17 GMT"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"239197db-27d9-4690-83f2-16a4b7edb615"}],"id":"faad8878-ca1b-4b39-a6dc-28b2990d3900","description":"<p>Funciones de gestión de los diarios de la aplicación, son las únicas funciones que permiten inserción, modificación y eliminación de datos.</p>\n","_postman_id":"faad8878-ca1b-4b39-a6dc-28b2990d3900","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}}},{"name":"💰 Información salarial","item":[{"name":"employeeFixedSalaries","id":"4b5ed57c-9c7b-4c78-b520-a815360d4864","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/employeeFixedSalaries","description":"<p>Funciones de consulta de información salarial 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>id</td>\n<td></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>laborCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCode</td>\n<td>Código 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>agreementId</td>\n<td>ID de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>agreementCode</td>\n<td>Código de la cuenta de cotización</td>\n</tr>\n<tr>\n<td>effectiveStartDate</td>\n<td>Fecha inicio de aplicación</td>\n</tr>\n<tr>\n<td>effectiveEndDate</td>\n<td>Fecha fin de aplicación</td>\n</tr>\n<tr>\n<td>amountType</td>\n<td>0: Mensual, 1: Diario</td>\n</tr>\n<tr>\n<td>periodAmount</td>\n<td>Importe periodo normal</td>\n</tr>\n<tr>\n<td>periodType</td>\n<td>0: Bruto, 1: Neto</td>\n</tr>\n<tr>\n<td>compensationConceptCode</td>\n<td>Código concepo diferencias</td>\n</tr>\n<tr>\n<td>compensationConceptDescription</td>\n<td>Descripción concepo diferencias</td>\n</tr>\n<tr>\n<td>guaranteedInTD</td>\n<td>Garantizado en periodos con IT</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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","employeeFixedSalaries"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"796566cf-42a9-4db1-ae6e-522b14259784","name":"employeeFixedSalaries","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/employeeFixedSalaries"},"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":"cc88e960-f948-4cef-8be2-fffa1fc0ca70"},{"key":"Date","value":"Mon, 25 Aug 2025 16:25:46 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"http://vm-suasorbc14.marjinsa.es:7048/SUASORBC14_DESA/api/summar/labor/v1.0/$metadata#companies(7d5507bc-35b3-4569-8157-f385625bd7fa)/fixedSalaries\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0OzZXWllHM2hMam9sUC8xbEt2L2IxdFppRk90bERzcVBnSzY5MUR0OUdnS0E9MTswMDsn\\\"\",\n            \"id\": \"766b74d1-a9a4-4893-c9c8-5f016e695d38\",\n            \"employeeId\": \"80807b97-9c01-48a9-95b2-07f234fbb767\",\n            \"employeePersonId\": \"45f19212-505a-4e36-b475-47c570de8583\",\n            \"employeeCode\": \"03092022\",\n            \"laborCompanyId\": \"146bb24d-985a-4eb7-b169-bf33bd7f34d4\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"contributionAccountId\": \"4d1766b7-a9a4-4893-8c9c-5f016e695d38\",\n            \"contributionAccountCode\": \"08452225455\",\n            \"hireDate\": \"2020-09-01\",\n            \"agreementId\": \"db48f421-831b-40d0-ba45-87b7ee755e82\",\n            \"agreementCode\": \"OFICAT\",\n            \"effectiveStartDate\": \"2026-03-01\",\n            \"effectiveEndDate\": \"2026-04-30\",\n            \"amountType\": \"Mensual\",\n            \"periodAmount\": 7500,\n            \"periodType\": \"Bruto\",\n            \"compensationConceptCode\": \"C010\",\n            \"compensationConceptDescription\": \"SALARIO BASE\",\n            \"guaranteedInTD\": false,\n            \"createdOn\": \"0001-01-01T00:00:00Z\",\n            \"modifiedOn\": \"0001-01-01T00:00:00Z\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"4b5ed57c-9c7b-4c78-b520-a815360d4864"},{"name":"employeeSalaryInformation","id":"a03479be-a7d6-4949-8875-37d42ecf5ad5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/employeeSalaryInformation","description":"<p>Funciones de consulta de información salarial 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>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>laborCompanyId</td>\n<td>ID de la empresa</td>\n</tr>\n<tr>\n<td>laborCompanyCode</td>\n<td>Código 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>periodYear</td>\n<td>Año del periodo</td>\n</tr>\n<tr>\n<td>periodMonth</td>\n<td>Mes del periodo</td>\n</tr>\n<tr>\n<td>calculationType</td>\n<td>0: Nómina tipo  <br />1: Nómina  <br />2: Paga extra  <br />3: Finiquito  <br />4: Paga retroactiva  <br />5: Diferencias</td>\n</tr>\n<tr>\n<td>periodStartDate</td>\n<td>Fecha inicio del periodo</td>\n</tr>\n<tr>\n<td>periodEndDate</td>\n<td>Fecha fin del periodo</td>\n</tr>\n<tr>\n<td>periodDays</td>\n<td>Días del periodo</td>\n</tr>\n<tr>\n<td>accrualYear</td>\n<td>Año de acumulación</td>\n</tr>\n<tr>\n<td>accrualMonth</td>\n<td>Mes de acumulación</td>\n</tr>\n<tr>\n<td>costCenterId</td>\n<td>Identificador único de la sección de coste</td>\n</tr>\n<tr>\n<td>level1code</td>\n<td>Código del nivel 1 de la sección de coste</td>\n</tr>\n<tr>\n<td>level2code</td>\n<td>Código del nivel 2 de la sección de coste</td>\n</tr>\n<tr>\n<td>level3code</td>\n<td>Código del nivel 3 de la sección de coste</td>\n</tr>\n<tr>\n<td>level4code</td>\n<td>Código del nivel 4 de la sección de coste</td>\n</tr>\n<tr>\n<td>sectionDescription</td>\n<td>Descripción de la sección de coste</td>\n</tr>\n<tr>\n<td>salaryClassification</td>\n<td>Clasificación del dato salarial</td>\n</tr>\n<tr>\n<td>salaryDescription</td>\n<td>Descripción del dato salarial</td>\n</tr>\n<tr>\n<td>salaryConceptType</td>\n<td>0: Sumatorrio, 1: Agrupacion, 2: Caluculo, 3: Totalizador, 4: Concepto, 6: Variable</td>\n</tr>\n<tr>\n<td>salaryConceptCode</td>\n<td>Código del concepto del dato salarial</td>\n</tr>\n<tr>\n<td>salaryConceptDescription</td>\n<td>Descripción del concepto del dato salarial</td>\n</tr>\n<tr>\n<td>amount</td>\n<td>Valor del dato salarial</td>\n</tr>\n<tr>\n<td>createdOn</td>\n<td>Fecha de creació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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","companies({{APIcompanyId}})","employeeSalaryInformation"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"b2a18304-7c2e-4035-be7d-dc9f748726b8","name":"employeeSalaryInformacion","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/companies({{APIcompanyId}})/employeeSalaryInformacion"},"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":"cc88e960-f948-4cef-8be2-fffa1fc0ca70"},{"key":"Date","value":"Mon, 25 Aug 2025 16:25:46 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"@odata.context\": \"https://clientUrl:7048/service/api/summar/labor/v1.0/$metadata#companies(70886d1f-fd6e-4544-b018-013d559d8f78)/salaryInformacion\",\n    \"value\": [\n        {\n            \"@odata.etag\": \"W/\\\"JzQ0O3RrOVdsMlRQcE05dit6TXRCdXZrVDQ1N3kzcXZ4dTN4bFNDTXFsQitVRzA9MTswMDsn\\\"\",\n            \"id\": 82,\n            \"employeeId\": \"80807b97-9c01-48a9-95b2-07f234fbb767\",\n            \"employeePersonId\": \"45f19212-505a-4e36-b475-47c570de8583\",\n            \"employeeCode\": \"03092022\",\n            \"laborCompanyId\": \"146bb24d-985a-4eb7-b169-bf33bd7f34d4\",\n            \"laborCompanyCode\": \"A34544551\",\n            \"contributionAccountId\": \"4d1766b7-a9a4-4893-8c9c-5f016e695d38\",\n            \"contributionAccountCode\": \"08452225455\",\n            \"hireDate\": \"2020-09-01\",\n            \"periodYear\": 2026,\n            \"periodMonth\": 2,\n            \"calculationType\": \"Nómina\",\n            \"periodStartDate\": \"2026-02-01\",\n            \"periodEndDate\": \"2026-02-28\",\n            \"periodDays\": 28,\n            \"accrualYear\": 2026,\n            \"accrualMonth\": 2,\n            \"costCenterId\": \"9a95fe6a-9bdf-4c46-8fb9-a7b00d6024f1\",\n            \"level1code\": \"\",\n            \"level2code\": \"\",\n            \"level3code\": \"PGM\",\n            \"level4code\": \"BCN\",\n            \"sectionDescription\": \"PROGRAMACIÓN BARCELONA \",\n            \"salaryClassification\": \"Proves\",\n            \"salaryDescription\": \"Prova Manual\",\n            \"salaryConceptType\": \"Concepto\",\n            \"salaryConceptCode\": \"C010\",\n            \"salaryConceptDescription\": \"SALARIO BASE\",\n            \"amount\": 1478.1,\n            \"createdOn\": \"2026-05-27T10:36:52.4Z\"\n        },\n        // ---\n    ]\n}"}],"_postman_id":"a03479be-a7d6-4949-8875-37d42ecf5ad5"}],"id":"427dd0b2-56ba-423a-b12a-cec17b1a4f2b","_postman_id":"427dd0b2-56ba-423a-b12a-cec17b1a4f2b","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}}},{"name":"🏷️ Definición campos","item":[{"name":"GeneralMetadata","id":"93f8e182-f6c5-4aea-88f5-a09dc21460fa","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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","general","v1.0","$metadata"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"afe3aa6f-9746-4710-9c70-eb4a356c9b10","name":"GeneralMetadata","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/general/v1.0/$metadata"},"status":"OK","code":200,"_postman_previewlanguage":"Text","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":"4b4e55f1-b19c-4c60-b167-63af9deae2dc"},{"key":"Date","value":"Tue, 26 Aug 2025 14:06:49 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=\"customerCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"customerId\" Type=\"Edm.Guid\" />\n                <Property Name=\"customerName\" Type=\"Edm.String\" MaxLength=\"170\" />\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=\"customerCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"customerId\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" MaxLength=\"4\" />\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=\"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=\"auxiliaryIndex1\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\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                <Property Name=\"auxiliaryIndex1\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"5\" />\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=\"taxSetup\">\n                <Key>\n                    <PropertyRef Name=\"code\" />\n                    <PropertyRef Name=\"auxiliaryIndex1\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"10\" />\n                <Property Name=\"type\" Type=\"Edm.String\" MaxLength=\"4\" />\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\" MaxLength=\"4\" />\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\" MaxLength=\"4\" />\n                <Property Name=\"igicExemptionCode\" Type=\"Edm.String\" MaxLength=\"2\" />\n                <Property Name=\"igicExemptionType\" Type=\"Edm.String\" MaxLength=\"4\" />\n                <Property Name=\"auxiliaryIndex1\" Type=\"Edm.Date\" Nullable=\"false\" />\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=\"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=\"taxSetups\" Type=\"Collection(Microsoft.NAV.taxSetup)\" 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=\"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=\"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=\"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":"93f8e182-f6c5-4aea-88f5-a09dc21460fa"},{"name":"LaborMetadata","id":"9a5aca11-cbdb-4324-9c3b-2ccd6177b369","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/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":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}},"urlObject":{"path":["api","summar","labor","v1.0","$metadata"],"host":["{{APIbaseURL}}"],"query":[],"variable":[]}},"response":[{"id":"dfd8d8a9-210e-4975-8e85-9fadd811972b","name":"LaborMetadata","originalRequest":{"method":"GET","header":[],"url":"{{APIbaseURL}}/api/summar/labor/v1.0/$metadata"},"status":"OK","code":200,"_postman_previewlanguage":"Text","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":"aa88edf6-817c-45fa-b89f-9a7cc8d5870e"},{"key":"Date","value":"Tue, 26 Aug 2025 14:07:06 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=\"laborCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"laborCompanyCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"laborCompanyName\" 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=\"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=\"house\" 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=\"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=\"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=\"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=\"laborCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"laborCompanyCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"laborCompanyName\" 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=\"terminationId\" Type=\"Edm.Guid\" />\n                <Property Name=\"terminationCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"terminationDate\" Type=\"Edm.Date\" />\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=\"agreementId\" Type=\"Edm.Guid\" />\n                <Property Name=\"agreementCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"agreementDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"agreementDate\" 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=\"30\" />\n                <Property Name=\"categoryDate\" Type=\"Edm.Date\" />\n                <Property Name=\"jobPosition\" Type=\"Edm.String\" MaxLength=\"80\" />\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=\"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=\"expirationDate\" Type=\"Edm.Date\" />\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=\"acronymAddressId\" Type=\"Edm.Guid\" />\n                <Property Name=\"acronymAddressCode\" Type=\"Edm.String\" />\n                <Property Name=\"address\" Type=\"Edm.String\" />\n                <Property Name=\"house\" 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=\"socialSecurityNumber\" Type=\"Edm.String\" />\n                <Property Name=\"trainingLevelId\" Type=\"Edm.Guid\" />\n                <Property Name=\"trainingLevelCode\" Type=\"Edm.String\" />\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=\"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=\"laborCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"laborCompanyCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"laborCompanyName\" 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=\"terminationId\" Type=\"Edm.Guid\" />\n                <Property Name=\"terminationCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"terminationDate\" Type=\"Edm.Date\" />\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=\"agreementId\" Type=\"Edm.Guid\" />\n                <Property Name=\"agreementCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"agreementDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"agreementDate\" 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=\"30\" />\n                <Property Name=\"categoryDate\" Type=\"Edm.Date\" />\n                <Property Name=\"jobPosition\" Type=\"Edm.String\" MaxLength=\"80\" />\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=\"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=\"expirationDate\" Type=\"Edm.Date\" />\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=\"employeeContractChange\">\n                <Key>\n                    <PropertyRef Name=\"id\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" Nullable=\"false\" />\n                <Property Name=\"employeeContractID\" Type=\"Edm.Guid\" />\n                <Property Name=\"employeePersonId\" Type=\"Edm.Guid\" />\n                <Property Name=\"employeeId\" Type=\"Edm.Guid\" />\n                <Property Name=\"employeeCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"fullName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"laborCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"laborCompanyCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"laborCompanyName\" 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=\"changeDate\" Type=\"Edm.Date\" />\n                <Property Name=\"terminationDate\" Type=\"Edm.Date\" />\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=\"workCenterUpdate\" Type=\"Edm.Boolean\" />\n                <Property Name=\"agreementId\" Type=\"Edm.Guid\" />\n                <Property Name=\"agreementCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"agreementDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"agreementDate\" Type=\"Edm.Date\" />\n                <Property Name=\"agreementUpdate\" Type=\"Edm.Boolean\" />\n                <Property Name=\"categoryId\" Type=\"Edm.Guid\" />\n                <Property Name=\"categoryCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"categoryDescription\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"jobPosition\" Type=\"Edm.String\" MaxLength=\"80\" />\n                <Property Name=\"categoryDate\" Type=\"Edm.Date\" />\n                <Property Name=\"categoryUpdate\" Type=\"Edm.Boolean\" />\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=\"workdayDate\" Type=\"Edm.Date\" />\n                <Property Name=\"workdayUpdate\" Type=\"Edm.Boolean\" />\n                <Property Name=\"contractId\" Type=\"Edm.Guid\" />\n                <Property Name=\"contractCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"contractDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"contractDate\" Type=\"Edm.Date\" />\n                <Property Name=\"contractUpdate\" Type=\"Edm.Boolean\" />\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=\"laborCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"laborCompanyCode\" Type=\"Edm.String\" MaxLength=\"20\" />\n                <Property Name=\"laborCompanyName\" 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=\"employeeJournalLine\">\n                <Key>\n                    <PropertyRef Name=\"id\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" Nullable=\"false\" />\n                <Property Name=\"lineNo\" Type=\"Edm.Int32\" />\n                <Property Name=\"employeeId\" 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=\"foreignCode\" Type=\"Edm.String\" />\n                <Property Name=\"vatNumber\" Type=\"Edm.String\" MaxLength=\"30\" />\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=\"house\" 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=\"cityId\" Type=\"Edm.Guid\" />\n                <Property Name=\"cityCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"postalCodeId\" Type=\"Edm.Guid\" />\n                <Property Name=\"postalCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"countyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countyCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"countryId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countryCode\" Type=\"Edm.String\" MaxLength=\"3\" />\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=\"countyBirthId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countyBirthCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"countryBirthId\" Type=\"Edm.Guid\" />\n                <Property Name=\"countryBirthCode\" Type=\"Edm.String\" MaxLength=\"3\" />\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=\"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=\"laborCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"laborCompanyCode\" Type=\"Edm.String\" MaxLength=\"9\" />\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=\"workCenterId\" Type=\"Edm.Guid\" />\n                <Property Name=\"workCenterCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"agreementId\" Type=\"Edm.Guid\" />\n                <Property Name=\"agreementCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"categoryId\" Type=\"Edm.Guid\" />\n                <Property Name=\"categoryCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"jobPosition\" Type=\"Edm.String\" MaxLength=\"80\" />\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=\"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=\"expirationDate\" Type=\"Edm.Date\" />\n                <Property Name=\"costCenterId\" Type=\"Edm.Guid\" />\n                <Property Name=\"costCenterLevel1Code\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"costCenterLevel2Code\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"costCenterLevel3Code\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"costCenterLevel4Code\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"costCenterDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n            </EntityType>\n            <EntityType Name=\"terminationJournalLine\">\n                <Key>\n                    <PropertyRef Name=\"id\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" Nullable=\"false\" />\n                <Property Name=\"lineNo\" Type=\"Edm.Int32\" />\n                <Property Name=\"employeeId\" Type=\"Edm.Guid\" />\n                <Property Name=\"employeeCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"laborCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"laborCompanyCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"contributionAccountId\" Type=\"Edm.Guid\" />\n                <Property Name=\"contributionAccountCode\" Type=\"Edm.String\" MaxLength=\"11\" />\n                <Property Name=\"workCenterCode\" Type=\"Edm.String\" MaxLength=\"3\" />\n                <Property Name=\"hireDate\" Type=\"Edm.Date\" />\n                <Property Name=\"employeeContractId\" Type=\"Edm.Guid\" />\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=\"vacationDaysTaken\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"forceVacationDays\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"processNegativeVacationDays\" Type=\"Edm.Boolean\" />\n                <Property Name=\"noVacationPay\" Type=\"Edm.Boolean\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n            </EntityType>\n            <EntityType Name=\"incidentsJournalLine\">\n                <Key>\n                    <PropertyRef Name=\"id\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" Nullable=\"false\" />\n                <Property Name=\"lineNo\" Type=\"Edm.Int32\" />\n                <Property Name=\"employeeId\" Type=\"Edm.Guid\" />\n                <Property Name=\"employeeCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"laborCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"laborCompanyCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"contributionAccountId\" Type=\"Edm.Guid\" />\n                <Property Name=\"contributionAccountCode\" Type=\"Edm.String\" MaxLength=\"11\" />\n                <Property Name=\"incidentId\" Type=\"Edm.Guid\" />\n                <Property Name=\"incidentCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"startDate\" Type=\"Edm.Date\" />\n                <Property Name=\"endDate\" Type=\"Edm.Date\" />\n                <Property Name=\"hours\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"quantity\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n            </EntityType>\n            <EntityType Name=\"employeeCostCenter\">\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=\"employeeContractID\" Type=\"Edm.Guid\" />\n                <Property Name=\"employeeCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"fullName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"laborCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"laborCompanyCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"laborCompanyName\" 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=\"year\" Type=\"Edm.String\" MaxLength=\"4\" />\n                <Property Name=\"month\" Type=\"Edm.String\" />\n                <Property Name=\"level1Code\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"level2Code\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"level3Code\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"level4Code\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"costCenterId\" Type=\"Edm.Guid\" />\n                <Property Name=\"costCenterDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"percentage\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"employeeActive\" Type=\"Edm.Boolean\" />\n                <Property Name=\"currentDistribution\" Type=\"Edm.Boolean\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n            </EntityType>\n            <EntityType Name=\"employeeAbsence\">\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=\"employeeCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"employeeName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"laborCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"laborCompanyCode\" Type=\"Edm.String\" MaxLength=\"9\" />\n                <Property Name=\"laborCompanyName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"contributionAccountId\" Type=\"Edm.Guid\" />\n                <Property Name=\"contributionAccountCode\" Type=\"Edm.String\" MaxLength=\"11\" />\n                <Property Name=\"startDate\" Type=\"Edm.Date\" />\n                <Property Name=\"endDate\" Type=\"Edm.Date\" />\n                <Property Name=\"partial\" Type=\"Edm.Boolean\" />\n                <Property Name=\"startTime\" Type=\"Edm.String\" />\n                <Property Name=\"endTime\" Type=\"Edm.String\" />\n                <Property Name=\"partOfDay\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"lineNo\" Type=\"Edm.Int32\" />\n                <Property Name=\"type\" Type=\"Edm.String\" />\n                <Property Name=\"subtype\" Type=\"Edm.String\" />\n                <Property Name=\"absenceReasonId\" Type=\"Edm.Guid\" />\n                <Property Name=\"absenceReasonCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"absenceReasonDescription\" Type=\"Edm.String\" MaxLength=\"80\" />\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=\"laborCompany\">\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=\"agreementCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"agreementId\" Type=\"Edm.Guid\" />\n                <Property Name=\"agreementDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\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=\"laborCompanyCode\" />\n                    <PropertyRef Name=\"contributionAccount\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"laborCompanyCode\" 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=\"agreementCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"createdOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"modifiedOn\" Type=\"Edm.DateTimeOffset\" />\n                <Property Name=\"laborCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"laborCompanyName\" 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                <Property Name=\"agreementId\" Type=\"Edm.Guid\" />\n                <Property Name=\"agreementDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n            </EntityType>\n            <EntityType Name=\"workCenter\">\n                <Key>\n                    <PropertyRef Name=\"laborCompanyCode\" />\n                    <PropertyRef Name=\"contributionAccountCode\" />\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"laborCompanyCode\" 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=\"agreementCode\" Type=\"Edm.String\" MaxLength=\"10\" />\n                <Property Name=\"hours\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"laborCompanyId\" Type=\"Edm.Guid\" />\n                <Property Name=\"laborCompanyName\" 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                <Property Name=\"agreementId\" Type=\"Edm.Guid\" />\n                <Property Name=\"agreementDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n            </EntityType>\n            <EntityType Name=\"agreement\">\n                <Key>\n                    <PropertyRef Name=\"agreementCode\" />\n                    <PropertyRef Name=\"year\" />\n                    <PropertyRef Name=\"month\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"agreementCode\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"10\" />\n                <Property Name=\"year\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"4\" />\n                <Property Name=\"month\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"4\" />\n                <Property Name=\"name\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"annualHours\" Type=\"Edm.Decimal\" Scale=\"Variable\" />\n                <Property Name=\"officialCode\" Type=\"Edm.String\" MaxLength=\"14\" />\n            </EntityType>\n            <EntityType Name=\"category\">\n                <Key>\n                    <PropertyRef Name=\"agreementCode\" />\n                    <PropertyRef Name=\"agreementYear\" />\n                    <PropertyRef Name=\"agreementMonth\" />\n                    <PropertyRef Name=\"code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"agreementCode\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"10\" />\n                <Property Name=\"agreementYear\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"4\" />\n                <Property Name=\"agreementMonth\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"4\" />\n                <Property Name=\"code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"3\" />\n                <Property Name=\"description\" Type=\"Edm.String\" MaxLength=\"30\" />\n                <Property Name=\"agreementId\" Type=\"Edm.Guid\" />\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=\"incident\">\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            </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=\"costCenter\">\n                <Key>\n                    <PropertyRef Name=\"laborCompanyCode\" />\n                    <PropertyRef Name=\"level1Code\" />\n                    <PropertyRef Name=\"level2Code\" />\n                    <PropertyRef Name=\"level3Code\" />\n                    <PropertyRef Name=\"level4Code\" />\n                </Key>\n                <Property Name=\"id\" Type=\"Edm.Guid\" />\n                <Property Name=\"laborCompanyCode\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"9\" />\n                <Property Name=\"level1Code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"9\" />\n                <Property Name=\"level2Code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"9\" />\n                <Property Name=\"level3Code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"9\" />\n                <Property Name=\"level4Code\" Type=\"Edm.String\" Nullable=\"false\" MaxLength=\"9\" />\n                <Property Name=\"sectionDescription\" Type=\"Edm.String\" MaxLength=\"50\" />\n                <Property Name=\"laborCompanyName\" Type=\"Edm.String\" MaxLength=\"170\" />\n                <Property Name=\"laborCompanyId\" Type=\"Edm.Guid\" />\n            </EntityType>\n            <EntityType Name=\"absenceReason\">\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            </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=\"employeeJournalLines\" Type=\"Collection(Microsoft.NAV.employeeJournalLine)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"terminationJournalLines\" Type=\"Collection(Microsoft.NAV.terminationJournalLine)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"IncidentsJournalLines\" Type=\"Collection(Microsoft.NAV.incidentsJournalLine)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"employeeCostCenters\" Type=\"Collection(Microsoft.NAV.employeeCostCenter)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"employeeAbsences\" Type=\"Collection(Microsoft.NAV.employeeAbsence)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"laborCompanies\" Type=\"Collection(Microsoft.NAV.laborCompany)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"contributionAccounts\" Type=\"Collection(Microsoft.NAV.contributionAccount)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"workCenters\" Type=\"Collection(Microsoft.NAV.workCenter)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"agreements\" Type=\"Collection(Microsoft.NAV.agreement)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"categories\" Type=\"Collection(Microsoft.NAV.category)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"trainingLevels\" Type=\"Collection(Microsoft.NAV.trainingLevel)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"incidents\" Type=\"Collection(Microsoft.NAV.incident)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"contracts\" Type=\"Collection(Microsoft.NAV.contract)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"costCenters\" Type=\"Collection(Microsoft.NAV.costCenter)\" ContainsTarget=\"true\" />\n                <NavigationProperty Name=\"absenceReasons\" Type=\"Collection(Microsoft.NAV.absenceReason)\" 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=\"employeeJournalLines\" EntityType=\"Microsoft.NAV.employeeJournalLine\">\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                <EntitySet Name=\"terminationJournalLines\" EntityType=\"Microsoft.NAV.terminationJournalLine\">\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                <EntitySet Name=\"incidentsJournalLines\" EntityType=\"Microsoft.NAV.incidentsJournalLine\">\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                <EntitySet Name=\"employeeCostCenters\" EntityType=\"Microsoft.NAV.employeeCostCenter\">\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=\"laborCompanies\" EntityType=\"Microsoft.NAV.laborCompany\">\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=\"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=\"agreements\" EntityType=\"Microsoft.NAV.agreement\">\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=\"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=\"incidents\" EntityType=\"Microsoft.NAV.incident\">\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=\"costCenters\" EntityType=\"Microsoft.NAV.costCenter\">\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=\"absenceReasons\" EntityType=\"Microsoft.NAV.absenceReason\">\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":"9a5aca11-cbdb-4324-9c3b-2ccd6177b369"}],"id":"836d6676-8d76-4ee6-ab3c-34d758deb1f3","description":"<p>Definición técnica de los campos de cada consulta</p>\n","_postman_id":"836d6676-8d76-4ee6-ab3c-34d758deb1f3","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]},"isInherited":true,"source":{"_postman_id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","id":"8d475e0c-3511-4628-9e8d-3ebbcc788de3","name":"🔌API Labor","type":"collection"}}}],"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{APIuser}}"},{"key":"password","value":"{{APIpassword}}"}]}},"event":[{"listen":"prerequest","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"80db7718-b6fe-441a-bfdd-f663c3af1c84"}},{"listen":"test","script":{"type":"text/javascript","packages":{},"exec":[""],"id":"9260707f-4d67-47e2-b781-87a4e21636a0"}}]}