action shipengine_create_return_label { label: "Create a return label" description: "Create a return label" provider: shipengine method: POST path: "/v1/labels/{label_id}/return" encoding: json input: { type: "object" description: "A create return label request body" properties: { charge_event: { description: "The label charge event.\n" type: "object" } display_scheme: { description: "The display format that the label should be shown in." type: "object" } label_download_type: { type: "object" } label_format: { description: "The file format that you want the label to be in. We recommend `pdf` format because it is supported by all carriers, whereas some carriers do not support the `png` or `zpl` formats.\n" type: "object" } label_image_id: { description: "The label image resource that was used to create a custom label image." type: "object" } label_layout: { description: "The layout (size) that you want the label to be in. The `label_format` determines which sizes are allowed. `4x6` is supported for all label formats, whereas `letter` (8.5\" x 11\") is only supported for `pdf` format.\n" type: "object" } } additionalProperties: false } output: { type: "object" description: "A create return label response body" additionalProperties: false } }