GET api/ECertification/{eCertificationId}

Gets the eCertification by the identifier.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
eCertificationId

The eCertification identifier.

integer

Required

Body Parameters

None.

Response Information

Resource Description

The eCertification.

ESignSystems.SmartSAFE.Models.ECertification.ECertificationModel
NameDescriptionTypeAdditional information
ECertificationId

Gets or sets the eCertification identifier.

integer

None.

CertificationRequestIdentifier

Gets or sets the eCertification request identifier.

string

None.

StartTime

Gets or sets the start date.

date

None.

EndTime

Gets or sets the end date.

date

None.

ECertificationStatusType

Gets or sets the eCertification status type.

string

None.

ResponseStatusCode

Gets or sets the response status code.

string

None.

RequestJSON

Gets or sets the request JSON.

string

None.

ResponseJSON

Gets or sets the response JSON.

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ECertificationId": 1,
  "CertificationRequestIdentifier": "sample string 1",
  "StartTime": "2024-11-26T17:13:36.1320074-05:00",
  "EndTime": "2024-11-26T17:13:36.1320074-05:00",
  "ECertificationStatusType": "sample string 3",
  "ResponseStatusCode": "sample string 4",
  "RequestJSON": "sample string 5",
  "ResponseJSON": "sample string 6"
}

application/xml, text/xml

Sample:
<ECertificationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.ECertification">
  <CertificationRequestIdentifier>sample string 1</CertificationRequestIdentifier>
  <ECertificationId>1</ECertificationId>
  <ECertificationStatusType>sample string 3</ECertificationStatusType>
  <EndTime>2024-11-26T17:13:36.1320074-05:00</EndTime>
  <RequestJSON>sample string 5</RequestJSON>
  <ResponseJSON>sample string 6</ResponseJSON>
  <ResponseStatusCode>sample string 4</ResponseStatusCode>
  <StartTime>2024-11-26T17:13:36.1320074-05:00</StartTime>
</ECertificationModel>