POST RMeSign/GetListCertificate2

Lấy danh sách chứng thư số

Request Information

URI Parameters

None.

Body Parameters

eSignParameter
NameDescriptionTypeAdditional information
RemoteSigningAccessToken

string

None.

RefreshToken

string

None.

serviceToken

string

None.

Request Formats

application/json, text/json

Sample:
{
  "RemoteSigningAccessToken": "sample string 1",
  "RefreshToken": "sample string 2",
  "serviceToken": "sample string 3"
}

text/xml

Sample:
<eSignParameter 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>
  <RefreshToken>sample string 2</RefreshToken>
  <RemoteSigningAccessToken>sample string 1</RemoteSigningAccessToken>
</eSignParameter>

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>