POST
/
price
/
centre-centre
curl --request POST \
  --url https://api.mervii.com/beta/price/centre-centre \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "pickup_origin": {
    "state_code": "",
    "country_code": "",
    "centre_code": "ibadan-sango",
    "addresss": ""
  },
  "destinations": [
    {
      "state_code": "",
      "country_code": "",
      "centre_code": "lagos-ojodu-berger",
      "addresss": "",
      "item_weight": 0.5
    },
    {
      "state_code": "",
      "country_code": "",
      "centre_code": "lagos-adeniji-adele",
      "addresss": "",
      "item_weight": 1
    },
    {
      "state_code": "",
      "country_code": "",
      "centre_code": "ibadan-agodi-gate",
      "addresss": "",
      "item_weight": 1
    }
  ]
}'
"{\n    \"status\": true,\n    \"message\": \"get price\",\n    \"data\": {\n        \"pickup_origin\": {\n            \"state_code\": null,\n            \"country_code\": null,\n            \"centre_code\": \"ibadan-sango\",\n            \"addresss\": null,\n            \"pickup_centre\": {\n                \"centre_code\": \"ibadan-sango\",\n                \"centre_name\": \"Sango Ibadan\"\n            }\n        },\n        \"destinations\": [\n            {\n                \"state_code\": null,\n                \"country_code\": null,\n                \"centre_code\": \"lagos-ojodu-berger\",\n                \"addresss\": null,\n                \"item_weight\": 0.5,\n                \"dropoff_centre\": {\n                    \"centre_code\": \"lagos-ojodu-berger\",\n                    \"centre_name\": \"Ojodu Berger Lagos\"\n                },\n                \"price\": {\n                    \"amount\": 3000.67,\n                    \"discount_amount\": 0,\n                    \"amount_payable\": 3000.67,\n                    \"discount_type\": \"Percetage\",\n                    \"discount_description\": \"0% discount\",\n                    \"distance\": \" Kilometres to the drop off center \",\n                    \"duration\": \"1-4 days\"\n                },\n                \"weight\": \"0.5\"\n            },\n            {\n                \"state_code\": null,\n                \"country_code\": null,\n                \"centre_code\": \"lagos-adeniji-adele\",\n                \"addresss\": null,\n                \"item_weight\": 1,\n                \"dropoff_centre\": {\n                    \"centre_code\": \"lagos-adeniji-adele\",\n                    \"centre_name\": \"Adeniji Adele Lagos\"\n                },\n                \"price\": {\n                    \"amount\": 3500.56,\n                    \"discount_amount\": 0,\n                    \"amount_payable\": 3500.56,\n                    \"discount_type\": \"Percetage\",\n                    \"discount_description\": \"0% discount\",\n                    \"distance\": \" Kilometres to the drop off center \",\n                    \"duration\": \"1-4 days\"\n                },\n                \"weight\": \"1\"\n            },\n            {\n                \"state_code\": null,\n                \"country_code\": null,\n                \"centre_code\": \"ibadan-agodi-gate\",\n                \"addresss\": null,\n                \"item_weight\": 1,\n                \"dropoff_centre\": {\n                    \"centre_code\": \"ibadan-agodi-gate\",\n                    \"centre_name\": \"Agodi Gate Ibadan\"\n                },\n                \"price\": {\n                    \"amount\": 2500.25,\n                    \"discount_amount\": 0,\n                    \"amount_payable\": 2500.25,\n                    \"discount_type\": \"Percetage\",\n                    \"discount_description\": \"0% discount\",\n                    \"distance\": \" Kilometres to the drop off center \",\n                    \"duration\": \"1-4 days\"\n                },\n                \"weight\": \"1\"\n            }\n        ],\n        \"total_amount\": 9001.48,\n        \"total_discount_amount\": 0,\n        \"total_amount_payable\": 9001.48,\n        \"discount_type\": \"Percetage\",\n        \"discount_description\": \"0% discount\"\n    }\n}"

Authorizations

Authorization
string
header
required

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

Headers

Cache-Control
string
Postman-Token
string
Content-Type
string
Content-Length
string
Host
string
User-Agent
string
Accept
string
Accept-Encoding
string
Connection
string
accept
string

Body

application/json · object

The body is of type object.

Response

200
text/plain
OK

The response is of type string.

Was this page helpful?