POST api/Inspection/SaveInspectedAssessment
Request Information
URI Parameters
None.
Body Parameters
InspectionAssessment| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| ScheduledDate | date |
None. |
|
| AccountID | integer |
None. |
|
| Tour | boolean |
None. |
|
| AssessmentName | string |
None. |
|
| UserName | string |
None. |
|
| LastChanged | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"ScheduledDate": "2026-04-18T08:32:40.9770347Z",
"AccountID": 2,
"Tour": true,
"AssessmentName": "sample string 4",
"UserName": "sample string 5",
"LastChanged": "2026-04-18T08:32:40.9770347Z"
}
application/xml, text/xml
Sample:
<InspectionAssessment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aramark.ISIS.Domain.Models"> <AccountID>2</AccountID> <AssessmentName>sample string 4</AssessmentName> <ID>1</ID> <LastChanged>2026-04-18T08:32:40.9770347+00:00</LastChanged> <ScheduledDate>2026-04-18T08:32:40.9770347+00:00</ScheduledDate> <Tour>true</Tour> <UserName>sample string 5</UserName> </InspectionAssessment>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>