{"info":{"_postman_id":"c2ed8960-85f9-490a-b134-5f4468df5161","name":"SplitIt Web API","description":"<html><head></head><body><h2>Welcome</h2>\n<p>Welcome to the Splitit API reference; Before using this document, it is recommended to read our&nbsp;<a href=\"https://www.splitit.com/for-developers/\">solution overview</a>&nbsp;in order to choose the best solution for your needs.</p>\n<h2>Prerequisite &nbsp;</h2>\n<p>&nbsp;</p>\n<p>In order to start working you will need the following data:</p>\n<ul>\n<li>UserName -&nbsp;The username of your API user in Splitit system</li>\n<li>Password -&nbsp;The password&nbsp;of your API user in Splitit system</li>\n<li>ApiKey - Your terminal API key</li>\n</ul>\n<p>You must receive this data from your Splitit onboarding contact. If you need assistance, please email us at&nbsp;<a href=\"mailto:onboarding@splitit.com\">onboarding@splitit.com</a></p>\n<h2>Sandbox and Production&nbsp;<strong>environments</strong></h2>\n<p>Development should be done in our sandbox environment. Once&nbsp;development is complete,&nbsp;please contact your onboarding contact for approval and credentials to our production&nbsp;environment.</p>\n<ul>\n<li>Sandbox:</li>\n<ul>\n<li>URL -&nbsp;<a href=\"https://webapi.sandbox.splitit.com/\">https://web-api-sandbox.splitit.com</a></li>\n<li>Test Cards (any other card will result error \"Unrecognized card\" ) :</li>\n<ul>\n<li>Visa:&nbsp;4111 1111 1111 1111</li>\n<li>Master Card:&nbsp;5555 5555 5555 4444</li>\n</ul>\n</ul>\n<li>Production</li>\n<ul>\n<li>URL -&nbsp;&nbsp;<a href=\"https://webapi.splitit.com/\">https://web-api.splitit.com</a></li>\n</ul>\n</ul>\n<h2>API Reference content</h2>\n<p>Each service contains the&nbsp;following details:</p>\n<ol>\n<li>Service endpoint route</li>\n<li>General description of the service&nbsp;</li>\n<li>Detailed request parameters description</li>\n<li>Detailed response parameters&nbsp;description</li>\n<li>Data required to be sent in the request header&nbsp;</li>\n<li><strong>Example for Json data body</strong>&nbsp;required to be sent in&nbsp;body</li>\n<li>Code example (choose your preferred language on the selection list located in the right bar)</li>\n</ol>\n<p><strong>&nbsp;</strong></p>\n<h2>&nbsp;</h2>\n<p><strong>General&nbsp;</strong></p>\n<p>Splitit services are implemented as simple and standard HTTP POST requests with 1 header parameter (Content-Type = application/json) and Json body with specific schema for each request.</p>\n<p>&nbsp;</p>\n<p><strong>Request</strong></p>\n<p>Each&nbsp;request body (other than login) must contain an element called RequestHeader which contains the following&nbsp;parameters:</p>\n<ul>\n<li>SessionId - the session received by the login request (see request below)</li>\n<li>ApiKey&nbsp;– use the terminal API key received by your Splitit onboarding contact</li>\n</ul>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><strong>Response</strong></p>\n<p>Each response contains an element called ResponseHeader which includes the following&nbsp;parameters:</p>\n<ul>\n<li>Succeeded&nbsp;-&nbsp;boolean parameter indicating if the request succeeded or failed (true - succeeded, false - failed).<br> </li>\n<li>Errors – An array of errors, populated whenever the response failed (succeeded = false). Each element in the errors contains an error code and error description. Error descriptions can be displayed to users.&nbsp;</li>\n<li>Remark&nbsp;- on current version, only first element in error collection is populated. &nbsp;</li>\n</ul>\n<p>&nbsp;</p>\n<p><strong>Important:</strong>&nbsp;Each response must be verified it succeeded as following:</p>\n<p>1) HTTP Status code = 200 -&nbsp;indicating there was no network or infrastructure error</p>\n<p>2) ResponseHeader.Succeeded= true - applicative check indicating&nbsp;all business validation succeeded and the operation was done successfully.</p>\n<p>&nbsp;<strong>Please refer to your specific request after choosing your solution from our&nbsp;</strong><strong><a href=\"https://www.splitit.com/for-developers/\">documentation</a>.</strong></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<hr><hr>\n<p>&nbsp;</p>\n<p>&nbsp;</p></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"795699","collectionId":"c2ed8960-85f9-490a-b134-5f4468df5161","publishedId":"RWaNQSJH","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2018-09-20T06:53:36.000Z"},"item":[{"name":"1. Login","event":[{"listen":"test","script":{"id":"aef43e82-d381-4c25-a060-984a12f9636d","exec":["var data = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"SessionId\", data.SessionId);",""],"type":"text/javascript"}}],"id":"a026e2d6-427f-47f8-b98e-7722507682be","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"UserName\": \"{{UserName}}\",\n    \"Password\": \"{{Password}}\"\n}"},"url":"{{url}}/api/Login?format=json","description":"<h2>Description:</h2>\n<p>The authentication will allow your server\\application to connect with Splitit services by session ID returned from the login service.</p>\n<p>Authentication should be done with API credentials (username and password) you must receive from your Splitit onboarding contact. If you need assistance, please email us at onboarding@splitit.com.</p>\n<p>Please note:</p>\n<p>1) The credentials and the resulted session should be kept secured on your server and should never be exposed to client side.</p>\n<p>2) Splitit session is valid for 20 minutes.</p>\n<p> </p>\n<h2>Request parameters</h2>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>Username <br /> <strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>The username of your API user in Splitit system</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>Password <br /> <strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>The password of your API user in Splitit system</p>\n</td>\n</tr>\n</tbody>\n</table>\n<p> </p>\n<h2>Response:</h2>\n<p>* For information about response header, please check response header description in introduction.</p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>SessionId</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p>The response sessionId</p>\n</td>\n</tr>\n</tbody>\n</table>","urlObject":{"path":["api","Login"],"host":["{{url}}"],"query":[{"key":"format","value":"json"}],"variable":[]}},"response":[{"id":"860d0a83-92a5-497f-8d10-decf8caee775","name":"Login - Failure","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{ \n    \"UserName\":\"{{UserName}}\",\n    \"Password\":\"{{Password}}\"\n}\n"},"url":{"raw":"https://{{url}}/api/Login?format=json","protocol":"https","host":["{{url}}"],"path":["api","Login"],"query":[{"key":"format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Content-Type","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Cache-Control","value":"private","name":"Cache-Control","description":""},{"key":"Content-Length","value":"138","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Dec 2016 23:07:10 GMT","name":"Date","description":""},{"key":"Server","value":"","name":"Server","description":""},{"key":"X-ASPNET-VERSION","value":"","name":"X-ASPNET-VERSION","description":""},{"key":"X-MiniProfiler-Ids","value":"[\"df7a40a4c1d64f0e99acca28ef7bf5a3\",\"8a65a2d6207e4b50bb457f9b3e287313\",\"50053e17668842068c95d2b534c0df69\",\"8bd67c08b5ca4a41a2fe3619b57b5c82\",\"85571fa98df340c5991ebc2fe7148cca\",\"65e6b68495d642b9a1f332656f1cfeff\",\"04bce61aa04840e3a241c5707e9a4e98\",\"9f7819b4d2344858ba76e3b9f4e05773\",\"b7252f7ae2774560b54aa21a658fa56d\",\"77275042448b425fb876fa77bd50cecb\",\"c038d75adb5440a3b940574e5487a90c\",\"fca21d3a70174ec8a292845a342ddbf5\",\"cc5467824b2045d6af3985140ae835d5\",\"e6fa23755d7343ff9770d31f51121e42\",\"eec577d62e1948bcb7e219fa86395280\",\"27730be823d14992860b945fa613a784\",\"021795eb555d44c28a00c22f35f96950\",\"5290d590a4054e60839e9f67938bf1db\",\"8e6f12e3992349c691aa4dc26155410b\",\"dbb533626d35434496bb3c499ce5bcd6\",\"cfcbea7049164cf88db92625df401093\",\"4fd38cb0d1b548f8b8c52300a07b53a7\",\"afdc3e53828b443fa926e406420fdaf6\",\"709e0bff9ff14bc7a6fe251ad33cc1c8\",\"6e99fd3cb5f34657a4e2474130841c2a\",\"38cc0d7716a1436d976ca3364dda1449\",\"e797842eafa34175bd63f43d90890f97\",\"b7fd517e0c5b4cec85d18c38ec160a59\",\"ce30e490c7854800b4b0655582580451\",\"4e1b10640c82448893eb12a23551621f\",\"e8914b0455cc4d038e95eb9c94845949\",\"4b7f8084da0c40bd9f14efa90d60f291\",\"a4b7279340bf4956ae27c03420fc1f92\",\"43fb0b13c25b4e219c8e6a1fa2fc046f\",\"5a0db666cb9b42668e12951e1b97c79c\",\"9615d8863882447aba512e0e4414bb28\",\"129f92c9cfd841aca38712a19ba86b11\",\"fa60b42defde48fca56ad160e05f7bda\",\"0b20b6b3229b48f3b84b66a0c8aa6540\",\"d88269dcd55545d2a3fe4d4743df346c\",\"e4b55862d37c4f039b503faca307b44b\",\"79bef5516daf47dcbe19841e0965c5de\",\"88b0ba47fc29463fb1424592394d9c72\",\"01cd357bc2844901bb2c0e3baea8fbc6\",\"68ce7aeb78b249ffbdd36a0eeaa3825a\",\"7edf312515de4bbe8d1b802fcbe606be\"]","name":"X-MiniProfiler-Ids","description":""},{"key":"X-Powered-By","value":"","name":"X-Powered-By","description":""},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcRGV2ZWxvcG1lbnRcU3BsaXRJdFxNYWluXFRydW5rXFNlcnZlclxTcmNcV2ViXFBJUy5XZWIuQVBJXGFwaVxMb2dpbg==?=","name":"X-SourceFiles","description":""}],"cookie":[],"responseTime":null,"body":"{\"ResponseHeader\":{\"Succeeded\":false,\"Errors\":[{\"ErrorCode\":\"700\",\"Message\":\"Invalid credentials\",\"AdditionalInfo\":\"\"}]},\"SessionId\":null}"},{"id":"b9957ce1-b304-4ec5-be01-2109a99d46af","name":"Login - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","description":"The mime type of this content"}],"body":{"mode":"raw","raw":"{ \n    \"UserName\":\"{{UserName}}\",\n    \"Password\":\"{{Password}}\"\n}\n"},"url":{"raw":"https://{{url}}/api/Login?format=json","protocol":"https","host":["{{url}}"],"path":["api","Login"],"query":[{"key":"format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Content-Type","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Cache-Control","value":"private","name":"Cache-Control","description":""},{"key":"Content-Length","value":"102","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 07 Dec 2016 23:06:39 GMT","name":"Date","description":""},{"key":"Server","value":"","name":"Server","description":""},{"key":"X-ASPNET-VERSION","value":"","name":"X-ASPNET-VERSION","description":""},{"key":"X-MiniProfiler-Ids","value":"[\"df7a40a4c1d64f0e99acca28ef7bf5a3\",\"8a65a2d6207e4b50bb457f9b3e287313\",\"50053e17668842068c95d2b534c0df69\",\"8bd67c08b5ca4a41a2fe3619b57b5c82\",\"85571fa98df340c5991ebc2fe7148cca\",\"65e6b68495d642b9a1f332656f1cfeff\",\"04bce61aa04840e3a241c5707e9a4e98\",\"9f7819b4d2344858ba76e3b9f4e05773\",\"b7252f7ae2774560b54aa21a658fa56d\",\"77275042448b425fb876fa77bd50cecb\",\"c038d75adb5440a3b940574e5487a90c\",\"fca21d3a70174ec8a292845a342ddbf5\",\"cc5467824b2045d6af3985140ae835d5\",\"e6fa23755d7343ff9770d31f51121e42\",\"eec577d62e1948bcb7e219fa86395280\",\"27730be823d14992860b945fa613a784\",\"021795eb555d44c28a00c22f35f96950\",\"5290d590a4054e60839e9f67938bf1db\",\"8e6f12e3992349c691aa4dc26155410b\",\"dbb533626d35434496bb3c499ce5bcd6\",\"cfcbea7049164cf88db92625df401093\",\"4fd38cb0d1b548f8b8c52300a07b53a7\",\"afdc3e53828b443fa926e406420fdaf6\",\"709e0bff9ff14bc7a6fe251ad33cc1c8\",\"6e99fd3cb5f34657a4e2474130841c2a\",\"38cc0d7716a1436d976ca3364dda1449\",\"e797842eafa34175bd63f43d90890f97\",\"b7fd517e0c5b4cec85d18c38ec160a59\",\"ce30e490c7854800b4b0655582580451\",\"4e1b10640c82448893eb12a23551621f\",\"e8914b0455cc4d038e95eb9c94845949\",\"4b7f8084da0c40bd9f14efa90d60f291\",\"a4b7279340bf4956ae27c03420fc1f92\",\"43fb0b13c25b4e219c8e6a1fa2fc046f\",\"5a0db666cb9b42668e12951e1b97c79c\",\"9615d8863882447aba512e0e4414bb28\",\"129f92c9cfd841aca38712a19ba86b11\",\"fa60b42defde48fca56ad160e05f7bda\",\"0b20b6b3229b48f3b84b66a0c8aa6540\",\"d88269dcd55545d2a3fe4d4743df346c\",\"e4b55862d37c4f039b503faca307b44b\",\"79bef5516daf47dcbe19841e0965c5de\",\"88b0ba47fc29463fb1424592394d9c72\",\"01cd357bc2844901bb2c0e3baea8fbc6\",\"68ce7aeb78b249ffbdd36a0eeaa3825a\"]","name":"X-MiniProfiler-Ids","description":""},{"key":"X-Powered-By","value":"","name":"X-Powered-By","description":""},{"key":"X-SourceFiles","value":"=?UTF-8?B?QzpcRGV2ZWxvcG1lbnRcU3BsaXRJdFxNYWluXFRydW5rXFNlcnZlclxTcmNcV2ViXFBJUy5XZWIuQVBJXGFwaVxMb2dpbg==?=","name":"X-SourceFiles","description":""}],"cookie":[],"responseTime":null,"body":"{\"ResponseHeader\":{\"Succeeded\":true,\"Errors\":null},\"SessionId\":\"70cb6c88-549a-486b-9f4f-6b6bafc9aa6f\"}"}],"_postman_id":"a026e2d6-427f-47f8-b98e-7722507682be"},{"name":"2. Initiate","event":[{"listen":"test","script":{"id":"4f3d9ec5-38aa-4488-b373-e645fccadbf2","exec":["var data = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"InstallmentPlanNumber\", data.InstallmentPlan.InstallmentPlanNumber);",""],"type":"text/javascript"}}],"id":"2dabf1d5-5f79-4b10-82eb-20334ff178b6","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestHeader\": {\r\n    \"SessionId\": \"{{SessionId}}\",\r\n    \"ApiKey\": \"{{ApiKey}}\"\r\n  },\r\n  \"PlanData\": {\r\n    \"Amount\": {\"Value\": 50,\"CurrencyCode\": \"USD\"},\r\n    \"NumberOfInstallments\": 3,    \r\n    \"RefOrderNumber\": \"012AB\",\r\n    \"AutoCapture\": true,\r\n    \"ExtendedParams\": {\r\n      \"AnyParameterKey1\": \"AnyParameterVal1\",\r\n      \"AnyParameterKey2\": \"AnyParameterVal2\"\r\n    }\r\n  },\r\n  \"BillingAddress\": {\r\n    \"AddressLine\": \"260 Madison Avenue.\",\r\n    \"AddressLine2\": \"Appartment 1\",\r\n    \"City\": \"New York\",\r\n    \"State\": \"NY\",\r\n    \"Country\": \"USA\",\r\n    \"Zip\": \"10016\"\r\n  },\r\n  \"ConsumerData\": {\r\n    \"FullName\": \"John Smith\",\r\n    \"Email\": \"JohnS@splitit.com\",\r\n    \"PhoneNumber\": \"1-844-775-4848\",\r\n    \"CultureName\": \"en-us\"\r\n  },\r\n  \"PaymentWizardData\": {\r\n    \"RequestedNumberOfInstallments\": \"2,3,4\",\r\n    \"IsOpenedInIframe\": false\r\n  },\r\n  \"RedirectUrls\": {\r\n    \"Succeeded\": \"https://www.success.com/\",\r\n    \"Failed\": \"https://www.failed.com/\",\r\n    \"Canceled\": \"https://www.canceled.com/\"\r\n  },\r\n  \"EventsEndpoints\": {\r\n    \"CreateSucceeded\": \"https://www.async-success.com/\"\r\n  }\r\n}"},"url":"{{url}}/api/InstallmentPlan/Initiate?format=json","description":"<h2>Description:</h2>\n<p>The Initiate service allows your server\\application to start transactions with Splitit.</p>\n<p>Common use case for running initiate request is to open a Splitit payment wizard (see <a href=\"https://www.splitit.com/for-developers/hosted-solution/\">hosted payment solution</a>) from merchant checkout - in that case, the initiate should be called with all available data related to order (ex: order number, amount), shopper information (name, email, billing address) and Exit URLs (Success\\Cancel\\Error) that will redirect the wizard back to the merchant checkout for each state. </p>\n<p>As part of a successful response, you will get a checkout URL which will open the Splitit payment wizard where a shopper will enter credit card details and complete the order.</p>\n<p>Initiate service can be called multiple times, each time with additional data, so if your checkout contains a few sections/pages you can call and check the response of each section and get Splitit validations response immediately.</p>\n<p> </p>\n<h2>Request parameters :</h2>\n<p>* For information about request header that needs to be sent as part of every transaction, please check request header description in introduction.</p>\n<p><strong>Plan Data </strong></p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>Amount<br /> <strong>required</strong></p>\n</td>\n<td>\n<p>Amount</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>The order total amount, includes:</p>\n<p>Value (decimal). Example - 305.50</p>\n<p>CurrencyCode (string) - should be in a format of ISO 4217 currency. Example - USD</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>PurchaseMethod</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> ECommerce</p>\n</td>\n<td>\n<p>The method the purchase is done,<br /> Choose one of the following :</p>\n<ol>\n<li>InStore – physical store purchase</li>\n<li>PhoneOrder – phone order</li>\n<li>Ecommerce – purchase on Ecommerce site</li>\n</ol>\n</td>\n</tr>\n<tr>\n<td>\n<p>RefOrderNumber</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Reference merchant order number.</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>AutoCapture</p>\n</td>\n<td>\n<p>Boolean</p>\n</td>\n<td>\n<p> Default*</p>\n</td>\n<td>\n<p>Indicates if to capture the first installment automatically when creating the plan or to wait for explicit indication to do the first capture.</p>\n<p><br /> * The default behavior was defined in your merchant account at Splitit.</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>FirstInstallmentAmount</p>\n</td>\n<td>\n<p>Amount</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>The first installment amount.</p>\n<p>Should be populated only if first installment amount is different from the following installment amounts (ex: includes shipping amount as part of the first installment).</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>FirstChargeDate</p>\n</td>\n<td>\n<p>Date</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>The first installment date.</p>\n<p>Should be populated only if first installment date is not scheduled to the plan creation date.</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>Attempt3DSecure</p>\n</td>\n<td>\n<p> Boolean</p>\n</td>\n<td>\n<p> False</p>\n</td>\n<td>\n<p>Indicate whether to try and attempt running 3D secure transaction.</p>\n<p>Please notice:</p>\n<p>1) Please check with Splitit support if your account settings allow performing 3D secure transactions.</p>\n<p>2) In order to run 3D secure, you will need to populate redirect Urls (Success\\Error), please follow the documentation regarding RedirectUrls below.</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>ExtendedParams</p>\n</td>\n<td>\n<p>ExtendedParams</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Any merchant parameter you would like to capture on the plan (ex: secondary order number). Those parameters can later be queried.</p>\n<p>Example:</p>\n<p>\"ExtendedParams\": {<br /> \"AnyParameterKey1\": \" AnyParameterVal1\",<br /> \"AnyParameterKey2\": \" AnyParameterVal2\"<br /> }</p>\n</td>\n</tr>\n</tbody>\n</table>\n<p> </p>\n<h4>Consumer Data  </h4>\n<p>* The consumer data element is not mandatory as part of the initiate service. If consumer data is not supplied as part of initiate service, it will need to be added later (manually by shopper in payment wizard or by API create service).</p>\n<p> </p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>FullName<br /> <strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Shopper full name</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>Email</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Shopper email  </p>\n</td>\n</tr>\n<tr>\n<td>\n<p>PhoneNumber</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Shopper number </p>\n</td>\n</tr>\n<tr>\n<td>\n<p>CultureName</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> en-us</p>\n</td>\n<td>\n<p>Shopper culture </p>\n<p>Notice - All Splitit interactions with shopper (payment wizard language, emails, shopper portal) will be impacted by this choice. Shopper will be able to change this option from the shopper portal.</p>\n<p>Contact Splitit support for a complete list of supported cultures.  </p>\n</td>\n</tr>\n</tbody>\n</table>\n<h4>Billing Address </h4>\n<p>* Billing address elements are not mandatory as part of the initiate service. If billing address is not supplied in initiate and is required as part of merchant policy, billing address will need to be added later (manually by shopper in payment wizard or by API create service).</p>\n<p> </p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>AddressLine<br /> <strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Street, number (free text)</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>AddressLine2</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p> Apartment, suite etc. (free text)</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>City</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>City name (free text)</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>State</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Can be one of the following options:</p>\n<ul>\n<li>ISO 3166-2 codes of each state (Example: \"NY\")</li>\n<li>English short state name officially used by the ISO 3166 (Example: \"New York\")</li>\n</ul>\n</td>\n</tr>\n<tr>\n<td>\n<p>Country</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Can be one of the following options:</p>\n<ul>\n<li>ISO 3166-1 alpha-2 code (Example: \"US\")</li>\n<li>ISO 3166-1 alpha-3 (Example: \"USA\")</li>\n<li>English short country name officially used by the ISO 3166 </li>\n</ul>\n</td>\n</tr>\n<tr>\n<td>\n<p>Zip</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Zip code</p>\n</td>\n</tr>\n</tbody>\n</table>\n<p><strong> </strong></p>\n<h4>Payment Wizard Data </h4>\n<p>* Payment wizard data is only required when working in <a href=\"https://www.splitit.com/for-developers/hosted-solution/\">hosted payment solution</a> in order to indicate some parameters related to the payment wizard. </p>\n<p> </p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>RequestedNumberOfInstallments</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Comma separated string contains all options to display to shopper in payment wizard. If not supplied default configuration will display on merchant from terminal.</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>IsOpenedInIframe</p>\n</td>\n<td>\n  <p>Boolean</p>\n  </td>\n<td>\n  <p>false</p>\n</td>\n<td>\n<p>Set to 'true' when:</p>\n<ul>\n<li>Using a 3D Secure verification process.</li>\n<li>Showing Splitit payment form in an iframe</li>\n</ul>\n</td>\n</tr>\n</tbody>\n</table>\n<p>* Redirect URLs are only required when working with <a href=\"https://www.splitit.com/for-developers/hosted-solution/\">hosted payment solution</a> or with 3D secure mode  </p>\n<p> </p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>Succeeded</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Relevant both when working with payment form or 3D secure.</p>\n<p>The URL shopper will be redirected from payment wizard or 3D secure redirection when order is completed successfully. </p>\n</td>\n</tr>\n<tr>\n<td>\n<p>Canceled</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Relevant only when working with payment form. </p>\n<p>The URL shopper will be redirected from payment wizard when shopper clicks cancel on payment wizard.</p>\n<p> </p>\n</td>\n</tr>\n<tr>\n<td>\n<p>Failed</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Relevant only when working with 3Dsecure.</p>\n<p>The URL shopper will be redirected from 3D secure when 3dD secure declines the transaction.</p>\n<p> </p>\n</td>\n</tr>\n</tbody>\n</table>\n<h4>EventsEndpoints</h4>\n<p>Used to notify about events that happen during the lifetime of the installment plan. Currently only registration to CreateSucceeded event is supported by API. For a full list of optional events, please refer to webhooks documentation.</p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>CreateSucceeded</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>URL that will be called from Splitit server after transaction is created on Splitit,. This URL will be called asynchronous to make sure the caller gets notified that the plan was created successfully and to finalize the order. This URL will also be concatenated with unique installment plan number parameter and the order reference number sent originally in the initiate request.</p>\n<p>Example:</p>\n<p>[CreateSucceededURL]?RefOrderNumber=123456</p>\n<p>&amp;InstallmentPlanNumber=111222333444555</p>\n<p>This URL will be called each hour for 24 hours until http response 200 will be returned from caller.</p>\n</td>\n</tr>\n</tbody>\n</table>\n<p><strong><br /> <br /> </strong></p>\n<h2>Response:</h2>\n<p>* For important information about checking the response validity in response header, please check response header description in introduction.</p>\n<p>* Please notice that only a small part of the response is described below, for full entities description, please refer to the following <a href=\"https://www.splitit.com/entities-documentation/\">documentation</a>.</p>\n<p> </p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>CheckoutUrl</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p>URL that opens Splitit wizard that enables complete the order payment by shopper.</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>PublicToken</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p>Token that can be used as a session to additional limited API services (Create\\Approve\\Get) for the specific installment plan.</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>InstallmentPlanNumber</p>\n<p>(Part of InstallmentPlan entity)</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p>Unique installment plan number that identify this transaction. </p>\n</td>\n</tr>\n</tbody>\n</table>","urlObject":{"path":["api","InstallmentPlan","Initiate"],"host":["{{url}}"],"query":[{"key":"format","value":"json"}],"variable":[]}},"response":[{"id":"92e8701a-5163-4937-b6cf-9164558cd6d7","name":"Initiate-Example","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"RequestHeader\": {\r\n    \"SessionId\": \"{{SessionId}}\",\r\n    \"ApiKey\": \"{{ApiKey}}\"\r\n  },\r\n  \"PlanData\": {\r\n    \"Amount\": {\"Value\": 50,\"CurrencyCode\": \"USD\"},\r\n    \"NumberOfInstallments\": 3,    \r\n    \"RefOrderNumber\": \"012AB\",\r\n    \"AutoCapture\": true,\r\n    \"ExtendedParams\": {\r\n      \"AnyParameterKey1\": \"AnyParameterVal1\",\r\n      \"AnyParameterKey2\": \"AnyParameterVal2\"\r\n    }\r\n  },\r\n  \"BillingAddress\": {\r\n    \"AddressLine\": \"260 Madison Avenue.\",\r\n    \"AddressLine2\": \"Appartment 1\",\r\n    \"City\": \"New York\",\r\n    \"State\": \"NY\",\r\n    \"Country\": \"USA\",\r\n    \"Zip\": \"10016\"\r\n  },\r\n  \"ConsumerData\": {\r\n    \"FullName\": \"John Smith\",\r\n    \"Email\": \"JohnS@splitit.com\",\r\n    \"PhoneNumber\": \"1-844-775-4848\",\r\n    \"CultureName\": \"en-us\"\r\n  },\r\n  \"PaymentWizardData\": {\r\n    \"RequestedNumberOfInstallments\": \"2,3,4\"\r\n  },\r\n  \"RedirectUrls\": {\r\n    \"Succeeded\": \"https://www.success.com/\",\r\n    \"Failed\": \"https://www.failed.com/\",\r\n    \"Canceled\": \"https://www.canceled.com/\"\r\n  },\r\n  \"EventsEndpoints\": {\r\n    \"CreateSucceeded\": \"https://www.async-success.com/\"\r\n  }\r\n}"},"url":{"raw":"https://{{url}}/api/InstallmentPlan/Initiate?format=json","protocol":"https","host":["{{url}}"],"path":["api","InstallmentPlan","Initiate"],"query":[{"key":"format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Content-Type","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"1944","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 30 May 2018 15:48:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"","name":"Server","description":"A name for the server"},{"key":"X-AspNet-Version","value":"","name":"X-AspNet-Version","description":"Custom header"},{"key":"X-AspNetMvc-Version","value":"X-AspNet-Version:","name":"X-AspNetMvc-Version","description":"Custom header"},{"key":"X-Powered-By","value":"","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"CheckoutUrl\":\"https://checkout.splitit.com/CheckoutPaymentDetails.html?token=f72e7728-36d7-46df-b585-ad903315c933&culture=en-US\",\"ApprovalUrl\":\"\",\"TermsAndConditionsUrl\":\"https://www.splitit.com/legal/customers-terms-and-conditions/\",\"InstallmentPlanInfoUrl\":\"https://admin1.splitit.com/en-US/InstallmentPlan/ShowAgreement/?PublicToken=f72e7728-36d7-46df-b585-ad903315c933\",\"PublicToken\":\"f72e7728-36d7-46df-b585-ad903315c933\",\"ResponseHeader\":{\"Succeeded\":true,\"Errors\":[]},\"InstallmentPlan\":{\"InstallmentPlanNumber\":\"77377762524182382687\",\"InstallmentPlanStatus\":{\"Id\":11,\"Code\":\"Initializing\",\"Description\":\"Initializing\"},\"Amount\":{\"Value\":50,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"OutstandingAmount\":{\"Value\":50,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"NumberOfInstallments\":0,\"NumberOfProcessedInstallments\":0,\"OriginalAmount\":{\"Value\":50,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"RefundAmount\":{\"Value\":0,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"Consumer\":{\"Id\":\"0\",\"UserName\":\"JohnS\",\"FullName\":\"John Smith\",\"Email\":\"JohnS@splitit.com\",\"PhoneNumber\":\"1-844-775-4848\",\"CultureName\":\"en-US\",\"RoleName\":null,\"IsLocked\":false},\"ActiveCard\":null,\"Terminal\":{\"Id\":167,\"Code\":\"9798ihk\",\"Description\":\"ALL Countries\"},\"Merchant\":{\"Id\":2,\"Code\":\"testmerchantaccount\",\"Description\":\"TEST MERCHANT ACCOUNT \"},\"RefOrderNumber\":\"012AB\",\"PurchaseMethod\":{\"Id\":3,\"Code\":\"ECommerce\",\"Description\":\"E-Commerce\"},\"Strategy\":{\"Id\":1,\"Code\":\"SecuredPlan\",\"Description\":\"Secured\"},\"DelayResolution\":null,\"ExtendedParams\":{\"AnyParameterKey1\":\"AnyParameterVal1\",\"AnyParameterKey2\":\"AnyParameterVal2\"},\"IsFullCaptured\":false,\"IsChargedBack\":false,\"ArePaymentsOnHold\":false,\"ScpFundingPercent\":0,\"TestMode\":\"None\",\"CreationDateTime\":\"2018-05-30T15:48:05.8486996+00:00\",\"Installments\":null,\"SecureAuthorizations\":null}}"}],"_postman_id":"2dabf1d5-5f79-4b10-82eb-20334ff178b6"},{"name":"3. Create","event":[{"listen":"test","script":{"id":"c21c7e45-c22f-4fe5-a006-f2b89e351176","exec":["var data = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"InstallmentPlanNumber\", data.InstallmentPlan.InstallmentPlanNumber);",""],"type":"text/javascript"}}],"id":"62cf19ed-ae38-4481-a8fd-63ba8269e12d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"RequestHeader\": {\n        \"SessionId\": \"{{SessionId}}\",\n        \"ApiKey\": \"{{ApiKey}}\"\n    },\n    \"PlanData\": {\n        \"Amount\": {\n            \"Value\": 600,\n            \"CurrencyCode\": \"USD\"\n        },\n        \"NumberOfInstallments\": 3,\n        \"RefOrderNumber\": \"XYZ\",\n        \"AutoCapture\": true\n    },\n    \"BillingAddress\": {\n        \"AddressLine\": \"260 Madison Avenue.\",\n        \"AddressLine2\": \"Appartment 1\",\n        \"City\": \"New York\",\n        \"State\": \"NY\",\n        \"Country\": \"USA\",\n        \"Zip\": \"10016\"\n    },\n    \"ConsumerData\": {\n        \"FullName\": \"John Smith\",\n        \"Email\": \"JohnS@splitit.com\",\n        \"PhoneNumber\": \"1-844-775-4848\",\n        \"CultureName\": \"en-us\"\n    },\n    \"CreditCardDetails\": {\n        \"CardCvv\": \"123\",\n        \"CardHolderFullName\": \"John Smith\",\n        \"CardNumber\": \"4111111111111111\",\n        \"CardExpYear\": \"2019\",\n        \"CardExpMonth\": \"8\"\n    },\n    \"PlanApprovalEvidence\": {\n        \"AreTermsAndConditionsApproved\": \"True\"\n    }\n}"},"url":"{{url}}/api/InstallmentPlan/Create?format=json","description":"<h2>Description:</h2>\n<p>The Create service allows your server\\application to complete transactions with Splitit.</p>\n<p>Common use cases for running a create request is for integrations where all interactions with the shopper (including taking payment details) are done on merchant\\integrator side. Although the create can be called independently with all required data to start and complete transaction (order number, amount), shopper information (name, email, billing address) and payment details, it is usually called after the plan was initiated (see initiate call) and only add the credit card detail and approval evidence required to complete the payment. Please read more about this in our <a href=\"https://www.splitit.com/for-developers/web-api-solution/\">documentation</a>.</p>\n<p>The create service validates that all required data exists and is valid. Then it will try authorize the transaction with the merchants gateway. In case of failure while trying to create an order (ex: missing email, invalid expiration date, card declined by processor), a clear error message will be retrieved as part of the response. This error should be displayed to the user that tries to complete the order so he / she will be able to complete / fix the required data.</p>\n<h2>Request parameters :</h2>\n<p>* For information about a request header that needs to be sent as part of every transaction, please check request header description in introduction.</p>\n<p><strong>Plan Data </strong></p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>Amount<br /> <strong>required</strong></p>\n</td>\n<td>\n<p>Amount</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>The order total amount, includes:</p>\n<p>Value (decimal). Example - 305.50</p>\n<p>CurrencyCode (string) - should be in a format of ISO 4217 currency. Example - USD</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>PurchaseMethod</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> ECommerce</p>\n</td>\n<td>\n<p>The method the purchase is done.<br /> Choose one of the following:</p>\n<ol>\n<li>InStore – physical store purchase</li>\n<li>PhoneOrder – phone order</li>\n<li>Ecommerce – purchase on Ecommerce site</li>\n</ol>\n</td>\n</tr>\n<tr>\n<td>\n<p>RefOrderNumber</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Reference merchant order number.</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>AutoCapture</p>\n</td>\n<td>\n<p>Boolean</p>\n</td>\n<td>\n<p> Default*</p>\n</td>\n<td>\n<p>Indicates if to capture the first installment automatically when creating the plan or to wait for explicit indication to do the first capture.</p>\n<p><br /> * The default behavior was defined in your merchant account at Splitit.</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>FirstInstallmentAmount</p>\n</td>\n<td>\n<p>Amount</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>The first installment amount.</p>\n<p>Should be populated only if first installment amount is different from the following installments amounts (ex: includes shipping amount as part of the first installment).</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>FirstChargeDate</p>\n</td>\n<td>\n<p>Date</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>The first installment date.</p>\n<p>Should be populated only if first installment date is not scheduled to the plan creation date.</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>ExtendedParams</p>\n</td>\n<td>\n<p>ExtendedParams</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Any merchant parameter that should be captured on the plan (ex: secondary order number). Those parameters can later be queried.</p>\n<p>Example:</p>\n<p>\"ExtendedParams\": {<br /> \"AnyParameterKey1\": \" AnyParameterVal1\",<br /> \"AnyParameterKey2\": \" AnyParameterVal2\"<br /> }</p>\n</td>\n</tr>\n</tbody>\n</table>\n<p> </p>\n<h4>Consumer Data  </h4>\n<p> </p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>FullName<br /> <strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p> Shopper full name</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>Email</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Shopper email  </p>\n</td>\n</tr>\n<tr>\n<td>\n<p>PhoneNumber</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Shopper phone number </p>\n</td>\n</tr>\n<tr>\n<td>\n<p>CultureName</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> en-us</p>\n</td>\n<td>\n<p>Shopper culture </p>\n<p>Notice - All Splitit interactions with shopper (payment wizard language, emails, shopper portal) will be affected by this choice. Shopper will be able to change this option from shopper portal.</p>\n<p>Please contact Splitit support for complete list of supported cultures.  </p>\n</td>\n</tr>\n</tbody>\n</table>\n<p><strong> </strong></p>\n<h2> </h2>\n<h4>Billing Address </h4>\n<p> </p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>AddressLine<br /> <strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Street, suite, etc. (free text)</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>AddressLine2</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p> Apartment, suite, etc. (free text)</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>City</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>City name (free text)</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>State</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Can be one of the following options:</p>\n<ul>\n<li>ISO 3166-2 codes of each state (Example: \"NY\")</li>\n<li>English short state name officially used by the ISO 3166 (Example: \"New York\")</li>\n</ul>\n</td>\n</tr>\n<tr>\n<td>\n<p>Country</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Can be one of the following options:</p>\n<ul>\n<li>ISO 3166-1 alpha-2 code (Example: \"US\")</li>\n<li>ISO 3166-1 alpha-3 (Example: \"USA\")</li>\n<li>English short country name officially used by the ISO 3166 </li>\n</ul>\n</td>\n</tr>\n<tr>\n<td>\n<p>Zip</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Zip code</p>\n</td>\n</tr>\n</tbody>\n</table>\n<p><strong> </strong> </p>\n<h4>Credit Card Details </h4>\n<p> </p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>CardNumber</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Valid credit card number</p>\n<p>Example: 4111111111111111</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>CardCvv</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Valid card security code  </p>\n<p>Example: 123</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>CardExpYear</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Valid card expiration year </p>\n<p>Example: 2019</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>CardExpMonth</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Valid card expiration month </p>\n<p>Example: 08 or 8</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>CardHolderFullName</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Card holder full name </p>\n</td>\n</tr>\n</tbody>\n</table>\n<p><strong>  </strong>  </p>\n<h4>Payment Token </h4>\n<p>Payment token allows running a new transactions for a credit card that was already used with Splitit. The token represents credit card details and consumer data that was previously returned from the Splitit server as a response to create installment plan transaction (see <a href=\"https://www.splitit.com/entities-documentation/\">documentation</a> of CardData.Token in entities documentation). </p>\n<p>Sending payment token elements replaces the need to keep and send credit card details, consumer data and billing address on merchant side for new transactions of the same card.</p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>Token</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Token returned from previous transaction from Splitit server</p>\n<p>Example:56b0096f-59ee-48dc-a7d8-321ad0abf60a</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>Type</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>The token type - </p>\n<p>For Splitit Token send \"SplititStoredCard\"</p>\n</td>\n</tr>\n<tr>\n<td>\n<p> </p>\n</td>\n<td> </td>\n<td> </td>\n<td> </td>\n</tr>\n</tbody>\n</table>\n<p><strong> </strong></p>\n<p> </p>\n<h4>Plan Approval Evidence</h4>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>AreTermsAndConditionsApproved</p>\n<p><strong>required</strong></p>\n</td>\n<td>\n<p>Boolean</p>\n</td>\n<td>\n<p>False </p>\n</td>\n<td>\n<p>Splitit requires integrations to display terms and conditions and get shopper approval before first installment is charged. True indication on this field, indicates, shopper has approved the terms and conditions </p>\n</td>\n</tr>\n</tbody>\n</table>\n<p> </p>\n<h2>  </h2>\n<h2>Response:</h2>\n<p>* For important information about checking the response validity in response header, please check response header description in the introduction.</p>\n<p>* Please notice that only small a part of the response is described below. For full entities description, please refer to the following <a href=\"https://www.splitit.com/entities-documentation/\">documentation</a></p>\n<p> </p>\n<p> </p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>ApprovalUrl</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p>URL that opens Splitit approval page</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>PublicToken</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p>Token that can be used as a session to additional limited API services (Create\\Approve\\Get) for the specific installment plan</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>InstallmentPlanNumber</p>\n<p>(Part of InstallmentPlan entity)</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p>Unique installment plan number that identifies this transaction</p>\n</td>\n</tr>\n</tbody>\n</table>","urlObject":{"path":["api","InstallmentPlan","Create"],"host":["{{url}}"],"query":[{"key":"format","value":"json"}],"variable":[]}},"response":[{"id":"2a482393-9f9d-42ff-890d-f34158952130","name":"Example - 1","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n   \"RequestHeader\": {\r\n   \"SessionId\": \"{{SessionId}}\",\r\n   \"ApiKey\": \"{{ApiKey}}\"\r\n   },\r\n   \"PlanData\": {\r\n      \"Amount\": {\"Value\": 55, \"CurrencyCode\":\"USD\"},\r\n      \"NumberOfInstallments\": 3,\r\n      \"RefOrderNumber\": \"XYZ\",\r\n      \"AutoCapture\": true\r\n   },\r\n   \"BillingAddress\": {\r\n        \"AddressLine\": \"260 Madison Avenue.\",\r\n        \"AddressLine2\": \"Appartment 1\",\r\n        \"City\": \"New York\",\r\n        \"State\": \"NY\",\r\n        \"Country\": \"USA\",\r\n        \"Zip\": \"10016\"\r\n   },\r\n   \"ConsumerData\": {\r\n        \"FullName\": \"John Smith\",\r\n        \"Email\": \"JohnS@splitit.com\",\r\n        \"PhoneNumber\": \"1-844-775-4848\",\r\n        \"CultureName\": \"en-us\"\r\n   },\r\n   \"CreditCardDetails\": { \r\n      \"CardCvv\": \"123\", \r\n      \"CardHolderFullName\": \"John Smith\",\r\n      \"CardNumber\": \"4111111111111111\", \r\n      \"CardExpYear\": \"2019\", \r\n      \"CardExpMonth\": \"8\"\r\n   },\r\n   \"PlanApprovalEvidence\": {\r\n      \"AreTermsAndConditionsApproved\": \"True\"\r\n   }\r\n}"},"url":{"raw":"https://{{url}}/api/InstallmentPlan/Create?format=json","protocol":"https","host":["{{url}}"],"path":["api","InstallmentPlan","Create"],"query":[{"key":"format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Content-Type","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"6115","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 31 May 2018 12:59:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"","name":"Server","description":"A name for the server"},{"key":"X-AspNet-Version","value":"","name":"X-AspNet-Version","description":"Custom header"},{"key":"X-AspNetMvc-Version","value":"X-AspNet-Version:","name":"X-AspNetMvc-Version","description":"Custom header"},{"key":"X-Powered-By","value":"","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"ApprovalUrl\":\"\",\"ResponseHeader\":{\"Succeeded\":true,\"Errors\":[]},\"InstallmentPlan\":{\"InstallmentPlanNumber\":\"73274653486133832586\",\"InstallmentPlanStatus\":{\"Id\":3,\"Code\":\"InProgress\",\"Description\":\"In Progress\"},\"Amount\":{\"Value\":52.00,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"OutstandingAmount\":{\"Value\":34.67,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"NumberOfInstallments\":3,\"NumberOfProcessedInstallments\":1,\"OriginalAmount\":{\"Value\":52.00,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"RefundAmount\":{\"Value\":0.00,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"Consumer\":{\"Id\":\"0\",\"UserName\":\"JohnS\",\"FullName\":\"John Smith\",\"Email\":\"JohnS@splitit.com\",\"PhoneNumber\":\"1-844-775-4848\",\"CultureName\":\"en-US\",\"RoleName\":null,\"IsLocked\":false},\"ActiveCard\":{\"CardId\":null,\"CardNumber\":\"**** **** **** 1111\",\"CardExpMonth\":\"8\",\"CardExpYear\":\"2019\",\"CardBrand\":{\"Id\":2,\"Code\":\"Visa\",\"Description\":\"VISA\"},\"CardType\":{\"Id\":1,\"Code\":\"Credit\",\"Description\":\"CREDIT\"},\"Bin\":\"411111\",\"CardHolderFullName\":\"John Smith\",\"CardCvv\":\"[Filtered]\",\"Address\":{\"AddressLine\":\"260 Madison Avenue.\",\"AddressLine2\":\"Appartment 1\",\"City\":\"New York\",\"Country\":\"US\",\"State\":\"NY\",\"Zip\":\"10016\",\"FullAddressLine\":\"260 Madison Avenue.,Appartment 1,New York,NY,US\"}},\"Terminal\":{\"Id\":10087,\"Code\":\"WebApiTestChargeAfterTerminal\",\"Description\":\"WebApiTestTerminal\"},\"Merchant\":{\"Id\":10024,\"Code\":\"webapitest\",\"Description\":\"WebApiTest\"},\"RefOrderNumber\":\"012AB\",\"PurchaseMethod\":{\"Id\":3,\"Code\":\"ECommerce\",\"Description\":\"E-Commerce\"},\"Strategy\":{\"Id\":1,\"Code\":\"SecuredPlan\",\"Description\":\"Secured\"},\"DelayResolution\":null,\"ExtendedParams\":{\"AnyParameterKey1\":\"AnyParameterVal1\",\"AnyParameterKey2\":\"AnyParameterVal2\"},\"IsFullCaptured\":false,\"IsChargedBack\":false,\"ArePaymentsOnHold\":false,\"ScpFundingPercent\":0.00,\"TestMode\":\"None\",\"CreationDateTime\":\"2018-05-31T12:59:18.4770000\",\"Installments\":[{\"InstallmentNumber\":1,\"Amount\":{\"Value\":17.33,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"OriginalAmount\":{\"Value\":17.33,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"RefundAmount\":{\"Value\":0.00,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"ProcessDateTime\":\"2018-05-31T12:59:25.5587248Z\",\"IsRefund\":false,\"RequiredCredit\":{\"Value\":52.00,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"CreatedDateTime\":\"2018-05-31T12:59:18.5570000\",\"Status\":{\"Id\":3,\"Code\":\"Finished\",\"Description\":\"Finished\"},\"TransactionResults\":[{\"GatewayTransactionId\":\"bdbd6b39-9ecd-4c08-8764-a8247d7290fd\",\"GatewayResultCode\":\"1\",\"GatewayResultMessage\":\"Capture Succeeded\",\"OperationType\":{\"Id\":2,\"Code\":\"Capture\",\"Description\":\"Captured\"},\"GatewayResult\":true,\"GatewayTransactionDate\":\"2018-05-31T12:59:25.5119284+00:00\"},{\"GatewayTransactionId\":\"bdbd6b39-9ecd-4c08-8764-a8247d7290fd\",\"GatewayResultCode\":\"1\",\"GatewayResultMessage\":\"Authorize Succeeded\",\"OperationType\":{\"Id\":1,\"Code\":\"Authorize\",\"Description\":\"Approved\"},\"GatewayResult\":true,\"GatewayTransactionDate\":\"2018-05-31T12:59:24.4356112+00:00\"}],\"CardDetails\":{\"CardId\":null,\"CardNumber\":\"**** **** **** 1111\",\"CardExpMonth\":\"8\",\"CardExpYear\":\"2019\",\"CardBrand\":{\"Id\":2,\"Code\":\"Visa\",\"Description\":\"VISA\"},\"CardType\":{\"Id\":1,\"Code\":\"Credit\",\"Description\":\"CREDIT\"},\"Bin\":\"411111\",\"CardHolderFullName\":\"John Smith\",\"CardCvv\":\"[Filtered]\",\"Address\":{\"AddressLine\":\"260 Madison Avenue.\",\"AddressLine2\":\"Appartment 1\",\"City\":\"New York\",\"Country\":\"US\",\"State\":\"NY\",\"Zip\":\"10016\",\"FullAddressLine\":\"260 Madison Avenue.,Appartment 1,New York,NY,US\"}},\"Result\":true},{\"InstallmentNumber\":2,\"Amount\":{\"Value\":17.33,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"OriginalAmount\":{\"Value\":17.33,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"RefundAmount\":{\"Value\":0.00,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"ProcessDateTime\":\"2018-06-30T12:59:24.9971680Z\",\"IsRefund\":false,\"RequiredCredit\":{\"Value\":34.67,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"CreatedDateTime\":\"2018-05-31T12:59:18.5570000\",\"Status\":{\"Id\":2,\"Code\":\"WaitingForProcessDate\",\"Description\":\"Waiting for process date\"},\"TransactionResults\":[],\"CardDetails\":null,\"Result\":null},{\"InstallmentNumber\":3,\"Amount\":{\"Value\":17.34,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"OriginalAmount\":{\"Value\":17.34,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"RefundAmount\":{\"Value\":0.00,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"ProcessDateTime\":\"2018-07-31T12:59:24.9971680Z\",\"IsRefund\":false,\"RequiredCredit\":{\"Value\":17.34,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"CreatedDateTime\":\"2018-05-31T12:59:18.5570000\",\"Status\":{\"Id\":2,\"Code\":\"WaitingForProcessDate\",\"Description\":\"Waiting for process date\"},\"TransactionResults\":[],\"CardDetails\":null,\"Result\":null}],\"SecureAuthorizations\":[{\"ProcessingDate\":\"2018-05-31T12:59:23.9364496+00:00\",\"Amount\":{\"Value\":34.67,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"TransactionResults\":[{\"GatewayTransactionId\":\"3b86324b-fdc4-495b-8dfe-0a6b4930f099\",\"GatewayResultCode\":\"1\",\"GatewayResultMessage\":\"Authorize Succeeded\",\"OperationType\":{\"Id\":1,\"Code\":\"Authorize\",\"Description\":\"Approved\"},\"GatewayResult\":true,\"GatewayTransactionDate\":\"2018-05-31T12:59:23.8896532+00:00\"}],\"CardDetails\":{\"CardId\":null,\"CardNumber\":\"**** **** **** 1111\",\"CardExpMonth\":\"8\",\"CardExpYear\":\"2019\",\"CardBrand\":{\"Id\":2,\"Code\":\"Visa\",\"Description\":\"VISA\"},\"CardType\":{\"Id\":1,\"Code\":\"Credit\",\"Description\":\"CREDIT\"},\"Bin\":\"411111\",\"CardHolderFullName\":\"John Smith\",\"CardCvv\":\"[Filtered]\",\"Address\":{\"AddressLine\":\"260 Madison Avenue.\",\"AddressLine2\":\"Appartment 1\",\"City\":\"New York\",\"Country\":\"US\",\"State\":\"NY\",\"Zip\":\"10016\",\"FullAddressLine\":\"260 Madison Avenue.,Appartment 1,New York,NY,US\"}},\"Result\":true}]}}"},{"id":"ea8e1b4e-f1a8-401a-9ed9-65899dfef232","name":"Example - 2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n   \"RequestHeader\": {\r\n   \"SessionId\": \"{{SessionId}}\",\r\n   \"ApiKey\": \"{{ApiKey}}\"\r\n   },\r\n   \"PlanData\": {\r\n      \"Amount\": {\"Value\": 55, \"CurrencyCode\":\"USD\"},\r\n      \"NumberOfInstallments\": 3,\r\n      \"RefOrderNumber\": \"XYZ\",\r\n      \"AutoCapture\": true\r\n   },\r\n   \"BillingAddress\": {\r\n        \"AddressLine\": \"260 Madison Avenue.\",\r\n        \"AddressLine2\": \"Appartment 1\",\r\n        \"City\": \"New York\",\r\n        \"State\": \"NY\",\r\n        \"Country\": \"USA\",\r\n        \"Zip\": \"10016\"\r\n   },\r\n   \"ConsumerData\": {\r\n        \"FullName\": \"John Smith\",\r\n        \"Email\": \"JohnS@splitit.com\",\r\n        \"PhoneNumber\": \"1-844-775-4848\",\r\n        \"CultureName\": \"en-us\"\r\n   },\r\n   \"CreditCardDetails\": { \r\n      \"CardCvv\": \"123\", \r\n      \"CardHolderFullName\": \"John Smith\",\r\n      \"CardNumber\": \"4111111111111111\", \r\n      \"CardExpYear\": \"2019\", \r\n      \"CardExpMonth\": \"8\"\r\n   },\r\n   \"PlanApprovalEvidence\": {\r\n      \"AreTermsAndConditionsApproved\": \"True\"\r\n   }\r\n}"},"url":{"raw":"https://{{url}}/api/InstallmentPlan/Create?format=json","protocol":"https","host":["{{url}}"],"path":["api","InstallmentPlan","Create"],"query":[{"key":"format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Headers","value":"Content-Type","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, OPTIONS","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"private","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"5899","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 31 May 2018 13:00:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"","name":"Server","description":"A name for the server"},{"key":"X-AspNet-Version","value":"","name":"X-AspNet-Version","description":"Custom header"},{"key":"X-AspNetMvc-Version","value":"X-AspNet-Version:","name":"X-AspNetMvc-Version","description":"Custom header"},{"key":"X-Powered-By","value":"","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"ApprovalUrl\":\"https://admin1-dev.splitit.com//en-US/InstallmentPlan/ShowAgreement/?PublicToken=7c8805c1-c67f-430f-b68e-2c2e664b1372\",\"ResponseHeader\":{\"Succeeded\":true,\"Errors\":[]},\"InstallmentPlan\":{\"InstallmentPlanNumber\":\"06725171348452683753\",\"InstallmentPlanStatus\":{\"Id\":1,\"Code\":\"PendingApproval\",\"Description\":\"Pending Approval\"},\"Amount\":{\"Value\":55,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"OutstandingAmount\":{\"Value\":55,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"NumberOfInstallments\":3,\"NumberOfProcessedInstallments\":0,\"OriginalAmount\":{\"Value\":55,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"RefundAmount\":{\"Value\":0,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"Consumer\":{\"Id\":\"0\",\"UserName\":\"JohnS\",\"FullName\":\"John Smith\",\"Email\":\"JohnS@splitit.com\",\"PhoneNumber\":\"1-844-775-4848\",\"CultureName\":\"en-US\",\"RoleName\":null,\"IsLocked\":false},\"ActiveCard\":{\"CardId\":null,\"CardNumber\":\"**** **** **** 1111\",\"CardExpMonth\":\"8\",\"CardExpYear\":\"2019\",\"CardBrand\":{\"Id\":2,\"Code\":\"Visa\",\"Description\":\"VISA\"},\"CardType\":{\"Id\":1,\"Code\":\"Credit\",\"Description\":\"CREDIT\"},\"Bin\":\"411111\",\"CardHolderFullName\":\"John Smith\",\"CardCvv\":\"[Filtered]\",\"Address\":{\"AddressLine\":\"260 Madison Avenue.\",\"AddressLine2\":\"Appartment 1\",\"City\":\"New York\",\"Country\":\"US\",\"State\":\"NY\",\"Zip\":\"10016\",\"FullAddressLine\":\"260 Madison Avenue.,Appartment 1,New York,NY,US\"}},\"Terminal\":{\"Id\":10087,\"Code\":\"WebApiTestChargeAfterTerminal\",\"Description\":\"WebApiTestTerminal\"},\"Merchant\":{\"Id\":10024,\"Code\":\"webapitest\",\"Description\":\"WebApiTest\"},\"RefOrderNumber\":\"XYZ\",\"PurchaseMethod\":{\"Id\":3,\"Code\":\"ECommerce\",\"Description\":\"E-Commerce\"},\"Strategy\":{\"Id\":1,\"Code\":\"SecuredPlan\",\"Description\":\"Secured\"},\"DelayResolution\":null,\"ExtendedParams\":{},\"IsFullCaptured\":false,\"IsChargedBack\":false,\"ArePaymentsOnHold\":false,\"ScpFundingPercent\":0,\"TestMode\":\"None\",\"CreationDateTime\":\"2018-05-31T13:00:44.6134432+00:00\",\"Installments\":[{\"InstallmentNumber\":1,\"Amount\":{\"Value\":18.33,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"OriginalAmount\":{\"Value\":18.33,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"RefundAmount\":{\"Value\":0,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"ProcessDateTime\":\"2018-05-31T13:00:45.6429640Z\",\"IsRefund\":false,\"RequiredCredit\":{\"Value\":55.00,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"CreatedDateTime\":\"2018-05-31T13:00:45.6429640Z\",\"Status\":{\"Id\":2,\"Code\":\"WaitingForProcessDate\",\"Description\":\"Waiting for process date\"},\"TransactionResults\":[{\"GatewayTransactionId\":\"eef6f9f6-ffac-4941-a1ea-3811a7ac4741\",\"GatewayResultCode\":\"1\",\"GatewayResultMessage\":\"Authorize Succeeded\",\"OperationType\":{\"Id\":1,\"Code\":\"Authorize\",\"Description\":\"Approved\"},\"GatewayResult\":true,\"GatewayTransactionDate\":\"2018-05-31T13:00:46.6880836+00:00\"}],\"CardDetails\":{\"CardId\":null,\"CardNumber\":\"**** **** **** 1111\",\"CardExpMonth\":\"8\",\"CardExpYear\":\"2019\",\"CardBrand\":{\"Id\":2,\"Code\":\"Visa\",\"Description\":\"VISA\"},\"CardType\":{\"Id\":1,\"Code\":\"Credit\",\"Description\":\"CREDIT\"},\"Bin\":\"411111\",\"CardHolderFullName\":\"John Smith\",\"CardCvv\":\"[Filtered]\",\"Address\":{\"AddressLine\":\"260 Madison Avenue.\",\"AddressLine2\":\"Appartment 1\",\"City\":\"New York\",\"Country\":\"US\",\"State\":\"NY\",\"Zip\":\"10016\",\"FullAddressLine\":\"260 Madison Avenue.,Appartment 1,New York,NY,US\"}},\"Result\":true},{\"InstallmentNumber\":2,\"Amount\":{\"Value\":18.33,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"OriginalAmount\":{\"Value\":18.33,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"RefundAmount\":{\"Value\":0,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"ProcessDateTime\":\"2018-06-30T13:00:45.6429640Z\",\"IsRefund\":false,\"RequiredCredit\":{\"Value\":36.67,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"CreatedDateTime\":\"2018-05-31T13:00:45.6429640Z\",\"Status\":{\"Id\":2,\"Code\":\"WaitingForProcessDate\",\"Description\":\"Waiting for process date\"},\"TransactionResults\":[],\"CardDetails\":null,\"Result\":null},{\"InstallmentNumber\":3,\"Amount\":{\"Value\":18.34,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"OriginalAmount\":{\"Value\":18.34,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"RefundAmount\":{\"Value\":0,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"ProcessDateTime\":\"2018-07-31T13:00:45.6429640Z\",\"IsRefund\":false,\"RequiredCredit\":{\"Value\":18.34,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"CreatedDateTime\":\"2018-05-31T13:00:45.6429640Z\",\"Status\":{\"Id\":2,\"Code\":\"WaitingForProcessDate\",\"Description\":\"Waiting for process date\"},\"TransactionResults\":[],\"CardDetails\":null,\"Result\":null}],\"SecureAuthorizations\":[{\"ProcessingDate\":\"2018-05-31T13:00:46.1889220+00:00\",\"Amount\":{\"Value\":36.67,\"Currency\":{\"Symbol\":\"US$\",\"Id\":1,\"Code\":\"USD\",\"Description\":\"US Dollar\"}},\"TransactionResults\":[{\"GatewayTransactionId\":\"3d21b337-88dd-49c2-8368-3612fa121bd5\",\"GatewayResultCode\":\"1\",\"GatewayResultMessage\":\"Authorize Succeeded\",\"OperationType\":{\"Id\":1,\"Code\":\"Authorize\",\"Description\":\"Approved\"},\"GatewayResult\":true,\"GatewayTransactionDate\":\"2018-05-31T13:00:46.1421256+00:00\"}],\"CardDetails\":{\"CardId\":null,\"CardNumber\":\"**** **** **** 1111\",\"CardExpMonth\":\"8\",\"CardExpYear\":\"2019\",\"CardBrand\":{\"Id\":2,\"Code\":\"Visa\",\"Description\":\"VISA\"},\"CardType\":{\"Id\":1,\"Code\":\"Credit\",\"Description\":\"CREDIT\"},\"Bin\":\"411111\",\"CardHolderFullName\":\"John Smith\",\"CardCvv\":\"[Filtered]\",\"Address\":{\"AddressLine\":\"260 Madison Avenue.\",\"AddressLine2\":\"Appartment 1\",\"City\":\"New York\",\"Country\":\"US\",\"State\":\"NY\",\"Zip\":\"10016\",\"FullAddressLine\":\"260 Madison Avenue.,Appartment 1,New York,NY,US\"}},\"Result\":true}]}}"}],"_postman_id":"62cf19ed-ae38-4481-a8fd-63ba8269e12d"},{"name":"4. Approve ","id":"89a56466-7aa4-4575-84c0-42a898b52a9d","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"RequestHeader\": {\n        \"SessionId\": \"{{SessionId}}\",\n        \"ApiKey\": \"{{ApiKey}}\"\n    },\n    \"InstallmentPlanNumber\": \"{{InstallmentPlanNumber}}\"\n}"},"url":"https://{{url}}/api/InstallmentPlan/Approve?format=json","description":"<h2>Description:</h2>\n<p>Important - This service needs to be used only if approval evidence was not transferred as part of create service. </p>\n<p>This service allows you to indicate that a shopper has approved the installment plan terms and conditions. Upon shopper approval, the first installment will be charged if installment plan is set to be charged automatically on creation.</p>\n<p>Please notice that the terms and conditions must be displayed to shopper and shopper must approve it before calling this service.</p>\n<p> </p>\n<h2>Request parameters</h2>\n<p>* For information about request headers that need to be sent as part of every transaction, please check request header description in introduction.</p>\n<p> </p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>InstallmentPlanNumber<br /> <strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>The installment plan unique number</p>\n</td>\n</tr>\n</tbody>\n</table>\n<p> </p>\n<h2>Response:</h2>\n<p> </p>\n<p>* For information about response header, please check response header description in introduction.</p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>InstallmentPlan</p>\n</td>\n<td>\n<p>InstallmentPlan</p>\n</td>\n<td>\n<p>Full installment plan data response. For all information, please refer to the documentation <a href=\"https://www.splitit.com/entities-documentation/\">here</a>.</p>\n</td>\n</tr>\n</tbody>\n</table>","urlObject":{"protocol":"https","path":["api","InstallmentPlan","Approve"],"host":["{{url}}"],"query":[{"key":"format","value":"json"}],"variable":[]}},"response":[{"id":"f205c271-2d0d-4906-8966-cfe805377266","name":"4. Approve ","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"RequestHeader\": {\n        \"SessionId\": \"{{SessionId}}\",\n        \"ApiKey\": \"{{ApiKey}}\"\n    },\n    \"InstallmentPlanNumber\": \"{{InstallmentPlanNumber}}\"\n}"},"url":{"raw":"https://{{url}}/api/InstallmentPlan/Approve?format=json","protocol":"https","host":["{{url}}"],"path":["api","InstallmentPlan","Approve"],"query":[{"key":"format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"ResponseHeader\": {\r\n        \"Succeeded\": true,\r\n        \"Errors\": []\r\n    },\r\n    \"InstallmentPlan\": {\r\n        \"InstallmentPlanNumber\": \"88611824300186625358\",\r\n        \"InstallmentPlanStatus\": {\r\n            \"Code\": \"InProgress\",\r\n            \"Id\": 3,\r\n            \"Description\": \"In Progress\"\r\n        },\r\n        \"Amount\": {\r\n            \"Value\": 2000.00,\r\n            \"Currency\": {\r\n                \"Symbol\": \"€\",\r\n                \"Id\": 4,\r\n                \"Code\": \"EUR\",\r\n                \"Description\": \"Euro\"\r\n            }\r\n        },\r\n        \"OutstandingAmount\": {\r\n            \"Value\": 1600.00,\r\n            \"Currency\": {\r\n                \"Symbol\": \"€\",\r\n                \"Id\": 4,\r\n                \"Code\": \"EUR\",\r\n                \"Description\": \"Euro\"\r\n            }\r\n        },\r\n        \"NumberOfInstallments\": 5,\r\n        \"NumberOfProcessedInstallments\": 1,\r\n        \"OriginalAmount\": {\r\n            \"Value\": 2000.00,\r\n            \"Currency\": {\r\n                \"Symbol\": \"€\",\r\n                \"Id\": 4,\r\n                \"Code\": \"EUR\",\r\n                \"Description\": \"Euro\"\r\n            }\r\n        },\r\n        \"RefundAmount\": {\r\n            \"Value\": 0.00,\r\n            \"Currency\": {\r\n                \"Symbol\": \"€\",\r\n                \"Id\": 4,\r\n                \"Code\": \"EUR\",\r\n                \"Description\": \"Euro\"\r\n            }\r\n        },\r\n        \"Consumer\": {\r\n            \"Id\": \"0\",\r\n            \"UserName\": \"JohnS23602\",\r\n            \"FullName\": \"John Smith\",\r\n            \"Email\": \"JohnS@splitit.com\",\r\n            \"PhoneNumber\": \"1-844-775-4848\",\r\n            \"CultureName\": \"en-US\",\r\n            \"RoleName\": null,\r\n            \"IsLocked\": false,\r\n            \"IsDataRestricted\": false\r\n        },\r\n        \"ActiveCard\": {\r\n            \"CardId\": null,\r\n            \"CardNumber\": \"**** **** **** 1111\",\r\n            \"CardExpMonth\": \"5\",\r\n            \"CardExpYear\": \"2022\",\r\n            \"CardBrand\": {\r\n                \"Code\": \"Visa\",\r\n                \"Id\": 2,\r\n                \"Description\": \"VISA\"\r\n            },\r\n            \"CardType\": {\r\n                \"Code\": \"Credit\",\r\n                \"Id\": 1,\r\n                \"Description\": \"CREDIT\"\r\n            },\r\n            \"Bin\": \"411111\",\r\n            \"CardHolderFullName\": \"yan testings\",\r\n            \"CardCvv\": \"[Filtered]\",\r\n            \"Address\": {\r\n                \"AddressLine\": \"260 Madison Avenue.\",\r\n                \"AddressLine2\": \"Apartment 1\",\r\n                \"City\": \"New York\",\r\n                \"Country\": \"US\",\r\n                \"State\": \"NY\",\r\n                \"Zip\": \"10016\",\r\n                \"FullAddressLine\": \"260 Madison Avenue.,Apartment 1,New York,NY,US\"\r\n            },\r\n            \"Token\": \"0ca0dbf3-2647-4fe5-8c6a-9aca05a95cff\"\r\n        },\r\n        \"FraudCheck\": null,\r\n        \"Terminal\": {\r\n            \"Id\": 20500,\r\n            \"Code\": \"Yan's first store\",\r\n            \"Description\": \"Yan's first store\"\r\n        },\r\n        \"Merchant\": {\r\n            \"Id\": 20371,\r\n            \"Code\": \"yanthemerchant\",\r\n            \"Description\": \"Yan the Merchant\"\r\n        },\r\n        \"RefOrderNumber\": \"12345Testing54321\",\r\n        \"PurchaseMethod\": {\r\n            \"Code\": \"ECommerce\",\r\n            \"Id\": 3,\r\n            \"Description\": \"E-Commerce\"\r\n        },\r\n        \"Strategy\": {\r\n            \"Code\": \"SecuredPlan3\",\r\n            \"Id\": 4,\r\n            \"Description\": \"Secured 3\"\r\n        },\r\n        \"DelayResolution\": null,\r\n        \"KeepNonApprovedPlanLive\": \"00:00:00\",\r\n        \"ExtendPlanLiveTimeOnPaymentRequest\": \"00:00:00\",\r\n        \"ExtendPlanLiveTimeOnApprovalRequest\": \"00:00:00\",\r\n        \"ExtendedParams\": {\r\n            \"AnyParameterKey1\": \"\",\r\n            \"AnyParameterKey2\": \"\"\r\n        },\r\n        \"IsFullCaptured\": false,\r\n        \"IsChargedBack\": false,\r\n        \"ArePaymentsOnHold\": false,\r\n        \"ScpFundingPercent\": 0.00,\r\n        \"TestMode\": \"None\",\r\n        \"CreationDateTime\": \"2019-11-10T11:51:16.72\",\r\n        \"Installments\": [\r\n            {\r\n                \"InstallmentNumber\": 1,\r\n                \"Amount\": {\r\n                    \"Value\": 400.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"OriginalAmount\": {\r\n                    \"Value\": 400.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"RefundAmount\": {\r\n                    \"Value\": 0.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"ProcessDateTime\": \"2019-11-10T11:51:27.0625111Z\",\r\n                \"IsRefund\": false,\r\n                \"RequiredCredit\": {\r\n                    \"Value\": 2000.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"CreatedDateTime\": \"2019-11-10T11:51:17.523\",\r\n                \"Status\": {\r\n                    \"Code\": \"Finished\",\r\n                    \"Id\": 3,\r\n                    \"Description\": \"Finished\"\r\n                },\r\n                \"TransactionResults\": [\r\n                    {\r\n                        \"GatewayTransactionId\": \"c0f503a4-be93-4504-a8d6-fa415216b785\",\r\n                        \"GatewayResultCode\": \"1\",\r\n                        \"GatewayResultMessage\": \"Capture Succeeded\",\r\n                        \"OperationType\": {\r\n                            \"Code\": \"Capture\",\r\n                            \"Id\": 2,\r\n                            \"Description\": \"Captured\"\r\n                        },\r\n                        \"GatewayResult\": true,\r\n                        \"GatewayTransactionDate\": \"2019-11-10T11:51:26.98\"\r\n                    },\r\n                    {\r\n                        \"GatewayTransactionId\": \"c0f503a4-be93-4504-a8d6-fa415216b785\",\r\n                        \"GatewayResultCode\": \"1\",\r\n                        \"GatewayResultMessage\": \"Authorize Succeeded\",\r\n                        \"OperationType\": {\r\n                            \"Code\": \"Authorize\",\r\n                            \"Id\": 1,\r\n                            \"Description\": \"Approved\"\r\n                        },\r\n                        \"GatewayResult\": true,\r\n                        \"GatewayTransactionDate\": \"2019-11-10T11:51:18.203\"\r\n                    }\r\n                ],\r\n                \"CardDetails\": {\r\n                    \"CardId\": null,\r\n                    \"CardNumber\": \"**** **** **** 1111\",\r\n                    \"CardExpMonth\": \"5\",\r\n                    \"CardExpYear\": \"2022\",\r\n                    \"CardBrand\": {\r\n                        \"Code\": \"Visa\",\r\n                        \"Id\": 2,\r\n                        \"Description\": \"VISA\"\r\n                    },\r\n                    \"CardType\": {\r\n                        \"Code\": \"Credit\",\r\n                        \"Id\": 1,\r\n                        \"Description\": \"CREDIT\"\r\n                    },\r\n                    \"Bin\": \"411111\",\r\n                    \"CardHolderFullName\": \"yan testings\",\r\n                    \"CardCvv\": \"[Filtered]\",\r\n                    \"Address\": {\r\n                        \"AddressLine\": \"260 Madison Avenue.\",\r\n                        \"AddressLine2\": \"Apartment 1\",\r\n                        \"City\": \"New York\",\r\n                        \"Country\": \"US\",\r\n                        \"State\": \"NY\",\r\n                        \"Zip\": \"10016\",\r\n                        \"FullAddressLine\": \"260 Madison Avenue.,Apartment 1,New York,NY,US\"\r\n                    },\r\n                    \"Token\": null\r\n                },\r\n                \"Result\": true\r\n            },\r\n            {\r\n                \"InstallmentNumber\": 2,\r\n                \"Amount\": {\r\n                    \"Value\": 400.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"OriginalAmount\": {\r\n                    \"Value\": 400.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"RefundAmount\": {\r\n                    \"Value\": 0.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"ProcessDateTime\": \"2019-12-10T11:51:26.7012802Z\",\r\n                \"IsRefund\": false,\r\n                \"RequiredCredit\": {\r\n                    \"Value\": 1600.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"CreatedDateTime\": \"2019-11-10T11:51:17.523\",\r\n                \"Status\": {\r\n                    \"Code\": \"WaitingForProcessDate\",\r\n                    \"Id\": 2,\r\n                    \"Description\": \"Waiting for process date\"\r\n                },\r\n                \"TransactionResults\": [],\r\n                \"CardDetails\": null,\r\n                \"Result\": null\r\n            },\r\n            {\r\n                \"InstallmentNumber\": 3,\r\n                \"Amount\": {\r\n                    \"Value\": 400.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"OriginalAmount\": {\r\n                    \"Value\": 400.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"RefundAmount\": {\r\n                    \"Value\": 0.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"ProcessDateTime\": \"2020-01-10T11:51:26.701297Z\",\r\n                \"IsRefund\": false,\r\n                \"RequiredCredit\": {\r\n                    \"Value\": 1200.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"CreatedDateTime\": \"2019-11-10T11:51:17.523\",\r\n                \"Status\": {\r\n                    \"Code\": \"WaitingForProcessDate\",\r\n                    \"Id\": 2,\r\n                    \"Description\": \"Waiting for process date\"\r\n                },\r\n                \"TransactionResults\": [],\r\n                \"CardDetails\": null,\r\n                \"Result\": null\r\n            },\r\n            {\r\n                \"InstallmentNumber\": 4,\r\n                \"Amount\": {\r\n                    \"Value\": 400.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"OriginalAmount\": {\r\n                    \"Value\": 400.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"RefundAmount\": {\r\n                    \"Value\": 0.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"ProcessDateTime\": \"2020-02-10T11:51:26.7013174Z\",\r\n                \"IsRefund\": false,\r\n                \"RequiredCredit\": {\r\n                    \"Value\": 800.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"CreatedDateTime\": \"2019-11-10T11:51:17.523\",\r\n                \"Status\": {\r\n                    \"Code\": \"WaitingForProcessDate\",\r\n                    \"Id\": 2,\r\n                    \"Description\": \"Waiting for process date\"\r\n                },\r\n                \"TransactionResults\": [],\r\n                \"CardDetails\": null,\r\n                \"Result\": null\r\n            },\r\n            {\r\n                \"InstallmentNumber\": 5,\r\n                \"Amount\": {\r\n                    \"Value\": 400.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"OriginalAmount\": {\r\n                    \"Value\": 400.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"RefundAmount\": {\r\n                    \"Value\": 0.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"ProcessDateTime\": \"2020-03-10T11:51:26.7013344Z\",\r\n                \"IsRefund\": false,\r\n                \"RequiredCredit\": {\r\n                    \"Value\": 400.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"CreatedDateTime\": \"2019-11-10T11:51:17.523\",\r\n                \"Status\": {\r\n                    \"Code\": \"WaitingForProcessDate\",\r\n                    \"Id\": 2,\r\n                    \"Description\": \"Waiting for process date\"\r\n                },\r\n                \"TransactionResults\": [],\r\n                \"CardDetails\": null,\r\n                \"Result\": null\r\n            }\r\n        ],\r\n        \"SecureAuthorizations\": [\r\n            {\r\n                \"ProcessingDate\": \"2019-11-10T11:51:18.32\",\r\n                \"Amount\": {\r\n                    \"Value\": 2000.00,\r\n                    \"Currency\": {\r\n                        \"Symbol\": \"€\",\r\n                        \"Id\": 4,\r\n                        \"Code\": \"EUR\",\r\n                        \"Description\": \"Euro\"\r\n                    }\r\n                },\r\n                \"TransactionResults\": [\r\n                    {\r\n                        \"GatewayTransactionId\": \"c0f503a4-be93-4504-a8d6-fa415216b785\",\r\n                        \"GatewayResultCode\": \"1\",\r\n                        \"GatewayResultMessage\": \"Authorize Succeeded\",\r\n                        \"OperationType\": {\r\n                            \"Code\": \"Authorize\",\r\n                            \"Id\": 1,\r\n                            \"Description\": \"Approved\"\r\n                        },\r\n                        \"GatewayResult\": true,\r\n                        \"GatewayTransactionDate\": \"2019-11-10T11:51:18.203\"\r\n                    }\r\n                ],\r\n                \"CardDetails\": {\r\n                    \"CardId\": null,\r\n                    \"CardNumber\": \"**** **** **** 1111\",\r\n                    \"CardExpMonth\": \"5\",\r\n                    \"CardExpYear\": \"2022\",\r\n                    \"CardBrand\": {\r\n                        \"Code\": \"Visa\",\r\n                        \"Id\": 2,\r\n                        \"Description\": \"VISA\"\r\n                    },\r\n                    \"CardType\": {\r\n                        \"Code\": \"Credit\",\r\n                        \"Id\": 1,\r\n                        \"Description\": \"CREDIT\"\r\n                    },\r\n                    \"Bin\": \"411111\",\r\n                    \"CardHolderFullName\": \"yan testings\",\r\n                    \"CardCvv\": \"[Filtered]\",\r\n                    \"Address\": {\r\n                        \"AddressLine\": \"260 Madison Avenue.\",\r\n                        \"AddressLine2\": \"Apartment 1\",\r\n                        \"City\": \"New York\",\r\n                        \"Country\": \"US\",\r\n                        \"State\": \"NY\",\r\n                        \"Zip\": \"10016\",\r\n                        \"FullAddressLine\": \"260 Madison Avenue.,Apartment 1,New York,NY,US\"\r\n                    },\r\n                    \"Token\": null\r\n                },\r\n                \"Result\": true\r\n            }\r\n        ]\r\n    }\r\n}"}],"_postman_id":"89a56466-7aa4-4575-84c0-42a898b52a9d"},{"name":"5. StartInstallments","id":"0ac40c25-a6b5-46d1-a0ae-46f6c22e2962","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"RequestHeader\": {\n        \"SessionId\": \"{{SessionId}}\",\n        \"ApiKey\": \"{{ApiKey}}\"\n    },\n    \"InstallmentPlanNumber\": \"{{InstallmentPlanNumber}}\"\n}"},"url":"https://{{url}}/api/InstallmentPlan/StartInstallments?format=json","description":"<h2>Description:</h2>\n<p>This service prompts Splitit to start running the first charge.</p>\n<p>Please notice that this service is mandatory only for installment plans that were set as AutoCapture=false when it was originally created\\initiated.</p>\n<h2>Request parameters</h2>\n<p>* For information about request header that need to be sent as part of every transaction, please check request header description in introduction. </p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>InstallmentPlanNumber<br /> <strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>The installment plan unique number</p>\n</td>\n</tr>\n</tbody>\n</table>\n<h2>Response:</h2>\n<p>* For information about response header, please check response header description in introduction.</p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>InstallmentPlan</p>\n</td>\n<td>\n<p>InstallmentPlan</p>\n</td>\n<td>\n<p>Full installment plan detail response. For all information, please refer to the documentation <a href=\"https://www.splitit.com/entities-documentation/\">here</a></p>\n</td>\n</tr>\n</tbody>\n</table>","urlObject":{"protocol":"https","path":["api","InstallmentPlan","StartInstallments"],"host":["{{url}}"],"query":[{"key":"format","value":"json"}],"variable":[]}},"response":[{"id":"6f9e3bc7-e611-4158-97a0-8363b84bbb51","name":"5. StartInstallments","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"RequestHeader\": {\n        \"SessionId\": \"{{SessionId}}\",\n        \"ApiKey\": \"{{ApiKey}}\"\n    },\n    \"InstallmentPlanNumber\": \"{{InstallmentPlanNumber}}\"\n}"},"url":{"raw":"https://{{url}}/api/InstallmentPlan/StartInstallments?format=json","protocol":"https","host":["{{url}}"],"path":["api","InstallmentPlan","StartInstallments"],"query":[{"key":"format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ResponseHeader\": {\n        \"Succeeded\": true,\n        \"Errors\": []\n    },\n    \"InstallmentPlan\": {\n        \"InstallmentPlanNumber\": \"84051514574636054566\",\n        \"InstallmentPlanStatus\": {\n            \"Code\": \"InProgress\",\n            \"Id\": 3,\n            \"Description\": \"In Progress\"\n        },\n        \"Amount\": {\n            \"Value\": 1000,\n            \"Currency\": {\n                \"Symbol\": \"€\",\n                \"Id\": 4,\n                \"Code\": \"EUR\",\n                \"Description\": \"Euro\"\n            }\n        },\n        \"OutstandingAmount\": {\n            \"Value\": 800,\n            \"Currency\": {\n                \"Symbol\": \"€\",\n                \"Id\": 4,\n                \"Code\": \"EUR\",\n                \"Description\": \"Euro\"\n            }\n        },\n        \"NumberOfInstallments\": 5,\n        \"NumberOfProcessedInstallments\": 1,\n        \"OriginalAmount\": {\n            \"Value\": 1000,\n            \"Currency\": {\n                \"Symbol\": \"€\",\n                \"Id\": 4,\n                \"Code\": \"EUR\",\n                \"Description\": \"Euro\"\n            }\n        },\n        \"RefundAmount\": {\n            \"Value\": 0,\n            \"Currency\": {\n                \"Symbol\": \"€\",\n                \"Id\": 4,\n                \"Code\": \"EUR\",\n                \"Description\": \"Euro\"\n            }\n        },\n        \"Consumer\": {\n            \"Id\": \"0\",\n            \"UserName\": \"JohnS23602\",\n            \"FullName\": \"John Smith\",\n            \"Email\": \"JohnS@splitit.com\",\n            \"PhoneNumber\": \"1-844-775-4848\",\n            \"CultureName\": \"en-US\",\n            \"RoleName\": null,\n            \"IsLocked\": false,\n            \"IsDataRestricted\": false\n        },\n        \"ActiveCard\": {\n            \"CardId\": null,\n            \"CardNumber\": \"**** **** **** 1111\",\n            \"CardExpMonth\": \"5\",\n            \"CardExpYear\": \"2022\",\n            \"CardBrand\": {\n                \"Code\": \"Visa\",\n                \"Id\": 2,\n                \"Description\": \"VISA\"\n            },\n            \"CardType\": {\n                \"Code\": \"Credit\",\n                \"Id\": 1,\n                \"Description\": \"CREDIT\"\n            },\n            \"Bin\": \"411111\",\n            \"CardHolderFullName\": \"John Smith\",\n            \"CardCvv\": \"[Filtered]\",\n            \"Address\": {\n                \"AddressLine\": \"260 Madison Avenue.\",\n                \"AddressLine2\": \"Apartment 1\",\n                \"City\": \"New York\",\n                \"Country\": \"US\",\n                \"State\": \"NY\",\n                \"Zip\": \"10016\",\n                \"FullAddressLine\": \"260 Madison Avenue.,Apartment 1,New York,NY,US\"\n            },\n            \"Token\": \"0ca0dbf3-2647-4fe5-8c6a-9aca05a95cff\"\n        },\n        \"FraudCheck\": null,\n        \"Terminal\": {\n            \"Id\": 20500,\n            \"Code\": \"Yan's first store\",\n            \"Description\": \"Yan's first store\"\n        },\n        \"Merchant\": {\n            \"Id\": 20371,\n            \"Code\": \"yanthemerchant\",\n            \"Description\": \"Yan the Merchant\"\n        },\n        \"RefOrderNumber\": \"12345Testing54321\",\n        \"PurchaseMethod\": {\n            \"Code\": \"ECommerce\",\n            \"Id\": 3,\n            \"Description\": \"E-Commerce\"\n        },\n        \"Strategy\": {\n            \"Code\": \"SecuredPlan3\",\n            \"Id\": 4,\n            \"Description\": \"Secured 3\"\n        },\n        \"DelayResolution\": null,\n        \"KeepNonApprovedPlanLive\": \"00:00:00\",\n        \"ExtendPlanLiveTimeOnPaymentRequest\": \"00:00:00\",\n        \"ExtendPlanLiveTimeOnApprovalRequest\": \"00:00:00\",\n        \"ExtendedParams\": {\n            \"AnyParameterKey1\": \"\",\n            \"AnyParameterKey2\": \"\"\n        },\n        \"IsFullCaptured\": false,\n        \"IsChargedBack\": false,\n        \"ArePaymentsOnHold\": false,\n        \"ScpFundingPercent\": 0,\n        \"TestMode\": \"None\",\n        \"CreationDateTime\": \"2019-11-10T12:02:10\",\n        \"Installments\": [\n            {\n                \"InstallmentNumber\": 1,\n                \"Amount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2019-11-10T12:03:51.948946Z\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 1000,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T12:02:10.71\",\n                \"Status\": {\n                    \"Code\": \"Finished\",\n                    \"Id\": 3,\n                    \"Description\": \"Finished\"\n                },\n                \"TransactionResults\": [\n                    {\n                        \"GatewayTransactionId\": \"96ff7f6a-082b-4f67-8f27-ac697e4397c4\",\n                        \"GatewayResultCode\": \"1\",\n                        \"GatewayResultMessage\": \"Capture Succeeded\",\n                        \"OperationType\": {\n                            \"Code\": \"Capture\",\n                            \"Id\": 2,\n                            \"Description\": \"Captured\"\n                        },\n                        \"GatewayResult\": true,\n                        \"GatewayTransactionDate\": \"2019-11-10T12:03:51.883\"\n                    },\n                    {\n                        \"GatewayTransactionId\": \"96ff7f6a-082b-4f67-8f27-ac697e4397c4\",\n                        \"GatewayResultCode\": \"1\",\n                        \"GatewayResultMessage\": \"Authorize Succeeded\",\n                        \"OperationType\": {\n                            \"Code\": \"Authorize\",\n                            \"Id\": 1,\n                            \"Description\": \"Approved\"\n                        },\n                        \"GatewayResult\": true,\n                        \"GatewayTransactionDate\": \"2019-11-10T12:02:11.103\"\n                    }\n                ],\n                \"CardDetails\": {\n                    \"CardId\": null,\n                    \"CardNumber\": \"**** **** **** 1111\",\n                    \"CardExpMonth\": \"5\",\n                    \"CardExpYear\": \"2022\",\n                    \"CardBrand\": {\n                        \"Code\": \"Visa\",\n                        \"Id\": 2,\n                        \"Description\": \"VISA\"\n                    },\n                    \"CardType\": {\n                        \"Code\": \"Credit\",\n                        \"Id\": 1,\n                        \"Description\": \"CREDIT\"\n                    },\n                    \"Bin\": \"411111\",\n                    \"CardHolderFullName\": \"John Smith\",\n                    \"CardCvv\": \"[Filtered]\",\n                    \"Address\": {\n                        \"AddressLine\": \"260 Madison Avenue.\",\n                        \"AddressLine2\": \"Apartment 1\",\n                        \"City\": \"New York\",\n                        \"Country\": \"US\",\n                        \"State\": \"NY\",\n                        \"Zip\": \"10016\",\n                        \"FullAddressLine\": \"260 Madison Avenue.,Apartment 1,New York,NY,US\"\n                    },\n                    \"Token\": null\n                },\n                \"Result\": true\n            },\n            {\n                \"InstallmentNumber\": 2,\n                \"Amount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2019-12-10T12:03:51.4664689Z\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 800,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T12:02:10.71\",\n                \"Status\": {\n                    \"Code\": \"WaitingForProcessDate\",\n                    \"Id\": 2,\n                    \"Description\": \"Waiting for process date\"\n                },\n                \"TransactionResults\": [],\n                \"CardDetails\": null,\n                \"Result\": null\n            },\n            {\n                \"InstallmentNumber\": 3,\n                \"Amount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2020-01-10T12:03:51.4664949Z\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 600,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T12:02:10.71\",\n                \"Status\": {\n                    \"Code\": \"WaitingForProcessDate\",\n                    \"Id\": 2,\n                    \"Description\": \"Waiting for process date\"\n                },\n                \"TransactionResults\": [],\n                \"CardDetails\": null,\n                \"Result\": null\n            },\n            {\n                \"InstallmentNumber\": 4,\n                \"Amount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2020-02-10T12:03:51.466512Z\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 400,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T12:02:10.71\",\n                \"Status\": {\n                    \"Code\": \"WaitingForProcessDate\",\n                    \"Id\": 2,\n                    \"Description\": \"Waiting for process date\"\n                },\n                \"TransactionResults\": [],\n                \"CardDetails\": null,\n                \"Result\": null\n            },\n            {\n                \"InstallmentNumber\": 5,\n                \"Amount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2020-03-10T12:03:51.4665287Z\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T12:02:10.71\",\n                \"Status\": {\n                    \"Code\": \"WaitingForProcessDate\",\n                    \"Id\": 2,\n                    \"Description\": \"Waiting for process date\"\n                },\n                \"TransactionResults\": [],\n                \"CardDetails\": null,\n                \"Result\": null\n            }\n        ],\n        \"SecureAuthorizations\": [\n            {\n                \"ProcessingDate\": \"2019-11-10T12:02:11.233\",\n                \"Amount\": {\n                    \"Value\": 1000,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"TransactionResults\": [\n                    {\n                        \"GatewayTransactionId\": \"96ff7f6a-082b-4f67-8f27-ac697e4397c4\",\n                        \"GatewayResultCode\": \"1\",\n                        \"GatewayResultMessage\": \"Authorize Succeeded\",\n                        \"OperationType\": {\n                            \"Code\": \"Authorize\",\n                            \"Id\": 1,\n                            \"Description\": \"Approved\"\n                        },\n                        \"GatewayResult\": true,\n                        \"GatewayTransactionDate\": \"2019-11-10T12:02:11.103\"\n                    }\n                ],\n                \"CardDetails\": {\n                    \"CardId\": null,\n                    \"CardNumber\": \"**** **** **** 1111\",\n                    \"CardExpMonth\": \"5\",\n                    \"CardExpYear\": \"2022\",\n                    \"CardBrand\": {\n                        \"Code\": \"Visa\",\n                        \"Id\": 2,\n                        \"Description\": \"VISA\"\n                    },\n                    \"CardType\": {\n                        \"Code\": \"Credit\",\n                        \"Id\": 1,\n                        \"Description\": \"CREDIT\"\n                    },\n                    \"Bin\": \"411111\",\n                    \"CardHolderFullName\": \"John Smith\",\n                    \"CardCvv\": \"[Filtered]\",\n                    \"Address\": {\n                        \"AddressLine\": \"260 Madison Avenue.\",\n                        \"AddressLine2\": \"Apartment 1\",\n                        \"City\": \"New York\",\n                        \"Country\": \"US\",\n                        \"State\": \"NY\",\n                        \"Zip\": \"10016\",\n                        \"FullAddressLine\": \"260 Madison Avenue.,Apartment 1,New York,NY,US\"\n                    },\n                    \"Token\": null\n                },\n                \"Result\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"0ac40c25-a6b5-46d1-a0ae-46f6c22e2962"},{"name":"6. UpdatePlan","id":"e08e0d70-846d-4f3c-a84a-360584ad3ba4","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n   \"RequestHeader\": {\r\n   \"SessionId\": \"{{SessionId}}\",\r\n   \"ApiKey\": \"{{ApiKey}}\"\r\n},\r\n  \"InstallmentPlanNumber\": \"{{InstallmentPlanNumber}}\",\r\n   \"PlanData\": {\r\n      \"RefOrderNumber\": \"XYZb\",\r\n      \"ExtendedParams\": {\r\n         \"AnyParameterKey1\": \" AnyParameterVal1\",\r\n         \"AnyParameterKey2\": \" AnyParameterVal2\"\r\n     }\r\n   }\r\n}"},"url":"https://{{url}}/api/InstallmentPlan/Update?format=json","description":"<h2>Description:</h2>\n<p>This service enables updates to some plan parameters as reference (merchant) order number and extended parameters.</p>\n<p> </p>\n<h2>Request parameters</h2>\n<p>* For information about request headers that need to be sent as part of every transaction, please check request header description in introduction. </p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>InstallmentPlanNumber<br /> <strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>The installment plan unique number</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>PlanData.RefOrderNumber</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Update installment plan reference order number</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>PlanData.ExtendedParams</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>Update installment plan dynamic parameters</p>\n</td>\n</tr>\n</tbody>\n</table>\n<h2> </h2>\n<h2>Response:</h2>\n<p> </p>\n<p>* For information about response header, please check response header description in introduction.</p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>InstallmentPlan</p>\n</td>\n<td>\n<p>InstallmentPlan</p>\n</td>\n<td>\n<p>Full installment plan detailed response. For all information, please refer to the documentation <a href=\"https://www.splitit.com/entities-documentation/\">here</a></p>\n</td>\n</tr>\n</tbody>\n</table>","urlObject":{"protocol":"https","path":["api","InstallmentPlan","Update"],"host":["{{url}}"],"query":[{"key":"format","value":"json"}],"variable":[]}},"response":[{"id":"47670241-5c91-4ac0-afb0-1967bcbd5a0e","name":"6. UpdatePlan","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n   \"RequestHeader\": {\r\n   \"SessionId\": \"{{SessionId}}\",\r\n   \"ApiKey\": \"{{ApiKey}}\"\r\n},\r\n  \"InstallmentPlanNumber\": \"{{InstallmentPlanNumber}}\",\r\n   \"PlanData\": {\r\n      \"RefOrderNumber\": \"XYZb\",\r\n      \"ExtendedParams\": {\r\n         \"AnyParameterKey1\": \" AnyParameterVal1\",\r\n         \"AnyParameterKey2\": \" AnyParameterVal2\"\r\n     }\r\n   }\r\n}"},"url":{"raw":"https://{{url}}/api/InstallmentPlan/Update?format=json","protocol":"https","host":["{{url}}"],"path":["api","InstallmentPlan","Update"],"query":[{"key":"format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ApprovalUrl\": \"\",\n    \"ResponseHeader\": {\n        \"Succeeded\": true,\n        \"Errors\": []\n    },\n    \"InstallmentPlan\": {\n        \"InstallmentPlanNumber\": \"84051514574636054566\",\n        \"InstallmentPlanStatus\": {\n            \"Code\": \"InProgress\",\n            \"Id\": 3,\n            \"Description\": \"In Progress\"\n        },\n        \"Amount\": {\n            \"Value\": 1000,\n            \"Currency\": {\n                \"Symbol\": \"€\",\n                \"Id\": 4,\n                \"Code\": \"EUR\",\n                \"Description\": \"Euro\"\n            }\n        },\n        \"OutstandingAmount\": {\n            \"Value\": 800,\n            \"Currency\": {\n                \"Symbol\": \"€\",\n                \"Id\": 4,\n                \"Code\": \"EUR\",\n                \"Description\": \"Euro\"\n            }\n        },\n        \"NumberOfInstallments\": 5,\n        \"NumberOfProcessedInstallments\": 1,\n        \"OriginalAmount\": {\n            \"Value\": 1000,\n            \"Currency\": {\n                \"Symbol\": \"€\",\n                \"Id\": 4,\n                \"Code\": \"EUR\",\n                \"Description\": \"Euro\"\n            }\n        },\n        \"RefundAmount\": {\n            \"Value\": 0,\n            \"Currency\": {\n                \"Symbol\": \"€\",\n                \"Id\": 4,\n                \"Code\": \"EUR\",\n                \"Description\": \"Euro\"\n            }\n        },\n        \"Consumer\": {\n            \"Id\": \"0\",\n            \"UserName\": \"JohnS23602\",\n            \"FullName\": \"John Smith\",\n            \"Email\": \"JohnS@splitit.com\",\n            \"PhoneNumber\": \"1-844-775-4848\",\n            \"CultureName\": \"en-US\",\n            \"RoleName\": null,\n            \"IsLocked\": false,\n            \"IsDataRestricted\": false\n        },\n        \"ActiveCard\": {\n            \"CardId\": null,\n            \"CardNumber\": \"**** **** **** 1111\",\n            \"CardExpMonth\": \"5\",\n            \"CardExpYear\": \"2022\",\n            \"CardBrand\": {\n                \"Code\": \"Visa\",\n                \"Id\": 2,\n                \"Description\": \"VISA\"\n            },\n            \"CardType\": {\n                \"Code\": \"Credit\",\n                \"Id\": 1,\n                \"Description\": \"CREDIT\"\n            },\n            \"Bin\": \"411111\",\n            \"CardHolderFullName\": \"John Smith\",\n            \"CardCvv\": \"[Filtered]\",\n            \"Address\": {\n                \"AddressLine\": \"260 Madison Avenue.\",\n                \"AddressLine2\": \"Apartment 1\",\n                \"City\": \"New York\",\n                \"Country\": \"US\",\n                \"State\": \"NY\",\n                \"Zip\": \"10016\",\n                \"FullAddressLine\": \"260 Madison Avenue.,Apartment 1,New York,NY,US\"\n            },\n            \"Token\": \"0ca0dbf3-2647-4fe5-8c6a-9aca05a95cff\"\n        },\n        \"FraudCheck\": null,\n        \"Terminal\": {\n            \"Id\": 20500,\n            \"Code\": \"Yan's first store\",\n            \"Description\": \"Yan's first store\"\n        },\n        \"Merchant\": {\n            \"Id\": 20371,\n            \"Code\": \"yanthemerchant\",\n            \"Description\": \"Yan the Merchant\"\n        },\n        \"RefOrderNumber\": \"XYZb\",\n        \"PurchaseMethod\": {\n            \"Code\": \"ECommerce\",\n            \"Id\": 3,\n            \"Description\": \"E-Commerce\"\n        },\n        \"Strategy\": {\n            \"Code\": \"SecuredPlan3\",\n            \"Id\": 4,\n            \"Description\": \"Secured 3\"\n        },\n        \"DelayResolution\": null,\n        \"KeepNonApprovedPlanLive\": \"00:00:00\",\n        \"ExtendPlanLiveTimeOnPaymentRequest\": \"00:00:00\",\n        \"ExtendPlanLiveTimeOnApprovalRequest\": \"00:00:00\",\n        \"ExtendedParams\": {\n            \"AnyParameterKey1\": \"AnyParameterVal1\",\n            \"AnyParameterKey2\": \"AnyParameterVal2\"\n        },\n        \"IsFullCaptured\": false,\n        \"IsChargedBack\": false,\n        \"ArePaymentsOnHold\": false,\n        \"ScpFundingPercent\": 0,\n        \"TestMode\": \"None\",\n        \"CreationDateTime\": \"2019-11-10T12:02:10\",\n        \"Installments\": [\n            {\n                \"InstallmentNumber\": 1,\n                \"Amount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2019-11-10T12:03:51.95\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 1000,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T12:02:10.71\",\n                \"Status\": {\n                    \"Code\": \"Finished\",\n                    \"Id\": 3,\n                    \"Description\": \"Finished\"\n                },\n                \"TransactionResults\": [\n                    {\n                        \"GatewayTransactionId\": \"96ff7f6a-082b-4f67-8f27-ac697e4397c4\",\n                        \"GatewayResultCode\": \"1\",\n                        \"GatewayResultMessage\": \"Capture Succeeded\",\n                        \"OperationType\": {\n                            \"Code\": \"Capture\",\n                            \"Id\": 2,\n                            \"Description\": \"Captured\"\n                        },\n                        \"GatewayResult\": true,\n                        \"GatewayTransactionDate\": \"2019-11-10T12:03:51.883\"\n                    },\n                    {\n                        \"GatewayTransactionId\": \"96ff7f6a-082b-4f67-8f27-ac697e4397c4\",\n                        \"GatewayResultCode\": \"1\",\n                        \"GatewayResultMessage\": \"Authorize Succeeded\",\n                        \"OperationType\": {\n                            \"Code\": \"Authorize\",\n                            \"Id\": 1,\n                            \"Description\": \"Approved\"\n                        },\n                        \"GatewayResult\": true,\n                        \"GatewayTransactionDate\": \"2019-11-10T12:02:11.103\"\n                    }\n                ],\n                \"CardDetails\": {\n                    \"CardId\": null,\n                    \"CardNumber\": \"**** **** **** 1111\",\n                    \"CardExpMonth\": \"5\",\n                    \"CardExpYear\": \"2022\",\n                    \"CardBrand\": {\n                        \"Code\": \"Visa\",\n                        \"Id\": 2,\n                        \"Description\": \"VISA\"\n                    },\n                    \"CardType\": {\n                        \"Code\": \"Credit\",\n                        \"Id\": 1,\n                        \"Description\": \"CREDIT\"\n                    },\n                    \"Bin\": \"411111\",\n                    \"CardHolderFullName\": \"John Smith\",\n                    \"CardCvv\": \"[Filtered]\",\n                    \"Address\": {\n                        \"AddressLine\": \"260 Madison Avenue.\",\n                        \"AddressLine2\": \"Apartment 1\",\n                        \"City\": \"New York\",\n                        \"Country\": \"US\",\n                        \"State\": \"NY\",\n                        \"Zip\": \"10016\",\n                        \"FullAddressLine\": \"260 Madison Avenue.,Apartment 1,New York,NY,US\"\n                    },\n                    \"Token\": null\n                },\n                \"Result\": true\n            },\n            {\n                \"InstallmentNumber\": 2,\n                \"Amount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2019-12-10T12:03:51.467\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 800,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T12:02:10.71\",\n                \"Status\": {\n                    \"Code\": \"WaitingForProcessDate\",\n                    \"Id\": 2,\n                    \"Description\": \"Waiting for process date\"\n                },\n                \"TransactionResults\": [],\n                \"CardDetails\": null,\n                \"Result\": null\n            },\n            {\n                \"InstallmentNumber\": 3,\n                \"Amount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2020-01-10T12:03:51.467\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 600,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T12:02:10.71\",\n                \"Status\": {\n                    \"Code\": \"WaitingForProcessDate\",\n                    \"Id\": 2,\n                    \"Description\": \"Waiting for process date\"\n                },\n                \"TransactionResults\": [],\n                \"CardDetails\": null,\n                \"Result\": null\n            },\n            {\n                \"InstallmentNumber\": 4,\n                \"Amount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2020-02-10T12:03:51.467\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 400,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T12:02:10.71\",\n                \"Status\": {\n                    \"Code\": \"WaitingForProcessDate\",\n                    \"Id\": 2,\n                    \"Description\": \"Waiting for process date\"\n                },\n                \"TransactionResults\": [],\n                \"CardDetails\": null,\n                \"Result\": null\n            },\n            {\n                \"InstallmentNumber\": 5,\n                \"Amount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2020-03-10T12:03:51.467\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T12:02:10.71\",\n                \"Status\": {\n                    \"Code\": \"WaitingForProcessDate\",\n                    \"Id\": 2,\n                    \"Description\": \"Waiting for process date\"\n                },\n                \"TransactionResults\": [],\n                \"CardDetails\": null,\n                \"Result\": null\n            }\n        ],\n        \"SecureAuthorizations\": [\n            {\n                \"ProcessingDate\": \"2019-11-10T12:02:11.233\",\n                \"Amount\": {\n                    \"Value\": 1000,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"TransactionResults\": [\n                    {\n                        \"GatewayTransactionId\": \"96ff7f6a-082b-4f67-8f27-ac697e4397c4\",\n                        \"GatewayResultCode\": \"1\",\n                        \"GatewayResultMessage\": \"Authorize Succeeded\",\n                        \"OperationType\": {\n                            \"Code\": \"Authorize\",\n                            \"Id\": 1,\n                            \"Description\": \"Approved\"\n                        },\n                        \"GatewayResult\": true,\n                        \"GatewayTransactionDate\": \"2019-11-10T12:02:11.103\"\n                    }\n                ],\n                \"CardDetails\": {\n                    \"CardId\": null,\n                    \"CardNumber\": \"**** **** **** 1111\",\n                    \"CardExpMonth\": \"5\",\n                    \"CardExpYear\": \"2022\",\n                    \"CardBrand\": {\n                        \"Code\": \"Visa\",\n                        \"Id\": 2,\n                        \"Description\": \"VISA\"\n                    },\n                    \"CardType\": {\n                        \"Code\": \"Credit\",\n                        \"Id\": 1,\n                        \"Description\": \"CREDIT\"\n                    },\n                    \"Bin\": \"411111\",\n                    \"CardHolderFullName\": \"John Smith\",\n                    \"CardCvv\": \"[Filtered]\",\n                    \"Address\": {\n                        \"AddressLine\": \"260 Madison Avenue.\",\n                        \"AddressLine2\": \"Apartment 1\",\n                        \"City\": \"New York\",\n                        \"Country\": \"US\",\n                        \"State\": \"NY\",\n                        \"Zip\": \"10016\",\n                        \"FullAddressLine\": \"260 Madison Avenue.,Apartment 1,New York,NY,US\"\n                    },\n                    \"Token\": null\n                },\n                \"Result\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"e08e0d70-846d-4f3c-a84a-360584ad3ba4"},{"name":"7. Cancel","id":"1fe680f5-d442-4419-8e58-71e90575a0c9","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n   \"RequestHeader\": {\r\n   \"SessionId\": \"{{SessionId}}\",\r\n   \"ApiKey\": \"{{ApiKey}}\"\r\n},\r\n    \"InstallmentPlanNumber\": \"{{InstallmentPlanNumber}}\",\r\n  \"RefundUnderCancelation\": \"OnlyIfAFullRefundIsPossible\"\r\n}"},"url":"https://{{url}}/api/InstallmentPlan/Cancel?format=json","description":"<h2>Description:</h2>\n<p>This service allows cancelling installment plan with or without refund.</p>\n<h2>Request parameters</h2>\n<p>* For information about request headers that need to be sent as part of every transaction, please check request header description in introduction. </p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>InstallmentPlanNumber<br /> <strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>The installment plan unique number</p>\n</td>\n</tr>\n<tr>\n<td>\n<p> </p>\n<p>RefundUnderCancelation<br /><strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> NoRefunds</p>\n</td>\n<td>\n<p>One of the following values:</p>\n<p>NoRefunds - will cancel the plan without refunding the shopper</p>\n<p>OnlyIfAFullRefundIsPossible - will cancel the plan only if full refund for all past installments were done.</p>\n<p> </p>\n</td>\n</tr>\n</tbody>\n</table>\n<p> </p>\n<h2>Response:</h2>\n<p>* For information about response header, please check response header description in introduction.</p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>InstallmentPlan</p>\n</td>\n<td>\n<p>InstallmentPlan</p>\n</td>\n<td>\n<p>Full installment plan detail response. For all information, please refer to the documentation <a href=\"https://www.splitit.com/entities-documentation/\">here</a></p>\n</td>\n</tr>\n</tbody>\n</table>","urlObject":{"protocol":"https","path":["api","InstallmentPlan","Cancel"],"host":["{{url}}"],"query":[{"key":"format","value":"json"}],"variable":[]}},"response":[{"id":"5734fe51-6ba6-4e98-bbb6-922a2f07eac8","name":"7. Cancel","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n   \"RequestHeader\": {\r\n   \"SessionId\": \"{{SessionId}}\",\r\n   \"ApiKey\": \"{{ApiKey}}\"\r\n},\r\n    \"InstallmentPlanNumber\": \"{{InstallmentPlanNumber}}\",\r\n  \"RefundUnderCancelation\": \"OnlyIfAFullRefundIsPossible\"\r\n}"},"url":{"raw":"https://{{url}}/api/InstallmentPlan/Cancel?format=json","protocol":"https","host":["{{url}}"],"path":["api","InstallmentPlan","Cancel"],"query":[{"key":"format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ResponseHeader\": {\n        \"Succeeded\": true,\n        \"Errors\": []\n    },\n    \"InstallmentPlan\": {\n        \"InstallmentPlanNumber\": \"84051514574636054566\",\n        \"InstallmentPlanStatus\": {\n            \"Code\": \"Canceled\",\n            \"Id\": 9,\n            \"Description\": \"Canceled\"\n        },\n        \"Amount\": {\n            \"Value\": 1000,\n            \"Currency\": {\n                \"Symbol\": \"€\",\n                \"Id\": 4,\n                \"Code\": \"EUR\",\n                \"Description\": \"Euro\"\n            }\n        },\n        \"OutstandingAmount\": {\n            \"Value\": 800,\n            \"Currency\": {\n                \"Symbol\": \"€\",\n                \"Id\": 4,\n                \"Code\": \"EUR\",\n                \"Description\": \"Euro\"\n            }\n        },\n        \"NumberOfInstallments\": 5,\n        \"NumberOfProcessedInstallments\": 1,\n        \"OriginalAmount\": {\n            \"Value\": 1000,\n            \"Currency\": {\n                \"Symbol\": \"€\",\n                \"Id\": 4,\n                \"Code\": \"EUR\",\n                \"Description\": \"Euro\"\n            }\n        },\n        \"RefundAmount\": {\n            \"Value\": 0,\n            \"Currency\": {\n                \"Symbol\": \"€\",\n                \"Id\": 4,\n                \"Code\": \"EUR\",\n                \"Description\": \"Euro\"\n            }\n        },\n        \"Consumer\": {\n            \"Id\": \"0\",\n            \"UserName\": \"JohnS23602\",\n            \"FullName\": \"John Smith\",\n            \"Email\": \"JohnS@splitit.com\",\n            \"PhoneNumber\": \"1-844-775-4848\",\n            \"CultureName\": \"en-US\",\n            \"RoleName\": null,\n            \"IsLocked\": false,\n            \"IsDataRestricted\": false\n        },\n        \"ActiveCard\": {\n            \"CardId\": null,\n            \"CardNumber\": \"**** **** **** 1111\",\n            \"CardExpMonth\": \"5\",\n            \"CardExpYear\": \"2022\",\n            \"CardBrand\": {\n                \"Code\": \"Visa\",\n                \"Id\": 2,\n                \"Description\": \"VISA\"\n            },\n            \"CardType\": {\n                \"Code\": \"Credit\",\n                \"Id\": 1,\n                \"Description\": \"CREDIT\"\n            },\n            \"Bin\": \"411111\",\n            \"CardHolderFullName\": \"John Smith\",\n            \"CardCvv\": \"[Filtered]\",\n            \"Address\": {\n                \"AddressLine\": \"260 Madison Avenue.\",\n                \"AddressLine2\": \"Apartment 1\",\n                \"City\": \"New York\",\n                \"Country\": \"US\",\n                \"State\": \"NY\",\n                \"Zip\": \"10016\",\n                \"FullAddressLine\": \"260 Madison Avenue.,Apartment 1,New York,NY,US\"\n            },\n            \"Token\": \"0ca0dbf3-2647-4fe5-8c6a-9aca05a95cff\"\n        },\n        \"FraudCheck\": null,\n        \"Terminal\": {\n            \"Id\": 20500,\n            \"Code\": \"Yan's first store\",\n            \"Description\": \"Yan's first store\"\n        },\n        \"Merchant\": {\n            \"Id\": 20371,\n            \"Code\": \"yanthemerchant\",\n            \"Description\": \"Yan the Merchant\"\n        },\n        \"RefOrderNumber\": \"XYZb\",\n        \"PurchaseMethod\": {\n            \"Code\": \"ECommerce\",\n            \"Id\": 3,\n            \"Description\": \"E-Commerce\"\n        },\n        \"Strategy\": {\n            \"Code\": \"SecuredPlan3\",\n            \"Id\": 4,\n            \"Description\": \"Secured 3\"\n        },\n        \"DelayResolution\": null,\n        \"KeepNonApprovedPlanLive\": \"00:00:00\",\n        \"ExtendPlanLiveTimeOnPaymentRequest\": \"00:00:00\",\n        \"ExtendPlanLiveTimeOnApprovalRequest\": \"00:00:00\",\n        \"ExtendedParams\": {\n            \"AnyParameterKey1\": \"AnyParameterVal1\",\n            \"AnyParameterKey2\": \"AnyParameterVal2\"\n        },\n        \"IsFullCaptured\": false,\n        \"IsChargedBack\": false,\n        \"ArePaymentsOnHold\": false,\n        \"ScpFundingPercent\": 0,\n        \"TestMode\": \"None\",\n        \"CreationDateTime\": \"2019-11-10T12:02:10\",\n        \"Installments\": [\n            {\n                \"InstallmentNumber\": 1,\n                \"Amount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2019-11-10T12:03:51.95\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 1000,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T12:02:10.71\",\n                \"Status\": {\n                    \"Code\": \"Finished\",\n                    \"Id\": 3,\n                    \"Description\": \"Finished\"\n                },\n                \"TransactionResults\": [\n                    {\n                        \"GatewayTransactionId\": \"96ff7f6a-082b-4f67-8f27-ac697e4397c4\",\n                        \"GatewayResultCode\": \"1\",\n                        \"GatewayResultMessage\": \"Capture Succeeded\",\n                        \"OperationType\": {\n                            \"Code\": \"Capture\",\n                            \"Id\": 2,\n                            \"Description\": \"Captured\"\n                        },\n                        \"GatewayResult\": true,\n                        \"GatewayTransactionDate\": \"2019-11-10T12:03:51.883\"\n                    },\n                    {\n                        \"GatewayTransactionId\": \"96ff7f6a-082b-4f67-8f27-ac697e4397c4\",\n                        \"GatewayResultCode\": \"1\",\n                        \"GatewayResultMessage\": \"Authorize Succeeded\",\n                        \"OperationType\": {\n                            \"Code\": \"Authorize\",\n                            \"Id\": 1,\n                            \"Description\": \"Approved\"\n                        },\n                        \"GatewayResult\": true,\n                        \"GatewayTransactionDate\": \"2019-11-10T12:02:11.103\"\n                    }\n                ],\n                \"CardDetails\": {\n                    \"CardId\": null,\n                    \"CardNumber\": \"**** **** **** 1111\",\n                    \"CardExpMonth\": \"5\",\n                    \"CardExpYear\": \"2022\",\n                    \"CardBrand\": {\n                        \"Code\": \"Visa\",\n                        \"Id\": 2,\n                        \"Description\": \"VISA\"\n                    },\n                    \"CardType\": {\n                        \"Code\": \"Credit\",\n                        \"Id\": 1,\n                        \"Description\": \"CREDIT\"\n                    },\n                    \"Bin\": \"411111\",\n                    \"CardHolderFullName\": \"John Smith\",\n                    \"CardCvv\": \"[Filtered]\",\n                    \"Address\": {\n                        \"AddressLine\": \"260 Madison Avenue.\",\n                        \"AddressLine2\": \"Apartment 1\",\n                        \"City\": \"New York\",\n                        \"Country\": \"US\",\n                        \"State\": \"NY\",\n                        \"Zip\": \"10016\",\n                        \"FullAddressLine\": \"260 Madison Avenue.,Apartment 1,New York,NY,US\"\n                    },\n                    \"Token\": null\n                },\n                \"Result\": true\n            },\n            {\n                \"InstallmentNumber\": 2,\n                \"Amount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2019-12-10T12:03:51.467\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 800,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T12:02:10.71\",\n                \"Status\": {\n                    \"Code\": \"Canceled\",\n                    \"Id\": 6,\n                    \"Description\": \"Canceled\"\n                },\n                \"TransactionResults\": [],\n                \"CardDetails\": null,\n                \"Result\": null\n            },\n            {\n                \"InstallmentNumber\": 3,\n                \"Amount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2020-01-10T12:03:51.467\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 600,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T12:02:10.71\",\n                \"Status\": {\n                    \"Code\": \"Canceled\",\n                    \"Id\": 6,\n                    \"Description\": \"Canceled\"\n                },\n                \"TransactionResults\": [],\n                \"CardDetails\": null,\n                \"Result\": null\n            },\n            {\n                \"InstallmentNumber\": 4,\n                \"Amount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2020-02-10T12:03:51.467\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 400,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T12:02:10.71\",\n                \"Status\": {\n                    \"Code\": \"Canceled\",\n                    \"Id\": 6,\n                    \"Description\": \"Canceled\"\n                },\n                \"TransactionResults\": [],\n                \"CardDetails\": null,\n                \"Result\": null\n            },\n            {\n                \"InstallmentNumber\": 5,\n                \"Amount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2020-03-10T12:03:51.467\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 200,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T12:02:10.71\",\n                \"Status\": {\n                    \"Code\": \"Canceled\",\n                    \"Id\": 6,\n                    \"Description\": \"Canceled\"\n                },\n                \"TransactionResults\": [],\n                \"CardDetails\": null,\n                \"Result\": null\n            }\n        ],\n        \"SecureAuthorizations\": [\n            {\n                \"ProcessingDate\": \"2019-11-10T12:02:11.233\",\n                \"Amount\": {\n                    \"Value\": 1000,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"TransactionResults\": [\n                    {\n                        \"GatewayTransactionId\": \"96ff7f6a-082b-4f67-8f27-ac697e4397c4\",\n                        \"GatewayResultCode\": \"1\",\n                        \"GatewayResultMessage\": \"Authorize Succeeded\",\n                        \"OperationType\": {\n                            \"Code\": \"Authorize\",\n                            \"Id\": 1,\n                            \"Description\": \"Approved\"\n                        },\n                        \"GatewayResult\": true,\n                        \"GatewayTransactionDate\": \"2019-11-10T12:02:11.103\"\n                    }\n                ],\n                \"CardDetails\": {\n                    \"CardId\": null,\n                    \"CardNumber\": \"**** **** **** 1111\",\n                    \"CardExpMonth\": \"5\",\n                    \"CardExpYear\": \"2022\",\n                    \"CardBrand\": {\n                        \"Code\": \"Visa\",\n                        \"Id\": 2,\n                        \"Description\": \"VISA\"\n                    },\n                    \"CardType\": {\n                        \"Code\": \"Credit\",\n                        \"Id\": 1,\n                        \"Description\": \"CREDIT\"\n                    },\n                    \"Bin\": \"411111\",\n                    \"CardHolderFullName\": \"John Smith\",\n                    \"CardCvv\": \"[Filtered]\",\n                    \"Address\": {\n                        \"AddressLine\": \"260 Madison Avenue.\",\n                        \"AddressLine2\": \"Apartment 1\",\n                        \"City\": \"New York\",\n                        \"Country\": \"US\",\n                        \"State\": \"NY\",\n                        \"Zip\": \"10016\",\n                        \"FullAddressLine\": \"260 Madison Avenue.,Apartment 1,New York,NY,US\"\n                    },\n                    \"Token\": null\n                },\n                \"Result\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"1fe680f5-d442-4419-8e58-71e90575a0c9"},{"name":"8. Refund","id":"19e3ac32-d278-4e3a-952d-744e68a19975","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"RequestHeader\": {\n        \"SessionId\": \"{{SessionId}}\",\n        \"ApiKey\": \"{{ApiKey}}\"\n    },\n    \"InstallmentPlanNumber\": \"{{InstallmentPlanNumber}}\",\n    \"Amount\": {\n        \"Value\": \"1500\"\n    },\n    \"RefundStrategy\": \"FutureInstallmentsFirst\"\n}"},"url":"https://{{url}}/api/InstallmentPlan/Refund?format=json","description":"<h2>Description:</h2>\n<p>This service allows partial or full refund for a few different methods:</p>\n<ul>\n<li><strong>FutureInstallmentsFirst (default)</strong> =The service will try to reduce the refund amount from the plan's outstanding amount (future installments that were still not charged) prior to already charged installments. if the refund amount is bigger than the outstanding amount, it will then start to refund already charged installments. </li>\n<li><strong>FutureInstallmentsLast</strong> = The service will try to refund the amount from already charged installments. If the refund amount is bigger than the total charged amount, it will then start to reduce the refund amount from the plan's outstanding amount.</li>\n<li><strong>FutureInstallmentsNotAllowed</strong> = The service will try to refund the amount only from already charged installments.</li>\n</ul>\n<h2>Request parameters</h2>\n<p>* For information about request headers that need to be sent as part of every transaction, please check request header description in introduction. </p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>InstallmentPlanNumber<br /> <strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>The installment plans unique number</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>Amount</p>\n</td>\n<td>\n<p>Amount</p>\n</td>\n<td>\n<p> Null</p>\n</td>\n<td>\n<p><strong>Important</strong>: If full amount is requested, this element should not be added</p>\n<p>The refund amount, includes:</p>\n<p>Value (decimal). Example - 305.50</p>\n<p>CurrencyCode (string) - should be in a format of ISO 4217 currency. Example - USD</p>\n</td>\n</tr>\n<tr>\n<td>\n<p>RefundStrategy</p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> NoRefunds</p>\n</td>\n<td>\n<p>One of the following values:</p>\n<p>FutureInstallmentsFirst</p>\n<p>FutureInstallmentsLast</p>\n<p>FutureInstallmentsNotAllowed</p>\n<p> </p>\n</td>\n</tr>\n</tbody>\n</table>\n<h2> </h2>\n<h2>Response:</h2>\n<p> </p>\n<p>* For information about response headers, please check response header description in introduction.</p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>InstallmentPlan</p>\n</td>\n<td>\n<p>InstallmentPlan</p>\n</td>\n<td>\n<p>Full installment plan detailed response. For all information, please refer to the documentation <a href=\"https://www.splitit.com/entities-documentation/\">here</a>.</p>\n</td>\n</tr>\n</tbody>\n</table>","urlObject":{"protocol":"https","path":["api","InstallmentPlan","Refund"],"host":["{{url}}"],"query":[{"key":"format","value":"json"}],"variable":[]}},"response":[{"id":"f99ed3fd-5e15-476b-938f-bdb9ff7723ba","name":"8. Refund","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"RequestHeader\": {\n        \"SessionId\": \"{{SessionId}}\",\n        \"ApiKey\": \"{{ApiKey}}\"\n    },\n    \"InstallmentPlanNumber\": \"{{InstallmentPlanNumber}}\",\n    \"Amount\": {\n        \"Value\": \"1500\"\n    },\n    \"RefundStrategy\": \"FutureInstallmentsFirst\"\n}"},"url":{"raw":"https://{{url}}/api/InstallmentPlan/Refund?format=json","protocol":"https","host":["{{url}}"],"path":["api","InstallmentPlan","Refund"],"query":[{"key":"format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"CurrentRefundAmount\": {\n        \"Value\": 1500,\n        \"Currency\": {\n            \"Symbol\": \"€\",\n            \"Id\": 4,\n            \"Code\": \"EUR\",\n            \"Description\": \"Euro\"\n        }\n    },\n    \"ResponseHeader\": {\n        \"Succeeded\": true,\n        \"Errors\": []\n    },\n    \"InstallmentPlan\": {\n        \"InstallmentPlanNumber\": \"32336768437852380852\",\n        \"InstallmentPlanStatus\": {\n            \"Code\": \"Cleared\",\n            \"Id\": 6,\n            \"Description\": \"Cleared\"\n        },\n        \"Amount\": {\n            \"Value\": 800,\n            \"Currency\": {\n                \"Symbol\": \"€\",\n                \"Id\": 4,\n                \"Code\": \"EUR\",\n                \"Description\": \"Euro\"\n            }\n        },\n        \"OutstandingAmount\": {\n            \"Value\": 0,\n            \"Currency\": {\n                \"Symbol\": \"€\",\n                \"Id\": 4,\n                \"Code\": \"EUR\",\n                \"Description\": \"Euro\"\n            }\n        },\n        \"NumberOfInstallments\": 5,\n        \"NumberOfProcessedInstallments\": 2,\n        \"OriginalAmount\": {\n            \"Value\": 2000,\n            \"Currency\": {\n                \"Symbol\": \"€\",\n                \"Id\": 4,\n                \"Code\": \"EUR\",\n                \"Description\": \"Euro\"\n            }\n        },\n        \"RefundAmount\": {\n            \"Value\": 300,\n            \"Currency\": {\n                \"Symbol\": \"€\",\n                \"Id\": 4,\n                \"Code\": \"EUR\",\n                \"Description\": \"Euro\"\n            }\n        },\n        \"Consumer\": {\n            \"Id\": \"0\",\n            \"UserName\": \"JohnS23602\",\n            \"FullName\": \"John Smith\",\n            \"Email\": \"JohnS@splitit.com\",\n            \"PhoneNumber\": \"1-844-775-4848\",\n            \"CultureName\": \"en-US\",\n            \"RoleName\": null,\n            \"IsLocked\": false,\n            \"IsDataRestricted\": false\n        },\n        \"ActiveCard\": {\n            \"CardId\": null,\n            \"CardNumber\": \"**** **** **** 1111\",\n            \"CardExpMonth\": \"5\",\n            \"CardExpYear\": \"2022\",\n            \"CardBrand\": {\n                \"Code\": \"Visa\",\n                \"Id\": 2,\n                \"Description\": \"VISA\"\n            },\n            \"CardType\": {\n                \"Code\": \"Credit\",\n                \"Id\": 1,\n                \"Description\": \"CREDIT\"\n            },\n            \"Bin\": \"411111\",\n            \"CardHolderFullName\": \"John Smith\",\n            \"CardCvv\": \"[Filtered]\",\n            \"Address\": {\n                \"AddressLine\": \"260 Madison Avenue.\",\n                \"AddressLine2\": \"Apartment 1\",\n                \"City\": \"New York\",\n                \"Country\": \"US\",\n                \"State\": \"NY\",\n                \"Zip\": \"10016\",\n                \"FullAddressLine\": \"260 Madison Avenue.,Apartment 1,New York,NY,US\"\n            },\n            \"Token\": \"0ca0dbf3-2647-4fe5-8c6a-9aca05a95cff\"\n        },\n        \"FraudCheck\": null,\n        \"Terminal\": {\n            \"Id\": 20500,\n            \"Code\": \"Yan's first store\",\n            \"Description\": \"Yan's first store\"\n        },\n        \"Merchant\": {\n            \"Id\": 20371,\n            \"Code\": \"yanthemerchant\",\n            \"Description\": \"Yan the Merchant\"\n        },\n        \"RefOrderNumber\": \"12345Testing54321\",\n        \"PurchaseMethod\": {\n            \"Code\": \"ECommerce\",\n            \"Id\": 3,\n            \"Description\": \"E-Commerce\"\n        },\n        \"Strategy\": {\n            \"Code\": \"SecuredPlan3\",\n            \"Id\": 4,\n            \"Description\": \"Secured 3\"\n        },\n        \"DelayResolution\": null,\n        \"KeepNonApprovedPlanLive\": \"00:00:00\",\n        \"ExtendPlanLiveTimeOnPaymentRequest\": \"00:00:00\",\n        \"ExtendPlanLiveTimeOnApprovalRequest\": \"00:00:00\",\n        \"ExtendedParams\": {\n            \"AnyParameterKey1\": \"\",\n            \"AnyParameterKey2\": \"\"\n        },\n        \"IsFullCaptured\": false,\n        \"IsChargedBack\": false,\n        \"ArePaymentsOnHold\": false,\n        \"ScpFundingPercent\": 0,\n        \"TestMode\": \"None\",\n        \"CreationDateTime\": \"2019-11-10T11:59:24.183\",\n        \"Installments\": [\n            {\n                \"InstallmentNumber\": 1,\n                \"Amount\": {\n                    \"Value\": 400,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 400,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2019-11-10T12:18:19.353\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 800,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T11:59:24.897\",\n                \"Status\": {\n                    \"Code\": \"Finished\",\n                    \"Id\": 3,\n                    \"Description\": \"Finished\"\n                },\n                \"TransactionResults\": [\n                    {\n                        \"GatewayTransactionId\": \"855dbcc3-80cc-4d65-86be-3640e31a508d\",\n                        \"GatewayResultCode\": \"1\",\n                        \"GatewayResultMessage\": \"Capture Succeeded\",\n                        \"OperationType\": {\n                            \"Code\": \"Capture\",\n                            \"Id\": 2,\n                            \"Description\": \"Captured\"\n                        },\n                        \"GatewayResult\": true,\n                        \"GatewayTransactionDate\": \"2019-11-10T12:18:19.247\"\n                    },\n                    {\n                        \"GatewayTransactionId\": \"855dbcc3-80cc-4d65-86be-3640e31a508d\",\n                        \"GatewayResultCode\": \"1\",\n                        \"GatewayResultMessage\": \"Authorize Succeeded\",\n                        \"OperationType\": {\n                            \"Code\": \"Authorize\",\n                            \"Id\": 1,\n                            \"Description\": \"Approved\"\n                        },\n                        \"GatewayResult\": true,\n                        \"GatewayTransactionDate\": \"2019-11-10T11:59:25.273\"\n                    }\n                ],\n                \"CardDetails\": {\n                    \"CardId\": null,\n                    \"CardNumber\": \"**** **** **** 1111\",\n                    \"CardExpMonth\": \"5\",\n                    \"CardExpYear\": \"2022\",\n                    \"CardBrand\": {\n                        \"Code\": \"Visa\",\n                        \"Id\": 2,\n                        \"Description\": \"VISA\"\n                    },\n                    \"CardType\": {\n                        \"Code\": \"Credit\",\n                        \"Id\": 1,\n                        \"Description\": \"CREDIT\"\n                    },\n                    \"Bin\": \"411111\",\n                    \"CardHolderFullName\": \"yan testings\",\n                    \"CardCvv\": \"[Filtered]\",\n                    \"Address\": {\n                        \"AddressLine\": \"260 Madison Avenue.\",\n                        \"AddressLine2\": \"Apartment 1\",\n                        \"City\": \"New York\",\n                        \"Country\": \"US\",\n                        \"State\": \"NY\",\n                        \"Zip\": \"10016\",\n                        \"FullAddressLine\": \"260 Madison Avenue.,Apartment 1,New York,NY,US\"\n                    },\n                    \"Token\": null\n                },\n                \"Result\": true\n            },\n            {\n                \"InstallmentNumber\": 2,\n                \"Amount\": {\n                    \"Value\": 400,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 400,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 300,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2019-11-10T12:18:26.737\",\n                \"IsRefund\": true,\n                \"RequiredCredit\": {\n                    \"Value\": 400,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T11:59:24.897\",\n                \"Status\": {\n                    \"Code\": \"Finished\",\n                    \"Id\": 3,\n                    \"Description\": \"Finished\"\n                },\n                \"TransactionResults\": [\n                    {\n                        \"GatewayTransactionId\": \"855dbcc3-80cc-4d65-86be-3640e31a508d\",\n                        \"GatewayResultCode\": \"1\",\n                        \"GatewayResultMessage\": \"Refund Succeeded\",\n                        \"OperationType\": {\n                            \"Code\": \"Refund\",\n                            \"Id\": 4,\n                            \"Description\": \"Refunded\"\n                        },\n                        \"GatewayResult\": true,\n                        \"GatewayTransactionDate\": \"2019-11-10T12:20:48.103\"\n                    },\n                    {\n                        \"GatewayTransactionId\": \"855dbcc3-80cc-4d65-86be-3640e31a508d\",\n                        \"GatewayResultCode\": \"1\",\n                        \"GatewayResultMessage\": \"Capture Succeeded\",\n                        \"OperationType\": {\n                            \"Code\": \"Capture\",\n                            \"Id\": 2,\n                            \"Description\": \"Captured\"\n                        },\n                        \"GatewayResult\": true,\n                        \"GatewayTransactionDate\": \"2019-11-10T12:18:26.663\"\n                    },\n                    {\n                        \"GatewayTransactionId\": \"855dbcc3-80cc-4d65-86be-3640e31a508d\",\n                        \"GatewayResultCode\": \"1\",\n                        \"GatewayResultMessage\": \"Authorize Succeeded\",\n                        \"OperationType\": {\n                            \"Code\": \"Authorize\",\n                            \"Id\": 1,\n                            \"Description\": \"Approved\"\n                        },\n                        \"GatewayResult\": true,\n                        \"GatewayTransactionDate\": \"2019-11-10T11:59:25.273\"\n                    }\n                ],\n                \"CardDetails\": {\n                    \"CardId\": null,\n                    \"CardNumber\": \"**** **** **** 1111\",\n                    \"CardExpMonth\": \"5\",\n                    \"CardExpYear\": \"2022\",\n                    \"CardBrand\": {\n                        \"Code\": \"Visa\",\n                        \"Id\": 2,\n                        \"Description\": \"VISA\"\n                    },\n                    \"CardType\": {\n                        \"Code\": \"Credit\",\n                        \"Id\": 1,\n                        \"Description\": \"CREDIT\"\n                    },\n                    \"Bin\": \"411111\",\n                    \"CardHolderFullName\": \"yan testings\",\n                    \"CardCvv\": \"[Filtered]\",\n                    \"Address\": {\n                        \"AddressLine\": \"260 Madison Avenue.\",\n                        \"AddressLine2\": \"Apartment 1\",\n                        \"City\": \"New York\",\n                        \"Country\": \"US\",\n                        \"State\": \"NY\",\n                        \"Zip\": \"10016\",\n                        \"FullAddressLine\": \"260 Madison Avenue.,Apartment 1,New York,NY,US\"\n                    },\n                    \"Token\": null\n                },\n                \"Result\": true\n            },\n            {\n                \"InstallmentNumber\": 3,\n                \"Amount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 400,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2020-01-10T12:18:18.577\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T11:59:24.897\",\n                \"Status\": {\n                    \"Code\": \"Canceled\",\n                    \"Id\": 6,\n                    \"Description\": \"Canceled\"\n                },\n                \"TransactionResults\": [],\n                \"CardDetails\": null,\n                \"Result\": null\n            },\n            {\n                \"InstallmentNumber\": 4,\n                \"Amount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 400,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2020-02-10T12:18:18.577\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T11:59:24.897\",\n                \"Status\": {\n                    \"Code\": \"Canceled\",\n                    \"Id\": 6,\n                    \"Description\": \"Canceled\"\n                },\n                \"TransactionResults\": [],\n                \"CardDetails\": null,\n                \"Result\": null\n            },\n            {\n                \"InstallmentNumber\": 5,\n                \"Amount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"OriginalAmount\": {\n                    \"Value\": 400,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"RefundAmount\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"ProcessDateTime\": \"2020-03-10T12:18:18.577\",\n                \"IsRefund\": false,\n                \"RequiredCredit\": {\n                    \"Value\": 0,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"CreatedDateTime\": \"2019-11-10T11:59:24.897\",\n                \"Status\": {\n                    \"Code\": \"Canceled\",\n                    \"Id\": 6,\n                    \"Description\": \"Canceled\"\n                },\n                \"TransactionResults\": [],\n                \"CardDetails\": null,\n                \"Result\": null\n            }\n        ],\n        \"SecureAuthorizations\": [\n            {\n                \"ProcessingDate\": \"2019-11-10T11:59:25.36\",\n                \"Amount\": {\n                    \"Value\": 2000,\n                    \"Currency\": {\n                        \"Symbol\": \"€\",\n                        \"Id\": 4,\n                        \"Code\": \"EUR\",\n                        \"Description\": \"Euro\"\n                    }\n                },\n                \"TransactionResults\": [\n                    {\n                        \"GatewayTransactionId\": \"855dbcc3-80cc-4d65-86be-3640e31a508d\",\n                        \"GatewayResultCode\": \"1\",\n                        \"GatewayResultMessage\": \"Authorize Succeeded\",\n                        \"OperationType\": {\n                            \"Code\": \"Authorize\",\n                            \"Id\": 1,\n                            \"Description\": \"Approved\"\n                        },\n                        \"GatewayResult\": true,\n                        \"GatewayTransactionDate\": \"2019-11-10T11:59:25.273\"\n                    }\n                ],\n                \"CardDetails\": {\n                    \"CardId\": null,\n                    \"CardNumber\": \"**** **** **** 1111\",\n                    \"CardExpMonth\": \"5\",\n                    \"CardExpYear\": \"2022\",\n                    \"CardBrand\": {\n                        \"Code\": \"Visa\",\n                        \"Id\": 2,\n                        \"Description\": \"VISA\"\n                    },\n                    \"CardType\": {\n                        \"Code\": \"Credit\",\n                        \"Id\": 1,\n                        \"Description\": \"CREDIT\"\n                    },\n                    \"Bin\": \"411111\",\n                    \"CardHolderFullName\": \"yan testings\",\n                    \"CardCvv\": \"[Filtered]\",\n                    \"Address\": {\n                        \"AddressLine\": \"260 Madison Avenue.\",\n                        \"AddressLine2\": \"Apartment 1\",\n                        \"City\": \"New York\",\n                        \"Country\": \"US\",\n                        \"State\": \"NY\",\n                        \"Zip\": \"10016\",\n                        \"FullAddressLine\": \"260 Madison Avenue.,Apartment 1,New York,NY,US\"\n                    },\n                    \"Token\": null\n                },\n                \"Result\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"19e3ac32-d278-4e3a-952d-744e68a19975"},{"name":"9. Get","id":"e13ef7fe-e17b-47ac-bd77-ade96e883e68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"RequestHeader\": {\n        \"SessionId\": \"{{SessionId}}\"\n    },\n    \"QueryCriteria\": {\n        \"InstallmentPlanNumber\": \"{{InstallmentPlanNumber}}\"\n    }\n}"},"url":"https://{{url}}/api/InstallmentPlan/Get?format=json","description":"<h2>Description:</h2>\n<p>Get full installment plan data.</p>\n<p> </p>\n<h2>Request parameters</h2>\n<p>* For information about request headers that need to be sent as part of every transaction, please check request header description in introduction. </p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>InstallmentPlanNumber<br /> <strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>The installment plan unique number</p>\n</td>\n</tr>\n</tbody>\n</table>\n<h2>Response:</h2>\n<p> </p>\n<p>* For information about response header, please check response header description in introduction.</p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>InstallmentPlan</p>\n</td>\n<td>\n<p>InstallmentPlan</p>\n</td>\n<td>\n<p>Full installment plans detailed response. For detailed information, please refer to the documentation <a href=\"https://www.splitit.com/entities-documentation/\">here</a></p>\n</td>\n</tr>\n</tbody>\n</table>","urlObject":{"protocol":"https","path":["api","InstallmentPlan","Get"],"host":["{{url}}"],"query":[{"key":"format","value":"json"}],"variable":[]}},"response":[{"id":"f0ad9258-a47c-43f9-8b9d-5f6d435bd6e7","name":"9. Get","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"RequestHeader\": {\n        \"SessionId\": \"{{SessionId}}\"\n    },\n    \"QueryCriteria\": {\n        \"InstallmentPlanNumber\": \"{{InstallmentPlanNumber}}\"\n    }\n}"},"url":{"raw":"https://{{url}}/api/InstallmentPlan/Get?format=json","protocol":"https","host":["{{url}}"],"path":["api","InstallmentPlan","Get"],"query":[{"key":"format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"PlansList\": [\n        {\n            \"InstallmentPlanNumber\": \"32336768437852380852\",\n            \"InstallmentPlanStatus\": {\n                \"Code\": \"Cleared\",\n                \"Id\": 6,\n                \"Description\": \"Cleared\"\n            },\n            \"Amount\": {\n                \"Value\": 800,\n                \"Currency\": {\n                    \"Symbol\": \"€\",\n                    \"Id\": 4,\n                    \"Code\": \"EUR\",\n                    \"Description\": \"Euro\"\n                }\n            },\n            \"OutstandingAmount\": {\n                \"Value\": 0,\n                \"Currency\": {\n                    \"Symbol\": \"€\",\n                    \"Id\": 4,\n                    \"Code\": \"EUR\",\n                    \"Description\": \"Euro\"\n                }\n            },\n            \"NumberOfInstallments\": 5,\n            \"NumberOfProcessedInstallments\": 2,\n            \"OriginalAmount\": {\n                \"Value\": 2000,\n                \"Currency\": {\n                    \"Symbol\": \"€\",\n                    \"Id\": 4,\n                    \"Code\": \"EUR\",\n                    \"Description\": \"Euro\"\n                }\n            },\n            \"RefundAmount\": {\n                \"Value\": 300,\n                \"Currency\": {\n                    \"Symbol\": \"€\",\n                    \"Id\": 4,\n                    \"Code\": \"EUR\",\n                    \"Description\": \"Euro\"\n                }\n            },\n            \"Consumer\": {\n                \"Id\": \"0\",\n                \"UserName\": \"JohnS23602\",\n                \"FullName\": \"John Smith\",\n                \"Email\": \"JohnS@splitit.com\",\n                \"PhoneNumber\": \"1-844-775-4848\",\n                \"CultureName\": \"en-US\",\n                \"RoleName\": null,\n                \"IsLocked\": false,\n                \"IsDataRestricted\": false\n            },\n            \"ActiveCard\": {\n                \"CardId\": null,\n                \"CardNumber\": \"**** **** **** 1111\",\n                \"CardExpMonth\": \"5\",\n                \"CardExpYear\": \"2022\",\n                \"CardBrand\": {\n                    \"Code\": \"Visa\",\n                    \"Id\": 2,\n                    \"Description\": \"VISA\"\n                },\n                \"CardType\": {\n                    \"Code\": \"Credit\",\n                    \"Id\": 1,\n                    \"Description\": \"CREDIT\"\n                },\n                \"Bin\": \"411111\",\n                \"CardHolderFullName\": \"John Smith\",\n                \"CardCvv\": \"[Filtered]\",\n                \"Address\": {\n                    \"AddressLine\": \"260 Madison Avenue.\",\n                    \"AddressLine2\": \"Apartment 1\",\n                    \"City\": \"New York\",\n                    \"Country\": \"US\",\n                    \"State\": \"NY\",\n                    \"Zip\": \"10016\",\n                    \"FullAddressLine\": \"260 Madison Avenue.,Apartment 1,New York,NY,US\"\n                },\n                \"Token\": \"0ca0dbf3-2647-4fe5-8c6a-9aca05a95cff\"\n            },\n            \"FraudCheck\": null,\n            \"Terminal\": {\n                \"Id\": 20500,\n                \"Code\": \"Yan's first store\",\n                \"Description\": \"Yan's first store\"\n            },\n            \"Merchant\": {\n                \"Id\": 20371,\n                \"Code\": \"yanthemerchant\",\n                \"Description\": \"Yan the Merchant\"\n            },\n            \"RefOrderNumber\": \"12345Testing54321\",\n            \"PurchaseMethod\": {\n                \"Code\": \"ECommerce\",\n                \"Id\": 3,\n                \"Description\": \"E-Commerce\"\n            },\n            \"Strategy\": {\n                \"Code\": \"SecuredPlan3\",\n                \"Id\": 4,\n                \"Description\": \"Secured 3\"\n            },\n            \"DelayResolution\": null,\n            \"KeepNonApprovedPlanLive\": \"00:00:00\",\n            \"ExtendPlanLiveTimeOnPaymentRequest\": \"00:00:00\",\n            \"ExtendPlanLiveTimeOnApprovalRequest\": \"00:00:00\",\n            \"ExtendedParams\": {\n                \"AnyParameterKey1\": \"\",\n                \"AnyParameterKey2\": \"\"\n            },\n            \"IsFullCaptured\": false,\n            \"IsChargedBack\": false,\n            \"ArePaymentsOnHold\": false,\n            \"ScpFundingPercent\": 0,\n            \"TestMode\": \"None\",\n            \"CreationDateTime\": \"2019-11-10T11:59:24.183\",\n            \"Installments\": null,\n            \"SecureAuthorizations\": null\n        }\n    ],\n    \"ResponseHeader\": {\n        \"Succeeded\": true,\n        \"Errors\": []\n    },\n    \"PagingResponseHeader\": {\n        \"TotalNumber\": 1\n    }\n}"}],"_postman_id":"e13ef7fe-e17b-47ac-bd77-ade96e883e68"},{"name":"10. VerifyPayment","id":"3c8c0f5a-e044-4be2-a975-91143ba84eb3","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n   \"RequestHeader\": {\r\n   \"SessionId\": \"{{SessionId}}\"\r\n   },\r\n  \"InstallmentPlanNumber\": \"{{InstallmentPlanNumber}}\"   \r\n}"},"url":"https://{{url}}/api/InstallmentPlan/Get/VerifyPayment","description":"<h2>Description:</h2>\n<p>Verifies whether payment is secured for specific installment plan.</p>\n<p>Remark: for unsecured plan, payment may be only partially secured (first charge).</p>\n<h2>Request parameters</h2>\n<p>* For information about request headers that need to be sent as part of every transaction, please check request header description in introduction. </p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Default</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>InstallmentPlanNumber<br /> <strong>required</strong></p>\n</td>\n<td>\n<p>String</p>\n</td>\n<td>\n<p> </p>\n</td>\n<td>\n<p>The installment plan unique number</p>\n</td>\n</tr>\n</tbody>\n</table>\n<p> </p>\n<h2>Response:</h2>\n<p> </p>\n<p>* For information about response header, please check response header description in the introduction.</p>\n<table>\n<thead>\n<tr>\n<td>\n<p><strong>Parameter</strong></p>\n</td>\n<td>\n<p><strong>Type</strong></p>\n</td>\n<td>\n<p><strong>Description</strong></p>\n</td>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\n<p>IsPaid</p>\n</td>\n<td>\n<p>Boolean</p>\n</td>\n<td>\n<p>False- Payment not secured</p>\n<p>True- Payment secured</p>\n</td>\n</tr>\n</tbody>\n</table>","urlObject":{"protocol":"https","path":["api","InstallmentPlan","Get","VerifyPayment"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"9f7c8197-a4cc-4aa0-9909-0c87a1eaf7e6","name":"10. VerifyPayment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n   \"RequestHeader\": {\r\n   \"SessionId\": \"{{SessionId}}\"\r\n   },\r\n  \"InstallmentPlanNumber\": \"{{InstallmentPlanNumber}}\"   \r\n}"},"url":"https://{{url}}/api/InstallmentPlan/Get/VerifyPayment"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"b03232d4-f124-4896-9024-841c7bdad7fe","name":"Success - not paid","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n   \"RequestHeader\": {\r\n   \"SessionId\": \"{{SessionId}}\"\r\n   },\r\n  \"InstallmentPlanNumber\": \"{{InstallmentPlanNumber}}\"   \r\n}"},"url":"https://{{url}}/api/InstallmentPlan/Get/VerifyPayment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ResponseHeader\": {\n        \"Succeeded\": true,\n        \"Errors\": null\n    },\n    \"IsPaid\": false,\n    \"OriginalAmountPaid\": null\n}"},{"id":"bc24000a-f27b-419c-9f81-6ddcf8aaa2d4","name":"Success - paid","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n   \"RequestHeader\": {\r\n   \"SessionId\": \"{{SessionId}}\"\r\n   },\r\n  \"InstallmentPlanNumber\": \"{{InstallmentPlanNumber}}\"   \r\n}"},"url":"https://{{url}}/api/InstallmentPlan/Get/VerifyPayment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ResponseHeader\": {\n        \"Succeeded\": true,\n        \"Errors\": null\n    },\n    \"IsPaid\": true,\n    \"OriginalAmountPaid\": 2000\n}"},{"id":"c8c39740-4576-4d6d-9170-1832ef0c3cf2","name":"Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n   \"RequestHeader\": {\r\n   \"SessionId\": \"{{SessionId}}\"\r\n   },\r\n  \"InstallmentPlanNumber\": \"{{InstallmentPlanNumber}}\"   \r\n}"},"url":"https://{{url}}/api/InstallmentPlan/Get/VerifyPayment"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"ResponseHeader\": {\n        \"Succeeded\": false,\n        \"Errors\": [\n            {\n                \"ErrorCode\": \"502\",\n                \"Message\": \"Invalid Installment Plan Number\",\n                \"AdditionalInfo\": \"\"\n            }\n        ]\n    },\n    \"IsPaid\": false,\n    \"OriginalAmountPaid\": null\n}"}],"_postman_id":"3c8c0f5a-e044-4be2-a975-91143ba84eb3"}],"event":[{"listen":"prerequest","script":{"id":"f044e974-dee3-4161-aa4b-a5e91dd3326a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"219ca18b-8b52-49ff-b35b-63aa23d39888","type":"text/javascript","exec":[""]}}]}