Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Operation

Information of the operationGets only a single instance of MaintenanceIssue.

Style
table {
width: 100%;
}
body.page-gadget {
padding-top: 20px;
}


.separator{
margin: 5px 0;
}



Div
style background-color: green; color: white; display: inline-block; padding: 5px; border-radius: 3px;

GET



Div
stylebackground-color: #0a2b1d; padding: 10px 1em; display: inline-block; color: white; border-radius: 3px;

http://{urlName}/tesiproPMS/api/{version}/chain/{chainId}/property/{propertyId}/maintenanceIssue/{maintenanceIssueId}



Request

PropertyTypeRequiredDefault valueDescription
chainIdIntegertrue
The id of the chain. This parameter will be in the URL. Path parameter.
propertyIdIntegertrue
The id of the property. This parameter will be in the URL. Path parameter.
maintenanceIssueIdIntegertrue
The id of the maintenanceIssue to be retrieved. This parameter will be in the URL. Path parameter.


Example request

Code Block
languagepowershell
themeDJango
GET http://81.184.0.161:9696/tesiproPMS/api/v1/chain/1/property/2/maintenanceIssue/1



Response

PropertyTypeRequiredDescription
maintenanceIssueMaintenanceIssuetrueA single object of MaintenanceIssue.

Entity

Insert excerpt
MaintenanceIssue
MaintenanceIssue
nopaneltrue


Example response

Code Block
themeDJango
{
  "id": 1,
  "createdDate": "2018-07-16T15:26:00.423Z",
  "modifiedDate": "2018-07-16T15:26:00.427Z",
  "createdUser": 0,
  "modifiedUser": 0,
  "name": "Issue 1",
  "reportedBy": "Phyllis",
  "module": {
    "id": 13,
    "createdDate": "2018-07-16T15:25:07.753Z",
    "modifiedDate": "2018-07-16T15:34:11.903Z",
    "createdUser": 0,
    "modifiedUser": 0,
    "property": null,
    "code": "113",
    "name": "M113",
    "floor": {
      "id": 1,
      "createdDate": "2018-07-16T15:25:06.543Z",
      "modifiedDate": "2018-07-16T15:25:06.547Z",
      "createdUser": 0,
      "modifiedUser": 0,
      "code": "1",
      "name": "Floor 1",
      "order": 1
    },
    "moduleStatusType": null,
    "roomModuleSet": null,
    "moduleLockSet": null,
    "hasIssue": false
  },
  "expiredDate": "2018-12-31",
  "priorityType": {
    "id": 4,
    "code": "LOW",
    "name": "Low",
    "nameI18n": "Low",
    "order": 3
  },
  "remark": "Remark maintenanceIssue",
  "maintenanceIssueStatusType": {
    "id": 1,
    "code": "1",
    "name": "ToDo",
    "nameI18n": "ToDo",
    "colorCode": "#e53935"
  },
  "maintenanceIssueImageSet": []
}