Get Specific Manufacturer Detail API
Require Authentication
This API is used to get specific manufacturer detailed information for the company based on combination of deviceID and token.
URL
api/manageassets/manufacturerdetail/:manufacturerID
Required parameter (in URL)
- :manufacturerID «contains manufacturerID that want to be looked for. It must be put in the URL, e.g: api/manageassets/manufacturerdetail/3»
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": {
"manufacturerID": 3,
"manufacturerName": "manu1",
"manufacturerAddress1": "",
"manufacturerAddress2": "",
"manufacturerCity": "",
"manufacturerState": "",
"manufacturerCountry": "",
"manufacturerPostCode": "",
"manufacturerWebsite": "",
"manufacturerPhone": "",
"manufacturerFax": "",
"createdDate": 3,
"createdByUserID": 1453203863,
"total_pintypes": 1,
"total_projectpins": 1
}
}