OBJECT
Mutation
link GraphQL Schema definition
1 type Mutation { 2 3 # Deletes a requisition list. 4 # 5 # Equivalent to DELETE /store/{storeId}/requisition_list/{requisitionListId} 6 # 7 # Arguments 8 # requisitionListId: The requisition list ID. 9 # storeId: The store identifier. 10 ( 11 : String!, 12 : String! 13 ): ComIbmCommerceRestRequisitionlistHandlerRequisitionListHandlerRequisitionListDeleteResponse 115 14 # Equivalent to POST /admin/index/dataImport/build 15 # 16 # Arguments 17 # catentryId: [Not documented] 18 # contractId: [Not documented] 19 # currency: [Not documented] 20 # flushSize: [Not documented] 21 # fullBuild: [Not documented] 22 # indexSubType: [Not documented] 23 # indexType: [Not documented] 24 # localeName: [Not documented] 25 # masterCatalogId: [Not documented] 26 # numWorkers: [Not documented] 27 # runCategoryRules: [Not documented] 28 # storeId: [Not documented] 29 # validateIndex: [Not documented] 30 ( 31 : String, 32 : String, 33 : String, 34 : String, 35 : String, 36 : String, 37 : String, 38 : String, 39 : String, 40 : String, 41 : Boolean, 42 : String, 43 : Boolean 44 ): AdminIndexDataImportBuild 115 45 # createJob. 46 # 47 # Equivalent to POST /store/{storeId}/job 48 # 49 # Arguments 50 # requestBody: [Not documented] 51 # storeId: storeId. 52 ( 53 : ComIbmCommerceRestSchedulerHandlerJobHandlerCreateJobRequestInput, 54 : String! 55 ): ComIbmCommerceRestSchedulerHandlerJobHandlerCreateJobResponse 115 56 # Performs the merchant validation 57 # 58 # Equivalent to POST /store/{storeId}/merchant/validate 59 # 60 # Arguments 61 # requestBody: [Not documented] 62 # responseFormat: The response format. If the request has an 63 # input body, that body must also use the format specified in "responseFormat". 64 # Valid values include �json� and �xml� without the quotes. If the responseFormat 65 # isn�t specified, the �accept� HTTP header shall be used to determine the format 66 # of the response. If the �accept� HTTP header isn�t specified as well, the 67 # default response format shall be in json. 68 # storeId: The store identifier. 69 ( 70 : ValidateMerchantRequestInput, 71 : String, 72 : String! 73 ): JSON 115 74 # Add pre-configured dynamic kits or dynamic kit configurations to a requisition 75 # list. 76 # 77 # Equivalent to POST /store/{storeId}/requisition_list 78 # 79 # Arguments 80 # action: the action. Possible values are: copy, 81 # updateItem,updateConfiguration. 82 # requestBody: [Not documented] 83 # storeId: The store identifier. 84 ( 85 : String!, 86 : ComIbmCommerceRestRequisitionlistHandlerRequisitionListHandlerRequisitionListConfigurationAddRequestInput, 87 : String! 88 ): RequisitionListRequisitionList 115 89 # Submits a requisition list. 90 # 91 # Equivalent to POST /store/{storeId}/requisition_list/{requisitionListId} 92 # 93 # Arguments 94 # action: the action. 95 # requestBody: [Not documented] 96 # requisitionListId: The requisition list ID. 97 # storeId: The store identifier. 98 ( 99 : String!, 100 : ComIbmCommerceRestRequisitionlistHandlerRequisitionListHandlerRequisitionListSubmitRequestInput, 101 : String!, 102 : String! 103 ): StoreRequisitionList 115 104 # Equivalent to PUT /store/{storeId}/requisition_list/{requisitionListId} 105 # 106 # Arguments 107 # requestBody: [Not documented] 108 # requisitionListId: The requisition list ID. 109 # storeId: The store identifier. 110 ( 111 : String, 112 : String!, 113 : String! 114 ): ComIbmCommerceRestRequisitionlistHandlerRequisitionListHandlerRequisitionListUpdateRequest 116 117 }
link Required by
This element is not required by anyone