GET
/
utils
/
weight
curl --request GET \
  --url https://api.mervii.com/beta/utils/weight \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "description": "500 gram",
      "weight": "0-500 -  gram",
      "weight_code": "0.50"
    },
    {
      "description": "1 Kilogram",
      "weight": "0.6KG - 1KG",
      "weight_code": "1.00"
    },
    {
      "description": "1.5 Kilo gram",
      "weight": "1.1 - 1.5KG",
      "weight_code": "1.50"
    }
  ],
  "message": "Weight list successfully fetched !",
  "status": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
success
data
object[]
Example:
[
  {
    "description": "500 gram",
    "weight": "0-500 -  gram",
    "weight_code": "0.50"
  },
  {
    "description": "1 Kilogram",
    "weight": "0.6KG - 1KG",
    "weight_code": "1.00"
  },
  {
    "description": "1.5 Kilo gram",
    "weight": "1.1 - 1.5KG",
    "weight_code": "1.50"
  }
]
message
string
Example:

"Weight list successfully fetched !"

status
boolean
Example:

true

Was this page helpful?