{
	"info": {
		"_postman_id": "e637890f-aad9-4251-9dfe-266e6b9ffdb9",
		"name": "Get Transaction Data",
		"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
		"_exporter_id": "9942544"
	},
	"item": [
		{
			"name": "Login By Api Credentials",
			"request": {
				"auth": {
					"type": "noauth"
				},
				"method": "POST",
				"header": [],
				"body": {
					"mode": "formdata",
					"formdata": [
						{
							"key": "api_username",
							"value": "{{api_username}}",
							"type": "text"
						},
						{
							"key": "api_password",
							"value": "{{api_password}}",
							"type": "text"
						},
						{
							"key": "merchant_number",
							"value": "{{merchant_number}}",
							"type": "text"
						}
					]
				},
				"url": {
					"raw": "{{merchant_api_url}}/apiLogin",
					"host": [
						"{{merchant_api_url}}"
					],
					"path": [
						"apiLogin"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get Transaction By Order Ref",
			"request": {
				"auth": {
					"type": "bearer",
					"bearer": [
						{
							"key": "token",
							"value": "{{token}}",
							"type": "string"
						}
					]
				},
				"method": "POST",
				"header": [],
				"body": {
					"mode": "formdata",
					"formdata": [
						{
							"key": "order_refference_number",
							"value": "T580332021I07",
							"type": "text"
						}
					]
				},
				"url": {
					"raw": "{{merchant_api_url}}/getTransactionData",
					"host": [
						"{{merchant_api_url}}"
					],
					"path": [
						"getTransactionData"
					]
				}
			},
			"response": []
		},
		{
			"name": "Get Transaction By Store Ref",
			"request": {
				"auth": {
					"type": "bearer",
					"bearer": [
						{
							"key": "token",
							"value": "{{token}}",
							"type": "string"
						}
					]
				},
				"method": "POST",
				"header": [],
				"body": {
					"mode": "formdata",
					"formdata": [
						{
							"key": "merchant_reference",
							"value": "166606175214",
							"type": "text"
						}
					]
				},
				"url": {
					"raw": "{{merchant_api_url}}/getTransactionByMerchantReference",
					"host": [
						"{{merchant_api_url}}"
					],
					"path": [
						"getTransactionByMerchantReference"
					]
				}
			},
			"response": []
		}
	]
}