Get Specific Asset Type Detail API
Require Authentication
This API is used to get specific asset type detailed information for the company based on combination of deviceID and token.
URL
api/manageassets/typedetail/:pintypeID
Required parameter (in URL)
- :pintypeID «contains pintypeID that want to be looked for. It must be put in the URL, e.g: api/manageassets/typedetail/2»
Required parameter (POST)
- deviceID
- token
Optional parameter
Example JSON Payload
{ "deviceID": "ABCD-EFGH-IJKL-MNOP", "token": "bb602ab13b8090268cd6e3bb9dfa39e2" }
Possible return HTTP status code
- 200
- 401
- 404
- 405
Return message
{ "status": "success", "message": { "pintypeID": 10, "pinTypeName": "Pin Custom", "iconType": "custom", "iconID": 12, "iconURL": "http:\/\/localhost\/mapmybins\/assets\/uploads\/customicons\/1\/appsize\/9c9de78d236b69ee33873ab2a1167fe3.png", "pinTypeDescription": "", "pinTypeRuleForPinName": "[Address1][Address2]-[BinTypeName]", "pinTypeImageOriginalName": "", "pinTypeImageURL": "", "manufacturerID": 0, "manufacturerName": "", "pinSize": "2.5", "depthWhenEmpty_cm": 100, "distanceSensorToFillLine_cm": 10, "pinTypeCreatedDate": 1450127966, "pinTypeCreatedByUserID": 3, "pinTypeModifiedDate": 1450947170, "pinTypeModifiedByUserID": 3, "diffFillLevelToCollect": 10, "minPrevFillLevelToCollect": 20, "total_projectpins": 1 } }
Note: Since manufacturerID is optional, if manufacturerID is set to 0 and manufacturerName is set to empty string, it indicates that asset type does not have manufacturer assigned.
Note for pinTypeRuleForPinName:
pinTypeRuleForPinName contains pattern that will be used as default pin name. If pin name is not empty, user-defined pin name will overrides this default pattern.
All words that match with predefined pattern below will be replaced with the related data.
- [Address1]
- [Address2]
- [City]
- [State]
- [Country]
- [Postcode]
- [BinTypeName]
However, user can still add his own words outside the predefined key. But keep in mind that Pin Name can only store 255 characters and must not empty. Exceeding characters will be removed.