GET
/
parcel
/
logistics
/
completed-parcel
curl --request GET \
  --url https://api.mervii.com/beta/parcel/logistics/completed-parcel \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '""'
{
  "data": [],
  "message": "",
  "status": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json · any

The body is of type any.

Response

200 - application/json
success
data
any[]
Example:
[]
message
string
Example:

""

status
boolean
Example:

true

Was this page helpful?