{"info":{"_postman_id":"f8ee9fb2-6402-4064-a5b7-f530f9f29e2c","name":"WalletAPI Development Guide","description":"<html><head></head><body><h1 id=\"overview\">Overview</h1>\n<p>The Wallet API provides the ability to create and manage wallet sites and wallet views usable within the BridgeComm API and BridgePay’s Recurring Billing system.</p>\n<h2 id=\"construct\">Construct</h2>\n<p>Components that make up the structure on the Wallet API and its usage.</p>\n<p>* <strong>WalletSite</strong> - a collection of wallets. It is agnostic in that it has no requirement to be associated with any given merchant account, merchant group, or reseller. It can also be shared among multiple merchant accounts, belonging to multiple merchant groups, and even resellers.<br>* <strong>Wallet</strong> - a collection of payment methods (similar to a physical wallet). A wallet belongs to a wallet site<br>* <strong>Payment Method</strong> - contains all the necessary information to perform a transaction (Token, Expiration Date (or Routing Number) and AVS information<br>* <strong>Merchant Account Subscribes to a Wallet Site</strong> - multiple merchant accounts can subscribe to the same wallet site (effectively sharing payment information data), but one merchant account cannot subscribe to multiple wallet sites.<br>* <strong>Contract in Recurring Billing</strong> - exists between a merchant account and a customer of the merchant account.<br>* <strong>Customer Account</strong> - describes the customer (one of the parties in the contract)<br>* <strong>Financially Responsible Party</strong> - a person or business that has access to one or more wallets. A customer account can have multiple financially responsible parties</p>\n<h2 id=\"order-of-process-flow\">Order of Process Flow</h2>\n<p>The order in which each Wallet API component must be created or used.</p>\n<ol>\n<li><p><strong>Create a Wallet Site</strong><br> * Use api/Wallet/CreateWalletSite to create a new site</p>\n</li>\n<li><p><strong>Connect a Merchant Account to Site</strong><br> * Use api/Boarding/CreateGatewayConfiguration</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>     OR\n\n</code></pre><p> * Go to Gateway Configuration tab on MyBridgePay</p>\n</li>\n<li><p><strong>Create a WalletView</strong><br> * Use api/Wallet/CreateWalletView to create a new Wallet</p>\n</li>\n<li><p><strong>Get all the Wallet Details</strong><br> * Use api/Wallet/GetWalletByWalletId to get the details for the wallet created</p>\n</li>\n<li><p><strong>Call BridgeComm or Transaction API with the Wallet Details</strong><br> * Call BridgeComm or Transaction API using the relevant data elements instead of using Token, Card Number, Expiration Date, Bank Account Number, Routing Number, etc. For BridgeComm, use WalletPaymentMethodID or CustomerWalletID. For Transaction API, use walletPaymetMethodId and customerWalletId.</p>\n</li>\n<li><p><strong>Use the Recurring Billing API to connect the Wallet to a Customer Account</strong><br> * Create an AccountHolder using the RecurringBilling API using the BridgePay Wallet ID as the GUID</p>\n</li>\n</ol>\n<h1 id=\"authentication\">Authentication</h1>\n<p>Each call to the Wallet API requires credentials. The Credentials object is used as a property of other objects in the API. The Credentials Object contains two properties:</p>\n<p><strong>UserName</strong> and <strong>Password</strong>.</p>\n<p>Both properties are strings.</p>\n<h1 id=\"production-urls\">Production URLs</h1>\n<p>UAT:</p>\n<p><a href=\"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/\">https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/</a></p>\n<p>Production:</p>\n<p><a href=\"https://www.bridgepaynetsecuretx.com/Wallet.API/api/Wallet/\">https://www.bridgepaynetsecuretx.com/Wallet.API/api/Wallet/</a></p>\n<h1 id=\"testing-and-integration-support\">Testing and Integration Support</h1>\n<p>In the live environment, transactions must be initiated over an SSL-protected connection using a minimum of 128-bit encryption to protect sensitive data. Initial testing can be performed over an unencrypted connection; however, testing must be performed over an SSL-encrypted channel before a client can be certified to production. Only test card/ACH account data may be transmitted -<em>no live payment information should ever be transmitted to the test system.</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  🛈A test or live merchant account with BridgePay is necessary to successfully process transactions. To acquire a test account, complete the test account request form located on the [BridgePay Integrator Support Portal](https://bridgepaynetwork.force.com/is/s/login/).\n\n</code></pre><p>You may use the following test payment account information in testing:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Payment Type</th>\n<th>Token</th>\n<th>Routing Number</th>\n<th>Expiry Date</th>\n<th>Security Code</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MasterCard</td>\n<td>5439750001500347</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Visa</td>\n<td>4005550000000019</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Discover</td>\n<td>60011111111111117</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Diners</td>\n<td>36999999999999</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AMEX</td>\n<td>374255312721002</td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ACH</td>\n<td>11110000000000279992</td>\n<td>021000021</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"response-model\">Response Model</h1>\n<p>Each call to the API uses a common wrapper around the response object that is returned. This wrapper is called the ResponseModel. The <strong>ResponseModel</strong> object contains the following properties:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MissingFields</td>\n<td>List</td>\n<td></td>\n<td>This property is an array of strings that identify any fields that were missing in the request that caused the request to fail. For example, calling GetWalletViewByCustomerId without the CustomerWalletId will result in a failed request and this property will contain “CustomerWalletId” in the list, indicating that it was missing.</td>\n</tr>\n<tr>\n<td>InvalidFields</td>\n<td>List</td>\n<td></td>\n<td>This property is an array of strings that identify fields that failed validation and caused the request to fail. For example: Sending invalid credentials will cause the request to fail and this property will contain “Credentials” in the list, indicating that the credentials failed validation.</td>\n</tr>\n<tr>\n<td>Messages</td>\n<td>List</td>\n<td></td>\n<td>This property is an array of strings that provides more detailed information about the success or failure of the request. For example, when trying to retrieve a WalletView using GetWalletByCustomerId, if the ID requested does not exist in the database, the CustomerWalletId will be represented in the <strong>InvalidFields</strong> property since the ID was invalid, and the Messages property will contain a string saying, “Wallet not found.” as a means to provide more information about the failure.</td>\n</tr>\n<tr>\n<td>Success</td>\n<td>Boolean</td>\n<td></td>\n<td>Indicates whether the request succeeded or not.</td>\n</tr>\n<tr>\n<td>Id</td>\n<td></td>\n<td>String</td>\n<td>If the requested action affected one particular record, this field contains the ID of the record affected by the method called. For example, if the consumer requested to Deactivate a WalletView, the ID field in the ResponseModel would be the ID of the WalletView that was deactivated.</td>\n</tr>\n<tr>\n<td>ReturnObjectType</td>\n<td>String</td>\n<td></td>\n<td>Identifies the type of object stored in the ReturnObject property.</td>\n</tr>\n<tr>\n<td>ReturnObject</td>\n<td>Varies</td>\n<td></td>\n<td>This polymorphic object contains the object that was requested via the method. For example, if the consumer requested a WalletView, this ReturnObject property will contain the WalletView object they intended to retrieve.</td>\n</tr>\n<tr>\n<td>PageSize</td>\n<td>Integer</td>\n<td></td>\n<td>For future expansion</td>\n</tr>\n<tr>\n<td>Page</td>\n<td>Integer</td>\n<td></td>\n<td>For future expansion</td>\n</tr>\n<tr>\n<td>Total</td>\n<td>Integer</td>\n<td></td>\n<td>For future expansion</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Overview","slug":"overview"},{"content":"Authentication","slug":"authentication"},{"content":"Production URLs","slug":"production-urls"},{"content":"Testing and Integration Support","slug":"testing-and-integration-support"},{"content":"Response Model","slug":"response-model"}],"owner":"12042629","collectionId":"f8ee9fb2-6402-4064-a5b7-f530f9f29e2c","publishedId":"TWDTNzVn","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"336699"},"publishDate":"2023-05-26T14:55:09.000Z"},"item":[{"name":"WalletSite Model","item":[{"name":"GetSiteByID","id":"6b1a82af-3f70-4c69-b2a7-b197a7620af9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/GetSiteByID","description":"<p>Purpose: Allows the consumer to retrieve a specific Wallet Site by its unique SiteId.  </p>\n<p>Required Parameters</p>\n<p><strong>WalletSiteFilter with Credentials (Username &amp; Password)</strong></p>\n<p>ReturnObject in ResponseModel: <strong>WalletSite</strong> containing the data for the WalletSite Requested</p>\n","urlObject":{"protocol":"https","path":["Wallet.API","api","Wallet","GetSiteByID"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"a03657c1-e32d-41f6-90dd-897ae9070a42","name":"GetSiteByID","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/GetSiteByID"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 16 Feb 2021 15:48:00 GMT"},{"key":"Content-Length","value":"463"}],"cookie":[],"responseTime":null,"body":"{\n    \"ReturnObject\": {\n        \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\n        \"SiteTypeId\": \"sample string 1\",\n        \"Name\": \"ABC123\",\n        \"Description\": \"sample string 2\",\n        \"CreateDate\": \"YYYY-MM-DDTHH:MM:SS.NNN\",\n        \"UpdateDate\": \"YYYY-MM-DDTHH:MM:SS.NNN\",\n        \"ObjectState\": 0,\n        \"Messages\": [],\n        \"DataSourceResponses\": []\n    },\n    \"MissingFields\": [],\n    \"InvalidFields\": [],\n    \"Messages\": [],\n    \"Success\": true,\n    \"Id\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\n    \"ReturnObjectType\": \"Site\",\n    \"PageSize\": 0,\n    \"Page\": 0,\n    \"Total\": 0\n}"}],"_postman_id":"6b1a82af-3f70-4c69-b2a7-b197a7620af9"}],"id":"576314d5-f6ae-4880-b0e9-78e79c0b98ee","description":"<p>The WalletSite Model object describes a Wallet Site. Each WalletView has a WalletSite to which it belongs. The properties of a Wallet Site are as follows:  </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SiteId</td>\n<td>GUID</td>\n<td></td>\n<td>A unique ID generated by the API. Delivered to and returned from the API in string format.</td>\n</tr>\n<tr>\n<td>SiteTypeId</td>\n<td>String</td>\n<td></td>\n<td>Identifies the type of site. This is defaulted for the API but will assist developers in identifying sites that were created for Recurring Billing vs API generated.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>String</td>\n<td></td>\n<td>A friendly name for the Site as provided by the API consumer.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>String</td>\n<td></td>\n<td>A friendly description for the Site as provided by the API consumer.</td>\n</tr>\n<tr>\n<td>CreateDate</td>\n<td>DateTime</td>\n<td>String</td>\n<td>The date and time when the WalletSite was created.</td>\n</tr>\n<tr>\n<td>UpdateDate</td>\n<td>DateTime</td>\n<td></td>\n<td>The date and time the WalletSite was last updated.</td>\n</tr>\n<tr>\n<td>ObjectState</td>\n<td>Integer</td>\n<td></td>\n<td>Read Only. Describes the state of the object returned. • 0 = Unchanged • 1 = Added • 2 = Updated</td>\n</tr>\n<tr>\n<td>Messages</td>\n<td>List of String</td>\n<td></td>\n<td>Validation messages returned on the object.</td>\n</tr>\n<tr>\n<td>DataSourceResponses</td>\n<td>List of String</td>\n<td></td>\n<td>Responses from the Database engine regarding the object.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"576314d5-f6ae-4880-b0e9-78e79c0b98ee"},{"name":"WalletCustomField Model","item":[],"id":"99c00194-5db3-4e7a-846c-04e855fbbf6a","description":"<p>The WalletCustomField Model object describes a Custom Field that is associated with a WalletView. Each WalletView can have multiple WalletCustomFields associated with it. The properties of a WalletCustomField are as follows:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>OwnerId</td>\n<td>Integer</td>\n<td></td>\n<td>The Organization that Created the Custom Field configuration.</td>\n</tr>\n<tr>\n<td>TableName</td>\n<td>String</td>\n<td></td>\n<td>The name of the table where the wallets are stored.</td>\n</tr>\n<tr>\n<td>Id</td>\n<td>Long Integer</td>\n<td></td>\n<td>The unique ID of the data entry for this custom field/wallet combination.</td>\n</tr>\n<tr>\n<td>EntityName</td>\n<td>String</td>\n<td></td>\n<td>The WalletID.</td>\n</tr>\n<tr>\n<td>FieldName</td>\n<td>String</td>\n<td></td>\n<td>The field name of the custom field (used by BridgeComm).</td>\n</tr>\n<tr>\n<td>DisplayName</td>\n<td>String</td>\n<td></td>\n<td>The display name of the custom field (for UI purposes).</td>\n</tr>\n<tr>\n<td>Value</td>\n<td>String</td>\n<td></td>\n<td>The value assigned to this custom field for the wallet identified in the Entity ID.</td>\n</tr>\n<tr>\n<td>CustomFieldConfigId</td>\n<td>Integer</td>\n<td></td>\n<td>The unique ID of the configuration record for this custom field. For the CreateWalletView and UpdateWalletView API, use the property name \"Id\" within the WalletCustomField Model.</td>\n</tr>\n<tr>\n<td>CustomizableEntityId</td>\n<td>Integer</td>\n<td></td>\n<td>The unique ID of the CustomizableEntity for this custom field (should always be ‘3’ for Wallets).</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"99c00194-5db3-4e7a-846c-04e855fbbf6a"},{"name":"WalletView Model","item":[{"name":"GetWalletViewByWalletId","id":"59b1183f-2891-44f8-ad17-8e675e6a5174","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"WalletId\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/GetWalletViewByWalletId","description":"<p>Purpose: Allows the consumer to retrieve a specific WalletView by its WalletId.</p>\n<p>Required Parameters</p>\n<p><strong>WalletView Model with Credentials (Username &amp; Password)</strong></p>\n<p>ReturnObject in ResponseModel: <strong>WalletView</strong> model containing the data for the WalletView requested.</p>\n","urlObject":{"protocol":"https","path":["Wallet.API","api","Wallet","GetWalletViewByWalletId"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"38eb7e82-bc17-4771-8c3a-c473e0f18a7a","name":"GetWalletViewByWalletId","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"WalletId\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/GetWalletViewByWalletId"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 16 Feb 2021 15:58:33 GMT"},{"key":"Content-Length","value":"812"}],"cookie":[],"responseTime":null,"body":"{\n    \"ReturnObject\": {\n        \"Credentials\": null,\n        \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\n        \"WalletId\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\",\n        \"CustomerWalletId\": \"ABC123\",\n        \"CustomerAccountNumber\": \"1234567890\",\n        \"IsActive\": true,\n        \"Name\": \"My New Wallet\",\n        \"PaymentMethodId\": \"57879BBB-CEF0-418E-B151-1DDD80C5C58E\",\n        \"PaymentMethodType\": 0,\n        \"AccountType\": null,\n        \"LastFour\": \"5454\",\n        \"AccountHolderName\": \"John Doe\",\n        \"AccountHolderZip\": \"12345\",\n        \"AccountHolderPhone\": \"5555555555\",\n        \"AccountHolderEmail\": \"jdoe@anonymous.com\",\n        \"FailureCount\": 0,\n        \"MaxFailures\": 3,\n        \"LastResult\": null,\n        \"Token\": \"1000000000015454\",\n        \"RoutingNo\": null,\n        \"ExpirationDate\": \"1022\",\n        \"WalletCustomFields\": [\n            {\n                \"OwnerId\" : 201,\n                \"TableName\" : \"Wallet\",\n                \"Id\" : 51290,\n                \"EntityId\" : \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\",\n                \"FieldName\": \"GroupID\",\n                \"DisplayName\" : \"Group ID\",\n                \"Value\" : \"7011\",\n                \"CustomFieldConfigId\" : 1009,\n                \"CustomizableEntityId\" : 3,\n                \"WalletView\" : null\n            }\n        ],\n        \"CardType\": null\n    },\n    \"MissingFields\": [],\n    \"InvalidFields\": [],\n    \"Messages\": [],\n    \"Success\": true,\n    \"Id\": null,\n    \"ReturnObjectType\": \"WalletModel\",\n    \"PageSize\": 0,\n    \"Page\": 0,\n    \"Total\": 0\n}"}],"_postman_id":"59b1183f-2891-44f8-ad17-8e675e6a5174"},{"name":"GetWalletViewByPaymentMethodId","id":"1ab3f01c-0e26-41f9-93c6-6513379d8f2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"PaymentMethodId\": \"57879BBB-CEF0-418E-B151-1DDD80C5C58E\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/GetWalletViewByPaymentMethodId","description":"<p>Purpose: Allows the consumer to retrieve a specific WalletView by its PaymentMethodId.</p>\n<p>Required Parameters</p>\n<p><strong>WalletView Model with Credentials (Username &amp; Password)</strong></p>\n<p>ReturnObject in ResponseModel: <strong>WalletView</strong> model containing the data for the WalletView requested. </p>\n","urlObject":{"protocol":"https","path":["Wallet.API","api","Wallet","GetWalletViewByPaymentMethodId"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"25198400-2f34-4645-9a67-4faa7d71bced","name":"GetWalletViewByPaymentMethodId","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"PaymentMethodId\": \"57879BBB-CEF0-418E-B151-1DDD80C5C58E\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/GetWalletViewByPaymentMethodId"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 16 Feb 2021 21:23:33 GMT"},{"key":"Content-Length","value":"1038"}],"cookie":[],"responseTime":null,"body":"{\n    \"ReturnObject\": {\n        \"Credentials\": null,\n        \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\n        \"WalletId\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\",\n        \"CustomerWalletId\": null,\n        \"CustomerAccountNumber\": null,\n        \"IsActive\": true,\n        \"Name\": \"A New Wallet\",\n        \"PaymentMethodId\": \"57879BBB-CEF0-418E-B151-1DDD80C5C58E\",\n        \"PaymentMethodType\": 0,\n        \"AccountType\": null,\n        \"LastFour\": \"5454\",\n        \"AccountHolderName\": null,\n        \"AccountHolderZip\": null,\n        \"AccountHolderPhone\": null,\n        \"AccountHolderEmail\": null,\n        \"FailureCount\": 0,\n        \"MaxFailures\": 3,\n        \"LastResult\": null,\n        \"Token\": \"1000000000015454\",\n        \"RoutingNo\": null,\n        \"ExpirationDate\": null,\n        \"WalletCustomFields\": [\n            {\n                \"OwnerId\": 8129,\n                \"TableName\": \"RecurringBilling.dbo.Wallet\",\n                \"Id\": 30871,\n                \"EntityId\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\",\n                \"FieldName\": \"CustomFieldOwnedByGroup\",\n                \"DisplayName\": \"Our Custom Field within Wallets\",\n                \"Value\": \"NewProgram\",\n                \"CustomFieldConfigId\": 3079,\n                \"CustomizableEntityId\": 3,\n                \"WalletView\": null\n            }\n        ],\n        \"CardType\": null\n    },\n    \"MissingFields\": [],\n    \"InvalidFields\": [],\n    \"Messages\": [],\n    \"Success\": true,\n    \"Id\": null,\n    \"ReturnObjectType\": \"WalletModel\",\n    \"PageSize\": 0,\n    \"Page\": 0,\n    \"Total\": 0\n}"}],"_postman_id":"1ab3f01c-0e26-41f9-93c6-6513379d8f2d"},{"name":"GetWalletViewByCustomerId","id":"e1567dff-20c5-4e00-bc91-24c8bb490b9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\r\n    \"CustomerWalletId\": \"ABC123\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/GetWalletViewByCustomerId","description":"<p>Purpose: Allows the consumer to retrieve a specific WalletView by its CustomerWalletId.</p>\n<p>Required Parameters</p>\n<p><strong>WalletView Model with Credentials (Username &amp; Password)</strong></p>\n<p>ReturnObject in ResponseModel: <strong>WalletView</strong> model containing the data for the WalletView requested. </p>\n","urlObject":{"protocol":"https","path":["Wallet.API","api","Wallet","GetWalletViewByCustomerId"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"983c1a48-9272-43e0-b203-f7a84c177a15","name":"GetWalletViewByCustomerId","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\r\n    \"CustomerWalletId\": \"ABC123\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/GetWalletViewByCustomerId"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 16 Feb 2021 23:13:31 GMT"},{"key":"Content-Length","value":"1094"}],"cookie":[],"responseTime":null,"body":"{\n    \"ReturnObject\": {\n        \"Credentials\": null,\n        \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\n        \"WalletId\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\",\n        \"CustomerWalletId\": \"ABC123\",\n        \"CustomerAccountNumber\": \"1234567890\",\n        \"IsActive\": true,\n        \"Name\": \"My New Wallet\",\n        \"PaymentMethodId\": \"57879BBB-CEF0-418E-B151-1DDD80C5C58E\",\n        \"PaymentMethodType\": 0,\n        \"AccountType\": null,\n        \"LastFour\": \"5454\",\n        \"AccountHolderName\": \"John Doe\",\n        \"AccountHolderZip\": \"12345\",\n        \"AccountHolderPhone\": \"5555555555\",\n        \"AccountHolderEmail\": \"jdoe@anonymous.com\",\n        \"FailureCount\": 0,\n        \"MaxFailures\": 3,\n        \"LastResult\": null,\n        \"Token\": \"1000000000015454\",\n        \"RoutingNo\": null,\n        \"ExpirationDate\": \"1022\",\n        \"WalletCustomFields\": [\n            {\n                \"OwnerId\" : 201,\n                \"TableName\" : \"Wallet\",\n                \"Id\" : 51290,\n                \"EntityId\" : \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\",\n                \"FieldName\": \"GroupID\",\n                \"DisplayName\" : \"Group ID\",\n                \"Value\" : \"7011\",\n                \"CustomFieldConfigId\" : 1009,\n                \"CustomizableEntityId\" : 3,\n                \"WalletView\" : null\n            }\n        ],\n        \"CardType\": null\n    },\n    \"MissingFields\": [],\n    \"InvalidFields\": [],\n    \"Messages\": [],\n    \"Success\": true,\n    \"Id\": null,\n    \"ReturnObjectType\": \"WalletModel\",\n    \"PageSize\": 0,\n    \"Page\": 0,\n    \"Total\": 0\n}"}],"_postman_id":"e1567dff-20c5-4e00-bc91-24c8bb490b9e"}],"id":"b70d278d-c8df-4fc1-8c15-58b909756b1c","description":"<p>The WalletAPI provides objects called WalletViews which represent a single Wallet + Payment Method combination. Wallets provisioned in MyBridgePay can have multiple payment methods. WalletViews provisioned by the Wallet API are one Wallet &amp; Payment Method combined.</p>\n<p>WalletView Properties</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SiteId</td>\n<td>Guid</td>\n<td></td>\n<td>The SiteID for the Wallet Site that contains the WalletView.</td>\n</tr>\n<tr>\n<td>WalletId</td>\n<td>Guid</td>\n<td></td>\n<td>The unique ID generated by the API for the Wallet portion of the Wallet View.</td>\n</tr>\n<tr>\n<td>CustomerWalletId</td>\n<td>String</td>\n<td></td>\n<td>The client provided custom ID for the Wallet.</td>\n</tr>\n<tr>\n<td>CustomerAccountNumber</td>\n<td>String</td>\n<td></td>\n<td>Client Provided value representing their customer’s account number associated with the Wallet.</td>\n</tr>\n<tr>\n<td>IsActive</td>\n<td>Boolean</td>\n<td></td>\n<td>Identifies whether the WalletView is active for use with BridgeComm transactions.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>String</td>\n<td></td>\n<td>The name associated with the Wallet. Not necessarily the Account Holder’s Name.</td>\n</tr>\n<tr>\n<td>PaymentMethodId</td>\n<td>Guid</td>\n<td></td>\n<td>The unique ID generated by the API for the Payment Method portion of the Wallet View.</td>\n</tr>\n<tr>\n<td>PaymentMethodType</td>\n<td>Byte</td>\n<td></td>\n<td>Identifies the type of payment method associated with the Wallet View.  <br />0 = Credit Card. 1 = ACH.</td>\n</tr>\n<tr>\n<td>AccountType</td>\n<td>String</td>\n<td></td>\n<td>Used to further identify the account type. Typically, only used for ACH accounts to delineate between “Checking” and “Savings” account types.</td>\n</tr>\n<tr>\n<td>LastFour</td>\n<td>String</td>\n<td></td>\n<td>The last four numbers of the account number.</td>\n</tr>\n<tr>\n<td>CardType</td>\n<td>String</td>\n<td></td>\n<td>The card type of the card. For example: Visa, Mastercard, Discover, AmericanExpress</td>\n</tr>\n<tr>\n<td>AccountHolderName</td>\n<td>String</td>\n<td></td>\n<td>The name of the account holder on the payment method. (Used for AVS)</td>\n</tr>\n<tr>\n<td>AccountHolderZip</td>\n<td>String</td>\n<td></td>\n<td>The postal code on the address of the payment method. (Used for AVS)</td>\n</tr>\n<tr>\n<td>AccountHolderPhone</td>\n<td>String</td>\n<td></td>\n<td>The phone number on the payment method account.</td>\n</tr>\n<tr>\n<td>AccountHolderEmail</td>\n<td>String</td>\n<td></td>\n<td>The email address associated with the account holder.</td>\n</tr>\n<tr>\n<td>FailureCount</td>\n<td>Integer</td>\n<td></td>\n<td>Read Only. Describes the current number of times the payment method has failed since the last success.</td>\n</tr>\n<tr>\n<td>MaxFailures</td>\n<td>Integer</td>\n<td></td>\n<td>The maximum number of failures acceptable for the payment method.</td>\n</tr>\n<tr>\n<td>LastResult</td>\n<td>String</td>\n<td></td>\n<td>The last Response Message returned by BridgeComm for this payment method.</td>\n</tr>\n<tr>\n<td>Token</td>\n<td>String</td>\n<td></td>\n<td>The tokenized account number.</td>\n</tr>\n<tr>\n<td>RoutingNo</td>\n<td>String</td>\n<td></td>\n<td>If the payment method is ACH, the routing number for the checking account.</td>\n</tr>\n<tr>\n<td>ExpirationDate</td>\n<td>String</td>\n<td></td>\n<td>If the payment method is a Credit Card, the expiration date for the card.</td>\n</tr>\n<tr>\n<td>CustomFields</td>\n<td>List of WalletCustomField</td>\n<td></td>\n<td>If the Wallet was created with custom fields, this property will contain a list of the custom fields and the data created for the WalletView.  <br />Formatting is as follows:  <br />  <br />\"CustomFields\": {FieldID1, \"Value1\", FieldID2, \"Some Value2\"},</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b70d278d-c8df-4fc1-8c15-58b909756b1c"},{"name":"Wallet Site Management","item":[{"name":"CreateSite","id":"485fa0f9-91c2-491a-a15c-34830a2a9844","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"Name\": \"New Wallet Site\",\r\n    \"Description\": \"Collections of Wallets\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/CreateSite","description":"<p>This Creates a wallet site and generates the site ID.</p>\n","urlObject":{"protocol":"https","path":["Wallet.API","api","Wallet","CreateSite"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"1904a15b-4535-4e2b-93a1-734cee96c2db","name":"CreateSite","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"Name\": \"New Wallet Site\",\r\n    \"Description\": \"Collections of Wallets\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/CreateSite"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 16 Feb 2021 23:21:07 GMT"},{"key":"Content-Length","value":"487"}],"cookie":[],"responseTime":null,"body":"{\n    \"ReturnObject\": {\n        \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\n        \"SiteTypeId\": \"Default\",\n        \"Name\": \"New Wallet Site\",\n        \"Description\": \"Collections of Wallets\",\n        \"CreateDate\": \"2021-02-16T18:21:07.5481221-05:00\",\n        \"UpdateDate\": null,\n        \"ObjectState\": 1,\n        \"Messages\": [],\n        \"DataSourceResponses\": []\n    },\n    \"MissingFields\": [],\n    \"InvalidFields\": [],\n    \"Messages\": [],\n    \"Success\": true,\n    \"Id\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\n    \"ReturnObjectType\": \"Site\",\n    \"PageSize\": 0,\n    \"Page\": 0,\n    \"Total\": 0\n}"}],"_postman_id":"485fa0f9-91c2-491a-a15c-34830a2a9844"},{"name":"UpdateSite","id":"16f582df-438b-48df-b1ef-f03917c0e1bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\r\n    \"SiteTypeId\": \"Default\",\r\n    \"Name\": \"Updated Site Name\",\r\n    \"Description\": \"An updated collection of wallets\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/UpdateSite","description":"<p>This Creates a wallet site and generates the site ID.</p>\n","urlObject":{"protocol":"https","path":["Wallet.API","api","Wallet","UpdateSite"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"d5ff8ded-8b39-4723-a425-62d9c516a1c2","name":"UpdateSite","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\r\n    \"SiteTypeId\": \"Default\",\r\n    \"Name\": \"Updated Site Name\",\r\n    \"Description\": \"An updated collection of wallets\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/UpdateSite"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 16 Feb 2021 23:25:56 GMT"},{"key":"Content-Length","value":"476"}],"cookie":[],"responseTime":null,"body":"{\n    \"ReturnObject\": {\n        \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\n        \"SiteTypeId\": \"Default\",\n        \"Name\": \"Updated Site Name\",\n        \"Description\": \"An updated collection of wallets\",\n        \"CreateDate\": \"2021-02-11T13:14:09.04\",\n        \"UpdateDate\": \"2021-02-16T18:25:56.3511871-05:00\",\n        \"ObjectState\": 2,\n        \"Messages\": [],\n        \"DataSourceResponses\": []\n    },\n    \"MissingFields\": [],\n    \"InvalidFields\": [],\n    \"Messages\": [],\n    \"Success\": true,\n    \"Id\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\n    \"ReturnObjectType\": \"Site\",\n    \"PageSize\": 0,\n    \"Page\": 0,\n    \"Total\": 0\n}"}],"_postman_id":"16f582df-438b-48df-b1ef-f03917c0e1bf"},{"name":"GetSites","id":"0d9b79e5-40df-4bb9-b6e5-4a1aa807c99c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"UserName\": \"sample string 1\",\r\n    \"Password\": \"sample string 2\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/GetSites","description":"<p>Purpose: Allows the consumer to get a list of Wallet Sites.</p>\n<p><strong>Credentials</strong>  </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Property Name</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Username</td>\n<td>String</td>\n<td></td>\n<td>The user's user name</td>\n</tr>\n<tr>\n<td>Password</td>\n<td>String</td>\n<td></td>\n<td>The user's password</td>\n</tr>\n</tbody>\n</table>\n</div><p>Return <strong>ResponseModel</strong> with success as true or false. If success is 'true', a newly created object 'Id' will be returned.</p>\n","urlObject":{"protocol":"https","path":["Wallet.API","api","Wallet","GetSites"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"56795d66-8b9b-4d5c-a963-2cd2d8a1ec8b","name":"GetSites","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"UserName\": \"sample string 1\",\r\n    \"Password\": \"sample string 2\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/GetSites"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 16 Feb 2021 23:27:02 GMT"},{"key":"Content-Length","value":"438"}],"cookie":[],"responseTime":null,"body":"{\n    \"ReturnObject\": [\n        {\n            \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\n            \"SiteTypeId\": \"Default\",\n            \"Name\": \"Updated Site Name\",\n            \"Description\": \"An updated collection of wallets\",\n            \"CreateDate\": \"2021-02-11T13:14:09.04\",\n            \"UpdateDate\": \"2021-02-16T18:25:56.35\",\n            \"ObjectState\": 0,\n            \"Messages\": [],\n            \"DataSourceResponses\": []\n        }\n    ],\n    \"MissingFields\": [],\n    \"InvalidFields\": [],\n    \"Messages\": [],\n    \"Success\": true,\n    \"Id\": null,\n    \"ReturnObjectType\": \"List Site\",\n    \"PageSize\": 0,\n    \"Page\": 0,\n    \"Total\": 0\n}"}],"_postman_id":"0d9b79e5-40df-4bb9-b6e5-4a1aa807c99c"}],"id":"11d4ef4c-7431-4b14-bb2b-684bc7d8b2b7","description":"<p>This chapter describes how to create and manage Wallet Sites with the Wallet API. Using Wallet Site Management, you can:  </p>\n<ul>\n<li>Create a new Wallet Site (use: <strong>api/Wallet/CreateSite</strong>)</li>\n<li>Update an existing Wallet Site (use: <strong>api/Wallet/UpdateSite</strong>)</li>\n<li>Get a Wallet Site by the Wallet Site ID (use: <strong>api/Wallet/GetSiteByID</strong>)</li>\n<li>Get multiple Wallet sites by a filter (use: <strong>api/Wallet/GetSites</strong>)</li>\n<li>Subscribe a Merchant Account to a specific Wallet Site (use the <strong>Boarding API</strong> or <strong>MyBridgePay UI</strong>)</li>\n</ul>\n","_postman_id":"11d4ef4c-7431-4b14-bb2b-684bc7d8b2b7"},{"name":"Wallet View Management","item":[{"name":"CreateWalletView","id":"a9b57c47-6136-419a-96ab-bcda773a963c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\r\n    \"Name\": \"A New Wallet\",\r\n    \"CustomerWalletId\": \"ABC123\",\r\n    \"CustomerAccountNumber\": \"1234567890\",\r\n    \"IsActive\": true,\r\n    \"PaymentMethodType\": 0,\r\n    \"AccountType\": null,\r\n    \"LastFour\": \"5454\",\r\n    \"AccountHolderName\": \"John Doe\",\r\n    \"AccountHolderZip\": \"12345\",\r\n    \"AccountHolderPhone\": \"555555555\",\r\n    \"AccountHolderEmail\": \"jdoes@anonymous.com\",\r\n    \"ExpirationDate\": \"1022\",\r\n    \"Token\": \"1000000044935454\",\r\n    \"MaxFailures\" : 3,\r\n    \"CustomFields\": {12345, \"Value1\", 54321, \"Value2\"}\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/CreateWalletView?organizationID={{organizationID}}","description":"<p>Purpose: Allows the consumer to create new WalletViews.</p>\n<p>Note that the \"organizationID\" header can be replaced with a \"merchantAccountID\" header where the merchantAccountID value is equal to the Merchant Account Code.</p>\n<p>Required Parameters</p>\n<p><strong>WalletViewModel</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required/Optional</th>\n<th>Property Name</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>R</td>\n<td>Credentials</td>\n<td>Credentials</td>\n<td></td>\n<td>UserName and Password.</td>\n</tr>\n<tr>\n<td>R</td>\n<td>SiteId</td>\n<td>Guid</td>\n<td></td>\n<td>The Unique ID of the Wallet Site to associate the WalletView with.</td>\n</tr>\n<tr>\n<td>R</td>\n<td>Name</td>\n<td>String</td>\n<td></td>\n<td>The name of the Wallet.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>CustomerWalletId</td>\n<td>String</td>\n<td></td>\n<td>The client provided custom ID for the Wallet.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>CustomerAccountNumber</td>\n<td>String</td>\n<td></td>\n<td>Client Provided value representing their customer’s account number associated with the Wallet. Allows for alpha-numeric characters, periods \".\", and hyphen \"-\" characters. Do not include other special characters.</td>\n</tr>\n<tr>\n<td>R</td>\n<td>IsActive</td>\n<td>Boolean</td>\n<td></td>\n<td>Identifies whether the WalletView is active for use with BridgeComm transactions.</td>\n</tr>\n<tr>\n<td>R</td>\n<td>PaymentMethodType</td>\n<td>Byte</td>\n<td></td>\n<td>Identifies the type of payment method associated with the Wallet View.</td>\n</tr>\n<tr>\n<td>0 = Credit Card. 1 = ACH.</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>O</td>\n<td>AccountType</td>\n<td>String</td>\n<td></td>\n<td>Used to further identify an ACH account (“Checking” or “Savings”).</td>\n</tr>\n<tr>\n<td>R</td>\n<td>LastFour</td>\n<td>String</td>\n<td></td>\n<td>The last four numbers of the account number.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>AccountHolderName</td>\n<td>String</td>\n<td></td>\n<td>The name of the account holder on the payment method. (Used for AVS)</td>\n</tr>\n<tr>\n<td>O</td>\n<td>AccountHolderZip</td>\n<td>String</td>\n<td></td>\n<td>The postal code on the address of the payment method. (Used for AVS)</td>\n</tr>\n<tr>\n<td>O</td>\n<td>AccountHolderPhone</td>\n<td>String</td>\n<td></td>\n<td>The phone number on the payment method account.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>AccountHolderEmail</td>\n<td>String</td>\n<td></td>\n<td>The email address associated with the account holder.</td>\n</tr>\n<tr>\n<td>C</td>\n<td>ExpirationDate</td>\n<td>String</td>\n<td></td>\n<td>The expiration date for the payment method (required when recording a Credit Card payment method).</td>\n</tr>\n<tr>\n<td>C</td>\n<td>RoutingNo</td>\n<td>String</td>\n<td></td>\n<td>The routing number for the payment method (required when recording an ACH payment method).</td>\n</tr>\n<tr>\n<td>R</td>\n<td>Token</td>\n<td>String</td>\n<td></td>\n<td>The tokenized account number.</td>\n</tr>\n<tr>\n<td>R</td>\n<td>MaxFailures</td>\n<td>Integer</td>\n<td></td>\n<td>The number of failures allowed before the WalletView is deactivated. Valid values range from 0 to 10.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>CustomFields</td>\n<td>List of WalletCustomField objects</td>\n<td></td>\n<td>If the Wallet was created with custom fields, this property will contain a list of the custom fields and the data created for the WalletView.  <br />Formatting is as follows:  <br />  <br />\"CustomFields\": {FieldID1, \"Value1\", FieldID2, \"Some Value2\"},</td>\n</tr>\n</tbody>\n</table>\n</div><p>Return <strong>ResponseModel</strong> with success as true or false. If success is ‘true’, a newly created object ‘Id’ will be returned.</p>\n","urlObject":{"protocol":"https","path":["Wallet.API","api","Wallet","CreateWalletView"],"host":["www.bridgepaynetsecuretest.com"],"query":[{"description":{"content":"<p>The Merchant Account organization ID where the wallet will be created</p>\n","type":"text/plain"},"key":"organizationID","value":"{{organizationID}}"}],"variable":[]}},"response":[{"id":"e4844f8f-b34b-48d7-bff8-a491618f874a","name":"CreateWalletView - Credit Card with Custom Fields","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\r\n    \"CustomerWalletId\": \"ABC123\",\r\n    \"CustomerAccountNumber\": \"1234567890\",\r\n    \"IsActive\": true,\r\n    \"Name\": \"A New Wallet\",\r\n    \"PaymentMethodType\": 0,\r\n    \"AccountType\": null,\r\n    \"LastFour\": \"5454\",\r\n    \"AccountHolderName\": \"John Doe\",\r\n    \"AccountHolderZip\": \"12345\",\r\n    \"AccountHolderPhone\": \"5555555555\",\r\n    \"AccountHolderEmail\": \"jdoe@anonymous.com\",\r\n    \"ExpirationDate\": \"1022\",\r\n    \"Token\": \"1000000044935454\",\r\n    \"MaxFailures\" : 3,\r\n    \"CustomFields\": {12345, \"Value1\", 54321, \"Value2\"}\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/CreateWalletView?organizationID=MerchantAccountOrgId","protocol":"https","host":["www","bridgepaynetsecuretest","com"],"path":["Wallet.API","api","Wallet","CreateWalletView"],"query":[{"key":"organizationID","value":"MerchantAccountOrgId","description":"The Merchant Account organization ID where the wallet will be created"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 16 Feb 2021 23:32:36 GMT"},{"key":"Content-Length","value":"188"}],"cookie":[],"responseTime":null,"body":"{\n    \"ReturnObject\": null,\n    \"MissingFields\": [],\n    \"InvalidFields\": [],\n    \"Messages\": [],\n    \"Success\": true,\n    \"Id\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\",\n    \"ReturnObjectType\": null,\n    \"PageSize\": 0,\n    \"Page\": 0,\n    \"Total\": 0\n}"},{"id":"7a0f9463-e54c-4fa3-9817-ef49e7f048f3","name":"CreateWalletView - ACH","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"af017ce3-9b87-4987-b96b-9c9ef57334a2\",\r\n    \"Name\": \"SampleWallet2\",\r\n    \"CustomerWalletId\": null,\r\n    \"CustomerAccountNumber\": null,\r\n    \"IsActive\": true,\r\n    \"PaymentMethodType\": 1,\r\n    \"AccountType\": \"Checking\",\r\n    \"LastFour\": \"9992\",\r\n    \"AccountHolderName\": \"John Doe\",\r\n    \"AccountHolderZip\": \"12345\",\r\n    \"AccountHolderPhone\": \"5555555555\",\r\n    \"AccountHolderEmail\": \"jdoes@anonymous.com\",\r\n    \"ExpirationDate\": null,\r\n    \"Token\": \"11110000000000279992\",\r\n    \"RoutingNo\": \"021000021\",\r\n    \"MaxFailures\" : 3,\r\n    \"CustomFields\": {12345, \"Value1\", 54321, \"Value2\"}\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/CreateWalletView?organizationID=MerchantAccountOrgId","protocol":"https","host":["www.bridgepaynetsecuretest.com"],"path":["Wallet.API","api","Wallet","CreateWalletView"],"query":[{"key":"organizationID","value":"MerchantAccountOrgId","description":"The Merchant Account organization ID where the wallet will be created"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Wed, 17 Feb 2021 00:06:44 GMT"},{"key":"Content-Length","value":"188"}],"cookie":[],"responseTime":null,"body":"{\n    \"ReturnObject\": null,\n    \"MissingFields\": [],\n    \"InvalidFields\": [],\n    \"Messages\": [],\n    \"Success\": true,\n    \"Id\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\",\n    \"ReturnObjectType\": null,\n    \"PageSize\": 0,\n    \"Page\": 0,\n    \"Total\": 0\n}"},{"id":"0dfd62e5-4831-487e-9515-89e1e11c0105","name":"CreateWalletView - Credit Card","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\r\n    \"Name\": \"A New Wallet\",\r\n    \"CustomerWalletId\": \"ABC123\",\r\n    \"CustomerAccountNumber\": \"1234567890\",\r\n    \"IsActive\": true,\r\n    \"PaymentMethodType\": 0,\r\n    \"AccountType\": null,\r\n    \"LastFour\": \"5454\",\r\n    \"AccountHolderName\": \"John Doe\",\r\n    \"AccountHolderZip\": \"12345\",\r\n    \"AccountHolderPhone\": \"5555555555\",\r\n    \"AccountHolderEmail\": \"jdoes@anonymous.com\",\r\n    \"ExpirationDate\": \"1022\",\r\n    \"Token\": \"1000000000015454\",\r\n    \"MaxFailures\" : 3,\r\n    \"CustomFields\": {12345, \"Value1\", 54321, \"Value2\"}\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/CreateWalletView?organizationID=MerchantAccountOrgId","protocol":"https","host":["www.bridgepaynetsecuretest.com"],"path":["Wallet.API","api","Wallet","CreateWalletView"],"query":[{"key":"organizationID","value":"MerchantAccountOrgId","description":"The Merchant Account organization ID where the wallet will be created"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Mar 2021 15:23:00 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"},{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Expires","value":"-1"},{"key":"Content-Security-Policy","value":"frame-ancestors 'self';"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubdomains"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Referrer-Policy","value":"no-referrer-when-downgrade"},{"key":"X-FRAME-OPTIONS","value":"SAMEORIGIN"},{"key":"Server","value":""}],"cookie":[],"responseTime":null,"body":"{\n    \"ReturnObject\": null,\n    \"MissingFields\": [],\n    \"InvalidFields\": [],\n    \"Messages\": [],\n    \"Success\": true,\n    \"Id\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\",\n    \"ReturnObjectType\": null,\n    \"PageSize\": 0,\n    \"Page\": 0,\n    \"Total\": 0\n}"}],"_postman_id":"a9b57c47-6136-419a-96ab-bcda773a963c"},{"name":"UpdateWalletView","id":"7b25d135-8bda-4cd2-882f-e98bbbc0c0df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\r\n    \"WalletId\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\",\r\n    \"CustomerWalletId\": \"ABC123\",\r\n    \"CustomerAccountNumber\": \"1234567890\",\r\n    \"IsActive\": true,\r\n    \"Name\": \"An Updated Wallet\",\r\n    \"PaymentMethodId\": \"57879BBB-CEF0-418E-B151-1DDD80C5C58E\",\r\n    \"PaymentMethodType\": 0,\r\n    \"LastFour\": \"5454\",\r\n    \"AccountHolderName\": \"John Doe\",\r\n    \"AccountHolderZip\": \"12345\",\r\n    \"AccountHolderPhone\": \"555555555\",\r\n    \"AccountHolderEmail\": \"jdoe@anonymous.com\",\r\n    \"FailureCount\": 0,\r\n    \"MaxFailures\": 3,\r\n    \"LastResult\": null,\r\n    \"Token\": \"1000000044935454\",\r\n    \"RoutingNo\": null,\r\n    \"ExpirationDate\": \"1022\",\r\n    \"CustomFields\": {12345, \"Value1\", 54321, \"Value2\"}\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/UpdateWalletView","description":"<p>Purpose: Allows the consumer to update WalletViews.</p>\n<p><strong>Note</strong>: The UpdateWalletView will update every field in the wallet as supplied in the UpdateWalletView call, therefore in order for all values sent in the CreateWalletView call to retain their original value they must be supplied in the UpdateWalletView call along with the specific field(s) that need to be updated.</p>\n<p>Required Parameters</p>\n<p><strong>WalletViewModel</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required/Optional</th>\n<th>Property Name</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>R</td>\n<td>Credentials</td>\n<td>Credentials</td>\n<td></td>\n<td>UserName and Password.</td>\n</tr>\n<tr>\n<td>R</td>\n<td>SiteId</td>\n<td>Guid</td>\n<td></td>\n<td>The Unique ID of the Wallet Site to associate the WalletView with.</td>\n</tr>\n<tr>\n<td>R</td>\n<td>WalletId</td>\n<td>Guid</td>\n<td></td>\n<td>The Unique ID generated by the API for the Wallet portion of the WalletView.</td>\n</tr>\n<tr>\n<td>R</td>\n<td>Name</td>\n<td>String</td>\n<td></td>\n<td>The name of the Wallet.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>CustomerWalletId</td>\n<td>String</td>\n<td></td>\n<td>The client provided custom ID for the Wallet.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>CustomerAccountNumber</td>\n<td>String</td>\n<td></td>\n<td>Client Provided value representing their customer’s account number associated with the Wallet. Allows for alpha-numeric characters, periods \".\", and hyphen \"-\" characters. Do not include other special characters.</td>\n</tr>\n<tr>\n<td>R</td>\n<td>IsActive</td>\n<td>Boolean</td>\n<td></td>\n<td>Identifies whether the WalletView is active for use with BridgeComm transactions.</td>\n</tr>\n<tr>\n<td>R</td>\n<td>PaymentMethodId</td>\n<td>Guid</td>\n<td></td>\n<td>The Unique ID generated by the API for the Payment Method portion of the WalletView.</td>\n</tr>\n<tr>\n<td>R</td>\n<td>PaymentMethodType</td>\n<td>Byte</td>\n<td></td>\n<td>Identifies the type of payment method associated with the Wallet View.</td>\n</tr>\n<tr>\n<td>0 = Credit Card. 1 = ACH.</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>O</td>\n<td>AccountType</td>\n<td>String</td>\n<td></td>\n<td>Used to further identify an ACH account (“Checking” or “Savings”).</td>\n</tr>\n<tr>\n<td>R</td>\n<td>LastFour</td>\n<td>String</td>\n<td></td>\n<td>The last four numbers of the account number.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>AccountHolderName</td>\n<td>String</td>\n<td></td>\n<td>The name of the account holder on the payment method. (Used for AVS)</td>\n</tr>\n<tr>\n<td>O</td>\n<td>AccountHolderZip</td>\n<td>String</td>\n<td></td>\n<td>The postal code on the address of the payment method. (Used for AVS)</td>\n</tr>\n<tr>\n<td>O</td>\n<td>AccountHolderPhone</td>\n<td>String</td>\n<td></td>\n<td>The phone number on the payment method account.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>AccountHolderEmail</td>\n<td>String</td>\n<td></td>\n<td>The email address associated with the account holder.</td>\n</tr>\n<tr>\n<td>C</td>\n<td>ExpirationDate</td>\n<td>String</td>\n<td></td>\n<td>The expiration date for the payment method (required when recording a Credit Card payment method).</td>\n</tr>\n<tr>\n<td>C</td>\n<td>RoutingNo</td>\n<td>String</td>\n<td></td>\n<td>The routing number for the payment method (required when recording an ACH payment method).</td>\n</tr>\n<tr>\n<td>R</td>\n<td>Token</td>\n<td>String</td>\n<td></td>\n<td>The tokenized account number.</td>\n</tr>\n<tr>\n<td>R</td>\n<td>MaxFailures</td>\n<td>Integer</td>\n<td></td>\n<td>The number of failures allowed before the WalletView is deactivated.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>CustomFields</td>\n<td>List of WalletCustomField</td>\n<td></td>\n<td>If the Wallet was created with custom fields, this property will contain a list of the custom fields and the data created for the WalletView.  <br />Formatting is as follows:  <br />  <br />\"CustomFields\": {FieldID1, \"Value1\", FieldID2, \"Some Value2\"},</td>\n</tr>\n</tbody>\n</table>\n</div><p>Return <strong>ResponseModel</strong> with success as true or false. If success is ‘true’, the object ‘Id’ will be returned.</p>\n","urlObject":{"protocol":"https","path":["Wallet.API","api","Wallet","UpdateWalletView"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"c4119589-7d8c-45bb-96c6-7dcbd7a712ba","name":"UpdateWalletView","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\r\n    \"WalletId\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\",\r\n    \"CustomerWalletId\": \"ABC123\",\r\n    \"CustomerAccountNumber\": \"1234567890\",\r\n    \"IsActive\": true,\r\n    \"Name\": \"An Updated Wallet\",\r\n    \"PaymentMethodId\": \"57879BBB-CEF0-418E-B151-1DDD80C5C58E\",\r\n    \"PaymentMethodType\": 0,\r\n    \"LastFour\": \"5454\",\r\n    \"AccountHolderName\": \"John Doe\",\r\n    \"AccountHolderZip\": \"12345\",\r\n    \"AccountHolderPhone\": \"5555555555\",\r\n    \"AccountHolderEmail\": \"jdoes@anonymous.com\",\r\n    \"FailureCount\": 0,\r\n    \"MaxFailures\": 3,\r\n    \"LastResult\": null,\r\n    \"Token\": \"1000000044935454\",\r\n    \"ExpirationDate\": \"1022\",\r\n    \"CustomFields\": {12345, \"Value1\", 54321, \"Value2\"}\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/UpdateWalletView"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 16 Feb 2021 23:39:13 GMT"},{"key":"Content-Length","value":"188"}],"cookie":[],"responseTime":null,"body":"{\n    \"ReturnObject\": null,\n    \"MissingFields\": [],\n    \"InvalidFields\": [],\n    \"Messages\": [],\n    \"Success\": true,\n    \"Id\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\",\n    \"ReturnObjectType\": null,\n    \"PageSize\": 0,\n    \"Page\": 0,\n    \"Total\": 0\n}"}],"_postman_id":"7b25d135-8bda-4cd2-882f-e98bbbc0c0df"},{"name":"ActivateWalletView","id":"9cdfe6cc-c88d-4bc7-834a-bf5a671cd3a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\r\n    \"WalletId\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Bridgepay.Wallet.API/api/Wallet/ActivateWalletView","description":"<p>Purpose: Allows the consumer to activate a WalletView</p>\n<p>Required Parameters</p>\n<p><strong>WalletViewModel</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required/Optional</th>\n<th>Property Name</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>R</td>\n<td>Credentials</td>\n<td>Credentials</td>\n<td></td>\n<td>UserName &amp; Password.</td>\n</tr>\n<tr>\n<td>R</td>\n<td>SiteId</td>\n<td>String</td>\n<td></td>\n<td>The Unique ID of the Wallet Site to associate the WalletView with.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>WalletId</td>\n<td>String</td>\n<td></td>\n<td>Use one of these IDs to find the WalletView that you want to Activate.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>CustomerWalletId</td>\n<td>String</td>\n<td></td>\n<td>x</td>\n</tr>\n<tr>\n<td>O</td>\n<td>PaymentMethodId</td>\n<td>String</td>\n<td></td>\n<td>x</td>\n</tr>\n</tbody>\n</table>\n</div><p>Return <strong>ResponseModel</strong> with success as true or false. If success is ‘true’, a newly created object ‘Id’ will be returned.</p>\n","urlObject":{"protocol":"https","path":["Bridgepay.Wallet.API","api","Wallet","ActivateWalletView"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"fee7a036-9a7c-4143-b524-005a1dd1369f","name":"ActivateWalletView","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\r\n    \"WalletId\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/ActivateWalletView"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 16 Feb 2021 23:45:27 GMT"},{"key":"Content-Length","value":"188"}],"cookie":[],"responseTime":null,"body":"{\n    \"ReturnObject\": null,\n    \"MissingFields\": [],\n    \"InvalidFields\": [],\n    \"Messages\": [],\n    \"Success\": true,\n    \"Id\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\",\n    \"ReturnObjectType\": null,\n    \"PageSize\": 0,\n    \"Page\": 0,\n    \"Total\": 0\n}"}],"_postman_id":"9cdfe6cc-c88d-4bc7-834a-bf5a671cd3a1"},{"name":"DeactivateWalletView","id":"ffa07069-6847-448f-8ad6-f1b8eaec2dc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\r\n    \"WalletId\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/DeactivateWalletView","description":"<p>Purpose: Allows the consumer to deactivate a WalletView.</p>\n<p>Required Parameters</p>\n<p><strong>WalletViewModel</strong>  </p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required/Optional</th>\n<th>Property Name</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>R</td>\n<td>Credentials</td>\n<td>Credentials</td>\n<td></td>\n<td>UserName &amp; Password.</td>\n</tr>\n<tr>\n<td>R</td>\n<td>SiteId</td>\n<td>String</td>\n<td></td>\n<td>The Unique ID of the Wallet Site to associate the WalletView with.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>WalletId</td>\n<td>String</td>\n<td></td>\n<td>Use one of these IDs to find the WalletView that you want to Activate.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>CustomerWalletId</td>\n<td>String</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>O</td>\n<td>PaymentMethodId</td>\n<td>String</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>Return <strong>ResponseModel</strong> with success as true or false. If success is ‘true’, a newly created object ‘Id’ will be returned.</p>\n","urlObject":{"protocol":"https","path":["Wallet.API","api","Wallet","DeactivateWalletView"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"871f22f0-2eec-426d-a081-b2de69792eb1","name":"DeactivateWalletView","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\r\n    \"WalletId\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/DeactivateWalletView"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 16 Feb 2021 23:46:33 GMT"},{"key":"Content-Length","value":"188"}],"cookie":[],"responseTime":null,"body":"{\n    \"ReturnObject\": null,\n    \"MissingFields\": [],\n    \"InvalidFields\": [],\n    \"Messages\": [],\n    \"Success\": true,\n    \"Id\": \"8aa5f5bb-492f-4f39-918a-1cc748d75b4e\",\n    \"ReturnObjectType\": null,\n    \"PageSize\": 0,\n    \"Page\": 0,\n    \"Total\": 0\n}"}],"_postman_id":"ffa07069-6847-448f-8ad6-f1b8eaec2dc1"},{"name":"GetWalletViews","id":"e86ab259-94e2-4457-9ff8-11385e8fb151","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\r\n    \"SortBy\": \"AccountHolderName\",\r\n    \"PageSize\": \"2\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/GetWalletViews","description":"<p>Purpose: Allows the consumer to get a list of WalletViews based on a filter. Will return both active and deactivated wallets.</p>\n<p>Required Parameters</p>\n<p><strong>WalletViewFilter</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Required/Optional</th>\n<th>Property Name</th>\n<th>Data Type</th>\n<th>Length</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>R</td>\n<td>Credentials</td>\n<td>Credentials Object</td>\n<td></td>\n<td>UserName and Password.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>PaymentMethodId</td>\n<td>String</td>\n<td></td>\n<td>The unique ID generated by the API for the Payment Method portion of the Wallet View.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>CustomerWalletId</td>\n<td>String</td>\n<td></td>\n<td>The client provided custom ID for the Wallet.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>WalletId</td>\n<td>String</td>\n<td></td>\n<td>The unique ID generated by the API for the Wallet portion of the Wallet View.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>CustomerAccountNumber</td>\n<td>String</td>\n<td></td>\n<td>Client Provided value representing their customer’s account number associated with the Wallet. Allows for alpha-numeric characters, periods \".\", and hyphen \"-\" characters. Do not include other special characters.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>IsActive</td>\n<td>Boolean</td>\n<td></td>\n<td>Identifies whether the WalletView is active for use with BridgeComm transactions.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>PaymentMethodType</td>\n<td>Byte</td>\n<td></td>\n<td>Identifies the type of payment method associated with the Wallet View.</td>\n</tr>\n<tr>\n<td>0 = Credit Card. 1 = ACH.</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>O</td>\n<td>LastFour</td>\n<td>String</td>\n<td></td>\n<td>The last four numbers of the account number.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>AccountHolderName</td>\n<td>String</td>\n<td></td>\n<td>The name of the account holder on the payment method. (Used for AVS)</td>\n</tr>\n<tr>\n<td>O</td>\n<td>AccountHolderZip</td>\n<td>String</td>\n<td></td>\n<td>The postal code on the address of the payment method. (Used for AVS)</td>\n</tr>\n<tr>\n<td>O</td>\n<td>AccountHolderPhone</td>\n<td>String</td>\n<td></td>\n<td>The phone number on the payment method account.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>AccountHolderEmail</td>\n<td>String</td>\n<td></td>\n<td>The email address associated with the account holder.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>CustomFields</td>\n<td>List of WalletCustomField</td>\n<td></td>\n<td>If the Wallet was created with custom fields, this property will contain a list of the custom fields and the data created for the WalletView.  <br />Formatting is as follows:  <br />  <br />\"CustomFields\": {FieldID1, \"Value1\", FieldID2, \"Some Value2\"},</td>\n</tr>\n<tr>\n<td>O</td>\n<td>SortBy</td>\n<td>String</td>\n<td></td>\n<td>Provides option to sort the list returned by the property selected.</td>\n</tr>\n<tr>\n<td>O</td>\n<td>PageSize</td>\n<td>Integer</td>\n<td></td>\n<td>Provides the ability to determine the number of rows returned in one page (max 1000).</td>\n</tr>\n<tr>\n<td>O</td>\n<td>Page</td>\n<td>Integer</td>\n<td></td>\n<td>Provides the ability to determine the page returned (Page 0 is the First Page of data).</td>\n</tr>\n</tbody>\n</table>\n</div><p>Return <strong>ResponseModel</strong> with success as true or false. If success is ‘true’, a newly created object ‘Id’ will be returned.</p>\n","urlObject":{"protocol":"https","path":["Wallet.API","api","Wallet","GetWalletViews"],"host":["www.bridgepaynetsecuretest.com"],"query":[],"variable":[]}},"response":[{"id":"fd674e9e-81e5-4930-90a9-82908ba6649b","name":"GetWalletViews","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"Credentials\": {\r\n        \"UserName\": \"sample string 1\",\r\n        \"Password\": \"sample string 2\"\r\n    },\r\n    \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\r\n    \"SortBy\": \"AccountHolderName\",\r\n    \"PageSize\": \"2\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://www.bridgepaynetsecuretest.com/Wallet.API/api/Wallet/GetWalletViews"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Expires","value":"-1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Date","value":"Tue, 16 Feb 2021 23:48:08 GMT"},{"key":"Content-Length","value":"1952"}],"cookie":[],"responseTime":null,"body":"{\n    \"ReturnObject\": [\n        {\n            \"Credentials\": null,\n            \"SiteId\": \"1d056d44-2d05-4301-aea8-8877a4b31c06\",\n            \"WalletId\": \"3B9CA7F3-1671-4D7E-AC43-FEDA2DB6794F\",\n            \"CustomerWalletId\": null,\n            \"CustomerAccountNumber\": null,\n            \"IsActive\": true,\n            \"Name\": \"SampleWallet\",\n            \"PaymentMethodId\": \"91573432-EB10-4F14-896C-45D7415A9DB4\",\n            \"PaymentMethodType\": 0,\n            \"AccountType\": null,\n            \"LastFour\": \"1201\",\n            \"AccountHolderName\": null,\n            \"AccountHolderZip\": null,\n            \"AccountHolderPhone\": null,\n            \"AccountHolderEmail\": null,\n            \"FailureCount\": 1,\n            \"MaxFailures\": 1,\n            \"LastResult\": \"Call for Authorization\",\n            \"Token\": \"1000000010321201\",\n            \"RoutingNo\": null,\n            \"ExpirationDate\": \"1017\",\n            \"WalletCustomFields\": [\n                {\n                    \"OwnerId\": 1234,\n                    \"TableName\": \"RecurringBilling.dbo.Wallet\",\n                    \"Id\": 12345,\n                    \"EntityId\": \"3B9CA7F3-1671-4D7E-AC43-FEDA2DB6794F\",\n                    \"FieldName\": \"CustomFieldOwnedByGroup\",\n                    \"DisplayName\": \"Our Custom Field within Wallets\",\n                    \"Value\": \"NewProgram\",\n                    \"CustomFieldConfigId\": 9876,\n                    \"CustomizableEntityId\": 3,\n                    \"WalletView\": null\n                }\n            ],\n            \"CardType\": null\n        },\n        {\n            \"Credentials\": null,\n            \"SiteId\": \"af017ce3-9b87-4987-b96b-9c9ef57334a2\",\n            \"WalletId\": \"5ADAD456-148C-46EC-8C07-9FD98A271C53\",\n            \"CustomerWalletId\": null,\n            \"CustomerAccountNumber\": null,\n            \"IsActive\": true,\n            \"Name\": \"SampleWallet2\",\n            \"PaymentMethodId\": \"381EDD37-21BB-4050-BCDF-9E0499BAC492\",\n            \"PaymentMethodType\": 1,\n            \"AccountType\": \"Checking\",\n            \"LastFour\": \"6789\",\n            \"AccountHolderName\": null,\n            \"AccountHolderZip\": null,\n            \"AccountHolderPhone\": null,\n            \"AccountHolderEmail\": null,\n            \"FailureCount\": 0,\n            \"MaxFailures\": 10,\n            \"LastResult\": null,\n            \"Token\": \"11110000000076886789\",\n            \"RoutingNo\": \"123456789\",\n            \"ExpirationDate\": null,\n            \"WalletCustomFields\": [\n                {\n                    \"OwnerId\": 1234,\n                    \"TableName\": \"RecurringBilling.dbo.Wallet\",\n                    \"Id\": 12345,\n                    \"EntityId\": \"3B9CA7F3-1671-4D7E-AC43-FEDA2DB6794F\",\n                    \"FieldName\": \"CustomFieldOwnedByGroup\",\n                    \"DisplayName\": \"Our Custom Field within Wallets\",\n                    \"Value\": \"NewProgram\",\n                    \"CustomFieldConfigId\": 9876,\n                    \"CustomizableEntityId\": 3,\n                    \"WalletView\": null\n                }\n            ],\n            \"CardType\": null\n        }\n    ],\n    \"MissingFields\": [],\n    \"InvalidFields\": [],\n    \"Messages\": [],\n    \"Success\": true,\n    \"Id\": null,\n    \"ReturnObjectType\": \"List WalletModel\",\n    \"PageSize\": 2,\n    \"Page\": 0,\n    \"Total\": 1254\n}"}],"_postman_id":"e86ab259-94e2-4457-9ff8-11385e8fb151"}],"id":"81eae04e-a163-4f2e-b821-128aa7b1443b","description":"<p>This chapter describes how to create and manage Wallet Views associated with a Wallet Site. The Wallet View combines the wallet, payment method, and financially responsible party into one simplified structure.</p>\n","_postman_id":"81eae04e-a163-4f2e-b821-128aa7b1443b"},{"name":"Appendix","item":[{"name":"Version Reporting","item":[{"name":"Wallet API","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});"],"type":"text/javascript","id":"410a9814-4c74-4db5-bbfb-6be06e0bafe8"}}],"id":"bd303214-4138-4a1d-9f7d-efb432d606ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://{{baseURL}}/Wallet.API/api/VersionReporter/GetVersion","description":"<p>This GET is used to retrieve the current version of the Wallet API.</p>\n","urlObject":{"protocol":"https","path":["Wallet.API","api","VersionReporter","GetVersion"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"28cb848b-c741-4efc-bb15-e921d310def3","name":"Wallet API","originalRequest":{"method":"GET","header":[],"url":"https://{{baseURL}}/Wallet.API/api/VersionReporter/GetVersion"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"ApplicationName\": \"Bridgepay.WalletAPI\",\n    \"VersionNumber\": \"2022.2.0.49\"\n}"}],"_postman_id":"bd303214-4138-4a1d-9f7d-efb432d606ac"},{"name":"Wallet Service","event":[{"listen":"test","script":{"exec":["pm.test(\"Status code is 200\", function () {\r","    pm.response.to.have.status(200);\r","});\r",""],"type":"text/javascript","id":"4d4f6087-52ad-43f7-94c6-16fb0d1a76b7"}}],"id":"2e173cce-3347-45ca-bb48-b3c439be36e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"\"http://bridgepaynetsecuretx.com/versionreporter/IVersionReporter/GetVersion\"","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ver=\"http://bridgepaynetsecuretx.com/versionreporter\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ver:GetVersion/>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://{{baseURL}}/Wallet.Service/VersionReporter.svc/v1","description":"<p>This POST request will return the current version of the Wallet Service.</p>\n","urlObject":{"protocol":"https","path":["Wallet.Service","VersionReporter.svc","v1"],"host":["{{baseURL}}"],"query":[],"variable":[]}},"response":[{"id":"2c145105-1b3b-4499-90dc-ff4eaca5bbfa","name":"Wallet Service","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml;charset=UTF-8","type":"text"},{"key":"SOAPAction","value":"\"http://bridgepaynetsecuretx.com/versionreporter/IVersionReporter/GetVersion\"","type":"text"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ver=\"http://bridgepaynetsecuretx.com/versionreporter\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ver:GetVersion/>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>","options":{"raw":{"language":"xml"}}},"url":"https://{{baseURL}}/Wallet.Service/VersionReporter.svc/v1"},"_postman_previewlanguage":"xml","header":[{"key":"Content-Type","value":"application/xml","name":"Content-Type","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\">\n    <s:Body>\n        <GetVersionResponse xmlns=\"http://bridgepaynetsecuretx.com/versionreporter\">\n            <GetVersionResult xmlns:a=\"http://schemas.datacontract.org/2004/07/Bridgepay.Core.Models\" xmlns:i=\"http://www.w3.org/2001/XMLSchema-instance\">\n                <a:ApplicationName>Bridgepay.Wallet.Service</a:ApplicationName>\n                <a:VersionNumber>2022.2.0.35</a:VersionNumber>\n            </GetVersionResult>\n        </GetVersionResponse>\n    </s:Body>\n</s:Envelope>"}],"_postman_id":"2e173cce-3347-45ca-bb48-b3c439be36e0"}],"id":"0de2686c-171e-4bbf-94a1-16dc74719f25","description":"<p>The Version Reporting requests will allow a user to check the current version of the Wallet API or Service.</p>\n","_postman_id":"0de2686c-171e-4bbf-94a1-16dc74719f25"}],"id":"76f62528-fb3e-4087-ad25-57b6286dd2af","description":"<h3 id=\"document-version\">Document Version:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Version:</strong></th>\n<th><strong>Updated by:</strong></th>\n<th><strong>Change(s):</strong></th>\n<th><strong>Date:</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1.1</td>\n<td>Noah Hippensteel</td>\n<td>FE 24.5 changes. See release notes for details.</td>\n<td>10/11/2024</td>\n</tr>\n<tr>\n<td>1.0</td>\n<td>Noah Hippensteel</td>\n<td>Added Document Version Table.</td>\n<td>09/09/2024</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"76f62528-fb3e-4087-ad25-57b6286dd2af"}],"event":[{"listen":"prerequest","script":{"id":"31970bed-a3d0-4af8-89c7-a70e4941d817","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"db1f2655-6a06-4011-946d-c89880cf2476","type":"text/javascript","exec":[""]}}],"variable":[{"key":"username","value":"sample string 1"},{"key":"password","value":"sample string 2"},{"key":"siteId","value":"1d056d44-2d05-4301-aea8-8877a4b31c06"},{"key":"BaseURL","value":"www.bridgepaynetsecuretest.com"},{"key":"paymentMethodId","value":"57879BBB-CEF0-418E-B151-1DDD80C5C58E"},{"key":"walletId","value":"8aa5f5bb-492f-4f39-918a-1cc748d75b4e"},{"key":"desiredSiteWalletName","value":"New Wallet Site"},{"key":"desiredSiteWalletDescription","value":"Collections of Wallets"},{"key":"customerWalletId","value":"ABC123"},{"key":"updatedSiteName","value":"Updated Site Name"},{"key":"customFieldConfigId","value":"1234"},{"key":"merchantAccountId","value":"MerchantAccountOrgId"}]}