PUT api/SupportIncidents
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| supportIncidentDto | No documentation available. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"id": 1,
"incidentForUserName": "sample string 1",
"incidentNumberUsed": 2,
"details": "sample string 3",
"status": "sample string 4",
"updatedBy": "sample string 5",
"updatedByFullName": "sample string 6",
"updatedByPhotoPath": "sample string 7",
"updatedOn": "2025-12-12T22:20:06.5296059-08:00",
"isPosted": true
}
application/xml, text/xml
Sample:
<SupportIncidentDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <Details>sample string 3</Details> <Id>1</Id> <IncidentForUserName>sample string 1</IncidentForUserName> <IncidentNumberUsed>2</IncidentNumberUsed> <IsPosted>true</IsPosted> <Status>sample string 4</Status> <UpdatedBy>sample string 5</UpdatedBy> <UpdatedByFullName>sample string 6</UpdatedByFullName> <UpdatedByPhotoPath>sample string 7</UpdatedByPhotoPath> <UpdatedOn>2025-12-12T22:20:06.5296059-08:00</UpdatedOn> </SupportIncidentDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
No documentation available.
Response body formats
application/json, text/json
Sample:
{
"id": 1,
"incidentForUserName": "sample string 2",
"incidentNumberUsed": 3,
"details": "sample string 4",
"status": "sample string 5",
"createdByUserName": "sample string 6",
"createdDate": "2025-12-12T22:20:06.5452184-08:00",
"updatedByUserName": "sample string 8",
"updatedDate": "2025-12-12T22:20:06.5452184-08:00",
"isPosted": true
}
application/xml, text/xml
Sample:
<SupportIncident xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.Models"> <CreatedByUserName>sample string 6</CreatedByUserName> <CreatedDate>2025-12-12T22:20:06.5452184-08:00</CreatedDate> <Details>sample string 4</Details> <Id>1</Id> <IncidentForUserName>sample string 2</IncidentForUserName> <IncidentNumberUsed>3</IncidentNumberUsed> <IsPosted>true</IsPosted> <Status>sample string 5</Status> <UpdatedByUserName>sample string 8</UpdatedByUserName> <UpdatedDate>2025-12-12T22:20:06.5452184-08:00</UpdatedDate> </SupportIncident>