SellerInput
Input for creating a seller
input SellerInput {
name: String
slug: String
identifiers: [String!]
owner: ID
plan: ID
checklists: [SellerChecklistInput]
status: SellerStatusEnum!
}
Fields
SellerInput.name ● String scalar
Seller company name
SellerInput.slug ● String scalar
URL-friendly slug for the seller
SellerInput.identifiers ● [String!] list scalar
Tax or business identifiers
SellerInput.owner ● ID scalar
ID of the user to set as owner
SellerInput.plan ● ID scalar
ID of the Agreement to assign to the seller. For more fine grained control consider using the sellerAgreementAssign mutation
SellerInput.checklists ● [SellerChecklistInput] list input
List of checklists to create for this seller. Empty list is to skip all checklists for this seller. Null value will inherit all default checklists from marketplace configuration.
SellerInput.status ● SellerStatusEnum! non-null enum
Initial seller status
Member Of
sellerDataCreate mutation