Returns the status of one or more orders.
FIELD | DESCRIPTION |
orderIds |
Required. Array of Strings. The Gofilex order _id. |
EMEA Portal
https://genie.portal.gofilex.com/api/publication/v1/orders/status
curl -vX POST https://genie.portal.gofilex.com/api/publication/v1/orders/status -d @status.json --header "Content-Type: application/json" --header "Authorization: Bearer BXrnipNekltq-sHFxpjdd90S17th2Q5mSaRf_4-Rayx"
APAC Portal
https://genie.portal.apac.gofilex.com/api/publication/v1/orders/status
curl -vX POST https://genie.portal.apac.gofilex.com/api/publication/v1/orders/status -d @status.json --header "Content-Type: application/json" --header "Authorization: Bearer BXrnipNekltq-sHFxpjdd90S17th2Q5mSaRf_4-Rayx"
MPS Portal
https://genie.portal.mps.gofilex.com/api/publication/v1/orders/status
curl -vX POST https://genie.portal.mps.gofilex.com/api/publication/v1/orders/status -d @status.json --header "Content-Type: application/json" --header "Authorization: Bearer BXrnipNekltq-sHFxpjdd90S17th2Q5mSaRf_4-Rayx"
NORAM Portal
https://genie.portal.gofilex.bydeluxe.com/api/publication/v1/orders/status
curl -vX POST https://genie.portal.gofilex.bydeluxe.com/api/publication/v1/orders/status -d @status.json --header "Content-Type: application/json" --header "Authorization: Bearer BXrnipNekltq-sHFxpjdd90S17th2Q5mSaRf_4-Rayx"
status.json
{
"orderIds": [
"6qHGWHR9XqqeHqLKr"
]
}
# Example response of an electronic transfer order
[{
"_id": "6qHGWHR9XqqeHqLKr",
"_type": "transfer",
"medium": "electronic",
"_owner": {
"_id": "HKDd83r8Qy6acvY3R",
"name": "Gofilex Distribution"
},
"company": {
"_id": "aNDMD3ebP6Zvmkxwm",
"name": "Gofilex Cinema"
},
"_status": {
"state": "queued",
"progress": {
"step": 0,
"total": 474043064
}
}
}]
# Example response of a physical transfer order
[{
"_id": "6qHGWHR9XqqeHqLKr",
"_type": "transfer",
"medium": "physical",
"_owner": {
"_id": "HKDd83r8Qy6acvY3R",
"name": "Gofilex Distribution"
},
"company": {
"_id": "aNDMD3ebP6Zvmkxwm",
"name": "Gofilex Cinema"
},
"_status": {
"state": "completed"
},
"transport": {
"courier": {
"name": "UPS DE"
},
"number": "1Z49E3E06843807781",
"delivered": "2023-04-18T22:00:00.000+00:00"
}
}]