# Logistics Collection of methods that provide logistics services including CRUD operations for logistics orders, pickups, etc. Also handles logistics-related files like shipping labels. ## UpdateLKSS - [POST /v1/processes/{process_id}/shipping_status](https://docs.itsrever.com/apis/admin/logistics/updatelkss.md) ## GetLabelURL - [GET /v1/processes/{process_id}/label](https://docs.itsrever.com/apis/admin/logistics/getlabelurl.md): GetLabelURL creates a URL to download the label file associated to the given process_id ## GetReverseDeliveryInfo - [GET /v1/processes/{process_id}/logistics](https://docs.itsrever.com/apis/admin/logistics/getreversedeliveryinfo.md): Get the reverse delivery information of a Return Process ## CreatePickup - [POST /v1/processes/{process_id}/pickup](https://docs.itsrever.com/apis/admin/logistics/createpickup.md): Creates a pickup for a given process_id, customer and address A logistic order must be created prior requesting a pickup Must specify the provider and carrier to be used to create the pickup: - Returns UNIMPLEMENTED (gRPC code 12) if the provider is OPS, meaning it didn't generated any action. - Returns InvalidArgument (gRPC code 3) if the combination of return-method, providerand carrier is not supported. ## CreateReverseDelivery - [POST /v1/processes/{process_id}/logistics/](https://docs.itsrever.com/apis/admin/logistics/createreversedelivery.md): SaveManuallyCreatedLogisticOrder creates a logistic order associated to a given process_id, and saves the label file in the database ## CreateOrderV2 - [PUT /v1/processes/{process_id}/logistics/](https://docs.itsrever.com/apis/admin/logistics/createorderv2.md): Creates a logistic order for a given process_id, customer and address. Must specify the provider and carrier to be used to create the pickup. - Returns UNIMPLEMENTED (gRPC code 12) if the provider is OPS, meaning it didn't generated any action. - Returns InvalidArgument (gRPC code 3) if the combination of return-method, providerand carrier is not supported.