shipping_container_remove_shipping_label

Arguments

ArgumentTypeRequiredDefaultDescription
dataRemoveShippingLabelFromShippingContainerInput!Yes

Return Type

RemoveShippingLabelFromShippingContainerOutput

Mutation

mutation shipping_container_remove_shipping_label(
  $data: RemoveShippingLabelFromShippingContainerInput!
) {
  shipping_container_remove_shipping_label(
    data: $data
  ) {
    request_id
    complexity
    ok
  }
}

Variables

{
  "data": {
    "shipping_label_id": "U2hpcHBpbmdMYWJlbDoxMjM0",
    "shipping_container_id": "U2hpcHBpbmdDb250YWluZXI6MTIzNA==",
    "shipping_container_barcode": "SC1234"
  }
}

Response

{
  "data": {
    "shipping_container_remove_shipping_label": {
      "request_id": "UmVjb3JkOjEyMzQ=",
      "complexity": 100,
      "ok": true
    }
  }
}