POST api/General/AuthUser

Request Information

URI Parameters

None.

Body Parameters

clsFirma
NameDescriptionTypeAdditional information
CedulaSolicitante

string

None.

autorizado

boolean

None.

Idreferencia

string

None.

Ambiente

string

None.

Request Formats

application/json, text/json

Sample:
{
  "CedulaSolicitante": "sample string 1",
  "autorizado": true,
  "Idreferencia": "sample string 3",
  "Ambiente": "sample string 4"
}

application/xml, text/xml

Sample:
<clsFirma xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_PROCOMER_Entities">
  <Ambiente>sample string 4</Ambiente>
  <CedulaSolicitante>sample string 1</CedulaSolicitante>
  <Idreferencia>sample string 3</Idreferencia>
  <autorizado>true</autorizado>
</clsFirma>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'clsFirma'.

Response Information

Resource Description

ApiResponse
NameDescriptionTypeAdditional information
IsSuccess

boolean

None.

ReturnedCode

integer

None.

Message

string

None.

Result

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "IsSuccess": true,
  "ReturnedCode": 2,
  "Message": "sample string 3",
  "Result": {}
}

application/xml, text/xml

Sample:
<ApiResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_PROCOMER_Entities">
  <IsSuccess>true</IsSuccess>
  <Message>sample string 3</Message>
  <Result />
  <ReturnedCode>2</ReturnedCode>
</ApiResponse>