#Sistema de Notificaciones Telemáticas de la Junta de Andalucía ## HTTPS://sgn La Junta de Andalucía dispone de un sistema para realizar el envío y la gestión de notificaciones electrónicas fehacientes, con generación de evidencias comprobables de la entrega por el emisor y la recepción por el destinatario, conforme a la normativa vigente del procedimiento adminitrativo común. **Version** 5.3.0.3 [**Terms of Service**]() # APIs ## /anularNotificacion ### POST <a id="anularNotificacion">Anular notificación</a> Servicio para la anulación de notificaciones #### Request **Content-Type: ** application/json ##### Parameters <table border="1"> <tr> <th>Name</th> <th>Located in</th> <th>Required</th> <th>Description</th> <th>Default</th> <th>Schema</th> </tr> <tr> <th>peticion</th> <td>body</td> <td>yes</td> <td>Objeto de peticion de anulación de notificación</td> <td> - </td> <td> <a href="#/definitions/PeticionAnularNotificacion">PeticionAnularNotificacion</a> </td> </tr> </table> #### Response **Content-Type: ** application/json | Status Code | Reason | Response Model | |-------------|-------------|----------------| | 200 | Objeto de respuesta de anular notificación | <a href="#/definitions/RespuestaAnularNotificacion">RespuestaAnularNotificacion</a>| ## /consultarRemesa ### POST <a id="consultarRemesa">Consultar remesa</a> Solo se pueden consultar las remesas enviadas por la aplicación que realiza la peticion. Se debe indicar al menos uno de los siguientes datos: identificador de remesa; identificador de servicio; identificador de destinatario, identificador de origen #### Request **Content-Type: ** application/json ##### Parameters <table border="1"> <tr> <th>Name</th> <th>Located in</th> <th>Required</th> <th>Description</th> <th>Default</th> <th>Schema</th> </tr> <tr> <th>peticion</th> <td>body</td> <td>yes</td> <td>Objeto de peticion de consulta de remesa que incluye los filtros de busqueda</td> <td> - </td> <td> <a href="#/definitions/PeticionConsultaRemesa">PeticionConsultaRemesa</a> </td> </tr> </table> #### Response **Content-Type: ** application/json | Status Code | Reason | Response Model | |-------------|-------------|----------------| | 200 | Objeto con la información devuelta | <a href="#/definitions/RespuestaConsultaRemesa">RespuestaConsultaRemesa</a>| ## /enviarRemesa ### POST <a id="enviarRemesa">Enviar remesa</a> Servicio de envio de remesa de notificaciones #### Request **Content-Type: ** application/json ##### Parameters <table border="1"> <tr> <th>Name</th> <th>Located in</th> <th>Required</th> <th>Description</th> <th>Default</th> <th>Schema</th> </tr> <tr> <th>remesa</th> <td>body</td> <td>yes</td> <td>Objeto Remesa con toda la informacion asociada a la remesa y las notificaciones incluidas</td> <td> - </td> <td> <a href="#/definitions/Remesa">Remesa</a> </td> </tr> </table> #### Response **Content-Type: ** application/json | Status Code | Reason | Response Model | |-------------|-------------|----------------| | 200 | Objeto con el identificador de remesa | <a href="#/definitions/RespuestaEnvioRemesa">RespuestaEnvioRemesa</a>| # Definitions ## <a name="/definitions/Aviso">Aviso</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>medioAviso</td> <td> string </td> <td>optional</td> <td>Indica el medio de envio (email o SMS)</td> </tr> <tr> <td>numeroMovil</td> <td> string </td> <td>optional</td> <td>Numero de Movil (envio por SMS) </td> </tr> <tr> <td>direccionEmail</td> <td> string </td> <td>optional</td> <td>Direccion de Email (envio por email)</td> </tr> <tr> <td>fecha</td> <td> string </td> <td>optional</td> <td>Fecha de envio del aviso</td> </tr> <tr> <td>tipoAviso</td> <td> string </td> <td>optional</td> <td>Indica el tipo de aviso</td> </tr> <tr> <td>estado</td> <td> string </td> <td>optional</td> <td>Indica el estado del aviso (OK o ERROR)</td> </tr> </table> ## <a name="/definitions/ConsentimientoAS">ConsentimientoAS</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>csv</td> <td> string </td> <td>required</td> <td>CSV del consentimiento</td> </tr> <tr> <td>identificadorFuncionario</td> <td> string </td> <td>required</td> <td>Identificador del funcionario que realizó el consentimiento</td> </tr> <tr> <td>sexoFuncionario</td> <td> string </td> <td>optional</td> <td>Sexo del funcionario</td> </tr> <tr> <td>interesado</td> <td> <a href="#/definitions/InteresadoAS">InteresadoAS</a> </td> <td>required</td> <td>Datos de la persona interesada</td> </tr> <tr> <td>representante</td> <td> <a href="#/definitions/RepresentanteAS">RepresentanteAS</a> </td> <td>optional</td> <td>Datos de la persona representante</td> </tr> </table> ## <a name="/definitions/DIR3Remitente">DIR3Remitente</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>dir3</td> <td> string </td> <td>required</td> <td>DIR3 remitente</td> </tr> <tr> <td>descripcion</td> <td> string </td> <td>required</td> <td>Descripcion del DIR3</td> </tr> </table> ## <a name="/definitions/Destinatario">Destinatario</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>identificador</td> <td> string </td> <td>required</td> <td>Identificador del destinatario</td> </tr> <tr> <td>nombre</td> <td> string </td> <td>required</td> <td>Nombre del destinatario</td> </tr> <tr> <td>apellidos</td> <td> string </td> <td>optional</td> <td>Apellidos del destinatario</td> </tr> <tr> <td>telefono</td> <td> string </td> <td>optional</td> <td>Telefono del destinatario</td> </tr> <tr> <td>email</td> <td> string </td> <td>optional</td> <td>Email del destinatario</td> </tr> <tr> <td>dir3</td> <td> string </td> <td>optional</td> <td>Codigo DIR3 del destinatario</td> </tr> <tr> <td>direccion</td> <td> string </td> <td>optional</td> <td>Direccion del destinatario</td> </tr> <tr> <td>provincia</td> <td> string </td> <td>optional</td> <td>Provincia del destinatario</td> </tr> <tr> <td>localidad</td> <td> string </td> <td>optional</td> <td>Localidad del destinatario</td> </tr> <tr> <td>zip</td> <td> string </td> <td>optional</td> <td>Codigo zip del destinatario</td> </tr> <tr> <td>entidadesDestinatario</td> <td> array[<a href="#/definitions/EntidadEmisora">EntidadEmisora</a>] </td> <td>optional</td> <td>Lista de aplicaciones que han enviado notificaciones al destinatario</td> </tr> <tr> <td>dir3RemitenteDestinatario</td> <td> array[<a href="#/definitions/DIR3Remitente">DIR3Remitente</a>] </td> <td>optional</td> <td>Lista de DIR3 que han enviado notificaciones al destinatario</td> </tr> <tr> <td>serviciosDestinatario</td> <td> array[<a href="#/definitions/ServicioDestinatario">ServicioDestinatario</a>] </td> <td>optional</td> <td>Lista de servicios suscritos por el destinatario</td> </tr> <tr> <td>procedimientos</td> <td> array[<a href="#/definitions/ProcedimientoAdministrativo">ProcedimientoAdministrativo</a>] </td> <td>optional</td> <td>Lista de procedimientos administrativos que han enviado notificaciones al destinatario</td> </tr> <tr> <td>notificacionesDestinatario</td> <td> array[<a href="#/definitions/Notificacion">Notificacion</a>] </td> <td>optional</td> <td>Lista de notificaciones recibidas por el destinatario</td> </tr> <tr> <td>fechaAlta</td> <td> integer (int64) </td> <td>optional</td> <td>Fecha de alta del destinatario</td> </tr> <tr> <td>fechaBaja</td> <td> integer (int64) </td> <td>optional</td> <td>Fecha de baja del destinatario</td> </tr> <tr> <td>ultimoAcceso</td> <td> integer (int64) </td> <td>optional</td> <td>Fecha de ultimo acceso</td> </tr> <tr> <td>borrado</td> <td> boolean </td> <td>optional</td> <td>Indica si el destinatario está borrado</td> </tr> <tr> <td>certificadoB64</td> <td> string </td> <td>optional</td> <td>Certificado del destinatario</td> </tr> <tr> <td>tipo</td> <td> string </td> <td>optional</td> <td>Tipo de destinatario (PF o PJ)</td> </tr> <tr> <td>idAsiste</td> <td> string </td> <td>optional</td> <td>Identificador de asistencia en caso de autenticación mediante ASISTE</td> </tr> <tr> <td>consentimientoAS</td> <td> <a href="#/definitions/ConsentimientoAS">ConsentimientoAS</a> </td> <td>optional</td> <td>Datos del consentimiento en caso de autenticación mediante ASISTE</td> </tr> <tr> <td>recibirAvisos</td> <td> boolean </td> <td>optional</td> <td>Campo para indicar si se quiere recibir avisos de notificacion</td> </tr> <tr> <td>recibirAvisosComunicaciones</td> <td> boolean </td> <td>optional</td> <td>Campo para indicar si se quiere recibir avisos de comunicaciones</td> </tr> </table> ## <a name="/definitions/Documento">Documento</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>documentoB64</td> <td> string </td> <td>required</td> <td>El contenido del documento</td> </tr> <tr> <td>nombre</td> <td> string </td> <td>required</td> <td>El nombre del documento</td> </tr> <tr> <td>hash</td> <td> string </td> <td>optional</td> <td>El codigo hash del documento</td> </tr> <tr> <td>csv</td> <td> string </td> <td>optional</td> <td>CSV del documento en su paso por referencia</td> </tr> </table> ## <a name="/definitions/EntidadEmisora">EntidadEmisora</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>idEntidad</td> <td> integer (int64) </td> <td>required</td> <td>Identificador de la aplicación</td> </tr> <tr> <td>nombre</td> <td> string </td> <td>required</td> <td>Nombre de la aplicación</td> </tr> <tr> <td>descripcion</td> <td> string </td> <td>required</td> <td>Descripcion de la aplicación</td> </tr> </table> ## <a name="/definitions/Estado">Estado</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>codigo</td> <td> integer (int32) </td> <td>required</td> <td>Código del estado</td> </tr> <tr> <td>descripcion</td> <td> string </td> <td>required</td> <td>Descripción del estado</td> </tr> </table> ## <a name="/definitions/InformeNotificacion">InformeNotificacion</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>idRemesa</td> <td> string </td> <td>optional</td> <td>Identificador de la remesa</td> </tr> <tr> <td>idNotificacion</td> <td> string </td> <td>optional</td> <td>Identificador de la notificacion</td> </tr> <tr> <td>csv</td> <td> string </td> <td>optional</td> <td>Codigo csv del informe</td> </tr> <tr> <td>informePDFB64</td> <td> string </td> <td>optional</td> <td>El informe PDF firmado en base64</td> </tr> <tr> <td>informeENIB64</td> <td> string </td> <td>optional</td> <td>El informe ENI en base64</td> </tr> </table> ## <a name="/definitions/InteresadoAS">InteresadoAS</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>nif</td> <td> string </td> <td>required</td> <td>NIF del interesado</td> </tr> <tr> <td>nombre</td> <td> string </td> <td>required</td> <td>Nombre del interesado</td> </tr> <tr> <td>apellido1</td> <td> string </td> <td>required</td> <td>Primer apellido del interesado</td> </tr> <tr> <td>apellido2</td> <td> string </td> <td>required</td> <td>Segundo apellido del interesado</td> </tr> <tr> <td>sexo</td> <td> string </td> <td>optional</td> <td>Sexo del interesado</td> </tr> </table> ## <a name="/definitions/Notificacion">Notificacion</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>tipoEnvio</td> <td> string </td> <td>optional</td> <td>Indica el tipo de envío: 1 comunicación; 2 notificación; por defecto: notificación</td> </tr> <tr> <td>entidadEmisora</td> <td> <a href="#/definitions/EntidadEmisora">EntidadEmisora</a> </td> <td>optional</td> <td>Aplicación remitente de la notificacion</td> </tr> <tr> <td>dir3Remitente</td> <td> <a href="#/definitions/DIR3Remitente">DIR3Remitente</a> </td> <td>required</td> <td>DIR3 remitente de la notificacion</td> </tr> <tr> <td>dir3CentroDirectivo</td> <td> <a href="#/definitions/DIR3Remitente">DIR3Remitente</a> </td> <td>optional</td> <td>DIR3 centro directivo de la notificacion</td> </tr> <tr> <td>servicio</td> <td> <a href="#/definitions/Servicio">Servicio</a> </td> <td>optional</td> <td>Servicio remitente de la notificacion. Necesario indicar RPA o servicio en la remesa.</td> </tr> <tr> <td>destinatario</td> <td> <a href="#/definitions/Destinatario">Destinatario</a> </td> <td>required</td> <td>Destinatario de la notificacion</td> </tr> <tr> <td>titular</td> <td> <a href="#/definitions/Titular">Titular</a> </td> <td>optional</td> <td>Titular de la notificacion</td> </tr> <tr> <td>compareciente</td> <td> <a href="#/definitions/Destinatario">Destinatario</a> </td> <td>optional</td> <td>Compareciente de la notificacion</td> </tr> <tr> <td>asunto</td> <td> string </td> <td>required</td> <td>Asunto de la notificacion</td> </tr> <tr> <td>documento</td> <td> <a href="#/definitions/Documento">Documento</a> </td> <td>required</td> <td>Documento contenido de la notificacion</td> </tr> <tr> <td>cuerpo</td> <td> string </td> <td>optional</td> <td>Cuerpo notificacion. Obsoleto, utilizar el parametro documento</td> </tr> <tr> <td>codigoRPASIA</td> <td> string </td> <td>optional</td> <td>Codigo RPA (Registro de Procedimientos y Servicios de la Junta de Andalucia) del procedimiento remitente de la notificacion.</td> </tr> <tr> <td>procedimientoAdministrativo</td> <td> <a href="#/definitions/ProcedimientoAdministrativo">ProcedimientoAdministrativo</a> </td> <td>optional</td> <td>Procedimiento administrativo</td> </tr> <tr> <td>emailAvisoAlternativo</td> <td> string </td> <td>optional</td> <td>Direccion email de aviso alternativo</td> </tr> <tr> <td>movilAvisoAlternativo</td> <td> string </td> <td>optional</td> <td>Movil de aviso alternativo</td> </tr> <tr> <td>notificacionComplementaria</td> <td> boolean </td> <td>optional</td> <td>Indica si es notificacion complementaria</td> </tr> <tr> <td>obligacionRelacionarseElectronicamente</td> <td> boolean </td> <td>optional</td> <td>Indica si el destinatario esta obligacion a relacionarse electronicamente</td> </tr> <tr> <td>codigoExpediente</td> <td> string </td> <td>optional</td> <td>Codigo del expediente</td> </tr> <tr> <td>codigoExpedienteNormalizado</td> <td> string </td> <td>optional</td> <td>Codigo de Expediente Normalizado</td> </tr> <tr> <td>enidocVersionNTI</td> <td> string </td> <td>optional</td> <td>enidoc version NTI</td> </tr> <tr> <td>enidocValorEstElab</td> <td> string </td> <td>optional</td> <td>enidoc valor Estado Elaboracion</td> </tr> <tr> <td>enidocFechaCaptura</td> <td> string </td> <td>optional</td> <td>enidoc Fecha de Captura</td> </tr> <tr> <td>enidocIdentificador</td> <td> string </td> <td>optional</td> <td>enidoc Identificador</td> </tr> <tr> <td>enidocOrgano</td> <td> string </td> <td>optional</td> <td>enidoc Organo</td> </tr> <tr> <td>enidocOrigenCiuAdmin</td> <td> string </td> <td>optional</td> <td>enidoc Origen Ciudadano Administracion</td> </tr> <tr> <td>enidocTipoDocumental</td> <td> string </td> <td>optional</td> <td>enidoc Tipo Documental</td> </tr> <tr> <td>adjuntos</td> <td> array[<a href="#/definitions/Documento">Documento</a>] </td> <td>optional</td> <td>Documentos adicionales adjuntos de la notificacion</td> </tr> <tr> <td>numeroRegistroAries</td> <td> string </td> <td>optional</td> <td>Numero de Registro en Aries</td> </tr> <tr> <td>fechaRegistroAries</td> <td> string </td> <td>optional</td> <td>Fecha de Registro en Aries</td> </tr> <tr> <td>unidadOrganizativaAries</td> <td> string </td> <td>optional</td> <td>Unidad organizativa de Registro en Aries</td> </tr> <tr> <td>estado</td> <td> <a href="#/definitions/Estado">Estado</a> </td> <td>optional</td> <td>Estado, no indicar para enviarRemesa</td> </tr> <tr> <td>evidenciaPuestaDisposicionB64</td> <td> string </td> <td>optional</td> <td>Evidencia de Puesta a Disposicion, no indicar para enviarRemesa</td> </tr> <tr> <td>evidenciaComparecenciaB64</td> <td> string </td> <td>optional</td> <td>Evidencia de Comparecencia, no indicar para enviarRemesa</td> </tr> <tr> <td>evidenciaRechazoB64</td> <td> string </td> <td>optional</td> <td>Evidencia de Rechazo, no indicar para enviarRemesa</td> </tr> <tr> <td>evidenciaCaducidadB64</td> <td> string </td> <td>optional</td> <td>Evidencia de Caducidad, no indicar para enviarRemesa</td> </tr> <tr> <td>idOrigen</td> <td> string </td> <td>optional</td> <td>Identificador de la notificacion en origen</td> </tr> <tr> <td>fechaYHoraPuestaAdisposicion</td> <td> integer (int64) </td> <td>optional</td> <td>Fecha y hora de puesta a disposicion, no indicar para enviarRemesa</td> </tr> <tr> <td>fechaYHoraRechazo</td> <td> integer (int64) </td> <td>optional</td> <td>Fecha y hora de rechazo, no indicar para enviarRemesa</td> </tr> <tr> <td>fechaYHoraRecibo</td> <td> integer (int64) </td> <td>optional</td> <td>Fecha y hora de recibo, no indicar para enviarRemesa</td> </tr> <tr> <td>borrado</td> <td> boolean </td> <td>optional</td> <td>Indica si esta borrado, no indicar para enviarRemesa</td> </tr> <tr> <td>informeNotificacion</td> <td> <a href="#/definitions/InformeNotificacion">InformeNotificacion</a> </td> <td>optional</td> <td>Informe PDF de la notificacion, no indicar para enviarRemesa</td> </tr> <tr> <td>avisosList</td> <td> array[<a href="#/definitions/Aviso">Aviso</a>] </td> <td>optional</td> <td>Listado de avisos enviados por email y sms, no indicar para enviarRemesa</td> </tr> <tr> <td>identificadorNotificacion</td> <td> string </td> <td>optional</td> <td>Identificador de notificación</td> </tr> <tr> <td>programada</td> <td> string </td> <td>optional</td> <td>Tiempo en milisegundos para programar una notificación o comunicación</td> </tr> </table> ## <a name="/definitions/PeticionAnularNotificacion">PeticionAnularNotificacion</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>idEntidad</td> <td> integer (int32) </td> <td>optional</td> <td>Identificador de la aplicación que realiza la anulación</td> </tr> <tr> <td>idNotificacion</td> <td> integer (int32) </td> <td>optional</td> <td>Identificador de notificación a anular</td> </tr> <tr> <td>motivacion</td> <td> string </td> <td>optional</td> <td>Motivo por el que se anula la notificación</td> </tr> </table> ## <a name="/definitions/PeticionConsultaRemesa">PeticionConsultaRemesa</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>idsRemesa</td> <td> array[integer] </td> <td>optional</td> <td>Lista de identificadores de remesas</td> </tr> <tr> <td>idServicio</td> <td> integer (int32) </td> <td>optional</td> <td>Identificador del servicio</td> </tr> <tr> <td>idEntidad</td> <td> integer (int32) </td> <td>optional</td> <td>Identificador de la aplicación</td> </tr> <tr> <td>fechaIni</td> <td> string (date-time) </td> <td>optional</td> <td>Fecha de inicio</td> </tr> <tr> <td>fechaFin</td> <td> string (date-time) </td> <td>optional</td> <td>Fecha de fin</td> </tr> <tr> <td>codigoDIR3</td> <td> string </td> <td>optional</td> <td>Codigo DIR3 del centro directivo</td> </tr> <tr> <td>codigoDIR3Remitente</td> <td> string </td> <td>optional</td> <td>Codigo DIR3 del remitente</td> </tr> <tr> <td>idOrigen</td> <td> string </td> <td>optional</td> <td>Identificador de la notificacion en origen. Si se indica en la consulta, la lista de notificaciones de la remesa solo incluira la notificacion con este idOrigen</td> </tr> <tr> <td>identificadorNotificacion</td> <td> string </td> <td>optional</td> <td>Identificador de notificacion. Si se indica en la consulta, la lista de notificaciones de la remesa solo incluira la notificacion con este identificador</td> </tr> <tr> <td>estados</td> <td> array[integer] </td> <td>optional</td> <td>Lista de estados</td> </tr> <tr> <td>rpa</td> <td> array[string] </td> <td>optional</td> <td>Lista de codigos RPA</td> </tr> <tr> <td>destinatarios</td> <td> array[string] </td> <td>optional</td> <td>Lista de destinatarios</td> </tr> <tr> <td>obtenerDocumento</td> <td> boolean </td> <td>optional</td> <td>Indica si obtener el documento de las notificaciones. Por defecto false</td> </tr> <tr> <td>obtenerInforme</td> <td> boolean </td> <td>optional</td> <td>Indica si obtener el informe de las notificaciones. Por defecto false</td> </tr> <tr> <td>expediente</td> <td> string </td> <td>optional</td> <td>Código de expediente a buscar</td> </tr> </table> ## <a name="/definitions/ProcedimientoAdministrativo">ProcedimientoAdministrativo</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>nombreProcedimiento</td> <td> string </td> <td>required</td> <td>Nombre del procedimiento</td> </tr> <tr> <td>codigoProcedimiento</td> <td> integer (int64) </td> <td>required</td> <td>Código del procedimiento</td> </tr> <tr> <td>dir3Consejeria</td> <td> string </td> <td>required</td> <td>DIR3 consejería</td> </tr> <tr> <td>dir3Agencia</td> <td> string </td> <td>optional</td> <td>DIR3 agencia</td> </tr> <tr> <td>comun</td> <td> string </td> <td>optional</td> <td>Indica si el procedimiento es común</td> </tr> <tr> <td>activo</td> <td> string </td> <td>optional</td> <td>Indica si el procedimiento está activo</td> </tr> <tr> <td>habilitado</td> <td> string </td> <td>optional</td> <td>Indica si el procedimiento está habilitado</td> </tr> <tr> <td>medioRelacion</td> <td> string </td> <td>optional</td> <td>Indica el medio relación</td> </tr> </table> ## <a name="/definitions/Remesa">Remesa</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>idRemesa</td> <td> integer (int64) </td> <td>optional</td> <td>Identificador de la remesa, no indicar para enviarRemesa</td> </tr> <tr> <td>idServicio</td> <td> integer (int64) </td> <td>optional</td> <td>Identificador del servicio remitente de la remesa. Necesario indicar RPA o servicio.</td> </tr> <tr> <td>idEntidad</td> <td> integer (int64) </td> <td>optional</td> <td>Identificador de la aplicación</td> </tr> <tr> <td>codigoDIR3</td> <td> string </td> <td>required</td> <td>Codigo DIR3 del Centro Directivo</td> </tr> <tr> <td>codigoRPASIA</td> <td> string </td> <td>optional</td> <td>Codigo RPA (Registro de Procedimientos y Servicios de la Junta de Andalucia) del procedimiento remitente de la remesa. Necesario indicar RPA o servicio.</td> </tr> <tr> <td>notificacionList</td> <td> array[<a href="#/definitions/Notificacion">Notificacion</a>] </td> <td>required</td> <td>Lista de notificaciones</td> </tr> <tr> <td>nombreEntidad</td> <td> string </td> <td>optional</td> <td>Nombre de la aplicación</td> </tr> <tr> <td>evidenciaAdmisionB64</td> <td> string </td> <td>optional</td> <td>Evidencia de admision de la remesa, no indicar para enviarRemesa</td> </tr> <tr> <td>fechaYHoraAdmision</td> <td> integer (int64) </td> <td>optional</td> <td>Fecha y hora de admision de la remesa, no indicar para enviarRemesa</td> </tr> </table> ## <a name="/definitions/RepresentanteAS">RepresentanteAS</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>nif</td> <td> string </td> <td>required</td> <td>NIF del representante</td> </tr> <tr> <td>nombre</td> <td> string </td> <td>required</td> <td>Nombre del representante</td> </tr> <tr> <td>apellido1</td> <td> string </td> <td>required</td> <td>Primer apellido del representante</td> </tr> <tr> <td>apellido2</td> <td> string </td> <td>required</td> <td>Segundo apellido del representante</td> </tr> <tr> <td>sexo</td> <td> string </td> <td>optional</td> <td>Sexo del representante</td> </tr> </table> ## <a name="/definitions/RespuestaAnularNotificacion">RespuestaAnularNotificacion</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>mensaje</td> <td> string </td> <td>optional</td> <td>Mensaje de error, si se produce algun error</td> </tr> </table> ## <a name="/definitions/RespuestaConsultaRemesa">RespuestaConsultaRemesa</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>remesas</td> <td> array[<a href="#/definitions/Remesa">Remesa</a>] </td> <td>optional</td> <td>Lista de remesas</td> </tr> <tr> <td>mensaje</td> <td> string </td> <td>optional</td> <td>Mensaje de error, si se produce algun error</td> </tr> </table> ## <a name="/definitions/RespuestaEnvioRemesa">RespuestaEnvioRemesa</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>identificadorRemesa</td> <td> string </td> <td>optional</td> <td>Identificador de la remesa enviada</td> </tr> <tr> <td>mensaje</td> <td> string </td> <td>optional</td> <td>Mensaje de error, si se produce algun error</td> </tr> </table> ## <a name="/definitions/Servicio">Servicio</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>idServicio</td> <td> integer (int64) </td> <td>required</td> <td>Identificador del servicio</td> </tr> <tr> <td>nombre</td> <td> string </td> <td>required</td> <td>Nombre del servicio</td> </tr> <tr> <td>descripcion</td> <td> string </td> <td>required</td> <td>Descripcion del servicio</td> </tr> <tr> <td>email</td> <td> string </td> <td>required</td> <td>Email de contacto del servicio</td> </tr> <tr> <td>urlInfo</td> <td> string </td> <td>required</td> <td>La URL con informacion del servicio</td> </tr> </table> ## <a name="/definitions/ServicioDestinatario">ServicioDestinatario</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>servicio</td> <td> <a href="#/definitions/Servicio">Servicio</a> </td> <td>required</td> <td>Identificador del servicio</td> </tr> <tr> <td>fechaAlta</td> <td> integer (int64) </td> <td>required</td> <td>Fecha de alta del servicio</td> </tr> <tr> <td>fechaBaja</td> <td> integer (int64) </td> <td>optional</td> <td>Fecha de baja del servicio</td> </tr> <tr> <td>borrado</td> <td> boolean </td> <td>optional</td> <td>Indica si el destinatario esta de baja en el servicio</td> </tr> <tr> <td>iniciativaPropia</td> <td> boolean </td> <td>optional</td> <td>Indica si el destinatario se dio de alta por iniciativa propia en el servicio</td> </tr> </table> ## <a name="/definitions/Titular">Titular</a> <table border="1"> <tr> <th>Name</th> <th>Type</th> <th>Required</th> <th>Description</th> </tr> <tr> <td>nif</td> <td> string </td> <td>required</td> <td>Identificador del Titular</td> </tr> <tr> <td>nombre</td> <td> string </td> <td>required</td> <td>Nombre del Titular</td> </tr> <tr> <td>apellidos</td> <td> string </td> <td>optional</td> <td>Apellidos del Titular</td> </tr> </table>