Magento 2 Reward Points GraphQL
POSTCustomer Subscrible
Bearer {{customer_token}}
application/json
curl --location -g '{{magento_base_url}}/graphql' \
--header 'Authorization: Bearer {{customer_token}}' \
--header 'Content-Type: application/json' \
--data '{"query":"mutation {\r\n\tMpRewardSubscribe(input: { isUpdate: false, isExpire: false })\r\n}\r\n","variables":{}}'
{
"data": {
"MpRewardSubscribe": true
}
}
Tue, 06 Oct 2020 08:00:03 GMT
PHPSESSID=uihphhic7k71n83d8n2mlsncp3; expires=Tue, 06-Oct-2020 09:00:03 GMT; Max-Age=3600; path=/quynh/ce235a; domain=192.168.1.200; HttpOnly
private_content_version=158cf30a254731351c5ec1d5e79e12e1; expires=Fri, 04-Oct-2030 08:00:03 GMT; Max-Age=315360000; path=/
nosniff
1; mode=block
SAMEORIGIN
35
application/json
144014
1.1 varnish (Varnish/6.1)
no-cache
-1
no-store, no-cache, must-revalidate, max-age=0
bytes
keep-alive
POSTCustomer Spend Points
Bearer {{customer_token}}
application/json
mutation spendingpoint(
$cart_id: String!
$points: Int!
$rule_id: String!
$address_information: AddressInformationInput!
) {
MpRewardSpendingPoint(
cart_id: $cart_id
points: $points
rule_id: $rule_id
address_information: $address_information
) {
title
code
value
}
}
{
"cart_id":"Lm9yI41Jqd94yVPNUOaroPOFIrI7jHBM",
"points":2,
"rule_id":"1",
"address_information":{
"address":{
"firstname": "John",
"lastname": "Doe",
"company": "Company Name",
"street": ["320 N Crescent Dr", "Beverly Hills"],
"city": "Los Angeles",
"region": "CA",
"postcode": "90210",
"country_code": "US",
"telephone": "123-456-0000",
"save_in_address_book": false
},
"shipping_methods":{
"carrier_code": "tablerate",
"method_code": "bestway"
}
}
}
curl --location -g '{{magento_base_url}}/graphql' \
--header 'Authorization: Bearer {{customer_token}}' \
--header 'Content-Type: application/json' \
--data '{"query":"mutation spendingpoint(\r\n\t$cart_id: String!\r\n\t$points: Int!\r\n\t$rule_id: String!\r\n\t$address_information: AddressInformationInput!\r\n) {\r\n\tMpRewardSpendingPoint(\r\n\t\tcart_id: $cart_id\r\n\t\tpoints: $points\r\n\t\trule_id: $rule_id\r\n\t\taddress_information: $address_information\r\n\t) {\r\n\t\ttitle\r\n\t\tcode\r\n\t\tvalue\r\n\t}\r\n}\r\n","variables":{"cart_id":"Lm9yI41Jqd94yVPNUOaroPOFIrI7jHBM","points":2,"rule_id":"1","address_information":{"address":{"firstname":"John","lastname":"Doe","company":"Company Name","street":["320 N Crescent Dr","Beverly Hills"],"city":"Los Angeles","region":"CA","postcode":"90210","country_code":"US","telephone":"123-456-0000","save_in_address_book":false},"shipping_methods":{"carrier_code":"tablerate","method_code":"bestway"}}}}'
{
"data": {
"MpRewardSpendingPoint": [
{
"title": "Subtotal",
"code": "subtotal",
"value": "90.0000"
},
{
"title": "Shipping & Handling (Best Way - Table Rate)",
"code": "shipping",
"value": "0.0000"
},
{
"title": "Tax",
"code": "tax",
"value": "7.4300"
},
{
"title": "Grand Total",
"code": "grand_total",
"value": "97.4300"
},
{
"title": "You will spend",
"code": "mp_reward_spent",
"value": "2"
},
{
"title": "You will earn",
"code": "mp_reward_earn",
"value": "9"
}
]
}
}
Tue, 06 Oct 2020 08:10:17 GMT
PHPSESSID=uihphhic7k71n83d8n2mlsncp3; expires=Tue, 06-Oct-2020 09:10:17 GMT; Max-Age=3600; path=/quynh/ce235a; domain=192.168.1.200; HttpOnly
private_content_version=887662183d5cd9319f7d9d9410034593; expires=Fri, 04-Oct-2030 08:10:17 GMT; Max-Age=315360000; path=/
nosniff
1; mode=block
SAMEORIGIN
419
application/json
311990
1.1 varnish (Varnish/6.1)
no-cache
-1
no-store, no-cache, must-revalidate, max-age=0
bytes
keep-alive
POSTShopping Cart Spending Rules
Bearer {{customer_token}}
application/json
query{
MpRewardShoppingCartSpendingRules(cart_id:"MrO1ZJT7KZ3VEyPYvwMEITUdeSGfomRN"){
pointSpent
ruleApplied
rules {
id
label
max
min
step
}
}
}
{
"cart_id":"MrO1ZJT7KZ3VEyPYvwMEITUdeSGfomRN",
"points":2,
"rule_id":"1",
"address_information":{
"address":{
"firstname": "John",
"lastname": "Doe",
"company": "Company Name",
"street": ["320 N Crescent Dr", "Beverly Hills"],
"city": "Los Angeles",
"region": "CA",
"postcode": "90210",
"country_code": "US",
"telephone": "123-456-0000",
"save_in_address_book": false
},
"shipping_methods":{
"carrier_code": "tablerate",
"method_code": "bestway"
}
}
}
curl --location -g '{{magento_base_url}}/graphql' \
--header 'Authorization: Bearer {{customer_token}}' \
--header 'Content-Type: application/json' \
--data '{"query":"query{\r\n MpRewardShoppingCartSpendingRules(cart_id:\"MrO1ZJT7KZ3VEyPYvwMEITUdeSGfomRN\"){\r\n pointSpent\r\n ruleApplied\r\n rules {\r\n id\r\n label\r\n max\r\n min\r\n step\r\n }\r\n }\r\n}","variables":{"cart_id":"MrO1ZJT7KZ3VEyPYvwMEITUdeSGfomRN","points":2,"rule_id":"1","address_information":{"address":{"firstname":"John","lastname":"Doe","company":"Company Name","street":["320 N Crescent Dr","Beverly Hills"],"city":"Los Angeles","region":"CA","postcode":"90210","country_code":"US","telephone":"123-456-0000","save_in_address_book":false},"shipping_methods":{"carrier_code":"tablerate","method_code":"bestway"}}}}'
{
"data": {
"MpRewardShoppingCartSpendingRules": {
"pointSpent": 4,
"ruleApplied": "rate",
"rules": [
{
"id": "rate",
"label": "Each of 1 point gets €10.00 discount",
"max": 11,
"min": 0,
"step": 1
},
{
"id": "3",
"label": "Shopping Cart Spending Rule",
"max": 3,
"min": 0,
"step": 1
}
]
}
}
}
Wed, 26 Jan 2022 08:14:03 GMT
Apache/2.4.29 (Ubuntu)
Tue, 26 Jan 2021 08:14:03 GMT
max-age=0, must-revalidate, no-cache, no-store
no-cache
PHPSESSID=vd12jt27b3q393lv600e70ha47; expires=Wed, 26-Jan-2022 09:14:03 GMT; Max-Age=3600; path=/hiennt/ce243p1/pub; domain=dev.mageplaza.vn; HttpOnly; SameSite=Lax
private_content_version=114af867ed1c84948759734cfa9b1627; expires=Sat, 24-Jan-2032 08:14:03 GMT; Max-Age=315360000; path=/; SameSite=Lax
private_content_version=c9d7d53fcbee265c8f41235e1113715a; expires=Sat, 24-Jan-2032 08:14:03 GMT; Max-Age=315360000; path=/; SameSite=Lax
private_content_version=3206f5cdcd2d1e8389b5de4e96acefac; expires=Sat, 24-Jan-2032 08:14:03 GMT; Max-Age=315360000; path=/; SameSite=Lax
1
nosniff
1; mode=block
SAMEORIGIN
260
application/json
645337
0
1.1 varnish (Varnish/5.2)
bytes
keep-alive