{
	"info": {
		"_postman_id": "6b9b5f13-efb7-40a9-9721-64fced22f65b",
		"name": "Consumer API",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "39093723"
	},
	"item": [
		{
			"name": "Users",
			"item": [
				{
					"name": "Create User",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"user\": {\n      \"email\": \"jane.smith@example.com\",\n      \"phone\": \"+14158672345\",\n      \"first_name\": \"Jane\",\n      \"last_name\":  \"Smith\",\n      \"birth_date\": {\n        \"month\": 8,\n        \"day\": 14\n      },\n      \"zip_code\": \"12345\"\n    }\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://api.thanxsandbox.com/users/",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"users",
								""
							]
						}
					},
					"response": []
				},
				{
					"name": "Get User",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/users/me",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"users",
								"me"
							]
						}
					},
					"response": []
				},
				{
					"name": "Update User",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/users/:id",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"users",
								":id"
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Delete User",
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\"message\": \"Optional message\"}",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://api.thanxsandbox.com/users/me",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"users",
								"me"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Checkin Code",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/users/:id/check_in_code",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"users",
								":id",
								"check_in_code"
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "SSO",
			"item": [
				{
					"name": "Acquire Authorization Code",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"client_id\": \"${client_id}\",\n    \"redirect_uri\": \"https://www.example.com/oauth/callback\",\n    \"response_type\": \"code\",\n    \"scope\": \"passwordless\",\n    \"username\": \"john.smith@example.com\"\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://api.thanxsandbox.com/oauth/authorize",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"oauth",
								"authorize"
							]
						}
					},
					"response": []
				},
				{
					"name": "Acquire Access Token",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"grant_type\": \"authorization_code\",\n    \"client_id\": \"${client_id}\",\n    \"client_secret\": \"${client_secret}\",\n    \"code\": \"${code}\",\n    \"redirect_uri\": \"https://www.example.com/oauth/callback\"\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://api.thanxsandbox.com/oauth/token",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"oauth",
								"token"
							]
						}
					},
					"response": []
				},
				{
					"name": "Revoke Access Token",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"client_id\": \"${client_id}\",\n    \"client_secret\": \"${client_secret}\",\n    \"token\": \"${token}\"\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://api.thanxsandbox.com/oauth/revoke",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"oauth",
								"revoke"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Locations",
			"item": [
				{
					"name": "Get Locations",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/locations",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"locations"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Features",
			"item": [
				{
					"name": "Get Features",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/features",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"features"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Cards",
			"item": [
				{
					"name": "Create Cards",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"card\": {\n      \"number\": \"1234123412341234\"\n    }\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://secure.api.thanxsandbox.com/cards",
							"protocol": "https",
							"host": [
								"secure",
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"cards"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Cards",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/cards",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"cards"
							]
						}
					},
					"response": []
				},
				{
					"name": "Delete Card",
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/cards/:id",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"cards",
								":id"
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Rewards",
			"item": [
				{
					"name": "Get Rewards",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/rewards",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"rewards"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Reward",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/rewards/:id",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"rewards",
								":id"
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Activate Reward",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/rewards/:id/activate",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"rewards",
								":id",
								"activate"
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Finalize Reward",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"user_id\": \"weoru\",\n    \"campaign_id\": \"weroui234890f\"\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://api.thanxsandbox.com/rewards/grant",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"rewards",
								"grant"
							]
						}
					},
					"response": []
				},
				{
					"name": "Grant Reward",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/rewards/grant",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"rewards",
								"grant"
							]
						}
					},
					"response": []
				},
				{
					"name": "Update Reward",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/rewards/:id",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"rewards",
								":id"
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Tags",
			"item": [
				{
					"name": "Get Tags",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/tags",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"tags"
							]
						}
					},
					"response": []
				},
				{
					"name": "Update Tags",
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"tag\": {\n      \"key\": \"allergens\",\n      \"merchant_id\": \"weroifs\",\n      \"values\": [\n        \"gluten\",\n        \"soy\",\n        \"dairy\",\n        \"honey\"\n      ]\n    }\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://api.thanxsandbox.com/tags",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"tags"
							]
						}
					},
					"response": []
				},
				{
					"name": "Delete Tag",
					"request": {
						"method": "DELETE",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/tags/:id",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"tags",
								":id"
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Communication Settings",
			"item": [
				{
					"name": "Get Comunication Settings",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://api.thanxsandbox.com/communication_settings",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"communication_settings"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Comunication Settings by Id",
					"request": {
						"method": "GET",
						"header": [],
						"url": {
							"raw": "https://api.thanxsandbox.com/communication_settings/:id",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"communication_settings",
								":id"
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Update Comunication Settings",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"communication_setting\": {\n      \"reward_earned\": {\n        \"notification\": false,\n        \"email\": false\n      },\n      \"feedback_available\": {\n        \"notification\": true\n      },\n      \"marketing_general\": {\n        \"email\": true,\n        \"sms\": false\n      }\n    }\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://api.thanxsandbox.com/communication_settings/:id",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"communication_settings",
								":id"
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Push Registrations",
			"item": [
				{
					"name": "Create Push Registrations",
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"push_registration\": {\n      \"device_type\": \"ios\",\n      \"token\": \"wourdweroi238432423425fsgd\"\n    }\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://api.thanxsandbox.com/push_registrations",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"push_registrations"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Points",
			"item": [
				{
					"name": "Get Points Experiences",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/points_experiences",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"points_experiences"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Points Experience",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/points_experiences/:id",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"points_experiences",
								":id"
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Points Balance",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/points_experiences/:id/balance",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"points_experiences",
								":id",
								"balance"
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Points Products",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/points_products",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"points_products"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Points Multiplier",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/points_multiplier",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"points_multiplier"
							]
						}
					},
					"response": []
				},
				{
					"name": "Exchange Points Products",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/points_products/:id/rewards",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"points_products",
								":id",
								"rewards"
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Tiers",
			"item": [
				{
					"name": "Get Tiers Configurations",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/tier_configurations",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"tier_configurations"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Tier Statuses",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/tier_statuses",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"tier_statuses"
							]
						}
					},
					"response": []
				},
				{
					"name": "Grant Tier Status",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"tier_status\": {\n      \"level\": \"silver\"\n    }\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://api.thanxsandbox.com/tier_statuses/:id",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"tier_statuses",
								":id"
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Feedbacks",
			"item": [
				{
					"name": "Get Feedbacks",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/feedbacks",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"feedbacks"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Feedback",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://api.thanxsandbox.com/feedbacks/:id",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"feedbacks",
								":id"
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Update Feedback",
					"request": {
						"method": "PATCH",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"feedback\": {\n      \"rating\": 10,\n      \"review\": \"Lorem ipsum dolor sit amet\"\n    }\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://api.thanxsandbox.com/feedbacks/:id",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"feedbacks",
								":id"
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Purcheases",
			"item": [
				{
					"name": "Create Purchease",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"purchase\": {\n      \"merchant_id\":  \"weoru\",\n      \"location_id\":  \"hljkfd2345\",\n      \"user_id\":      \"wgljsdwer23\",\n      \"amount\":       13.45,\n      \"purchased_at\": \"2020-09-15T00:52:10.655+00:00\",\n      \"card_id\":      null\n    }\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://api.thanxsandbox.com/purchases",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"purchases"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Purchases",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/purchases",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"purchases"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Purchase",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/purchases/:id",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"purchases",
								":id"
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				},
				{
					"name": "Update Purchase Tags",
					"request": {
						"method": "PUT",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"tag\": {\n      \"key\": \"server_satisfaction\",\n      \"values\": [\n        \"10\"\n      ]\n    }\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://api.thanxsandbox.com/purchases/:id/tags",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"purchases",
								":id",
								"tags"
							],
							"variable": [
								{
									"key": "id",
									"value": ""
								}
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Reciepts",
			"item": [
				{
					"name": "Create Receipt",
					"request": {
						"method": "POST",
						"header": [],
						"url": {
							"raw": "https://docs.thanx.com/consumer/receipts/create-receipt",
							"protocol": "https",
							"host": [
								"docs",
								"thanx",
								"com"
							],
							"path": [
								"consumer",
								"receipts",
								"create-receipt"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Reciepts",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/receipts",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"receipts"
							]
						}
					},
					"response": []
				},
				{
					"name": "Get Upload Url",
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept-Version",
								"value": "v4.0"
							},
							{
								"key": "Accept",
								"value": "application/json"
							},
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "X-ClientId",
								"value": "$client_id"
							}
						],
						"url": {
							"raw": "https://api.thanxsandbox.com/upload_url",
							"protocol": "https",
							"host": [
								"api",
								"thanxsandbox",
								"com"
							],
							"path": [
								"upload_url"
							]
						}
					},
					"response": []
				}
			]
		}
	]
}