{"info":{"_postman_id":"9411f16d-5cdc-4152-abc1-a1154b6da2b0","name":"Faster Interac API","description":"<html><head></head><body><p>These apis allow Faster approved clients to send Interac E-transfers as well as send Interac Request Money transactions.</p>\n<p><strong>Base Sandbox URL</strong>: <a href=\"https://sb-interac.faster.ca/\">https://sb-interac.faster.ca</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"38030111","collectionId":"9411f16d-5cdc-4152-abc1-a1154b6da2b0","publishedId":"2sAXjKbYAb","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-09-16T03:12:43.000Z"},"item":[{"name":"Authentication.","item":[{"name":"Login","item":[{"name":"Authenticate User","id":"552bba5b-48b9-4610-b713-debda206d76c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"<string>\",\n  \"password\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"/baseurl/auth/login","description":"<p>Authenticates a user and returns a JWT token</p>\n","urlObject":{"path":["auth","login"],"host":["/baseurl"],"query":[],"variable":[]}},"response":[{"id":"691b0d91-1054-48ec-8138-e8c4d6d8a067","name":"token\": \"JWT token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"<string>\",\n  \"password\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"/auth/login"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"},{"id":"eceb96fd-8a4a-41ee-8fc1-ee6b5ea5e006","name":"error\": \"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\": \"<string>\",\n  \"password\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"/baseurl/auth/login"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"}],"_postman_id":"552bba5b-48b9-4610-b713-debda206d76c"}],"id":"c0757b46-c713-4f76-8ba4-02bacb26c7a1","description":"<p>This endpoint authenticates a user by verifying their credentials (email and password). Upon successful authentication, it returns a JSON Web Token (JWT) that can be used to access protected endpoints within the API.</p>\n","_postman_id":"c0757b46-c713-4f76-8ba4-02bacb26c7a1"}],"id":"51987f8f-2a89-49fa-80e1-8e42111a94df","description":"<p>Authentication in this API is handled via JSON Web Tokens (JWTs). This process ensures that only authenticated users can access protected endpoints within the service.</p>\n<p><strong>How Authentication Works</strong></p>\n<p>1. <strong>User Login:</strong></p>\n<p>• The user submits their credentials (typically an email and password) to the /auth/login endpoint.</p>\n<p>• The server verifies these credentials against the stored user data.</p>\n<p>• If the credentials are correct, the server generates a JWT and returns it to the user in the response.</p>\n<p>2. <strong>Using the JWT:</strong></p>\n<p>• The JWT must be included in the Authorization header of subsequent requests to protected endpoints.</p>\n<p>• The format for this header is: Authorization: Bearer .</p>\n<p>3. <strong>Token Validation:</strong></p>\n<p>• Each time a protected endpoint is accessed, the server validates the provided JWT.</p>\n<p>• The server checks the token’s signature, expiration, and any other relevant claims to ensure it’s valid.</p>\n<p>• If the token is valid, the server processes the request. If not, the server returns a 401 Unauthorized or 403 Forbidden response.</p>\n<p>4. <strong>Token Expiration and Refresh:</strong></p>\n<p>• JWTs typically have an expiration time, after which they become invalid.</p>\n<p>• To maintain user sessions, you may implement a token refresh mechanism where the client can obtain a new token by presenting a refresh token.</p>\n<p><strong>Security Considerations</strong></p>\n<p>• <strong>Token Storage:</strong> Store JWTs securely on the client side to prevent exposure to malicious scripts (e.g., XSS attacks).</p>\n<p>• <strong>HTTPS:</strong> Always use HTTPS to encrypt the transmission of tokens, preventing them from being intercepted during transit.</p>\n<p>• <strong>Token Revocation:</strong> If a token is compromised, implement a mechanism to revoke it and prevent unauthorized access.</p>\n","_postman_id":"51987f8f-2a89-49fa-80e1-8e42111a94df"},{"name":"E-Transfer","item":[{"name":"Sends interac request to recipient","id":"6b6167d9-100d-4d4e-8edd-5046075d1c4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"<number>\",\n  \"receiver_email\": \"<string>\",\n  \"receiver_name\": \"<string>\",\n  \"sender_email\": \"<string>\",\n  \"sender_name\": \"<string>\",\n  \"merchant_id\":\"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"/baseurl/request-interac","description":"<p>Sends interac request to recipient</p>\n","urlObject":{"path":["request-interac"],"host":["/baseurl"],"query":[],"variable":[]}},"response":[{"id":"dcccb750-cff0-47f8-9086-7c2bb38a6b9f","name":"message\": \"Request Money Sent","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"<number>\",\n  \"client_id\": \"<integer>\",\n  \"receiver_email\": \"<string>\",\n  \"receiver_name\": \"<string>\",\n  \"sender_email\": \"<string>\",\n  \"sender_name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"/request-interac"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"esse_9\": 61762206,\n  \"fugiat_04\": -66863212\n}"},{"id":"ea6fc459-e705-4641-b6b0-2e58aeb0d003","name":"error\": \"Invalid JSON provided","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"<number>\",\n  \"client_id\": \"<integer>\",\n  \"receiver_email\": \"<string>\",\n  \"receiver_name\": \"<string>\",\n  \"sender_email\": \"<string>\",\n  \"sender_name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"/baseurl/request-interac"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"},{"id":"f57c8ed9-1d37-46a8-b414-8aa692bd999a","name":"error\": \"Internal Server Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"<number>\",\n  \"client_id\": \"<integer>\",\n  \"receiver_email\": \"<string>\",\n  \"receiver_name\": \"<string>\",\n  \"sender_email\": \"<string>\",\n  \"sender_name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"/baseurl/request-interac"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"}],"_postman_id":"6b6167d9-100d-4d4e-8edd-5046075d1c4b"},{"name":"Sends interac e-transfer to recipient","id":"fd612bea-8c1d-49ea-b699-43c01c9ac489","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"<number>\",\n  \"passphrase\": \"<string>\",\n  \"receiver_email\": \"<string>\",\n  \"receiver_name\": \"<string>\",\n  \"sender_email\": \"<string>\",\n  \"sender_name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"/baseurl/send-interac","description":"<p>Sends interac e-transfer to recipient</p>\n","urlObject":{"path":["send-interac"],"host":["/baseurl"],"query":[],"variable":[]}},"response":[{"id":"ee2d87ea-0e5d-4270-ba23-c96ccbe19662","name":"message\": \"E-transfer Sent","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"<number>\",\n  \"client_id\": \"<integer>\",\n  \"passphrase\": \"<string>\",\n  \"receiver_email\": \"<string>\",\n  \"receiver_name\": \"<string>\",\n  \"sender_email\": \"<string>\",\n  \"sender_name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"/send-interac"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"esse_9\": 61762206,\n  \"fugiat_04\": -66863212\n}"},{"id":"3663e722-3fcd-4a1e-9184-5addb6ee5c24","name":"error\": \"Invalid JSON provided","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"<number>\",\n  \"client_id\": \"<integer>\",\n  \"passphrase\": \"<string>\",\n  \"receiver_email\": \"<string>\",\n  \"receiver_name\": \"<string>\",\n  \"sender_email\": \"<string>\",\n  \"sender_name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"/baseurl/send-interac"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"},{"id":"bee67082-e5f6-4d41-b4d0-6bb5e262dc68","name":"error\": \"Internal Server Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"<number>\",\n  \"client_id\": \"<integer>\",\n  \"passphrase\": \"<string>\",\n  \"receiver_email\": \"<string>\",\n  \"receiver_name\": \"<string>\",\n  \"sender_email\": \"<string>\",\n  \"sender_name\": \"<string>\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"/baseurl/send-interac"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"}],"_postman_id":"fd612bea-8c1d-49ea-b699-43c01c9ac489"},{"name":"Get E-transfer by EtransferID","id":"e0ece9bd-3742-457d-a927-bbf71c65304f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/baseurl/etransfer/etransfer_id","description":"<p>Fetches an InteracSend record based on the etransfer_id</p>\n","urlObject":{"path":["etransfer","etransfer_id"],"host":["/baseurl"],"query":[],"variable":[]}},"response":[{"id":"57138997-9056-49aa-a5cc-d4e2799442d6","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/etransfer/:etransfer_id","path":["etransfer",":etransfer_id"],"variable":[{"key":"etransfer_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"amount\": \"<number>\",\n  \"client_id\": \"<integer>\",\n  \"passphrase\": \"<string>\",\n  \"receiver_email\": \"<string>\",\n  \"receiver_name\": \"<string>\",\n  \"sender_email\": \"<string>\",\n  \"sender_name\": \"<string>\",\n  \"etransfer_id\": \"<string>\",\n  \"id\": \"<integer>\",\n  \"status\": \"<string>\"\n}"},{"id":"3cc92d89-59f8-45e4-a0ca-8f0d76144637","name":"error\": \"Etransfer not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/baseurl/etransfer/:etransfer_id","host":["/baseurl"],"path":["etransfer",":etransfer_id"],"variable":[{"key":"etransfer_id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"},{"id":"4eae2a6c-2f0f-4556-b0f2-2bde49fc5a33","name":"error\": \"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/baseurl/etransfer/:etransfer_id","host":["/baseurl"],"path":["etransfer",":etransfer_id"],"variable":[{"key":"etransfer_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"}],"_postman_id":"e0ece9bd-3742-457d-a927-bbf71c65304f"},{"name":"Get Request Money by EtransferID","id":"31cbbe0d-d926-487a-8f8a-e4e3edca43af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/baseurl/etransfer/request/etransfer_id","description":"<p>Fetches an Request Money record based on the etransfer_id</p>\n","urlObject":{"path":["etransfer","request","etransfer_id"],"host":["/baseurl"],"query":[],"variable":[]}},"response":[{"id":"6ed330dc-fd6d-40a9-94ab-62f9b6063455","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/etransfer/:etransfer_id","path":["etransfer",":etransfer_id"],"variable":[{"key":"etransfer_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"amount\": \"<number>\",\n  \"client_id\": \"<integer>\",\n  \"passphrase\": \"<string>\",\n  \"receiver_email\": \"<string>\",\n  \"receiver_name\": \"<string>\",\n  \"sender_email\": \"<string>\",\n  \"sender_name\": \"<string>\",\n  \"etransfer_id\": \"<string>\",\n  \"id\": \"<integer>\",\n  \"status\": \"<string>\"\n}"},{"id":"fbd6fc30-ebf4-4215-aa08-365afea0012a","name":"error\": \"Etransfer not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/baseurl/etransfer/:etransfer_id","host":["/baseurl"],"path":["etransfer",":etransfer_id"],"variable":[{"key":"etransfer_id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"},{"id":"7e37722e-da02-404c-afa9-6821094ddbdf","name":"error\": \"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/baseurl/etransfer/:etransfer_id","host":["/baseurl"],"path":["etransfer",":etransfer_id"],"variable":[{"key":"etransfer_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"}],"_postman_id":"31cbbe0d-d926-487a-8f8a-e4e3edca43af"},{"name":"Cancel E-transfer","id":"096f4ed0-8873-4d95-8185-f1e18b2a6c02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"/baseurl/etransfer/cancel/etransfer_id","description":"<p>Cancels an e-transfer by setting its status to \"cancel:requested\"</p>\n","urlObject":{"path":["etransfer","cancel","etransfer_id"],"host":["/baseurl"],"query":[],"variable":[]}},"response":[{"id":"30c4d526-bdb3-4b38-a892-a92dab0e73bf","name":"message\": \"E-transfer cancellation requested","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/etransfer/cancel/:etransfer_id","path":["etransfer","cancel",":etransfer_id"],"variable":[{"key":"etransfer_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"},{"id":"9d00b1e4-3957-4d62-8f44-21195fec66cd","name":"error\": \"Invalid request","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/baseurl/etransfer/cancel/:etransfer_id","host":["/baseurl"],"path":["etransfer","cancel",":etransfer_id"],"variable":[{"key":"etransfer_id"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"},{"id":"0f4b616f-b62c-4eb8-a3d0-c360cc3b04f2","name":"error\": \"E-transfer not found","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/baseurl/etransfer/cancel/:etransfer_id","host":["/baseurl"],"path":["etransfer","cancel",":etransfer_id"],"variable":[{"key":"etransfer_id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"},{"id":"3290dbbe-547b-4e61-9f5b-777713a0db14","name":"error\": \"Internal Server Error","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/baseurl/etransfer/cancel/:etransfer_id","host":["/baseurl"],"path":["etransfer","cancel",":etransfer_id"],"variable":[{"key":"etransfer_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"}],"_postman_id":"096f4ed0-8873-4d95-8185-f1e18b2a6c02"},{"name":"Cancel E-transfer request","id":"c598f5d4-8dd2-4e38-b943-76493a2d3a9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"/baseurl/etransfer/request/cancel/etransfer_id","description":"<p>Cancels a money request</p>\n","urlObject":{"path":["etransfer","request","cancel","etransfer_id"],"host":["/baseurl"],"query":[],"variable":[]}},"response":[{"id":"2235f664-f009-4bb8-bd8a-1d86907d1558","name":"message\": \"E-transfer request cancellation requested","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/etransfer/request/cancel/:etransfer_id","path":["etransfer","request","cancel",":etransfer_id"],"variable":[{"key":"etransfer_id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"},{"id":"dbe7e8dd-a9b7-47de-bd02-4784011c328d","name":"error\": \"Invalid request","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/baseurl/etransfer/request/cancel/:etransfer_id","host":["/baseurl"],"path":["etransfer","request","cancel",":etransfer_id"],"variable":[{"key":"etransfer_id"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"},{"id":"6785e3a8-69c2-4b02-9ae2-412de29e9463","name":"error\": \"E-transfer request not found","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/baseurl/etransfer/request/cancel/:etransfer_id","host":["/baseurl"],"path":["etransfer","request","cancel",":etransfer_id"],"variable":[{"key":"etransfer_id"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"},{"id":"3188cc29-937d-40ad-961d-640744c530d6","name":"error\": \"Internal Server Error","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/baseurl/etransfer/request/cancel/:etransfer_id","host":["/baseurl"],"path":["etransfer","request","cancel",":etransfer_id"],"variable":[{"key":"etransfer_id"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"irure25\": \"<string>\",\n  \"in_84\": \"<string>\"\n}"}],"_postman_id":"c598f5d4-8dd2-4e38-b943-76493a2d3a9e"},{"name":"Get paginated Interac Requests","id":"070ae418-9ea0-49ad-906d-d9660912f660","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/baseurl/etransfers/requests?page=1&limit=10&from=<string>&to=<string>&timezone=<string>","description":"<p>Fetches paginated InteracReceive records based on the client_id from the JWT token, with optional date range filtering</p>\n","urlObject":{"path":["etransfers","requests"],"host":["/baseurl"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Number of items per page</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Start date (YYYY-MM-DD)</p>\n","type":"text/plain"},"key":"from","value":"<string>"},{"description":{"content":"<p>End date (YYYY-MM-DD)</p>\n","type":"text/plain"},"key":"to","value":"<string>"},{"description":{"content":"<p>TZ Identifier (<a href=\"https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#TORONTO\">https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#TORONTO</a>)</p>\n","type":"text/plain"},"key":"timezone","value":"<string>"}],"variable":[]}},"response":[{"id":"134e91c4-ffff-440a-a889-1982b6198499","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/baseurl/interac-requests?page=1&limit=10&from=<string>&to=<string>","host":["/baseurl"],"path":["interac-requests"],"query":[{"description":"Page number","key":"page","value":"1"},{"description":"Number of items per page","key":"limit","value":"10"},{"description":"Start date (YYYY-MM-DD)","key":"from","value":"<string>"},{"description":"End date (YYYY-MM-DD)","key":"to","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"amount\": \"<number>\",\n    \"client_id\": \"<string>\",\n    \"receiver_email\": \"<string>\",\n    \"receiver_name\": \"<string>\",\n    \"sender_email\": \"<string>\",\n    \"sender_name\": \"<string>\",\n    \"created_at\": \"<string>\",\n    \"etransfer_id\": \"<string>\",\n    \"id\": \"<integer>\",\n    \"status\": \"<string>\"\n  },\n  {\n    \"amount\": \"<number>\",\n    \"client_id\": \"<string>\",\n    \"receiver_email\": \"<string>\",\n    \"receiver_name\": \"<string>\",\n    \"sender_email\": \"<string>\",\n    \"sender_name\": \"<string>\",\n    \"created_at\": \"<string>\",\n    \"etransfer_id\": \"<string>\",\n    \"id\": \"<integer>\",\n    \"status\": \"<string>\"\n  }\n]"},{"id":"71cd537e-8c96-4dbb-99e6-2fff2eb64c54","name":"error\": \"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/baseurl/interac-requests?page=1&limit=10&from=<string>&to=<string>","host":["/baseurl"],"path":["interac-requests"],"query":[{"description":"Page number","key":"page","value":"1"},{"description":"Number of items per page","key":"limit","value":"10"},{"description":"Start date (YYYY-MM-DD)","key":"from","value":"<string>"},{"description":"End date (YYYY-MM-DD)","key":"to","value":"<string>"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"consequata3\": \"<string>\",\n  \"ad_9\": \"<string>\"\n}"},{"id":"836fea18-acfb-47a8-86aa-9e8f1d96520b","name":"error\": \"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/baseurl/interac-requests?page=1&limit=10&from=<string>&to=<string>","host":["/baseurl"],"path":["interac-requests"],"query":[{"description":"Page number","key":"page","value":"1"},{"description":"Number of items per page","key":"limit","value":"10"},{"description":"Start date (YYYY-MM-DD)","key":"from","value":"<string>"},{"description":"End date (YYYY-MM-DD)","key":"to","value":"<string>"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"consequata3\": \"<string>\",\n  \"ad_9\": \"<string>\"\n}"}],"_postman_id":"070ae418-9ea0-49ad-906d-d9660912f660"},{"name":"Get paginated E-transfers","id":"bae97364-b429-4f34-b041-0a99d7d6159d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"/baseurl/etransfers?page=1&limit=10&from=<string>&to=<string>","description":"<p>Fetches paginated InteracSend records based on the client_id from the JWT token, with optional date range filtering</p>\n","urlObject":{"path":["etransfers"],"host":["/baseurl"],"query":[{"description":{"content":"<p>Page number</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Number of items per page</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Start date (YYYY-MM-DD)</p>\n","type":"text/plain"},"key":"from","value":"<string>"},{"description":{"content":"<p>End date (YYYY-MM-DD)</p>\n","type":"text/plain"},"key":"to","value":"<string>"}],"variable":[]}},"response":[{"id":"d634a6d8-ad0e-4af4-a290-99db4f21748a","name":"OK","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/baseurl/etransfers?page=1&limit=10&from=<string>&to=<string>","host":["/baseurl"],"path":["etransfers"],"query":[{"description":"Page number","key":"page","value":"1"},{"description":"Number of items per page","key":"limit","value":"10"},{"description":"Start date (YYYY-MM-DD)","key":"from","value":"<string>"},{"description":"End date (YYYY-MM-DD)","key":"to","value":"<string>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"amount\": \"<number>\",\n    \"client_id\": \"<string>\",\n    \"passphrase\": \"<string>\",\n    \"receiver_email\": \"<string>\",\n    \"receiver_name\": \"<string>\",\n    \"sender_email\": \"<string>\",\n    \"sender_name\": \"<string>\",\n    \"created_at\": \"<string>\",\n    \"etransfer_id\": \"<string>\",\n    \"id\": \"<integer>\",\n    \"status\": \"<string>\"\n  },\n  {\n    \"amount\": \"<number>\",\n    \"client_id\": \"<string>\",\n    \"passphrase\": \"<string>\",\n    \"receiver_email\": \"<string>\",\n    \"receiver_name\": \"<string>\",\n    \"sender_email\": \"<string>\",\n    \"sender_name\": \"<string>\",\n    \"created_at\": \"<string>\",\n    \"etransfer_id\": \"<string>\",\n    \"id\": \"<integer>\",\n    \"status\": \"<string>\"\n  }\n]"},{"id":"e859ae41-bacf-4871-87e5-2a631d7cf040","name":"error\": \"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/baseurl/etransfers?page=1&limit=10&from=<string>&to=<string>","host":["/baseurl"],"path":["etransfers"],"query":[{"description":"Page number","key":"page","value":"1"},{"description":"Number of items per page","key":"limit","value":"10"},{"description":"Start date (YYYY-MM-DD)","key":"from","value":"<string>"},{"description":"End date (YYYY-MM-DD)","key":"to","value":"<string>"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"consequata3\": \"<string>\",\n  \"ad_9\": \"<string>\"\n}"},{"id":"9b7a6699-b325-4adc-9a75-a867eeeabab9","name":"error\": \"Internal Server Error","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":{"raw":"/baseurl/etransfers?page=1&limit=10&from=<string>&to=<string>","host":["/baseurl"],"path":["etransfers"],"query":[{"description":"Page number","key":"page","value":"1"},{"description":"Number of items per page","key":"limit","value":"10"},{"description":"Start date (YYYY-MM-DD)","key":"from","value":"<string>"},{"description":"End date (YYYY-MM-DD)","key":"to","value":"<string>"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"consequata3\": \"<string>\",\n  \"ad_9\": \"<string>\"\n}"}],"_postman_id":"bae97364-b429-4f34-b041-0a99d7d6159d"}],"id":"d4f44dca-77b4-4a2c-92a9-7354229f7b61","description":"<p>The E-Transfer endpoints allow users to manage Interac e-transfers, including sending, requesting, and canceling transfers.</p>\n","_postman_id":"d4f44dca-77b4-4a2c-92a9-7354229f7b61"}],"event":[{"listen":"prerequest","script":{"id":"331f4b04-7887-4a1b-a78f-e01dd4cd9844","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"6327278f-58b7-4e72-93bb-d67c3bde1eeb","type":"text/javascript","packages":{},"exec":[""]}}],"variable":[{"key":"baseUrl","value":"/baseurl"}]}