Skip to main content

CreateOrderStatusSetInput

Input data for creating a new order status set for workflow organization

input CreateOrderStatusSetInput {
name: String!
description: String
orderStatusIds: [Int!]
}

Fields

CreateOrderStatusSetInput.name ● String! non-null scalar

Human-readable name for the order status set.

Used for display purposes in user interfaces and workflow management. Should be descriptive and meaningful for business users organizing their order workflows. Maximum length is 64 characters.

CreateOrderStatusSetInput.description ● String scalar

Detailed description of the order status set purpose and usage.

Provides additional context about the workflow this set represents and when it should be used for order management. Maximum length is 255 characters.

CreateOrderStatusSetInput.orderStatusIds ● [Int!] list scalar

List of order status IDs to include in this set during creation.

Allows immediate population of the status set with existing order statuses for complete workflow setup. Each ID must represent a valid order status in the system.

Member Of

orderStatusSetCreate mutation