Superfy Platform API Documentation


Get Available Manufacturers API

Require Authentication

This API is used to get available manufacturers for the company based on combination of deviceID and token.


URL

api/manageassets/manufacturer

Required parameter (POST)

Optional parameter (GET)

All optional parameters use GET method. So it should be embedded in the URL, e.g: api/manageassets/categories?q=manu%202&o=manufacturerName

Example JSON Payload

{
	"deviceID": "ABCD-EFGH-IJKL-MNOP",
	"token": "bb602ab13b8090268cd6e3bb9dfa39e2"
}

Possible return HTTP status code

Return message

{
  "status": "success",
  "message": {
    "current_parameter": "?per_page=500&offset=0",
    "next_parameter": "",
    "previous_parameter": "",
    "start": 0,
    "total": 3,
    "lists": [{
      "manufacturerID": 3,
      "manufacturerName": "manu1",
      "manufacturerAddress1": "",
      "manufacturerAddress2": "",
      "manufacturerCity": "",
      "manufacturerState": "",
      "manufacturerCountry": "",
      "manufacturerPostCode": "",
      "manufacturerWebsite": "",
      "manufacturerPhone": "",
      "manufacturerFax": "",
      "createdDate": 3,
      "createdByUserID": 1453203863,
      "total_pintypes": 1,
      "total_projectpins": 1
    }, {
      "manufacturerID": 2,
      "manufacturerName": "manu2",
      "manufacturerAddress1": "",
      "manufacturerAddress2": "",
      "manufacturerCity": "",
      "manufacturerState": "",
      "manufacturerCountry": "",
      "manufacturerPostCode": "",
      "manufacturerWebsite": "",
      "manufacturerPhone": "",
      "manufacturerFax": "",
      "createdDate": 3,
      "createdByUserID": 1452694870,
      "total_pintypes": 0,
      "total_projectpins": 1
    }, {
      "manufacturerID": 1,
      "manufacturerName": "Manufacturer API",
      "manufacturerAddress1": "",
      "manufacturerAddress2": "",
      "manufacturerCity": "",
      "manufacturerState": "",
      "manufacturerCountry": "",
      "manufacturerPostCode": "",
      "manufacturerWebsite": "",
      "manufacturerPhone": "",
      "manufacturerFax": "",
      "createdDate": 3,
      "createdByUserID": 1450176041,
      "total_pintypes": 2,
      "total_projectpins": 0
    }]
  }
}

Note: use "next_parameter" and "previous_parameter" to go to next or previous result page. Just combine it with the API URL, e.g: "api/manageassets/manufacturer"+next_parameter or "api/manageassets/manufacturer"+previous_parameter