POST api/property/{id}/certificate/add
Add certificate for a property Processes this property API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The property id |
integer |
Required |
Body Parameters
A certificate to add
PropertyCertificateAddDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
The name value. |
string |
None. |
| CertificateType |
The certificate type value. |
EnumDataContract |
None. |
| StartDate |
The start date, expressed as a date and time. |
date |
None. |
| ExpiryDate |
The expiry date, expressed as a date and time. |
date |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Request Formats
application/x-www-form-urlencoded
Sample not available.
application/json, text/json
{
"Name": "sample string 1",
"CertificateType": {
"Id": 1,
"Name": "sample string 2",
"SystemName": "sample string 3"
},
"StartDate": "2026-08-04T23:20:22.9317186Z",
"ExpiryDate": "2026-08-04T23:20:22.9317186Z",
"Id": 4
}
Response Information
Resource Description
The response returned after the operation completes.
Collection of PropertyCertificateDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
The name value. |
string |
None. |
| CertificateType |
The certificate type value. |
EnumDataContract |
None. |
| Documents |
The collection of documents. |
Collection of DocumentDataContract |
None. |
| StartDate |
The start date, expressed as a date and time. |
date |
None. |
| ExpiryDate |
The expiry date, expressed as a date and time. |
date |
None. |
| ReceivedDate |
The received date, expressed as a date and time. |
date |
None. |
| Expired |
Indicates whether expired is true. |
boolean |
None. |
| Status |
The status value. |
string |
None. |
| Id |
The unique identifier of this resource. |
integer |
None. |
Response Formats
application/json
Sample not available.
text/json
Sample not available.