GET TadSession/GetNotificaciones?Cuit={Cuit}&Size={Size}

Metodo para obtener las Notificaciones a partir de un numero de CUIT/CUIL

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Cuit

string

Required

Size

string

Required

Body Parameters

None.

Response Information

Resource Description

Devuelve un objeto llamado RespuestaGetNotificaciones el cual contiene entre otros datos el objeto {ResponseObject}.

RespuestaGetNotificaciones
NameDescriptionTypeAdditional information
StatusCode

integer

None.

ApiMessage

string

None.

ResponseObject

NotificacionRespuesta

None.

Response Formats

application/json, text/json

Sample:
{
  "StatusCode": 1,
  "ApiMessage": "sample string 2",
  "ResponseObject": {
    "respuesta": {
      "last": true,
      "totalPages": 2,
      "totalElements": 3,
      "numberOfElements": 4,
      "first": true,
      "content": [
        {
          "id": 1,
          "tramite": {
            "tipoTramite": {
              "nombre": "sample string 1"
            },
            "numeroEE": "sample string 1"
          },
          "origen": "sample string 2",
          "motivo": "sample string 3",
          "numeroSadeDocGedo": "sample string 4",
          "leido": true,
          "usuarioCreacion": "sample string 6",
          "fechaAlta": {},
          "referenciaExterna": {}
        },
        {
          "id": 1,
          "tramite": {
            "tipoTramite": {
              "nombre": "sample string 1"
            },
            "numeroEE": "sample string 1"
          },
          "origen": "sample string 2",
          "motivo": "sample string 3",
          "numeroSadeDocGedo": "sample string 4",
          "leido": true,
          "usuarioCreacion": "sample string 6",
          "fechaAlta": {},
          "referenciaExterna": {}
        }
      ],
      "number": 6
    },
    "error": true,
    "mensaje": {}
  }
}

application/xml, text/xml

Sample:
<RespuestaGetNotificaciones xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alpha.AvisodeCargaApiNet.Models.ClasesTAD">
  <ApiMessage>sample string 2</ApiMessage>
  <ResponseObject>
    <error>true</error>
    <mensaje />
    <respuesta>
      <content>
        <Content>
          <fechaAlta />
          <id>1</id>
          <leido>true</leido>
          <motivo>sample string 3</motivo>
          <numeroSadeDocGedo>sample string 4</numeroSadeDocGedo>
          <origen>sample string 2</origen>
          <referenciaExterna />
          <tramite>
            <numeroEE>sample string 1</numeroEE>
            <tipoTramite>
              <nombre>sample string 1</nombre>
            </tipoTramite>
          </tramite>
          <usuarioCreacion>sample string 6</usuarioCreacion>
        </Content>
        <Content>
          <fechaAlta />
          <id>1</id>
          <leido>true</leido>
          <motivo>sample string 3</motivo>
          <numeroSadeDocGedo>sample string 4</numeroSadeDocGedo>
          <origen>sample string 2</origen>
          <referenciaExterna />
          <tramite>
            <numeroEE>sample string 1</numeroEE>
            <tipoTramite>
              <nombre>sample string 1</nombre>
            </tipoTramite>
          </tramite>
          <usuarioCreacion>sample string 6</usuarioCreacion>
        </Content>
      </content>
      <first>true</first>
      <last>true</last>
      <number>6</number>
      <numberOfElements>4</numberOfElements>
      <totalElements>3</totalElements>
      <totalPages>2</totalPages>
    </respuesta>
  </ResponseObject>
  <StatusCode>1</StatusCode>
</RespuestaGetNotificaciones>