POST api/ECertification/Endpoints/Search

Searches the eCertification endpoints.

Request Information

URI Parameters

None.

Body Parameters

The eCertification endpoint search criteria.

ESignSystems.SmartSAFE.Models.ECertification.ECertificationEndpointSearchCriteria
NameDescriptionTypeAdditional information
PageSize

Gets or sets the number of rows in the page.

integer

Range: inclusive between 1 and 2147483647

PageOffset

Gets or sets the offset page to return.

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "PageSize": 1,
  "PageOffset": 1
}

application/xml, text/xml

Sample:
<ECertificationEndpointSearchCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.ECertification">
  <PageOffset xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">1</PageOffset>
  <PageSize xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">1</PageSize>
</ECertificationEndpointSearchCriteria>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

The eCertificaiton endpoint models.

Collection of ESignSystems.SmartSAFE.Models.ECertification.ECertificationEndpointModel
NameDescriptionTypeAdditional information
ECertificationEndpointId

Gets or sets the eCertification endpoint identifier.

integer

None.

ApplicationUserId

Gets or sets the application user identifier.

integer

Required

EndpointURL

Gets or sets the endpoint URL.

string

Required

Data type: Url

Max length: 512

EndpointUsername

Gets or sets the endpoint username.

string

Max length: 256

EndpointPassword

Gets or sets the endpoint password.

string

Max length: 100

Username

Gets or sets the username.

string

None.

FirstName

Gets or sets the first name.

string

None.

LastName

Gets or sets the last name.

string

None.

Email

Gets or sets the email.

string

None.

UpdatedBy

Gets or sets the name of the user that updated the model.

string

None.

UpdatedDate

Gets or sets the date an time that the model was updated.

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ECertificationEndpointId": 1,
    "ApplicationUserId": 1,
    "EndpointURL": "sample string 1",
    "EndpointUsername": "sample string 2",
    "EndpointPassword": "sample string 3",
    "Username": "sample string 4",
    "FirstName": "sample string 5",
    "LastName": "sample string 6",
    "Email": "sample string 7",
    "UpdatedBy": "sample string 8",
    "UpdatedDate": "2024-11-26T17:25:46.7412079-05:00"
  },
  {
    "ECertificationEndpointId": 1,
    "ApplicationUserId": 1,
    "EndpointURL": "sample string 1",
    "EndpointUsername": "sample string 2",
    "EndpointPassword": "sample string 3",
    "Username": "sample string 4",
    "FirstName": "sample string 5",
    "LastName": "sample string 6",
    "Email": "sample string 7",
    "UpdatedBy": "sample string 8",
    "UpdatedDate": "2024-11-26T17:25:46.7412079-05:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfECertificationEndpointModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.ECertification">
  <ECertificationEndpointModel>
    <UpdatedBy xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">sample string 8</UpdatedBy>
    <UpdatedDate xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">2024-11-26T17:25:46.7412079-05:00</UpdatedDate>
    <ApplicationUserId>1</ApplicationUserId>
    <ECertificationEndpointId>1</ECertificationEndpointId>
    <Email>sample string 7</Email>
    <EndpointPassword>sample string 3</EndpointPassword>
    <EndpointURL>sample string 1</EndpointURL>
    <EndpointUsername>sample string 2</EndpointUsername>
    <FirstName>sample string 5</FirstName>
    <LastName>sample string 6</LastName>
    <Username>sample string 4</Username>
  </ECertificationEndpointModel>
  <ECertificationEndpointModel>
    <UpdatedBy xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">sample string 8</UpdatedBy>
    <UpdatedDate xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models">2024-11-26T17:25:46.7412079-05:00</UpdatedDate>
    <ApplicationUserId>1</ApplicationUserId>
    <ECertificationEndpointId>1</ECertificationEndpointId>
    <Email>sample string 7</Email>
    <EndpointPassword>sample string 3</EndpointPassword>
    <EndpointURL>sample string 1</EndpointURL>
    <EndpointUsername>sample string 2</EndpointUsername>
    <FirstName>sample string 5</FirstName>
    <LastName>sample string 6</LastName>
    <Username>sample string 4</Username>
  </ECertificationEndpointModel>
</ArrayOfECertificationEndpointModel>