POST api/SignoCo/EnvioCorreo
Request Information
URI Parameters
None.
Body Parameters
EnvioCorreoModel| Name | Description | Type | Additional information |
|---|---|---|---|
| IdDocumento | globally unique identifier |
None. |
|
| IdEmisorSucursal | globally unique identifier |
None. |
|
| Correo | string |
None. |
|
| ListadoAdjunto | Collection of Adjunto |
None. |
Request Formats
application/json, text/json
Sample:
{
"IdDocumento": "ad4bbf82-a318-4a01-9bf6-0337d49eba08",
"IdEmisorSucursal": "d7cf6b99-aeeb-4053-8b59-67e9beaa2ff7",
"Correo": "sample string 3",
"ListadoAdjunto": [
{
"NombreCompleto": "sample string 1",
"Base64": "sample string 2"
},
{
"NombreCompleto": "sample string 1",
"Base64": "sample string 2"
}
]
}
application/xml, text/xml
Sample:
<EnvioCorreoModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APISIGNO.Models.Json">
<Correo>sample string 3</Correo>
<IdDocumento>ad4bbf82-a318-4a01-9bf6-0337d49eba08</IdDocumento>
<IdEmisorSucursal>d7cf6b99-aeeb-4053-8b59-67e9beaa2ff7</IdEmisorSucursal>
<ListadoAdjunto>
<EnvioCorreoModel.Adjunto>
<Base64>sample string 2</Base64>
<NombreCompleto>sample string 1</NombreCompleto>
</EnvioCorreoModel.Adjunto>
<EnvioCorreoModel.Adjunto>
<Base64>sample string 2</Base64>
<NombreCompleto>sample string 1</NombreCompleto>
</EnvioCorreoModel.Adjunto>
</ListadoAdjunto>
</EnvioCorreoModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ObjectNone.
Response Formats
application/json, text/json
Sample:
{}
application/xml, text/xml
Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />