GET
/
return
/
{id}
/
statushistory
curl --request GET \
  --url https://api.shipbob.com/2.0/return/{id}/statushistory \
  --header 'Authorization: <api-key>'
[
  {
    "status": "AwaitingArrival",
    "time_stamp": "2019-08-24T14:15:22Z"
  }
]

Authorizations

Authorization
string
header
required

Provide your personal access token in the format 'Bearer {your_personal_access_token}'

Headers

shipbob_channel_id
string

Channel Id for Operation

Path Parameters

id
string
required

Id of the return order

Response

200
application/json
Success
status
enum<string>
Available options:
AwaitingArrival,
Arrived,
Processing,
Completed,
Cancelled
time_stamp
string

Date this corresponding return order status was created

Was this page helpful?