POST
/
price
/
centre-door
curl --request POST \
  --url https://api.mervii.com/beta/price/centre-door \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "destinations": [
    {
      "city": "",
      "country_code": "NG",
      "item_weight": 1,
      "region": {
        "latitude": 7.427026700000001,
        "longitude": 3.8900142
      },
      "state_code": "LA"
    },
    {
      "city": "",
      "country_code": "NG",
      "item_weight": 1,
      "region": {
        "latitude": 7.427026700000001,
        "longitude": 3.8900142
      },
      "state_code": "LA"
    }
  ],
  "pickup_origin": {
    "addresss": "",
    "centre_code": "",
    "country_code": "",
    "state_code": ""
  }
}'
{
  "data": {
    "destinations": [
      {
        "city": null,
        "country_code": "NG",
        "dropoff_centre": {
          "centre_code": "lagos-ojodu-berger",
          "centre_name": "Ojodu Berger Lagos"
        },
        "item_weight": 1,
        "price": {
          "amount": 11692.520875080363,
          "amount_payable": 11692.520875080363,
          "discount_amount": 0,
          "discount_description": "0% discount",
          "discount_type": "Percetage",
          "distance": "68.26634062567 Kilometres to the drop off center ",
          "duration": "1-4 days"
        },
        "region": {
          "latitude": 7.427026700000001,
          "longitude": 3.8900142
        },
        "state_code": "LA",
        "weight": "1"
      },
      {
        "city": null,
        "country_code": "NG",
        "dropoff_centre": {
          "centre_code": "lagos-ojodu-berger",
          "centre_name": "Ojodu Berger Lagos"
        },
        "item_weight": 1,
        "price": {
          "amount": 11692.520875080363,
          "amount_payable": 11692.520875080363,
          "discount_amount": 0,
          "discount_description": "0% discount",
          "discount_type": "Percetage",
          "distance": "68.26634062567 Kilometres to the drop off center ",
          "duration": "1-4 days"
        },
        "region": {
          "latitude": 7.427026700000001,
          "longitude": 3.8900142
        },
        "state_code": "LA",
        "weight": "1"
      }
    ],
    "discount_description": "0% discount",
    "discount_type": "Percetage",
    "pickup_origin": {
      "addresss": null,
      "centre_code": "ibadan-sango",
      "country_code": null,
      "pickup_centre": {
        "centre_code": "ibadan-sango",
        "centre_name": "Sango Ibadan"
      },
      "state_code": null
    },
    "total_amount": 23385.041750160726,
    "total_amount_payable": 23385.041750160726,
    "total_discount_amount": 0
  },
  "message": "get price",
  "status": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json
destinations
object[]
Example:
[
  {
    "city": "",
    "country_code": "NG",
    "item_weight": 1,
    "region": {
      "latitude": 7.427026700000001,
      "longitude": 3.8900142
    },
    "state_code": "LA"
  },
  {
    "city": "",
    "country_code": "NG",
    "item_weight": 1,
    "region": {
      "latitude": 7.427026700000001,
      "longitude": 3.8900142
    },
    "state_code": "LA"
  }
]
pickup_origin
object

Response

200
application/json
success
data
object
message
string
Example:

"get price"

status
boolean
Example:

true

Was this page helpful?