POST api/Login/GetUserToken?userID={userID}

No documentation available.

Request Information

Parameters

NameDescriptionAdditional information
userID
No documentation available.

Define this parameter in the request URI.

Response Information

No documentation available.

Response body formats

application/json, text/json

Sample:
{"ID":1,"FKUserID":2,"Token":"sample string 3","TokenExpiryTime":"2024-10-11T10:51:15.4939255+05:30","LoginTime":"2024-10-11T10:51:15.4939255+05:30","IsDeleted":true,"CreatedDate":"2024-10-11T10:51:15.4939255+05:30"}

application/xml, text/xml

Sample:
<UserTokenModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XBRLFinanceWeb.Model">
  <CreatedDate>2024-10-11T10:51:15.4939255+05:30</CreatedDate>
  <FKUserID>2</FKUserID>
  <ID>1</ID>
  <IsDeleted>true</IsDeleted>
  <LoginTime>2024-10-11T10:51:15.4939255+05:30</LoginTime>
  <Token>sample string 3</Token>
  <TokenExpiryTime>2024-10-11T10:51:15.4939255+05:30</TokenExpiryTime>
</UserTokenModel>