POST api/PFMS/pfms_get_auth_code

Documentation for 'pfms_get_auth_code'.

Request Information

Parameters

NameDescriptionAdditional information
model
Documentation for 'model'.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "stateCode": "sample string 1",
  "AuthString": "sample string 2"
}

application/xml, text/xml

Sample:
<RequestModelGetAuthCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.PFMS">
  <AuthString>sample string 2</AuthString>
  <stateCode>sample string 1</stateCode>
</RequestModelGetAuthCode>

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 'RequestModelGetAuthCode'.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "AckCode": "sample string 1",
  "Status": "sample string 2",
  "Remarks": "sample string 3",
  "DateOfData": "sample string 4",
  "GetAuthCodeResponse": {
    "Username": "sample string 1",
    "RequestSource": "sample string 2",
    "AuthCode": "sample string 3",
    "AuthCodeExpiryDateTime": "2025-04-04T04:47:30.2689201+05:30",
    "ErrorMessage": "sample string 5",
    "IsSuccess": "sample string 6",
    "ErrorCode": "sample string 7"
  }
}

application/xml, text/xml

Sample:
<ResponseModelGetAuthCode xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BLL.PFMS">
  <AckCode>sample string 1</AckCode>
  <DateOfData>sample string 4</DateOfData>
  <GetAuthCodeResponse>
    <AuthCode>sample string 3</AuthCode>
    <AuthCodeExpiryDateTime>2025-04-04T04:47:30.2689201+05:30</AuthCodeExpiryDateTime>
    <ErrorCode>sample string 7</ErrorCode>
    <ErrorMessage>sample string 5</ErrorMessage>
    <IsSuccess>sample string 6</IsSuccess>
    <RequestSource>sample string 2</RequestSource>
    <Username>sample string 1</Username>
  </GetAuthCodeResponse>
  <Remarks>sample string 3</Remarks>
  <Status>sample string 2</Status>
</ResponseModelGetAuthCode>