Public
Documentation Settings

Magento 2 Reward Points GraphQL

POSTCustomer Subscrible

{{magento_base_url}}/graphql
HEADERS
Authorization

Bearer {{customer_token}}

Content-Type

application/json

Example Request
curl
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":{}}'
200 OK
Example Response
json
{
  "data": {
    "MpRewardSubscribe": true
  }
}
Date

Tue, 06 Oct 2020 08:00:03 GMT

Set-Cookie

PHPSESSID=uihphhic7k71n83d8n2mlsncp3; expires=Tue, 06-Oct-2020 09:00:03 GMT; Max-Age=3600; path=/quynh/ce235a; domain=192.168.1.200; HttpOnly

Set-Cookie

private_content_version=158cf30a254731351c5ec1d5e79e12e1; expires=Fri, 04-Oct-2030 08:00:03 GMT; Max-Age=315360000; path=/

X-Content-Type-Options

nosniff

X-XSS-Protection

1; mode=block

X-Frame-Options

SAMEORIGIN

Content-Length

35

Content-Type

application/json

X-Varnish

144014

Via

1.1 varnish (Varnish/6.1)

Pragma

no-cache

Expires

-1

Cache-Control

no-store, no-cache, must-revalidate, max-age=0

Accept-Ranges

bytes

Connection

keep-alive

POSTCustomer Spend Points

{{magento_base_url}}/graphql
HEADERS
Authorization

Bearer {{customer_token}}

Content-Type

application/json

Bodygraphql
Query
graphql
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
	}
}
GraphQL Variables
json
{
    "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"
           }
      }
}
Example Request
curl
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"}}}}'
200 OK
Example Response
json
{
  "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"
      }
    ]
  }
}
Date

Tue, 06 Oct 2020 08:10:17 GMT

Set-Cookie

PHPSESSID=uihphhic7k71n83d8n2mlsncp3; expires=Tue, 06-Oct-2020 09:10:17 GMT; Max-Age=3600; path=/quynh/ce235a; domain=192.168.1.200; HttpOnly

Set-Cookie

private_content_version=887662183d5cd9319f7d9d9410034593; expires=Fri, 04-Oct-2030 08:10:17 GMT; Max-Age=315360000; path=/

X-Content-Type-Options

nosniff

X-XSS-Protection

1; mode=block

X-Frame-Options

SAMEORIGIN

Content-Length

419

Content-Type

application/json

X-Varnish

311990

Via

1.1 varnish (Varnish/6.1)

Pragma

no-cache

Expires

-1

Cache-Control

no-store, no-cache, must-revalidate, max-age=0

Accept-Ranges

bytes

Connection

keep-alive

POSTShopping Cart Spending Rules

{{magento_base_url}}/graphql
HEADERS
Authorization

Bearer {{customer_token}}

Content-Type

application/json

Bodygraphql
Query
graphql
query{
  MpRewardShoppingCartSpendingRules(cart_id:"MrO1ZJT7KZ3VEyPYvwMEITUdeSGfomRN"){
    pointSpent
    ruleApplied
    rules {
      id
      label
      max
      min
      step
    }
  }
}
GraphQL Variables
json
{
    "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"
           }
      }
}
Example Request
curl
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"}}}}'
200 OK
Example Response
json
{
  "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
        }
      ]
    }
  }
}
Date

Wed, 26 Jan 2022 08:14:03 GMT

Server

Apache/2.4.29 (Ubuntu)

Expires

Tue, 26 Jan 2021 08:14:03 GMT

Cache-Control

max-age=0, must-revalidate, no-cache, no-store

Pragma

no-cache

Set-Cookie

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

Set-Cookie

private_content_version=114af867ed1c84948759734cfa9b1627; expires=Sat, 24-Jan-2032 08:14:03 GMT; Max-Age=315360000; path=/; SameSite=Lax

Set-Cookie

private_content_version=c9d7d53fcbee265c8f41235e1113715a; expires=Sat, 24-Jan-2032 08:14:03 GMT; Max-Age=315360000; path=/; SameSite=Lax

Set-Cookie

private_content_version=3206f5cdcd2d1e8389b5de4e96acefac; expires=Sat, 24-Jan-2032 08:14:03 GMT; Max-Age=315360000; path=/; SameSite=Lax

X-Magento-Debug

1

X-Content-Type-Options

nosniff

X-XSS-Protection

1; mode=block

X-Frame-Options

SAMEORIGIN

Content-Length

260

Content-Type

application/json

X-Varnish

645337

Age

0

Via

1.1 varnish (Varnish/5.2)

Accept-Ranges

bytes

Connection

keep-alive