{"info":{"_postman_id":"fb1f22fc-bfe9-495a-849b-98af22d2be4f","name":"dmoney REST API","description":"<html><head></head><body><p>Create test cases based on the following scenarios (at least 15 or more) in a standard test case format for the dmoney REST API.</p>\n<ul>\n<li><p>Admin creates an Agent, 2 random Customers, and a Merchant.<br>  Admin email: <a href=\"https://mail.google.com/mail/?view=cm&amp;fs=1&amp;to=admin%40roadtocareer.net&amp;authuser=0\">admin@roadtocareer.net</a> / Pass: 1234</p>\n</li>\n<li><p>Deposit some money from the SYSTEM account to the Agent.<br>  System account: SYSTEM (range 10 TK to 10,000 TK)</p>\n</li>\n<li><p>Agent deposits money to one of the Customers.<br>  <em>Hint: fromAc: Agent, toAc: Customer</em></p>\n</li>\n<li><p>Check the Agent's balance.</p>\n</li>\n<li><p>Then, send money from one Customer to another Customer.<br>  <em>Hint: fromAc: Customer, toAc: Customer</em></p>\n</li>\n<li><p>Withdraw any amount from a Customer to the Agent (range 10 TK to 10,000 TK).<br>  <em>Hint: fromAc: Customer, toAc: Agent</em></p>\n</li>\n<li><p>Check the Customer's balance and transaction statement by trnxId.</p>\n</li>\n<li><p>Make a payment from the second Customer to the Merchant.<br>  <em>Hint: fromAc: Customer, toAc: Merchant</em></p>\n</li>\n<li><p>The second Customer checks both balance and transaction statement.</p>\n</li>\n<li><p>The Merchant checks his balance.</p>\n</li>\n</ul>\n<p>Create a Postman collection based on your test cases (from the above 10 scenarios). Add negative cases for each request. (15 points)</p>\n<ul>\n<li><p>You can find the API endpoints and details here:</p>\n</li>\n<li><p><strong>User API Endpoints:</strong> <a href=\"https://dmoney.roadtocareer.net/api-docs/user\">https://dmoney.roadtocareer.net/api-docs/user</a></p>\n</li>\n<li><p><strong>Transaction API Endpoints:</strong> <a href=\"https://dmoney.roadtocareer.net/api-docs/transaction\">https://dmoney.roadtocareer.net/api-docs/transaction</a></p>\n</li>\n<li><p><strong>Partner Key:</strong> X-AUTH-SECRET-KEY: ROADTOSDET</p>\n</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"33823808","collectionId":"fb1f22fc-bfe9-495a-849b-98af22d2be4f","publishedId":"2sAYdoF7j8","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-03-08T16:57:54.000Z"},"item":[{"name":"Admin activities","item":[{"name":"Login","item":[{"name":"successful login","event":[{"listen":"test","script":{"id":"b3854224-a2f2-4e7f-ad50-1935ea4c90f2","exec":["const jsonResponse = pm.response.json();\r","pm.collectionVariables.set(\"adminToken\", jsonResponse.token)\r","\r","pm.test(\"Verify admin login is succesfull\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Login successful\")\r","\r","})\r","pm.test(\"Verify admin role\", function(){\r","    pm.expect(jsonResponse.role).contains(\"Admin\")\r","\r","})\r","\r","pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"d56cb824-932a-44e0-841c-43f93b35a0ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"admin@roadtocareer.net\",\r\n    \"password\": \"1234\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/user/login","urlObject":{"path":["user","login"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"d56cb824-932a-44e0-841c-43f93b35a0ec"},{"name":"unsuccessful login with wrong password","event":[{"listen":"test","script":{"id":"b94e4889-6ce9-44e4-802a-0ca77a2cad1b","exec":["const jsonResponse = pm.response.json();\r","\r","\r","pm.test(\"Verify Unsuccesfull login using wrong creds\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Password incorrect\")\r","\r","})\r","pm.test(\"Status code is 401\", function () {\r","    pm.response.to.have.status(401);\r","});"],"type":"text/javascript","packages":{}}}],"id":"758a0618-5e96-4be1-b3b3-ae026b6d8fe5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"admin@roadtocareer.net\",\r\n    \"password\": \"4321\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/user/login","urlObject":{"path":["user","login"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"758a0618-5e96-4be1-b3b3-ae026b6d8fe5"},{"name":"unsuccessful login with wrong mail","event":[{"listen":"test","script":{"id":"b94e4889-6ce9-44e4-802a-0ca77a2cad1b","exec":["const jsonResponse = pm.response.json();\r","\r","\r","pm.test(\"Unsuccesfull login using wrong creds\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User not found\")\r","\r","})\r","pm.test(\"Status code is 404\", function () {\r","    pm.response.to.have.status(404);\r","});"],"type":"text/javascript","packages":{}}}],"id":"9d4cce32-0fdb-42c5-bf80-5280affce560","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"adminn@roadtocareer.net\",\r\n    \"password\": \"1234\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/user/login","urlObject":{"path":["user","login"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"9d4cce32-0fdb-42c5-bf80-5280affce560"},{"name":"user login with wrong mail and pass Copy","event":[{"listen":"test","script":{"id":"b94e4889-6ce9-44e4-802a-0ca77a2cad1b","exec":["const jsonResponse = pm.response.json();\r","\r","\r","pm.test(\"Unsuccesfull login using wrong creds\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User not found\")\r","\r","})\r","pm.test(\"Status code is 404\", function () {\r","    pm.response.to.have.status(404);\r","});"],"type":"text/javascript","packages":{}}}],"id":"1352278a-73dc-4f3f-b7dd-77d0d7a049e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"email\": \"adminn@roadtocareer.net\",\r\n    \"password\": \"12344\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/user/login","urlObject":{"path":["user","login"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"1352278a-73dc-4f3f-b7dd-77d0d7a049e5"}],"id":"5084ce49-9bc2-4a81-821e-100f7e14e191","_postman_id":"5084ce49-9bc2-4a81-821e-100f7e14e191","description":""},{"name":"User creation","item":[{"name":"Agent","item":[{"name":"create a new agent","event":[{"listen":"prerequest","script":{"id":"466cc4b0-71c3-45db-8a71-7d5538937c03","exec":["const lodash=require('lodash')\r","\r","const prefix=\"0120\"\r","const randomNumber=lodash.random(1000000, 9999999)\r","const agentPhoneNumber = prefix + randomNumber;\r","const agentAccount = agentPhoneNumber;\r","\r","pm.collectionVariables.set(\"agentPhoneNumber\", agentPhoneNumber)\r","pm.collectionVariables.set(\"agentAccount\", agentAccount)\r","\r","\r",""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"99a2b9f1-5ea8-4d2a-a1bb-4b2d9715a4a3","exec":["const jsonResponse = pm.response.json();\r","const agentid= jsonResponse.user.id \r","const agentEmail= jsonResponse.user.email\r","\r","pm.collectionVariables.set(\"agentid\", agentid)\r","pm.collectionVariables.set(\"agentEmail\", agentEmail)\r","\r","\r","pm.test(\"Verify new agent creation\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User created\")\r","\r","})\r","\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}}],"id":"42010e7a-1ee2-4ada-83de-d1e23b6fdf62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Annie Hauck\",\r\n  \"email\": \"Cleora66@hotmail.com\",\r\n  \"password\": \"1234\",\r\n  \"phone_number\": \"01201556586\",\r\n  \"nid\": \"456789123\",\r\n  \"role\": \"Agent\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/user/create","urlObject":{"path":["user","create"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"42010e7a-1ee2-4ada-83de-d1e23b6fdf62"},{"name":"create an existing agent","event":[{"listen":"prerequest","script":{"id":"466cc4b0-71c3-45db-8a71-7d5538937c03","exec":["const lodash=require('lodash')\r","\r","const prefix=\"0120\"\r","const randomNumber=lodash.random(1000000, 9999999)\r","const agentPhoneNumber = prefix + randomNumber;\r","const agentAccount = agentPhoneNumber;\r","\r","\r","\r","\r",""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"99a2b9f1-5ea8-4d2a-a1bb-4b2d9715a4a3","exec":["\r","const jsonResponse = pm.response.json();\r","pm.test(\"Verify new agent creation with existing email and phone number\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User already exists\")\r","\r","})\r","\r","\r","\r","pm.test(\"Status code is 208\", function () {\r","    pm.response.to.have.status(208);\r","});"],"type":"text/javascript","packages":{}}}],"id":"b5c8b7dc-cbb5-4b06-90e5-1100aba20ead","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Harvey Anderson\",\r\n  \"email\": \"Deanna_Feil@yahoo.com\",\r\n  \"password\": \"1234\",\r\n  \"phone_number\": \"01207599034\",\r\n  \"nid\": \"456789123\",\r\n  \"role\": \"Agent\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/user/create","urlObject":{"path":["user","create"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"b5c8b7dc-cbb5-4b06-90e5-1100aba20ead"}],"id":"57fa5fd6-d515-4474-a5c5-c61a88fe5fd0","_postman_id":"57fa5fd6-d515-4474-a5c5-c61a88fe5fd0","description":""},{"name":"Merchant","item":[{"name":"create a new merchant","event":[{"listen":"prerequest","script":{"id":"466cc4b0-71c3-45db-8a71-7d5538937c03","exec":["const lodash=require('lodash')\r","\r","const prefix=\"0120\"\r","const randomNumber=lodash.random(1000000, 9999999)\r","const merchantPhoneNumber = prefix + randomNumber;\r","const merchantAccount = merchantPhoneNumber;\r","\r","pm.collectionVariables.set(\"merchantPhoneNumber\", merchantPhoneNumber)\r","pm.collectionVariables.set(\"merchantAccount\",merchantAccount)\r","\r","\r",""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"99a2b9f1-5ea8-4d2a-a1bb-4b2d9715a4a3","exec":["const jsonResponse = pm.response.json();\r","const merchantid= jsonResponse.user.id \r","const merchantEmail= jsonResponse.user.email\r","\r","pm.collectionVariables.set(\"merchantid\", merchantid)\r","pm.collectionVariables.set(\"merchantEmail\", merchantEmail)\r","\r","\r","pm.test(\"Verify new agent creation\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User created\")\r","\r","})\r","\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}}],"id":"6f2c2c48-493e-4bd5-a05f-c24189e01768","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Frederick Prohaska\",\r\n  \"email\": \"Faustino_Harvey23@hotmail.com\",\r\n  \"password\": \"1234\",\r\n  \"phone_number\": \"01208318456\",\r\n  \"nid\": \"456789123\",\r\n  \"role\": \"Merchant\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/user/create","urlObject":{"path":["user","create"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"6f2c2c48-493e-4bd5-a05f-c24189e01768"},{"name":"create an existing agent","event":[{"listen":"prerequest","script":{"id":"466cc4b0-71c3-45db-8a71-7d5538937c03","exec":["const lodash=require('lodash')\r","\r","const prefix=\"0120\"\r","const randomNumber=lodash.random(1000000, 9999999)\r","const agentPhoneNumber = prefix + randomNumber;\r","\r","\r","\r","\r","\r",""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"99a2b9f1-5ea8-4d2a-a1bb-4b2d9715a4a3","exec":["\r","const jsonResponse = pm.response.json();\r","pm.test(\"Verify new merchant creation with existing email and phone number\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User already exists\")\r","\r","})\r","\r","\r","\r","pm.test(\"Status code is 208\", function () {\r","    pm.response.to.have.status(208);\r","});"],"type":"text/javascript","packages":{}}}],"id":"a8e61d42-42eb-4998-a1ea-86bfba42e877","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Florence West\",\r\n  \"email\": \"Marjory89@hotmail.com\",\r\n  \"password\": \"1234\",\r\n  \"phone_number\": \"01207599034\",\r\n  \"nid\": \"456789123\",\r\n  \"role\": \"Merchant\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/user/create","urlObject":{"path":["user","create"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"a8e61d42-42eb-4998-a1ea-86bfba42e877"}],"id":"f8f3c4e3-2b29-4f9e-abb1-f71c74b6f065","_postman_id":"f8f3c4e3-2b29-4f9e-abb1-f71c74b6f065","description":""},{"name":"Customer","item":[{"name":"create customer 1","event":[{"listen":"prerequest","script":{"id":"983e2941-6087-4719-ba83-2967391ca9b8","exec":["const lodash=require('lodash')\r","\r","const prefix = \"0120\"\r","const randomNumber = lodash.random(1000000, 9999999)\r","const customerPhoneNumber = prefix + randomNumber;\r","const customerAccNo = customerPhoneNumber\r","\r","pm.collectionVariables.set(\"customer_1_PhoneNumber\", customerPhoneNumber)\r","\r","pm.collectionVariables.set(\"customer_1_acc_Number\", customerAccNo)\r",""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"25f4e6c1-d9e5-4981-abb1-8f4ae5625067","exec":["const jsonResponse = pm.response.json();\r","const customerId = jsonResponse.user.id \r","const customerEmail = jsonResponse.user.email\r","\r","pm.collectionVariables.set(\"customer_1_Id\", customerId)\r","pm.collectionVariables.set(\"customer_1_email\", customerEmail)\r","\r","pm.test(\"Verify new customer creation\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User created\")\r","\r","})\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}}],"id":"a20dc295-8381-441a-b57a-cd6fe0986e15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Terrence Cartwright\",\r\n  \"email\": \"Monty.Homenick79@yahoo.com\",\r\n  \"password\": \"1234\",\r\n  \"phone_number\": \"01202010170\",\r\n  \"nid\": \"456789123\",\r\n  \"role\": \"Customer\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/user/create","urlObject":{"path":["user","create"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"a20dc295-8381-441a-b57a-cd6fe0986e15"},{"name":"create customer 2","event":[{"listen":"prerequest","script":{"id":"983e2941-6087-4719-ba83-2967391ca9b8","exec":["const lodash=require('lodash')\r","\r","const prefix = \"0120\"\r","const randomNumber = lodash.random(1000000, 9999999)\r","const customerPhoneNumber = prefix + randomNumber;\r","const customerAccNo = customerPhoneNumber\r","\r","pm.collectionVariables.set(\"customer_2_PhoneNumber\", customerPhoneNumber)\r","\r","pm.collectionVariables.set(\"customer_2_acc_Number\", customerAccNo)\r",""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"25f4e6c1-d9e5-4981-abb1-8f4ae5625067","exec":["const jsonResponse = pm.response.json();\r","const customerId = jsonResponse.user.id \r","const customerEmail = jsonResponse.user.email\r","\r","pm.collectionVariables.set(\"customer_2_Id\", customerId)\r","pm.collectionVariables.set(\"customer_2_email\", customerEmail)\r","\r","pm.test(\"Verify new customer creation\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User created\")\r","\r","})\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}}],"id":"c5e9963d-5fb2-44c3-ade2-5a39089ac8f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Rochelle Nicolas\",\r\n  \"email\": \"Jada.Hoeger91@gmail.com\",\r\n  \"password\": \"1234\",\r\n  \"phone_number\": \"01206344565\",\r\n  \"nid\": \"456789123\",\r\n  \"role\": \"Customer\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/user/create","urlObject":{"path":["user","create"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"c5e9963d-5fb2-44c3-ade2-5a39089ac8f4"},{"name":"create an existing customer","event":[{"listen":"prerequest","script":{"id":"983e2941-6087-4719-ba83-2967391ca9b8","exec":["const lodash=require('lodash')\r","\r","const prefix = \"0120\"\r","const randomNumber = lodash.random(1000000, 9999999)\r","const customerPhoneNumber = prefix + randomNumber;\r",""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"25f4e6c1-d9e5-4981-abb1-8f4ae5625067","exec":["const jsonResponse = pm.response.json();\r","\r","\r","\r","pm.test(\"Verify new customer creation\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User already exists\")\r","\r","})\r","pm.test(\"Status code is 208\", function () {\r","    pm.response.to.have.status(208);\r","});"],"type":"text/javascript","packages":{}}}],"id":"9f533383-4a54-4224-9f34-342cb77efe27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Kayla Ratke II\",\r\n  \"email\": \"John3@hotmail.com\",\r\n  \"password\": \"1234\",\r\n  \"phone_number\": \"01202469244\",\r\n  \"nid\": \"456789123\",\r\n  \"role\": \"Customer\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/user/create","urlObject":{"path":["user","create"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"9f533383-4a54-4224-9f34-342cb77efe27"}],"id":"c49ae595-688b-49fb-aeaa-e59b9b0838a4","_postman_id":"c49ae595-688b-49fb-aeaa-e59b9b0838a4","description":""}],"id":"76519fb1-2748-4501-96ad-f455489d1edf","_postman_id":"76519fb1-2748-4501-96ad-f455489d1edf","description":""},{"name":"Deposit money from system to agent","item":[{"name":"Upper bound","item":[{"name":"Agent","item":[{"name":"create a new agent","event":[{"listen":"prerequest","script":{"id":"466cc4b0-71c3-45db-8a71-7d5538937c03","exec":["const lodash=require('lodash')\r","\r","const prefix=\"0120\"\r","const randomNumber=lodash.random(1000000, 9999999)\r","const agentPhoneNumber = prefix + randomNumber;\r","const agentAccount = agentPhoneNumber;\r","\r","pm.collectionVariables.set(\"agentPhoneNumber\", agentPhoneNumber)\r","pm.collectionVariables.set(\"agentAccount\", agentAccount)\r","\r","\r",""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"99a2b9f1-5ea8-4d2a-a1bb-4b2d9715a4a3","exec":["const jsonResponse = pm.response.json();\r","const agentid= jsonResponse.user.id \r","const agentEmail= jsonResponse.user.email\r","\r","pm.collectionVariables.set(\"agentid\", agentid)\r","pm.collectionVariables.set(\"agentEmail\", agentEmail)\r","\r","\r","pm.test(\"Verify new agent creation\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User created\")\r","\r","})\r","\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}}],"id":"4f1649df-1dab-4802-b32a-95b3d0e508b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Arnold Strosin\",\r\n  \"email\": \"Salvador78@hotmail.com\",\r\n  \"password\": \"1234\",\r\n  \"phone_number\": \"01201556586\",\r\n  \"nid\": \"456789123\",\r\n  \"role\": \"Agent\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/user/create","urlObject":{"path":["user","create"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f1649df-1dab-4802-b32a-95b3d0e508b1"}],"id":"daedeae9-6c41-4585-a4fc-28a9fc11c6db","_postman_id":"daedeae9-6c41-4585-a4fc-28a9fc11c6db","description":""},{"name":"over upper bound amount","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify deposit money from system to agent\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Limit exceeded. You can deposit a maximum of 10000.00 tk to this customer.\")\r","\r","})\r","pm.test(\"Status code is 208\", function () {\r","    pm.response.to.have.status(208);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"c104cefe-a123-4448-a515-8cd991628794","exec":[""],"type":"text/javascript","packages":{}}}],"id":"5417a52c-e70f-4348-bef5-838736ec0619","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"SYSTEM \",\r\n  \"to_account\": \"01201556586\",\r\n  \"amount\": 10001\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/deposit","urlObject":{"path":["transaction","deposit"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"5417a52c-e70f-4348-bef5-838736ec0619"},{"name":"upper bound amount","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify deposit money from system to agent\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Deposit successful\")\r","\r","})\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"c104cefe-a123-4448-a515-8cd991628794","exec":[""],"type":"text/javascript","packages":{}}}],"id":"f3a7089a-164a-4f4e-8bad-2c450ffca5a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"SYSTEM \",\r\n  \"to_account\": \"01201556586\",\r\n  \"amount\": 10000\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/deposit","urlObject":{"path":["transaction","deposit"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"f3a7089a-164a-4f4e-8bad-2c450ffca5a3"}],"id":"74e4d257-207e-4f8f-a382-17c8beac0751","_postman_id":"74e4d257-207e-4f8f-a382-17c8beac0751","description":""},{"name":"Between lower bound and upper bound","item":[{"name":"Agent","item":[{"name":"create a new agent","event":[{"listen":"prerequest","script":{"id":"466cc4b0-71c3-45db-8a71-7d5538937c03","exec":["const lodash=require('lodash')\r","\r","const prefix=\"0120\"\r","const randomNumber=lodash.random(1000000, 9999999)\r","const agentPhoneNumber = prefix + randomNumber;\r","const agentAccount = agentPhoneNumber;\r","\r","pm.collectionVariables.set(\"agentPhoneNumber\", agentPhoneNumber)\r","pm.collectionVariables.set(\"agentAccount\", agentAccount)\r","\r","\r",""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"99a2b9f1-5ea8-4d2a-a1bb-4b2d9715a4a3","exec":["const jsonResponse = pm.response.json();\r","const agentid= jsonResponse.user.id \r","const agentEmail= jsonResponse.user.email\r","\r","pm.collectionVariables.set(\"agentid\", agentid)\r","pm.collectionVariables.set(\"agentEmail\", agentEmail)\r","\r","\r","pm.test(\"Verify new agent creation\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User created\")\r","\r","})\r","\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}}],"id":"7b17cafb-4f94-4cc0-bfed-f09503f576ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Penny Schuster\",\r\n  \"email\": \"Houston24@gmail.com\",\r\n  \"password\": \"1234\",\r\n  \"phone_number\": \"01201556586\",\r\n  \"nid\": \"456789123\",\r\n  \"role\": \"Agent\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/user/create","urlObject":{"path":["user","create"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"7b17cafb-4f94-4cc0-bfed-f09503f576ee"}],"id":"f5dfe6f8-a75d-4ac0-ab5e-7f6ed54a1c2c","_postman_id":"f5dfe6f8-a75d-4ac0-ab5e-7f6ed54a1c2c","description":""},{"name":"lower bound amount","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify deposit money from system to agent\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Deposit successful\")\r","\r","})\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"c104cefe-a123-4448-a515-8cd991628794","exec":[""],"type":"text/javascript","packages":{}}}],"id":"62b3e2cb-9918-4e2d-89ee-5eeff5503715","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"SYSTEM \",\r\n  \"to_account\": \"01201556586\",\r\n  \"amount\": 10\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/deposit","urlObject":{"path":["transaction","deposit"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"62b3e2cb-9918-4e2d-89ee-5eeff5503715"},{"name":"below lower bound amount","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify deposit money from system to agent\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Minimum deposit amount is 10 tk and maximum deposit amount is 10000 tk\")\r","\r","})\r","pm.test(\"Status code is 208\", function () {\r","    pm.response.to.have.status(208);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"c104cefe-a123-4448-a515-8cd991628794","exec":[""],"type":"text/javascript","packages":{}}}],"id":"2602a367-05ca-4079-9775-765c5aeb6646","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"SYSTEM \",\r\n  \"to_account\": \"01201556586\",\r\n  \"amount\": 9\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/deposit","urlObject":{"path":["transaction","deposit"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"2602a367-05ca-4079-9775-765c5aeb6646"},{"name":"successful transaction from system to agent","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify deposit money from system to agent\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Deposit successful\")\r","\r","})\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"104dfd88-f968-49f0-8866-408a1647f9eb","exec":[""],"type":"text/javascript","packages":{}}}],"id":"6493f4a1-4787-403a-8b74-387fdfda44ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"SYSTEM \",\r\n  \"to_account\": \"01201556586\",\r\n  \"amount\": 5500\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/deposit","urlObject":{"path":["transaction","deposit"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"6493f4a1-4787-403a-8b74-387fdfda44ba"},{"name":"negative amount","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify deposit money from system to agent\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Minimum deposit amount is 10 tk and maximum deposit amount is 10000 tk\")\r","\r","})\r","pm.test(\"Status code is 208\", function () {\r","    pm.response.to.have.status(208);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"104dfd88-f968-49f0-8866-408a1647f9eb","exec":[""],"type":"text/javascript","packages":{}}}],"id":"c807ef80-de2d-49d8-9d5d-d3ad93046f15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"SYSTEM \",\r\n  \"to_account\": \"01201556586\",\r\n  \"amount\": -2500\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/deposit","urlObject":{"path":["transaction","deposit"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"c807ef80-de2d-49d8-9d5d-d3ad93046f15"},{"name":"system to invalid agent","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify deposit money from system to agent\", function(){\r","\r","    pm.expect(jsonResponse.message).contains(\"To Account does not exist\")\r","\r","})\r","pm.test(\"Status code is 404\", function () {\r","    pm.response.to.have.status(404);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"104dfd88-f968-49f0-8866-408a1647f9eb","exec":[""],"type":"text/javascript","packages":{}}}],"id":"0ab35c75-3aa9-4180-b646-c76f4e95a1c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"SYSTEM \",\r\n  \"to_account\": \"01201144778\",\r\n  \"amount\": 2500\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/deposit","urlObject":{"path":["transaction","deposit"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ab35c75-3aa9-4180-b646-c76f4e95a1c5"}],"id":"1526737d-3ae3-4e5a-92ab-d736c4099385","_postman_id":"1526737d-3ae3-4e5a-92ab-d736c4099385","description":""}],"id":"a23a9b84-4eb8-451f-a4d3-a45cd12ab802","_postman_id":"a23a9b84-4eb8-451f-a4d3-a45cd12ab802","description":""}],"id":"f631a8c0-117d-4c9a-8b87-58bc2e82a049","_postman_id":"f631a8c0-117d-4c9a-8b87-58bc2e82a049","description":""},{"name":"Agent activities","item":[{"name":"Deposit to customer","item":[{"name":"Agent","item":[{"name":"create a new agent","event":[{"listen":"prerequest","script":{"id":"466cc4b0-71c3-45db-8a71-7d5538937c03","exec":["const lodash=require('lodash')\r","\r","const prefix=\"0120\"\r","const randomNumber=lodash.random(1000000, 9999999)\r","const agentPhoneNumber = prefix + randomNumber;\r","const agentAccount = agentPhoneNumber;\r","\r","pm.collectionVariables.set(\"agentPhoneNumber\", agentPhoneNumber)\r","pm.collectionVariables.set(\"agentAccount\", agentAccount)\r","\r","\r",""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"99a2b9f1-5ea8-4d2a-a1bb-4b2d9715a4a3","exec":["const jsonResponse = pm.response.json();\r","const agentid= jsonResponse.user.id \r","const agentEmail= jsonResponse.user.email\r","\r","pm.collectionVariables.set(\"agentid\", agentid)\r","pm.collectionVariables.set(\"agentEmail\", agentEmail)\r","\r","\r","pm.test(\"Verify new agent creation\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User created\")\r","\r","})\r","\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}}],"id":"95ac4e19-25a1-48e7-b349-edcd31e3e93d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Marty McCullough\",\r\n  \"email\": \"Athena_Treutel86@hotmail.com\",\r\n  \"password\": \"1234\",\r\n  \"phone_number\": \"01201556586\",\r\n  \"nid\": \"456789123\",\r\n  \"role\": \"Agent\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/user/create","urlObject":{"path":["user","create"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"95ac4e19-25a1-48e7-b349-edcd31e3e93d"},{"name":"upper bound amount Copy","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify deposit money from system to agent\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Deposit successful\")\r","\r","})\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"c104cefe-a123-4448-a515-8cd991628794","exec":[""],"type":"text/javascript","packages":{}}}],"id":"eb715d6c-b4d0-432e-b3cf-7ebcd37559ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"SYSTEM \",\r\n  \"to_account\": \"01201556586\",\r\n  \"amount\": 10000\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/deposit","urlObject":{"path":["transaction","deposit"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"eb715d6c-b4d0-432e-b3cf-7ebcd37559ce"},{"name":"having maximum amount","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify deposit money from agent to customer\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Deposit successful\")\r","\r","})\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"1ae2a3e6-160f-4eb5-8dd5-2ccfddd44de9","exec":[""],"type":"text/javascript","packages":{}}}],"id":"6def9b6f-177b-460a-8b11-7d87adbb1ff3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01201556586\",\r\n  \"to_account\": \"01202010170\",\r\n  \"amount\": 10000\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/deposit","urlObject":{"path":["transaction","deposit"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"6def9b6f-177b-460a-8b11-7d87adbb1ff3"},{"name":"to valid customer with insufficient balance","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify deposit money from agent to customer\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Insufficient balance\")\r","\r","})\r","pm.test(\"Status code is 208\", function () {\r","    pm.response.to.have.status(208);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"b642ff24-ddc3-4682-8bb6-b09a4bdfcba7","exec":[""],"type":"text/javascript","packages":{}}}],"id":"3a547d5c-cde6-485d-9399-cb53061d70d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01201556586\",\r\n  \"to_account\": \"01202010170\",\r\n  \"amount\": 7000\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/deposit","urlObject":{"path":["transaction","deposit"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"3a547d5c-cde6-485d-9399-cb53061d70d6"},{"name":"create a new agent","event":[{"listen":"prerequest","script":{"id":"466cc4b0-71c3-45db-8a71-7d5538937c03","exec":["const lodash=require('lodash')\r","\r","const prefix=\"0120\"\r","const randomNumber=lodash.random(1000000, 9999999)\r","const agentPhoneNumber = prefix + randomNumber;\r","const agentAccount = agentPhoneNumber;\r","\r","pm.collectionVariables.set(\"agentPhoneNumber\", agentPhoneNumber)\r","pm.collectionVariables.set(\"agentAccount\", agentAccount)\r","\r","\r",""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"99a2b9f1-5ea8-4d2a-a1bb-4b2d9715a4a3","exec":["const jsonResponse = pm.response.json();\r","const agentid= jsonResponse.user.id \r","const agentEmail= jsonResponse.user.email\r","\r","pm.collectionVariables.set(\"agentid\", agentid)\r","pm.collectionVariables.set(\"agentEmail\", agentEmail)\r","\r","\r","pm.test(\"Verify new agent creation\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User created\")\r","\r","})\r","\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}}],"id":"b5abd2f4-6a6b-43da-a320-be39277bda6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Kellie Boyer\",\r\n  \"email\": \"Ari.Oberbrunner57@yahoo.com\",\r\n  \"password\": \"1234\",\r\n  \"phone_number\": \"01201556586\",\r\n  \"nid\": \"456789123\",\r\n  \"role\": \"Agent\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/user/create","urlObject":{"path":["user","create"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"b5abd2f4-6a6b-43da-a320-be39277bda6c"},{"name":"create customer 1","event":[{"listen":"prerequest","script":{"id":"983e2941-6087-4719-ba83-2967391ca9b8","exec":["const lodash=require('lodash')\r","\r","const prefix = \"0120\"\r","const randomNumber = lodash.random(1000000, 9999999)\r","const customerPhoneNumber = prefix + randomNumber;\r","const customerAccNo = customerPhoneNumber\r","\r","pm.collectionVariables.set(\"customer_1_PhoneNumber\", customerPhoneNumber)\r","\r","pm.collectionVariables.set(\"customer_1_acc_Number\", customerAccNo)\r",""],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"25f4e6c1-d9e5-4981-abb1-8f4ae5625067","exec":["const jsonResponse = pm.response.json();\r","const customerId = jsonResponse.user.id \r","const customerEmail = jsonResponse.user.email\r","\r","pm.collectionVariables.set(\"customer_1_Id\", customerId)\r","pm.collectionVariables.set(\"customer_1_email\", customerEmail)\r","\r","pm.test(\"Verify new customer creation\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User created\")\r","\r","})\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}}],"id":"ad5297f1-42f6-42f2-9ab3-41516ce75a39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Nick Kulas PhD\",\r\n  \"email\": \"Rosalia_Mayer98@hotmail.com\",\r\n  \"password\": \"1234\",\r\n  \"phone_number\": \"01202010170\",\r\n  \"nid\": \"456789123\",\r\n  \"role\": \"Customer\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/user/create","urlObject":{"path":["user","create"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"ad5297f1-42f6-42f2-9ab3-41516ce75a39"},{"name":"system to agent","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify deposit money from system to agent\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Deposit successful\")\r","\r","})\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"c104cefe-a123-4448-a515-8cd991628794","exec":[""],"type":"text/javascript","packages":{}}}],"id":"e96079c9-7fb1-4aa5-9c04-5def34cf37ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"SYSTEM \",\r\n  \"to_account\": \"01201556586\",\r\n  \"amount\": 6500\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/deposit","urlObject":{"path":["transaction","deposit"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"e96079c9-7fb1-4aa5-9c04-5def34cf37ef"},{"name":"to valid customer","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify deposit money from agent to customer\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Deposit successful\")\r","\r","})\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"b720e0a5-109e-4697-ad5b-822950489933","exec":[""],"type":"text/javascript","packages":{}}}],"id":"6bb41408-7cf6-46f8-b00f-5dacd568bf58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01201556586\",\r\n  \"to_account\": \"01202010170\",\r\n  \"amount\": 1700\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/deposit","urlObject":{"path":["transaction","deposit"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"6bb41408-7cf6-46f8-b00f-5dacd568bf58"},{"name":"to valid customer zero tk","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify deposit money from agent to customer\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Minimum deposit amount is 10 tk and maximum deposit amount is 10000 tk\")\r","\r","})\r","pm.test(\"Status code is 208\", function () {\r","    pm.response.to.have.status(208);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"0d15d920-04fe-494c-acc8-976e2ee50551","exec":[""],"type":"text/javascript","packages":{}}}],"id":"057e19f1-2e7d-412a-8852-c234a5bde019","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01201556586\",\r\n  \"to_account\": \"01202010170\",\r\n  \"amount\": 0\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/deposit","urlObject":{"path":["transaction","deposit"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"057e19f1-2e7d-412a-8852-c234a5bde019"},{"name":"negative amount","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify deposit money from agent to customer\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Minimum deposit amount is 10 tk and maximum deposit amount is 10000 tk\")\r","\r","})\r","pm.test(\"Status code is 208\", function () {\r","    pm.response.to.have.status(208);\r","});"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"0d15d920-04fe-494c-acc8-976e2ee50551","exec":[""],"type":"text/javascript","packages":{}}}],"id":"77f4f370-5f79-47b4-aec4-218715553144","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01201556586\",\r\n  \"to_account\": \"01202010170\",\r\n  \"amount\": -35000\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/deposit","urlObject":{"path":["transaction","deposit"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"77f4f370-5f79-47b4-aec4-218715553144"},{"name":"to invalid customer","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify deposit money from agent to customer\", function(){\r","    pm.expect(jsonResponse.message).contains(\"To Account does not exist\")\r","\r","})\r","pm.test(\"Status code is 404\", function () {\r","    pm.response.to.have.status(404);\r","});"],"type":"text/javascript","packages":{}}}],"id":"f2dc0f60-bae7-4e48-aa3e-4474b99baa46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01201556586\",\r\n  \"to_account\": \"{01893848652}\",\r\n  \"amount\": 2000\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/deposit","urlObject":{"path":["transaction","deposit"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"f2dc0f60-bae7-4e48-aa3e-4474b99baa46"}],"id":"50485e04-477f-42ee-8ac3-26ab2dc1e037","_postman_id":"50485e04-477f-42ee-8ac3-26ab2dc1e037","description":""}],"id":"ef9359eb-191b-43e8-8642-426662424c98","_postman_id":"ef9359eb-191b-43e8-8642-426662424c98","description":""},{"name":"Check balance","item":[{"name":"Agent balance check","event":[{"listen":"test","script":{"id":"5b7f4d92-cce3-41b1-a1f9-0b8b21ed823a","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify agent balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User balance\")\r","\r","})\r","pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"18c098c4-1684-4eac-afdf-ebd5e71e2897","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"url":"http://dmoney.roadtocareer.net/transaction/balance/01201556586","urlObject":{"path":["transaction","balance","01201556586"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"18c098c4-1684-4eac-afdf-ebd5e71e2897"},{"name":"balance check with invalid account no","event":[{"listen":"test","script":{"id":"5b7f4d92-cce3-41b1-a1f9-0b8b21ed823a","exec":["const jsonResponse = pm.response.json();\r","pm.test(\"Verify agent balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User not found\")\r","\r","})\r","\r","pm.test(\"Status code is 404\", function () {\r","    pm.response.to.have.status(404);\r","});"],"type":"text/javascript","packages":{}}}],"id":"d4f48493-700f-4490-b430-77a788bc1a06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"url":"http://dmoney.roadtocareer.net/transaction/balance/01202020201","urlObject":{"path":["transaction","balance","01202020201"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"d4f48493-700f-4490-b430-77a788bc1a06"}],"id":"8e2ee5a4-bbdc-47e6-944d-63531801e140","_postman_id":"8e2ee5a4-bbdc-47e6-944d-63531801e140","description":""}],"id":"39c01d08-14ca-42e2-9a26-3fc2ec92abbb","_postman_id":"39c01d08-14ca-42e2-9a26-3fc2ec92abbb","description":""},{"name":"Customer 1 activities","item":[{"name":"send money to customer 2","item":[{"name":"to valid customer","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse = pm.response.json();\r","pm.test(\"Verify agent balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Send money successful\")\r","\r","})\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}}],"id":"f2c5145b-4df2-4f1d-91e0-243018ef5978","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01202010170\",\r\n  \"to_account\": \"01206344565\",\r\n  \"amount\": 1500\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/sendmoney","urlObject":{"path":["transaction","sendmoney"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"f2c5145b-4df2-4f1d-91e0-243018ef5978"},{"name":"to valid customer with insufficient balance","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify agent balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Insufficient balance\")\r","\r","})\r","\r","pm.test(\"Status code is 208\", function () {\r","    pm.response.to.have.status(208);\r","});"],"type":"text/javascript","packages":{}}}],"id":"683a3858-ee2c-44d4-b805-7c7db7a31a69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01202010170\",\r\n  \"to_account\": \"01206344565\",\r\n  \"amount\": 9900\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/sendmoney","urlObject":{"path":["transaction","sendmoney"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"683a3858-ee2c-44d4-b805-7c7db7a31a69"},{"name":"zero amount","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify transaction\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Minimum amount is 10 tk\")\r","\r","})\r","\r","pm.test(\"Status code is 208\", function () {\r","    pm.response.to.have.status(208);\r","});"],"type":"text/javascript","packages":{}}}],"id":"e2f620be-a3fa-4acc-8f6f-c020e6739160","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01202010170\",\r\n  \"to_account\": \"01206344565\",\r\n  \"amount\": 0\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/sendmoney","urlObject":{"path":["transaction","sendmoney"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"e2f620be-a3fa-4acc-8f6f-c020e6739160"},{"name":"to invalid customer","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse = pm.response.json();\r","pm.test(\"Verify agent balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"To Account does not exist\")\r","\r","})\r","pm.test(\"Status code is 404\", function () {\r","    pm.response.to.have.status(404);\r","});"],"type":"text/javascript","packages":{}}}],"id":"914118af-3f94-491f-b9b2-09fca81a5018","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01202010170\",\r\n  \"to_account\": \"01200230303\",\r\n  \"amount\": 150\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/sendmoney","urlObject":{"path":["transaction","sendmoney"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"914118af-3f94-491f-b9b2-09fca81a5018"}],"id":"3a1dbfca-cec8-4dde-915a-e8b6e161ce86","_postman_id":"3a1dbfca-cec8-4dde-915a-e8b6e161ce86","description":""},{"name":"Withdraw amount from agent","item":[{"name":"from valid agent","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse = pm.response.json();\r","const customer1_trnxId=jsonResponse.trnxId \r","pm.collectionVariables.set(\"customer1_trnxId\", customer1_trnxId)\r","\r","pm.test(\"Verify withdraw\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Withdraw successful\")\r","\r","})\r","\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}}],"id":"d00c1e69-3bcc-4e7e-abe2-68bd6e5f6908","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01202010170\",\r\n  \"to_account\": \"01201556586\",\r\n  \"amount\": 15\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/withdraw","urlObject":{"path":["transaction","withdraw"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"d00c1e69-3bcc-4e7e-abe2-68bd6e5f6908"},{"name":"from valid agent but insufficient amount","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse = pm.response.json();\r","\r","\r","pm.test(\"Verify withdraw\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Insufficient balance\")\r","\r","})\r","\r","pm.test(\"Status code is 208\", function () {\r","    pm.response.to.have.status(208);\r","});"],"type":"text/javascript","packages":{}}}],"id":"3b854c04-829f-43d7-b026-c662b419a780","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01202010170\",\r\n  \"to_account\": \"01201556586\",\r\n  \"amount\": 9990\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/withdraw","urlObject":{"path":["transaction","withdraw"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"3b854c04-829f-43d7-b026-c662b419a780"},{"name":"from valid agent but invalid amount","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse = pm.response.json();\r","\r","pm.test(\"Verify withdraw\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Minimum withdraw amount is 10 tk\")\r","\r","})\r","pm.test(\"Status code is 208\", function () {\r","    pm.response.to.have.status(208);\r","});"],"type":"text/javascript","packages":{}}}],"id":"fe311482-09c3-4ac6-b13b-2cbacdbdf4ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01202010170\",\r\n  \"to_account\": \"01201556586\",\r\n  \"amount\": 0\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/withdraw","urlObject":{"path":["transaction","withdraw"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe311482-09c3-4ac6-b13b-2cbacdbdf4ff"},{"name":"from  invalid agent","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse = pm.response.json();\r","\r","\r","pm.test(\"Verify withdraw\", function(){\r","    pm.expect(jsonResponse.message).contains(\"To Account does not exist\")\r","\r","})\r","\r","pm.test(\"Status code is 404\", function () {\r","    pm.response.to.have.status(404);\r","});"],"type":"text/javascript","packages":{}}}],"id":"75e6be15-1d05-4dd2-84dd-54b2ca764746","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01202010170\",\r\n  \"to_account\": \"01200245301\",\r\n  \"amount\": 15\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/withdraw","urlObject":{"path":["transaction","withdraw"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"75e6be15-1d05-4dd2-84dd-54b2ca764746"}],"id":"fbd1db9e-e22b-44a2-9dcc-fd8ac7b5d87d","_postman_id":"fbd1db9e-e22b-44a2-9dcc-fd8ac7b5d87d","description":""},{"name":"Balance check","item":[{"name":"check balance with valid account no","event":[{"listen":"test","script":{"id":"5b7f4d92-cce3-41b1-a1f9-0b8b21ed823a","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify customer_1 balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User balance\")\r","\r","})\r","pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"c8a39618-9eb3-4a5a-801f-864a1038182a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"url":"http://dmoney.roadtocareer.net/transaction/balance/01202010170","urlObject":{"path":["transaction","balance","01202010170"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"c8a39618-9eb3-4a5a-801f-864a1038182a"},{"name":"check balance with invalid account no","event":[{"listen":"test","script":{"id":"5b7f4d92-cce3-41b1-a1f9-0b8b21ed823a","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify customer_1 balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User not found\")\r","\r","})\r","pm.test(\"Status code is 404\", function () {\r","    pm.response.to.have.status(404);\r","});"],"type":"text/javascript","packages":{}}}],"id":"d35112df-3daf-4341-aba6-68fcc9f7cb6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"url":"http://dmoney.roadtocareer.net/transaction/balance/01200023333","urlObject":{"path":["transaction","balance","01200023333"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"d35112df-3daf-4341-aba6-68fcc9f7cb6e"}],"id":"634f4589-05af-42f1-8511-79e23f88054f","_postman_id":"634f4589-05af-42f1-8511-79e23f88054f","description":""},{"name":"Statement check","item":[{"name":"check statement with valid account no","event":[{"listen":"test","script":{"id":"5b7f4d92-cce3-41b1-a1f9-0b8b21ed823a","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify customer_1 balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Transaction list\")\r","\r","})\r","pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"8f1b8e1d-8c87-47f4-89a4-2876b26081d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"url":"http://dmoney.roadtocareer.net/transaction/statement/01202010170","urlObject":{"path":["transaction","statement","01202010170"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"8f1b8e1d-8c87-47f4-89a4-2876b26081d6"},{"name":"check statement with invalid account no","event":[{"listen":"test","script":{"id":"5b7f4d92-cce3-41b1-a1f9-0b8b21ed823a","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify customer_1 balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User not found\")\r","\r","})\r","pm.test(\"Status code is 404\", function () {\r","    pm.response.to.have.status(404);\r","});"],"type":"text/javascript","packages":{}}}],"id":"ac962ebd-ddd6-4977-97fb-2476c9d5b59d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"url":"http://dmoney.roadtocareer.net/transaction/statement/01200023333","urlObject":{"path":["transaction","statement","01200023333"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac962ebd-ddd6-4977-97fb-2476c9d5b59d"}],"id":"abaa3cb8-b8ae-4c00-8b1b-9f235caaa118","_postman_id":"abaa3cb8-b8ae-4c00-8b1b-9f235caaa118","description":""},{"name":"transaction","item":[{"name":"check transaction with valid trnxID","event":[{"listen":"test","script":{"id":"5b7f4d92-cce3-41b1-a1f9-0b8b21ed823a","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify customer_1 balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Transaction list\")\r","\r","})\r","pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"2a49d89d-dab9-4f32-90c3-63b011dc460a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"url":"http://dmoney.roadtocareer.net/transaction/search/TXN229605","urlObject":{"path":["transaction","search","TXN229605"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a49d89d-dab9-4f32-90c3-63b011dc460a"},{"name":"check transaction with invalid trnxID","event":[{"listen":"test","script":{"id":"5b7f4d92-cce3-41b1-a1f9-0b8b21ed823a","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify customer_1 balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Transaction not found\")\r","\r","})\r","pm.test(\"Status code is 404\", function () {\r","    pm.response.to.have.status(404);\r","});"],"type":"text/javascript","packages":{}}}],"id":"5128bbac-38eb-4535-ba50-6e0b0fd1b300","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"url":"http://dmoney.roadtocareer.net/transaction/search/TXN0000","urlObject":{"path":["transaction","search","TXN0000"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"5128bbac-38eb-4535-ba50-6e0b0fd1b300"}],"id":"f523f6fe-8ae8-439d-b774-9aa2d8900b31","_postman_id":"f523f6fe-8ae8-439d-b774-9aa2d8900b31","description":""}],"id":"ebdcfd76-3bb8-41ea-9c8a-5d99ab8b9d96","_postman_id":"ebdcfd76-3bb8-41ea-9c8a-5d99ab8b9d96","description":""},{"name":"Customer 2 activities","item":[{"name":"payment to merchant","item":[{"name":"to invalid merchant","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse = pm.response.json();\r","pm.test(\"Verify customer balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"To Account does not exist\")\r","\r","})\r","pm.test(\"Status code is 404\", function () {\r","    pm.response.to.have.status(404);\r","});"],"type":"text/javascript","packages":{}}}],"id":"cf76435c-86d2-4e9b-bea0-c518f8858669","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01206344565\",\r\n  \"to_account\": \" 01201111111\",\r\n  \"amount\": 150\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/payment","urlObject":{"protocol":"http","path":["transaction","payment"],"host":["dmoney","roadtocareer","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"cf76435c-86d2-4e9b-bea0-c518f8858669"},{"name":"to valid merchant","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse = pm.response.json();\r","pm.test(\"Verify customer balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Payment successful\")\r","\r","})\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{}}}],"id":"4a57e019-9b7a-4f7d-9d6c-c79b1db855be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"\r\n{\r\n  \"from_account\": \"01206344565\",\r\n  \"to_account\": \"01208318456\",\r\n  \"amount\": 100\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/payment","urlObject":{"protocol":"http","path":["transaction","payment"],"host":["dmoney","roadtocareer","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"4a57e019-9b7a-4f7d-9d6c-c79b1db855be"},{"name":"to valid customer with insufficient balance","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify agent balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Insufficient balance\")\r","\r","})\r","\r","pm.test(\"Status code is 208\", function () {\r","    pm.response.to.have.status(208);\r","});"],"type":"text/javascript","packages":{}}}],"id":"ea3fb0f0-f346-4fab-830c-e79930fa5204","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01206344565\",\r\n  \"to_account\": \"01208318456\",\r\n  \"amount\": 8700\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/payment","urlObject":{"path":["transaction","payment"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"ea3fb0f0-f346-4fab-830c-e79930fa5204"},{"name":"zero amount","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify transaction\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Minimum Payment amount is 10 tk\")\r","\r","})\r","\r","pm.test(\"Status code is 208\", function () {\r","    pm.response.to.have.status(208);\r","});\r",""],"type":"text/javascript","packages":{}}}],"id":"599b23a2-d566-472b-b0cc-6251c2b8af47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01206344565\",\r\n  \"to_account\": \"01208318456\",\r\n  \"amount\": 0\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/payment","urlObject":{"path":["transaction","payment"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"599b23a2-d566-472b-b0cc-6251c2b8af47"},{"name":"to invalid customer","event":[{"listen":"test","script":{"id":"48a50294-8d87-43d1-b3d4-512df022a125","exec":["const jsonResponse = pm.response.json();\r","pm.test(\"Verify agent balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"To Account does not exist\")\r","\r","})\r","pm.test(\"Status code is 404\", function () {\r","    pm.response.to.have.status(404);\r","});"],"type":"text/javascript","packages":{}}}],"id":"711e47af-029e-46c0-84ca-baac2e9089b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01206344565\",\r\n  \"to_account\": \"01200230303\",\r\n  \"amount\": 150\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"http://dmoney.roadtocareer.net/transaction/payment","urlObject":{"path":["transaction","payment"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"711e47af-029e-46c0-84ca-baac2e9089b1"}],"id":"1e22f23b-caac-4e9b-b35b-b39347bb9775","_postman_id":"1e22f23b-caac-4e9b-b35b-b39347bb9775","description":""},{"name":"Balance check","item":[{"name":"check balance with valid account no","event":[{"listen":"test","script":{"id":"5b7f4d92-cce3-41b1-a1f9-0b8b21ed823a","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify customer_1 balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User balance\")\r","\r","})\r","pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"62996059-9daf-4ba8-a449-b5774d45790d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"url":"http://dmoney.roadtocareer.net/transaction/balance/01206344565","urlObject":{"path":["transaction","balance","01206344565"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"62996059-9daf-4ba8-a449-b5774d45790d"},{"name":"check balance with invalid account no","event":[{"listen":"test","script":{"id":"5b7f4d92-cce3-41b1-a1f9-0b8b21ed823a","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify customer_1 balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User not found\")\r","\r","})\r","pm.test(\"Status code is 404\", function () {\r","    pm.response.to.have.status(404);\r","});"],"type":"text/javascript","packages":{}}}],"id":"78016eac-6d33-49ff-9604-d4c3f2469972","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"url":"http://dmoney.roadtocareer.net/transaction/balance/01200023333","urlObject":{"path":["transaction","balance","01200023333"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"78016eac-6d33-49ff-9604-d4c3f2469972"}],"id":"e4352734-30a5-4c55-b479-89b0b5444e88","_postman_id":"e4352734-30a5-4c55-b479-89b0b5444e88","description":""},{"name":"Statement check","item":[{"name":"check statement with valid account no","event":[{"listen":"test","script":{"id":"5b7f4d92-cce3-41b1-a1f9-0b8b21ed823a","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify customer_1 balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Transaction list\")\r","\r","})\r","pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"d9bd536a-a846-46a6-928f-8956cd0375d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"url":"http://dmoney.roadtocareer.net/transaction/statement/01206344565","urlObject":{"path":["transaction","statement","01206344565"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"d9bd536a-a846-46a6-928f-8956cd0375d9"},{"name":"check statement with invalid account no","event":[{"listen":"test","script":{"id":"5b7f4d92-cce3-41b1-a1f9-0b8b21ed823a","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify customer_1 balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User not found\")\r","\r","})\r","pm.test(\"Status code is 404\", function () {\r","    pm.response.to.have.status(404);\r","});"],"type":"text/javascript","packages":{}}}],"id":"5a7e91ba-4321-440e-bee6-d6e4394e7cef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"url":"http://dmoney.roadtocareer.net/transaction/statement/01200023333","urlObject":{"path":["transaction","statement","01200023333"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"5a7e91ba-4321-440e-bee6-d6e4394e7cef"}],"id":"4e10b246-ed5f-4636-bef3-abf4538bb913","_postman_id":"4e10b246-ed5f-4636-bef3-abf4538bb913","description":""},{"name":"transaction","item":[{"name":"check transaction with valid trnxID","event":[{"listen":"test","script":{"id":"5b7f4d92-cce3-41b1-a1f9-0b8b21ed823a","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify customer_1 balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Transaction list\")\r","\r","})\r","pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"97d4ad42-7e31-4446-917a-64e6ddddbc6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"url":"http://dmoney.roadtocareer.net/transaction/search/TXN229605","urlObject":{"path":["transaction","search","TXN229605"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"97d4ad42-7e31-4446-917a-64e6ddddbc6f"},{"name":"check transaction with invalid trnxID","event":[{"listen":"test","script":{"id":"5b7f4d92-cce3-41b1-a1f9-0b8b21ed823a","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify customer_1 balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"Transaction not found\")\r","\r","})\r","pm.test(\"Status code is 404\", function () {\r","    pm.response.to.have.status(404);\r","});"],"type":"text/javascript","packages":{}}}],"id":"22c84a1f-d58f-4b4f-b7be-35f9c2e76a93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"url":"http://dmoney.roadtocareer.net/transaction/search/TXN0000","urlObject":{"path":["transaction","search","TXN0000"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"22c84a1f-d58f-4b4f-b7be-35f9c2e76a93"}],"id":"361fe6ae-fa6e-40ff-b8fb-69f168b7f552","_postman_id":"361fe6ae-fa6e-40ff-b8fb-69f168b7f552","description":""}],"id":"9ea410b9-4611-44a8-9347-81f36d6e143e","_postman_id":"9ea410b9-4611-44a8-9347-81f36d6e143e","description":""},{"name":"Merchant activities","item":[{"name":"check balance with valid account no Copy","event":[{"listen":"test","script":{"id":"5b7f4d92-cce3-41b1-a1f9-0b8b21ed823a","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify customer_1 balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User balance\")\r","\r","})\r","pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{}}}],"id":"19eab236-3d2c-4bbd-adc0-41329dc7beaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"url":"http://dmoney.roadtocareer.net/transaction/balance/01208318456","urlObject":{"path":["transaction","balance","01208318456"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"19eab236-3d2c-4bbd-adc0-41329dc7beaf"},{"name":"check balance with invalid account no Copy","event":[{"listen":"test","script":{"id":"5b7f4d92-cce3-41b1-a1f9-0b8b21ed823a","exec":["const jsonResponse= pm.response.json();\r","\r","pm.test(\"Verify customer_1 balance check\", function(){\r","    pm.expect(jsonResponse.message).contains(\"User not found\")\r","\r","})\r","pm.test(\"Status code is 404\", function () {\r","    pm.response.to.have.status(404);\r","});"],"type":"text/javascript","packages":{}}}],"id":"5d86bd3f-1ddb-4893-9f5f-1befc52593da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"url":"http://dmoney.roadtocareer.net/transaction/balance/01200023333","urlObject":{"path":["transaction","balance","01200023333"],"host":["http://dmoney.roadtocareer.net"],"query":[],"variable":[]}},"response":[],"_postman_id":"5d86bd3f-1ddb-4893-9f5f-1befc52593da"}],"id":"97a2bbc2-892b-4219-97d3-901fb64f2e95","_postman_id":"97a2bbc2-892b-4219-97d3-901fb64f2e95","description":""}],"event":[{"listen":"prerequest","script":{"id":"f04a0884-95a2-4741-bad3-6e2b2ef77813","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"51c51ffc-cffc-4e69-ade8-6bf919d4e1a6","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"baseUrl","value":"http://dmoney.roadtocareer.net","type":"string"},{"key":"secretKey","value":"ROADTOSDET","type":"string"},{"key":"adminToken","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5Acm9hZHRvY2FyZWVyLm5ldCIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc0MTQ1MjY2NCwiZXhwIjoxNzQxNDU2MjY0fQ.Wjbw3vXQXl914ge073p5vDVscV1ZGcbGiPcgCh-RH1E"},{"key":"agentPhoneNumber","value":"01201556586"},{"key":"agentAccount","value":"01201556586"},{"key":"agentid","value":69785},{"key":"agentEmail","value":"Efrain_Carroll34@hotmail.com"},{"key":"merchantPhoneNumber","value":"01208318456"},{"key":"merchantAccount","value":"01208318456"},{"key":"merchantid","value":69779},{"key":"merchantEmail","value":"Braden.Rogahn@yahoo.com"},{"key":"customer_1_PhoneNumber","value":"01202010170"},{"key":"customer_1_acc_Number","value":"01202010170"},{"key":"customer_1_Id","value":69786},{"key":"customer_1_email","value":"Dasia69@gmail.com"},{"key":"customer_2_PhoneNumber","value":"01206344565"},{"key":"customer_2_acc_Number","value":"01206344565"},{"key":"customer_2_Id","value":69781},{"key":"customer_2_email","value":"Margaretta35@hotmail.com"},{"key":"customer1_trnxId","value":"TXN229605"}]}