POST
/
parcel
/
logistics
/
centre-door
curl --request POST \
  --url https://api.mervii.com/beta/parcel/logistics/centre-door \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "destinations": [
    {
      "address": "Ikolaba Rd, Ibadan 200285, Oyo, Nigeria",
      "city": "Lagos",
      "contacts": {
        "email": "abdul@gmail.com",
        "name": "Olakunle Olayemi",
        "phone_number": "09020500177",
        "phone_number_2": ""
      },
      "country_code": "NG",
      "delivery_note": "",
      "item_weight": 1,
      "items": [
        {
          "height": "",
          "length": "",
          "name": "Book",
          "width": ""
        }
      ],
      "region": {
        "latitude": 7.427026700000001,
        "longitude": 3.8900142
      },
      "state_code": "LA"
    }
  ],
  "pickup_origin": {
    "address": "Ikolaba Rd, Ibadan 200285, Oyo, Nigeria",
    "centre_code": "",
    "city": "Lagos",
    "contacts": {
      "email": "abdul@gmail.com",
      "name": "Olakunle Olayemi",
      "phone_number": "09020500177",
      "phone_number_2": ""
    },
    "country_code": "NG",
    "pickup_date": "",
    "pickup_note": "",
    "pickup_time": "",
    "state_code": "LA",
    "vehicle": ""
  }
}'
{
  "data": {
    "discount_description": "0% discount",
    "discount_type": "Percetage",
    "status": "Pending",
    "total_amount": 11692.520875080363,
    "total_amount_payable": 11692.520875080363,
    "total_discount_amount": 0,
    "tracking_number": "202410084743311"
  },
  "message": "Parcel is successful",
  "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:
[
  {
    "address": "Ikolaba Rd, Ibadan 200285, Oyo, Nigeria",
    "city": "Lagos",
    "contacts": {
      "email": "abdul@gmail.com",
      "name": "Olakunle Olayemi",
      "phone_number": "09020500177",
      "phone_number_2": ""
    },
    "country_code": "NG",
    "delivery_note": "",
    "item_weight": 1,
    "items": [
      {
        "height": "",
        "length": "",
        "name": "Book",
        "width": ""
      }
    ],
    "region": {
      "latitude": 7.427026700000001,
      "longitude": 3.8900142
    },
    "state_code": "LA"
  }
]
pickup_origin
object

Response

200
application/json
success
data
object
message
string
Example:

"Parcel is successful"

status
boolean
Example:

true

Was this page helpful?