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.

Headers

cache-control
string
Example:

"no-cache"

postman-token
string
Example:

"<calculated when request is sent>"

content-length
string
Example:

"<calculated when request is sent>"

host
string
Example:

"<calculated when request is sent>"

user-agent
string
Example:

"PostmanRuntime/7.39.1"

accept-encoding
string
Example:

"gzip, deflate, br"

connection
string
Example:

"keep-alive"

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?