POST api/view/certification
Request Information
URI Parameters
None.
Body Parameters
ViewCertification| Name | Description | Type | Additional information |
|---|---|---|---|
| EmpId | integer |
None. |
|
| CertfId | integer |
None. |
|
| CertfName | string |
None. |
|
| DateOfIssue | date |
None. |
|
| CreatedBy | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"EmpId": 1,
"CertfId": 2,
"CertfName": "sample string 3",
"DateOfIssue": "2025-12-05T21:06:34.5108364-08:00",
"CreatedBy": 5
}
application/xml, text/xml
Sample:
<ViewCertification xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/working_sample_mvc_api.Models"> <CertfId>2</CertfId> <CertfName>sample string 3</CertfName> <CreatedBy>5</CreatedBy> <DateOfIssue>2025-12-05T21:06:34.5108364-08:00</DateOfIssue> <EmpId>1</EmpId> </ViewCertification>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.