OBJECT

Mutation

link GraphQL Schema definition

1type Mutation {
2
3# Deletes coupons from coupon wallet by coupon ID.
4#
5# Equivalent to DELETE /store/{storeId}/coupon/{couponId}
6#
7# Arguments
8# couponId: Coupon identifier.
9# responseFormat: The response format. Valid values are json and
10# xml. If the request contains an input body, it must use the format specified in
11# responseFormat. If the responseFormat is not specified, the accept HTTP header
12# determines the format of the response. If the accept HTTP header is not
13# specified then default response format is json.
14# storeId: The store identifier.
15couponDeleteCouponById(
16couponId: String!,
17responseFormat: ResponseFormat,
18storeId: String!
19): CouponsCoupons
37
20# Allows the shopper to get their own coupons.
21#
22# Equivalent to POST /store/{storeId}/coupon/@self
23#
24# Arguments
25# requestBody: [Not documented]
26# responseFormat: The response format. Valid values are json and
27# xml. If the request contains an input body, it must use the format specified in
28# responseFormat. If the responseFormat is not specified, the accept HTTP header
29# determines the format of the response. If the accept HTTP header is not
30# specified then default response format is json.
31# storeId: The store identifier.
32couponIssueCoupon(
33requestBody: JSON,
34responseFormat: ResponseFormat,
35storeId: String!
36): ComIbmCommerceMarketingCommandsIssueCouponControllerCmd
38
39}

link Required by

This element is not required by anyone