{"info":{"_postman_id":"0bcadc4f-5e89-41ef-9827-4efb83ac9cfd","name":"Dmoney_API_Collection","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"description":"<html><head></head><body></body></html>","owner":"18991706","collectionId":"0bcadc4f-5e89-41ef-9827-4efb83ac9cfd","publishedId":"2sBXqQEwtM","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-05-13T06:58:00.000Z"},"item":[{"name":"Admin Login","item":[{"name":"Admin login","event":[{"listen":"prerequest","script":{"id":"a8c9f7e4-a3a3-48c1-a538-535ff662c65d","exec":["var url = \"http://localhost:5000\";\r","pm.collectionVariables.set(\"Base_url\", url);\r","\r","var key = \"ROADTOSDET\";\r","pm.collectionVariables.set(\"secretkey\", key);"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"275ce564-81d8-40b6-b633-df711647bbd7","exec":["var jsondata = pm.response.json();\r","var token = jsondata.token;\r","pm.collectionVariables.set(\"Admin_token\", token);\r","\r","pm.test(\"User can Login Successfully\",function()\r","{\r","    pm.expect(jsondata.message).to.eql(\"Login successful\");\r","})\r","\r","pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"4a3ae889-93fc-4f0f-bfab-2785439740ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"admin@dmoney.com\",\r\n  \"password\": \"1234\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/user/login","urlObject":{"path":["user","login"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[],"_postman_id":"4a3ae889-93fc-4f0f-bfab-2785439740ff"}],"id":"b32ede34-0bc4-48b0-90b6-2d1590ff7245","_postman_id":"b32ede34-0bc4-48b0-90b6-2d1590ff7245","description":""},{"name":"User Create","item":[{"name":"Agent creation","event":[{"listen":"prerequest","script":{"id":"b9fe9068-b669-4ff2-a8e0-1b24382688e3","exec":["var randomId = _.random( 100000,999999 );\r","\r","var phonenumber = \"01701\" + randomId;\r","\r","\r","pm.collectionVariables.set(\"ramdomID\", randomId);\r","pm.collectionVariables.set(\"randomPhoneNumber\", phonenumber);\r",""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"7a74bdce-6536-420a-87bb-a2722a472925","exec":["var jsondata = pm.response.json();\r","\r","pm.test(\"Agent created successfully\", function () {\r","    pm.expect(jsondata.message).to.eql(\"User created\");\r","});\r","\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","}); \r","\r","var id = jsondata.user.id;\r","var email = jsondata.user.email;    \r","var phoneNum = jsondata.user.phone_number;\r","\r","pm.collectionVariables.set(\"Agentid\", id);\r","pm.collectionVariables.set(\"Agentemail\", email);\r","pm.collectionVariables.set(\"AgentphonNumber\", phoneNum);\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"902c0c9f-dc4f-4e09-938d-16b3a7fbc6e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5AZG1vbmV5LmNvbSIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc3ODA3NzU5NiwiZXhwIjoxNzc4MDgxMTk2fQ.jO3ixGxMEdSUVyZMigiqt-VPkjFnUd0Lf1ywGD0RJbk","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Francis Mayer\",\r\n  \"email\": \"marjahan6469+993698@gmail.com\",\r\n  \"password\": \"1234\",\r\n  \"phone_number\":\"01701993698\",\r\n  \"nid\": \"9876543210\",\r\n  \"role\": \"Agent\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/user/create","urlObject":{"protocol":"http","port":"5000","path":["user","create"],"host":["localhost"],"query":[],"variable":[]}},"response":[],"_postman_id":"902c0c9f-dc4f-4e09-938d-16b3a7fbc6e8"},{"name":"Customer1_Creation","event":[{"listen":"test","script":{"id":"f9da1780-463b-4e40-84dc-03956bc642dc","exec":["var jsondata = pm.response.json();\r","\r","pm.test(\"Status code is 201\", function () { \r","    pm.response.to.have.status(201);\r","});\r","\r","pm.test(\"Customer created successfully\", function()\r","{ \r","    pm.expect(jsondata.message).to.eql(\"User created\");\r","\r","});\r","\r","var id = jsondata.user.id;\r","var email = jsondata.user.email;\r","var phonenumber = jsondata.user.phone_number;\r","\r","pm.collectionVariables.set(\"Customer1_id\", id);\r","pm.collectionVariables.set(\"Customer1_email\", email);\r","pm.collectionVariables.set(\"Customer1_phone_number\", phonenumber);\r","\r",""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"08dd30fa-ce39-4fbe-be3f-2fe2b12dcf84","exec":["var randomId = _.random( 100000,999999 );\r","\r","var phonenumber = \"01701\" + randomId;\r","\r","\r","pm.collectionVariables.set(\"ramdomID\", randomId);\r","pm.collectionVariables.set(\"randomPhoneNumber\", phonenumber);\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"4321d47c-25f9-4483-a9cf-e9570d0332e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5AZG1vbmV5LmNvbSIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc3ODA3NzU5NiwiZXhwIjoxNzc4MDgxMTk2fQ.jO3ixGxMEdSUVyZMigiqt-VPkjFnUd0Lf1ywGD0RJbk","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Miss Minnie Stehr\",\r\n  \"email\": \"marjahan6469+993698@gmail.com\",\r\n  \"password\": \"pass1234\",\r\n  \"phone_number\": \"01701993698\",\r\n  \"nid\": \"9876543210\",\r\n  \"role\": \"Customer\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/user/create","urlObject":{"path":["user","create"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[],"_postman_id":"4321d47c-25f9-4483-a9cf-e9570d0332e8"},{"name":"Customer2_Creation(self_reg)","event":[{"listen":"test","script":{"id":"f9da1780-463b-4e40-84dc-03956bc642dc","exec":["var jsondata = pm.response.json();\r","\r","pm.test(\"Status code is 201\", function () { \r","    pm.response.to.have.status(201);\r","});\r","\r","pm.test(\"Customer2 created successfully\", function()\r","{ \r","    pm.expect(jsondata.message).to.contain(\"Registration successful\");\r","\r","});\r","\r","var id = jsondata.user.id;\r","var email = jsondata.user.email;\r","var phonenumber = jsondata.user.phone_number;\r","\r","pm.collectionVariables.set(\"Customer2_id\", id);\r","pm.collectionVariables.set(\"Customer2_email\", email);\r","pm.collectionVariables.set(\"Customer2_phone_number\", phonenumber);\r",""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"08dd30fa-ce39-4fbe-be3f-2fe2b12dcf84","exec":["var randomId = _.random( 100000,999999 );\r","\r","var phonenumber = \"01701\" + randomId;\r","\r","\r","pm.collectionVariables.set(\"ramdomID\", randomId);\r","pm.collectionVariables.set(\"randomPhoneNumber\", phonenumber);\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"76b01c27-2c6e-4747-a75b-1e2ebbe95c1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Reginald Schamberger\",\r\n  \"email\": \"marjahan6469+993698@gmail.com\",\r\n  \"password\": \"pass1234\",\r\n  \"phone_number\": \"01701993698\",\r\n  \"nid\": \"9876543210\",\r\n  \"role\": \"Customer\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/user/register","urlObject":{"path":["user","register"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[],"_postman_id":"76b01c27-2c6e-4747-a75b-1e2ebbe95c1c"}],"id":"160d09c0-64b9-4f87-b4f8-cec4b46c7d33","_postman_id":"160d09c0-64b9-4f87-b4f8-cec4b46c7d33","description":""},{"name":"User Activate","item":[{"name":"Activate_Agent","id":"88fe6946-eab0-4d86-bd3e-52dabbe42cbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5AZG1vbmV5LmNvbSIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc3ODA3NzU5NiwiZXhwIjoxNzc4MDgxMTk2fQ.jO3ixGxMEdSUVyZMigiqt-VPkjFnUd0Lf1ywGD0RJbk","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"status\": \"active\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/user/update/48","urlObject":{"path":["user","update","48"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[],"_postman_id":"88fe6946-eab0-4d86-bd3e-52dabbe42cbd"},{"name":"Activate_Customer_1","id":"8ffedaa9-9ab0-4a65-8d4d-ce57b92868dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5AZG1vbmV5LmNvbSIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc3ODA3NzU5NiwiZXhwIjoxNzc4MDgxMTk2fQ.jO3ixGxMEdSUVyZMigiqt-VPkjFnUd0Lf1ywGD0RJbk","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"status\": \"active\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/user/update/49","urlObject":{"path":["user","update","49"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ffedaa9-9ab0-4a65-8d4d-ce57b92868dc"},{"name":"Activate_Customer_2","id":"22cab093-0364-4219-92e8-eb83511348d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5AZG1vbmV5LmNvbSIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc3ODA3NzU5NiwiZXhwIjoxNzc4MDgxMTk2fQ.jO3ixGxMEdSUVyZMigiqt-VPkjFnUd0Lf1ywGD0RJbk","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"status\": \"active\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/user/update/50","urlObject":{"path":["user","update","50"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[],"_postman_id":"22cab093-0364-4219-92e8-eb83511348d5"}],"id":"843120d6-ac02-48a8-a233-39de132cf797","_postman_id":"843120d6-ac02-48a8-a233-39de132cf797","description":""},{"name":"System to Agent Deposit","item":[{"name":"System_Login","event":[{"listen":"test","script":{"id":"b4b21324-128e-4103-b3b7-88fc5043cf3c","exec":["var jsondata = pm.response.json();\r","var token = jsondata.token;\r","pm.collectionVariables.set(\"System_token\", token);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"9386c036-289c-480e-9a54-7658bf5f10f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"System\",\r\n  \"password\": \"1234\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/user/login","urlObject":{"path":["user","login"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[],"_postman_id":"9386c036-289c-480e-9a54-7658bf5f10f0"},{"name":"System_to_Agent_Deposite","id":"03506698-17ef-4759-bc39-d4a084e095b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiU3lzdGVtIiwicm9sZSI6IkFnZW50IiwiaWF0IjoxNzc4MDUxMDAxLCJleHAiOjE3NzgwNTQ2MDF9.aa6uidwzANCDeH9wP3A_PetqtGkxOcRNMM7m6oBzfNA","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"SYSTEM\",\r\n  \"to_account\": \"01701137263\",\r\n  \"amount\": 5000\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/transaction/deposit","urlObject":{"path":["transaction","deposit"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[],"_postman_id":"03506698-17ef-4759-bc39-d4a084e095b6"}],"id":"4813a83f-5d5c-4496-80fc-8a3768f42f7a","_postman_id":"4813a83f-5d5c-4496-80fc-8a3768f42f7a","description":""},{"name":"Agent Login","item":[{"name":"Agent_primary_login","id":"89ccbb39-8a35-4629-b0d7-153b54eb7c43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"email\": \"marjahan6469+137263@gmail.com\",\r\n  \"password\": \"1234\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/user/login","urlObject":{"path":["user","login"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[],"_postman_id":"89ccbb39-8a35-4629-b0d7-153b54eb7c43"},{"name":"Gmail list","event":[{"listen":"test","script":{"id":"70b71337-b0cc-43c3-828e-1d00e5d03368","exec":["let jsondata = pm.response.json();\r","\r","let latestEmailid = jsondata.messages[0].id;\r","\r","pm.collectionVariables.set(\"Emailid\", latestEmailid);"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"52177480-372f-4001-b1f6-ba44c4eaec66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ya29.a0AQvPyIMiLDK7V6BjSggx9jw2Q49u_bhqY4BteR4XWjB1NiBXdOo_X_P-lccyqQnYz4Dhr8yWBmr2CF_DkT1CohpHy8_TbsKXraLSJck8dCEi8tvYINJAHkSigpMLA3LSnc1HkPmXYlSl0SgbMBD-xg--kbHude7wQvtwsuoY6NUg9qcAV17fT9dR7Q0TxkA6pf_ahHAaCgYKAdUSARYSFQHGX2Miz25qEYaqrYu80dESX6N1pA0206","type":"text"},{"key":"","value":"","type":"text"}],"url":"https://gmail.googleapis.com/gmail/v1/users/me/messages","urlObject":{"protocol":"https","path":["gmail","v1","users","me","messages"],"host":["gmail","googleapis","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"52177480-372f-4001-b1f6-ba44c4eaec66"},{"name":"Read email","event":[{"listen":"test","script":{"id":"35c8a385-fe30-44a8-be1f-fee02491cd11","exec":["let jsondata = pm.response.json();\r","\r","let snippet = jsondata.snippet;\r","\r","let otp = snippet.match(/\\b\\d{4}\\b/)[0];\r","\r","pm.collectionVariables.set(\"OTP\", otp);\r","\r",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"2199327c-2869-41ab-ad14-86d98d4e0d9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ya29.a0AQvPyIMiLDK7V6BjSggx9jw2Q49u_bhqY4BteR4XWjB1NiBXdOo_X_P-lccyqQnYz4Dhr8yWBmr2CF_DkT1CohpHy8_TbsKXraLSJck8dCEi8tvYINJAHkSigpMLA3LSnc1HkPmXYlSl0SgbMBD-xg--kbHude7wQvtwsuoY6NUg9qcAV17fT9dR7Q0TxkA6pf_ahHAaCgYKAdUSARYSFQHGX2Miz25qEYaqrYu80dESX6N1pA0206","type":"text"}],"url":"https://gmail.googleapis.com/gmail/v1/users/me/messages/19e00fc7884dca5b","urlObject":{"protocol":"https","path":["gmail","v1","users","me","messages","19e00fc7884dca5b"],"host":["gmail","googleapis","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2199327c-2869-41ab-ad14-86d98d4e0d9b"},{"name":"Agent verify OTP","event":[{"listen":"test","script":{"id":"9edb1a3a-e4c9-420c-9885-f42cafa5c9f4","exec":["var jsondata = pm.response.json();\r","var token = jsondata.token;\r","pm.collectionVariables.set(\"AGENT_token\", token);\r","\r","pm.test(\"User can Login Successfully\",function()\r","{\r","    pm.expect(jsondata.message).to.eql(\"Login successful\");\r","})\r","\r","pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"4e4d508e-d602-4a52-b7b8-02627e7ce2f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"identifier\": \"marjahan6469+137263@gmail.com\",\r\n  \"otp\": \"4030\"\r\n}","options":{"raw":{"language":"json"}}},"url":"http://localhost:5000/user/verify-otp","urlObject":{"path":["user","verify-otp"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[],"_postman_id":"4e4d508e-d602-4a52-b7b8-02627e7ce2f7"}],"id":"539e5e55-37b0-4265-9421-86a7e41d4790","_postman_id":"539e5e55-37b0-4265-9421-86a7e41d4790","description":""},{"name":"Agent to customer Deposit","item":[{"name":"Agent to customer1 deposit","event":[{"listen":"test","script":{"id":"9b643eaa-1a7a-425d-ba17-13758453e045","exec":["var jsondata = pm.response.json();\r","\r","pm.test(\"Agent can deposit Successfully\",function()\r","{\r","    pm.expect(jsondata.message).to.eql(\"Deposit successful\");\r","})\r","\r","pm.test(\"Status code is 201\", function () {\r","    pm.response.to.have.status(201);\r","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"f4955f27-c1e9-4c48-ac25-f827ee90ce8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoibWFyamFoYW42NDY5KzEzNzI2M0BnbWFpbC5jb20iLCJyb2xlIjoiQWdlbnQiLCJpYXQiOjE3NzgxMzMwNTEsImV4cCI6MTc3ODEzNjY1MX0.mxGgfVd4p2rhQogW_VzOfrE_AuONJhiLkGNQa0vAx0g","type":"text"},{"key":"X-AUTH-SECRET-KEY","value":"ROADTOSDET","type":"text"}],"body":{"mode":"raw","raw":"{\r\n  \"from_account\": \"01701137263\",\r\n  \"to_account\": \"01701841958\",\r\n  \"amount\": 100\r\n}"},"url":"http://localhost:5000/transaction/deposit","urlObject":{"path":["transaction","deposit"],"host":["http://localhost:5000"],"query":[],"variable":[]}},"response":[],"_postman_id":"f4955f27-c1e9-4c48-ac25-f827ee90ce8d"}],"id":"6c51d3a0-3cf1-40e4-a236-67aa51293223","_postman_id":"6c51d3a0-3cf1-40e4-a236-67aa51293223","description":""}],"event":[{"listen":"prerequest","script":{"id":"0815f7db-ef77-4a44-81de-ff780c426e18","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"b5d5536b-b868-45cf-b76d-35812236259f","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"Base_url","value":"http://localhost:5000"},{"key":"secretkey","value":"ROADTOSDET"},{"key":"Admin_token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiYWRtaW5AZG1vbmV5LmNvbSIsInJvbGUiOiJBZG1pbiIsImlhdCI6MTc3ODA3NzU5NiwiZXhwIjoxNzc4MDgxMTk2fQ.jO3ixGxMEdSUVyZMigiqt-VPkjFnUd0Lf1ywGD0RJbk"},{"key":"ramdomID","value":993698},{"key":"randomPhoneNumber","value":"01701993698"},{"key":"Agentid","value":48},{"key":"Agentemail","value":"marjahan6469+137263@gmail.com"},{"key":"AgentphonNumber","value":"01701137263"},{"key":"Customer1_id","value":49},{"key":"Customer1_email","value":"marjahan6469+841958@gmail.com"},{"key":"Customer1_phone_number","value":"01701841958"},{"key":"Customer2_id","value":50},{"key":"Customer2_email","value":"marjahan6469+993698@gmail.com"},{"key":"Customer2_phone_number","value":"01701993698"},{"key":"System_token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoiU3lzdGVtIiwicm9sZSI6IkFnZW50IiwiaWF0IjoxNzc4MDUxMDAxLCJleHAiOjE3NzgwNTQ2MDF9.aa6uidwzANCDeH9wP3A_PetqtGkxOcRNMM7m6oBzfNA"},{"key":"G_token","value":"ya29.a0AQvPyIMiLDK7V6BjSggx9jw2Q49u_bhqY4BteR4XWjB1NiBXdOo_X_P-lccyqQnYz4Dhr8yWBmr2CF_DkT1CohpHy8_TbsKXraLSJck8dCEi8tvYINJAHkSigpMLA3LSnc1HkPmXYlSl0SgbMBD-xg--kbHude7wQvtwsuoY6NUg9qcAV17fT9dR7Q0TxkA6pf_ahHAaCgYKAdUSARYSFQHGX2Miz25qEYaqrYu80dESX6N1pA0206"},{"key":"Emailid","value":"19e00fc7884dca5b"},{"key":"OTP","value":"4030"},{"key":"AGENT_token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZGVudGlmaWVyIjoibWFyamFoYW42NDY5KzEzNzI2M0BnbWFpbC5jb20iLCJyb2xlIjoiQWdlbnQiLCJpYXQiOjE3NzgxMzMwNTEsImV4cCI6MTc3ODEzNjY1MX0.mxGgfVd4p2rhQogW_VzOfrE_AuONJhiLkGNQa0vAx0g"}]}