GET api/v101/Credential?username={username}

Método para obtener los datos de la credencial especificada asociada a un cliente.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
username

Credencial solicitada

string

Required

Response Information

Resource Description

CredentialData
NameDescriptionTypeAdditional information
UserName

string
Email

string
FIELD1

string
FIELD2

string
FIELD3

string
INFO

string
NAME

string
CODPOS

string
BIRTHDATE

date
IsMale

boolean
TypeId

integer
CREATION_DATE

date
LAST_LOGON

date
SourceType

string
TypeDescription

string

Response Formats

application/json, text/json

Sample:
{
  "UserName": "sample string 1",
  "Email": "sample string 2",
  "FIELD1": "sample string 3",
  "FIELD2": "sample string 4",
  "FIELD3": "sample string 5",
  "INFO": "sample string 6",
  "NAME": "sample string 7",
  "CODPOS": "sample string 8",
  "BIRTHDATE": "2025-04-26T05:44:24.5163647+00:00",
  "IsMale": true,
  "TypeId": 10,
  "CREATION_DATE": "2025-04-26T05:44:24.5163647+00:00",
  "LAST_LOGON": "2025-04-26T05:44:24.5163647+00:00",
  "SourceType": "sample string 11",
  "TypeDescription": "sample string 12"
}

application/xml, text/xml

Sample:
<CredentialData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ibertic.Iradius.CredentialsGeneration">
  <BIRTHDATE>2025-04-26T05:44:24.5163647+00:00</BIRTHDATE>
  <CODPOS>sample string 8</CODPOS>
  <CREATION_DATE xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-04-26T05:44:24.5163647Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </CREATION_DATE>
  <Email>sample string 2</Email>
  <FIELD1>sample string 3</FIELD1>
  <FIELD2>sample string 4</FIELD2>
  <FIELD3>sample string 5</FIELD3>
  <INFO>sample string 6</INFO>
  <IsMale>true</IsMale>
  <LAST_LOGON xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-04-26T05:44:24.5163647Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>0</d2p1:OffsetMinutes>
  </LAST_LOGON>
  <NAME>sample string 7</NAME>
  <SourceType>sample string 11</SourceType>
  <TypeDescription>sample string 12</TypeDescription>
  <TypeId>10</TypeId>
  <UserName>sample string 1</UserName>
</CredentialData>