OBJECT

Mutation

link GraphQL Schema definition

1type 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.
10deleteStoreStoreIdRequisitionListRequisitionListId(
11requisitionListId: String!,
12storeId: 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]
30postAdminIndexDataImportBuild(
31catentryId: String,
32contractId: String,
33currency: String,
34flushSize: String,
35fullBuild: String,
36indexSubType: String,
37indexType: String,
38localeName: String,
39masterCatalogId: String,
40numWorkers: String,
41runCategoryRules: Boolean,
42storeId: String,
43validateIndex: Boolean
44): AdminIndexDataImportBuild
115
45# createJob.
46#
47# Equivalent to POST /store/{storeId}/job
48#
49# Arguments
50# requestBody: [Not documented]
51# storeId: storeId.
52postStoreStoreIdJob(
53requestBody: ComIbmCommerceRestSchedulerHandlerJobHandlerCreateJobRequestInput,
54storeId: 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.
69postStoreStoreIdMerchantValidate(
70requestBody: ValidateMerchantRequestInput,
71responseFormat: String,
72storeId: 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.
84postStoreStoreIdRequisitionList(
85action: String!,
86requestBody: ComIbmCommerceRestRequisitionlistHandlerRequisitionListHandlerRequisitionListConfigurationAddRequestInput,
87storeId: 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.
98postStoreStoreIdRequisitionListRequisitionListId(
99action: String!,
100requestBody: ComIbmCommerceRestRequisitionlistHandlerRequisitionListHandlerRequisitionListSubmitRequestInput,
101requisitionListId: String!,
102storeId: 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.
110putStoreStoreIdRequisitionListRequisitionListId(
111requestBody: String,
112requisitionListId: String!,
113storeId: String!
114): ComIbmCommerceRestRequisitionlistHandlerRequisitionListHandlerRequisitionListUpdateRequest
116
117}

link Required by

This element is not required by anyone