{
	"info": {
		"_postman_id": "eef7d092-d1e4-44ef-a545-69072dd6e6b1",
		"name": "Custom App",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "39093723"
	},
	"item": [
		{
			"name": "Loyalty API",
			"item": [
				{
					"name": "Get Account",
					"protocolProfileBehavior": {
						"disableBodyPruning": true
					},
					"request": {
						"method": "GET",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept",
								"value": "application/vnd.thanx-v1+json"
							},
							{
								"key": "Merchant-Key",
								"value": "$merchant_key"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"location_id\": \"${location_id}\"\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://loyalty.thanxsandbox.com/api/account",
							"protocol": "https",
							"host": [
								"loyalty",
								"thanxsandbox",
								"com"
							],
							"path": [
								"api",
								"account"
							]
						}
					},
					"response": []
				},
				{
					"name": "Create or Update basket",
					"request": {
						"method": "POST",
						"header": [
							{
								"key": "Authorization",
								"value": "Bearer $token"
							},
							{
								"key": "Content-Type",
								"value": "application/json"
							},
							{
								"key": "Accept",
								"value": "application/vnd.thanx-v1+json"
							},
							{
								"key": "Merchant-Key",
								"value": "$merchant_key"
							},
							{
								"key": "Reward-Redemption-Token",
								"value": "code1234"
							}
						],
						"body": {
							"mode": "raw",
							"raw": "{\n    \"id\": \"gwer-werwr-2134-rty\",\n    \"state\": \"billed\",\n    \"order_timestamp\": \"2019-05-08T18:02:05Z\",\n    \"location_uid\": \"LG-567fhwer\",\n    \"rewards\": [\n      \"fheTRR\"\n    ],\n    \"payments\": [\n      {\n        \"issuer\": \"visa\",\n        \"last4\": \"1234\",\n        \"amount\": 10.45,\n        \"authorized_at\": \"2019-05-07T18:02:05Z\"\n      }\n    ],\n    \"items\": [\n      {\n        \"id\": \"ng-23492\",\n        \"name\": \"Cheese Pizza\",\n        \"price\": 9.95,\n        \"categories\": [\n          \"pizza\",\n          \"vegetarian\"\n        ],\n        \"modifiers\": [\n          {\n            \"id\": \"mod-123\",\n            \"name\": \"Extra Cheese\",\n            \"price\": 1.50,\n            \"item_base_price\": 8.45\n          }\n        ]\n      }\n    ],\n    \"subtotal\": 23.45\n  }",
							"options": {
								"raw": {
									"language": "json"
								}
							}
						},
						"url": {
							"raw": "https://loyalty.thanxsandbox.com/api/baskets",
							"protocol": "https",
							"host": [
								"loyalty",
								"thanxsandbox",
								"com"
							],
							"path": [
								"api",
								"baskets"
							]
						}
					},
					"response": []
				}
			]
		},
		{
			"name": "Consumer API",
			"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": "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/92b7b0dac4",
									"protocol": "https",
									"host": [
										"api",
										"thanxsandbox",
										"com"
									],
									"path": [
										"cards",
										"92b7b0dac4"
									]
								}
							},
							"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": "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": "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": []
						}
					]
				}
			]
		}
	]
}