All Verbs | /Utilidades/VerificarAppToken |
---|
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using Administrador.Modelo.Tipos;
namespace Administrador.Modelo.Tipos
{
public partial class VerificarAppTokenRQ
{
public virtual string Id { get; set; }
public virtual string NombreApp { get; set; }
}
public partial class VerificarAppTokenRS
{
public virtual Object Respuesta { get; set; }
public virtual Object Datos { get; set; }
public virtual decimal IdEmpresa { get; set; }
public virtual decimal IdSistema { get; set; }
public virtual string Login { get; set; }
public virtual string NombreUsuario { get; set; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /Utilidades/VerificarAppToken HTTP/1.1
Host: soluser-recaudo.sgsas.co
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"Id":"String","NombreApp":"String"}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"Respuesta":{},"Datos":{},"IdEmpresa":0,"IdSistema":0,"Login":"String","NombreUsuario":"String"}