Delete Gage Record

Deletes an existing gage record. POST /GageList/api/Gage/Delete/{id} Example URL Parameter id: 1 Example Response { “data”: 0, “success”: true, “message”: “string”...

Update Gage Record

Updates an existing gage record. POST /GageList/api/Gage/Update Example Request Body { “Id”: 0, “SerialNumber”: “string”, “ControlNumber”: “string”, “AssetNo”: “string”,...

Add Gage Record

Adds a new gage record. POST /GageList/api/Gage/Create Example Request Body { “Id”: 0, “SerialNumber”: “string”, “ControlNumber”: “string”, “AssetNo”: “string”,...

Get a Single Gage Record

Returns one gage record. GET /GageList/api/Gage/Detail/{id} Example URL Parameters id: 1 Example Response { “data”: { “Id”: 0, “SerialNumber”: “string”, “ControlNumber”: “string”,...

Get Multiple Gage Records

Returns a list of gage records. POST /GageList/api/Gage/List Example Request Parameters start: 0 record_number: 5 Example Response { “total”: 0, “count”: 0, “data”: [ { “Id”: 0, “Status”:...