POST RMeSign/ResendOTP

Gửi lại mã xác thực

Request Information

URI Parameters

None.

Body Parameters

eSignResendOTPParameter
NameDescriptionTypeAdditional information
UserName

string

None.

Language

string

None.

serviceToken

string

None.

Request Formats

application/json, text/json

Sample:
{
  "UserName": "sample string 1",
  "Language": "sample string 2",
  "serviceToken": "sample string 3"
}

text/xml

Sample:
<eSignResendOTPParameter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MISA.MIMOSA.RemoteSigning.Parameter.eSign">
  <serviceToken xmlns="http://schemas.datacontract.org/2004/07/MISA.MIMOSA.RemoteSigning.Parameter.Base">sample string 3</serviceToken>
  <Language>sample string 2</Language>
  <UserName>sample string 1</UserName>
</eSignResendOTPParameter>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ServiceResult
NameDescriptionTypeAdditional information
Success

boolean

None.

Data

Object

None.

CustomData

Object

None.

FileData

Object

None.

Errors

Collection of string

None.

ErrorCode

string

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Data": "{}",
  "CustomData": "{}",
  "FileData": "{}",
  "Errors": [
    "sample string 1",
    "sample string 2"
  ],
  "ErrorCode": "sample string 5",
  "Message": "sample string 6"
}

text/xml

Sample:
<ServiceResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MISA.MIMOSA.RemoteSigning.Common">
  <CustomData xmlns:d2p1="http://www.w3.org/2001/XMLSchema" i:type="d2p1:string">{}</CustomData>
  <Data xmlns:d2p1="http://www.w3.org/2001/XMLSchema" i:type="d2p1:string">{}</Data>
  <ErrorCode>sample string 5</ErrorCode>
  <Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Errors>
  <FileData xmlns:d2p1="http://www.w3.org/2001/XMLSchema" i:type="d2p1:string">{}</FileData>
  <Message>sample string 6</Message>
  <Success>true</Success>
</ServiceResult>