{"info":{"_postman_id":"08340262-ebb7-4a6d-9e90-91e9af942a4d","name":"Forte REST API v3","description":"<html><head></head><body><p>Forte’s REST API enables merchants and partners to perform a variety of powerful tasks such as creating and updating credit card, echeck, and scheduled transactions, securely managing customer and payment data, querying and tracking settlement information, and creating and submitting merchant applications for new Forte organizations and locations. Forte uses standard HTTP protocols within a PCI-compliant architecture that is simple to integrate.</p>\n<hr>\n<h1 id=\"getting-started\">Getting Started</h1>\n<p>To begin using Forte's REST web services, complete the following steps:</p>\n<ol>\n<li><p>Sign up for a Test Account.</p>\n</li>\n<li><p>Create your API Credentials.</p>\n</li>\n<li><p>Create your Authentication Headers.</p>\n</li>\n<li><p>Craft a call.</p>\n</li>\n<li><p>Test your calls.</p>\n</li>\n</ol>\n<h1 id=\"step-1-sign-up-for-a-test-account\">Step 1: Sign Up for a Test Account</h1>\n<p>If you are a merchant, navigate to the <a href=\"https://www.forte.net/test-account-setup\">Forte Developer's Test Account</a> sign-up page and enter your First Name, Last Name, Company Name, and Email address in the applicable fields. Forte uses this email address for verification purposes and as your Username for registering and signing into <a href=\"https://login.forte.net/\">Dex</a>, Forte's newest payment processing portal.</p>\n<p>If you are a partner, contact <a href=\"https://mailto:sales@forte.net\">Forte's Sales Team</a> and request a partner sandbox account. Partner accounts in Dex have different permissions and different menu options.</p>\n<p>After you verify your email address, Forte sends you a Dex invitation email where you can register for a sandbox account. Dex registration requires a mobile phone number that can receive SMS messages for account verification.</p>\n<p>After registering and verifying your mobile number, Dex logs you in with your Organization ID. Your <strong>Organization ID</strong> represents a legal entity that can own multiple sub-organizations (for partners) or multiple locations (for merchants) as well as the customers, payment methods, and transactions that belong to those locations. Every request call made to the Forte REST API must contain the <code>organization_id</code> within the URI.</p>\n<p>Every Dex sandbox account also comes with a Location ID. Your <strong>Location ID</strong> represents locations, which are processing endpoints that merchant organizations use to initiate transactions (in Forte legacy applications like Virtual Terminal, locations were known as MIDs). Locations own all the transaction data including sensitive payment method data and tokens. <strong>Tokens</strong> are random, alpha-numeric strings that represent stored, encrypted data. Tokenization is a common practice in the payment industry to protect sensitive data.</p>\n<blockquote>\n<p>For questions or help with Dex registration or setup, contact <a href=\"https://mailto:Integration@forte.net\">Forte Technical Support</a> at 888-235-4635 option 5. </p>\n</blockquote>\n<hr>\n<h1 id=\"step-2-create-your-api-credentials\">Step 2: Create Your API Credentials</h1>\n<p>To begin integration with Forte's REST API, you first have to create your API authentication credentials. These include an API Access ID, which acts as your username, and an API Secure Key, which acts as a password. You will create and maintain these credentials in Dex.</p>\n<p>Complete the following steps to generate your API Access ID and API Secure Key:</p>\n<ol>\n<li><p>From your Google Chrome browser, log into your <a href=\"https://login.forte.net/\">Dex</a> Account.</p>\n</li>\n<li><p>Select <strong>Developer</strong> &gt; <strong>API Credentials</strong> from the Dex Main Menu.</p>\n</li>\n<li><p>Click the <strong>CREATE</strong> button. The Create API Credentials screen displays.</p>\n</li>\n<li><p>Enter a name for this set of API credentials in the <strong>Name</strong> field.</p>\n</li>\n<li><p>Click the <strong>CREATE NEW API KEY</strong> button. The <strong>API Access ID</strong> and <strong>API Secure Key</strong> values display in their corresponding fields.</p>\n</li>\n<li><p>Click the <strong>COPY</strong> button next to the <strong>API Access ID</strong> and <strong>API Secure Key</strong> fields to record both of these newly generated values in a secure location to use in authenticating your REST API requests.</p>\n</li>\n</ol>\n<blockquote>\n<p>Once you save your <strong>API Secure Key</strong>, you will not be able to see the value again. If you forget your <strong>API Secure Key</strong> or it becomes compromised, you will have to regenerate the value in Dex. </p>\n</blockquote>\n<hr>\n<h1 id=\"step-3-create-your-authentication-headers\">Step 3: Create Your Authentication Headers</h1>\n<p>Requests to Forte's REST API must be authenticated using the <code>Authorization</code> header field and the custom header property, <code>X-Forte-Auth-Organization-Id</code>.</p>\n<h2 id=\"the-authorization-header\">The Authorization Header</h2>\n<p>Forte's REST web services rely on <a href=\"https://en.wikipedia.org/wiki/Basic_access_authentication\">Basic access authentication</a> over HTTPS using the <strong>API Access ID</strong> and an <strong>API Secure Key</strong> as the username and password values. These unique values are combined with a colon and then encoded using the RFC2045-MIME variant of Base64. The encoded string is then added to the HTTP <code>Authorization</code> header. For example, if you created the following API credentials:</p>\n<ul><li><div><b>API Access ID</b> = <code>315c7649520edde96c5cbad59a5b265f</code></div></li><li><div><b>API Secure Key</b> = <code>c233f2958bd855d09d98397e74950640</code></div></li></ul>\n\n<p>The value of the <code>Authorization</code> header field would look like the following:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">Authorization={{vault:basic-auth}}\n\n</code></pre>\n<p>Several different online tools can help you create your `Authorization` header, such as Postman. You can also add Base64 encoding to HMAC requests to automatically convert the API Access ID and API Secure Key values into the encoded ASCII string. To do so, use the following code:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-csharp\">Convert.ToBase64String(Encoding.Default.GetBytes(APIAccessID + \":\" + APISecureKey)).Trim()\n\n</code></pre>\n<h2 id=\"the-x-forte-auth-organization-id-header\">The X-Forte-Auth-Organization-Id Header</h2>\n<p>The custom header property <code>X-Forte-Auth-Organization-Id</code> specifies at which organization Forte should authenticate the request. A partner can authenticate his or her Organization ID in the <code>X-Forte-Auth-Organization-Id</code> header property and then can access merchant sub-organizations by specifying the merchant Organization ID in the URI of the request.</p>\n<h2 id=\"the-accept-header\">The Accept Header</h2>\n<p>Forte’s REST service supports <a href=\"https://en.wikipedia.org/wiki/Content_negotiation\">Content Negotiation</a> through the <code>Accept</code> header sent in the request call.</p>\n<p>The default value for <code>Accept</code> headers is <code>application/json</code> which returns JSON responses. However, you can also use <code>application/xml</code> which returns XML responses.</p>\n<h2 id=\"the-content-type-header\">The Content-Type Header</h2>\n<p>The <code>Content-Type</code> header is only required for POST and PUT calls. Like the <code>Accept</code> header, the <code>Content-Type</code> header supports both <code>application/json</code> and <code>application/xml</code>. The default value for <code>Content-Type</code> headers is <code>application/json</code>.</p>\n<h2 id=\"putting-it-all-together\">Putting it All Together</h2>\n<p>In summary, you must include the following headers for every POST and PUT request call made to the Forte REST API. For GET and DELETE request calls, the <code>Content-Type</code> header is optional:</p>\n<ul><li><div>Content-Type - This header is only required for POST and PUT calls. This field defaults to application/json, but also supports application/xml.<br></div></li><li><div>Accept - Defaults to application/json, but also supports application/xml</div></li><li><div>X-Forte-Auth-Organization-Id - A custom header property that specifies at which organization Forte should authenticate the request (i.e., org_{AuthOrganizationID})</div></li><li><div>Authorization - The API Access ID and API Secure Key encoded using the RFC2045-MIME variant of Base64.</div></li></ul>\n\n<hr>\n<h1 id=\"step-4-craft-a-call\">Step 4: Craft a Call</h1>\n<p>The following sections detail everything you'll need to create a request call. The API Reference section lists and explains all the resources you can use and provides samples of common requests and responses.</p>\n<h2 id=\"base-uri\">Base URI</h2>\n<p>When constructing a call, append the resource endpoint to the following base URIs in the specified environments:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>URI</th>\n<th>Environment</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><a href=\"https://sandbox.forte.net/api/v3\">https://sandbox.forte.net/api/v3</a></td>\n<td>Sandbox</td>\n</tr>\n<tr>\n<td><a href=\"https://api.forte.net/v3\">https://api.forte.net/v3</a></td>\n<td>Live</td>\n</tr>\n</tbody>\n</table>\n</div><p>For example, to find a specific customer in Sandbox, you would append the customer endpoint /organizations/{organization_id}/locations/{location_id}/customers/{customer_token} to the base URI <a href=\"https://sandbox.forte.net/api/v3\">https://sandbox.forte.net/api/v3</a> and perform a GET call. The complete URI, <a href=\"https://sandbox.forte.net/api/v3/organizations/%7Borganization_id%7D/locations/%7Blocation_id%7D/customers/%7Bcustomer_token%7D\">https://sandbox.forte.net/api/v3/organizations/{organization_id}/locations/{location_id}/customers/{customer_token}</a> will return all the customer data attached to that customer's token.</p>\n<h2 id=\"id-formatting\">ID Formatting</h2>\n<p>All resources in Forte’s REST API require object prefixing to identify the specific resource and aid in troubleshooting in the event of errors. The resource ID is created by combining the object prefix with a unique ID number or token. The following table displays the prefixing standards used by Forte:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Object</th>\n<th>Prefix</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>organizations</td>\n<td>org_ + ID</td>\n<td><code>org_200000</code></td>\n</tr>\n<tr>\n<td>locations</td>\n<td>loc_ + ID</td>\n<td><code>loc_100000</code></td>\n</tr>\n<tr>\n<td>customers</td>\n<td>cst_ + Token</td>\n<td><code>cst_SoGUG6mcLUS1nVzYBIbk3g</code></td>\n</tr>\n<tr>\n<td>addresses</td>\n<td>add_ + Token</td>\n<td><code>add_jUYRwbRjKUWgswNrFpSdKg</code></td>\n</tr>\n<tr>\n<td>paymethods</td>\n<td>mth + Token</td>\n<td><code>mth_ymC20TMkHE-YmYxMt0UvMA</code></td>\n</tr>\n<tr>\n<td>transactions</td>\n<td>trn_ + GUID</td>\n<td><code>trn_55c98c85-d3e8-4230-85e9-21d7d522eec0</code></td>\n</tr>\n<tr>\n<td>fundings</td>\n<td>fnd_ + ID</td>\n<td><code>fnd_ACH-0226-173C5</code></td>\n</tr>\n<tr>\n<td>settlements</td>\n<td>stl_ + GUID</td>\n<td><code>stl_51cf4633-1767-484f-8784-be76a4076791</code></td>\n</tr>\n<tr>\n<td>schedules</td>\n<td>sch_ + GUID</td>\n<td><code>sch_2e5770ae-c120-414f-ae8c-d065753567e7</code></td>\n</tr>\n<tr>\n<td>scheduleitems</td>\n<td>sci_ + GUID</td>\n<td><code>sci_4690fbfb-0b77-4477-a066-2c07ca2e5a3c</code></td>\n</tr>\n<tr>\n<td>disputes</td>\n<td>dsp_ + ID</td>\n<td><code>dsp_2365435-e4ae-4ff4-a91e-abd8kjjfjffffc</code></td>\n</tr>\n<tr>\n<td>applications</td>\n<td>app_ + ID</td>\n<td><code>app_258741</code></td>\n</tr>\n<tr>\n<td>documents</td>\n<td>doc_ + ID</td>\n<td><code>doc_3131dddgwef0gpV2eYlo5</code></td>\n</tr>\n<tr>\n<td>vendors</td>\n<td>ven_ + ID</td>\n<td><code>ven_2TXS66UYGN7LE</code></td>\n</tr>\n<tr>\n<td>agreements</td>\n<td>agg_ + ID</td>\n<td><code>agg_BA_51A064394J8847203</code></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"supported-actions\">Supported Actions</h2>\n<p>Use the following HTTP verbs to perform an action on REST API resources:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Action</th>\n<th>HTTP Method</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Create</td>\n<td><code>POST</code></td>\n<td>Creates the resource that corresponds to the data type defined in the endpoint. For example, making a <code>POST</code> call to the <code>transactions</code> URI creates a new transaction.</td>\n</tr>\n<tr>\n<td>Find</td>\n<td><code>GET</code></td>\n<td>Returns summary information for all the resources that match the provided query parameters. For example, performing a <code>GET</code> call to the <code>customers</code> URI returns all the customers associated with that specific merchant location. To return comprehensive/detailed information on a specific resource, provide the resource’s ID to the defined URI. For example, to find a specific customer associated with a merchant location, perform a <code>GET</code> call to the <code>customers</code> endpoint and include the <code>customer_token</code> parameter in the URI</td>\n</tr>\n<tr>\n<td>Update</td>\n<td><code>PUT</code></td>\n<td>Modifies the existing resource for the provided URI. All <code>PUT</code> calls require the resource’s ID.</td>\n</tr>\n<tr>\n<td>Delete</td>\n<td><code>DELETE</code></td>\n<td>Deletes the existing resource for the provided URI. All <code>DELETE</code> calls require the resource’s ID.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"request-filters-for-general-get-requests\">Request Filters for General GET Requests</h2>\n<p>Forte REST web services support the following filtering parameters for <code>GET</code> requests without resource IDs (i.e., general resource searches). Use these search filters for all resources.</p>\n<blockquote>\n<p>Some resources (e.g., <code>transactions</code> and <code>settlements</code>) may have additional filter parameters that you can use to narrow down your search results. </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>orderby</code></td>\n<td>- Sets the order of the results during a search request  <br>- Uses the same fields accepted by the <code>resource_filters</code>  <br>- Can be followed by a space and one of the following values designating the order to use  <br>- <code>asc</code> - ascending (default if not specified)  <br>- <code>desc</code> - descending</td>\n</tr>\n<tr>\n<td><code>filter</code></td>\n<td>-The <code>eq</code> (Equal) operator functions similarly to the SQL- Like comparison for strings and acts as an equal operator for numeric (such as authorization amount) and date fields.  <br>-The AND operator can be used to combine multiple conditions in a search query, allowing for more refined filtering.</td>\n</tr>\n<tr>\n<td><code>page_size</code></td>\n<td>- Sets the number of records returned on a page during a search request  <br>- Accepts values between 50 and 10000  <br>- If no value is defined, this parameter uses the default value of 50</td>\n</tr>\n<tr>\n<td><code>page_index</code></td>\n<td>- Sets the index of the page of results returned during a search request  <br>- Index starts at 0 (zero) and has no upper limit  <br>- The given value must be a positive number  <br>- An index number set to a value higher than the max page value in a search request will return empty search results</td>\n</tr>\n</tbody>\n</table>\n</div><p>When using search filters, the <code>search_criteria</code> object will display in the response and echo back all the resource parameters included in the search in the <code>resource_specific</code> object.</p>\n<h2 id=\"understanding-responses\">Understanding Responses</h2>\n<p>Forte includes the applicable parameters of the <code>response</code> object in all response calls returned to the client that made the request.</p>\n<blockquote>\n<p>Optional request parameters whose values are null do not echo back in responses. The following table displays the response object and the parameters returned for each resource request. </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>response_desc</code></td>\n<td>A short description of the action's response. All resources use this parameter.</td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>environment</code></td>\n<td>The environment in which the user made the request. The value for this field can be either <code>live</code> or <code>sandbox</code>. All resources use this parameter.</td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>authorization_code</code></td>\n<td>The code indicating whether or not the transaction was authorized. This field is not used for voiding transactions.</td>\n<td>string`</td>\n</tr>\n<tr>\n<td><code>response_type</code></td>\n<td>The type of response this action generated:  <br><code>A</code> - Approved  <br><code>D</code> - Declined  <br><code>E</code> - Error  <br><strong>_____</strong>  <br>  <br>The type of responses generated by authenticate action:  <br>  <br><code>O</code>-Overall match  <br>  <br><code>M</code>- FirstName/LastName match  <br>  <br><code>B</code>- Business name match  <br>  <br><code>P</code>- Conditional match  <br>  <br><code>N</code>- No match  <br>  <br><code>U</code>- No Info  <br>  <br><code>E</code>- Timeout or Invalid response/internal error or Bad request</td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>response_code</code></td>\n<td>The <a href=\"https://developers.forte.net/transaction-codes/#elementor-toc__heading-anchor-2\">response</a> code of the action.</td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>preauth_result</code></td>\n<td>Pre-authorization check result from Forte Verify with the following possible values:  <br>NOTE: The test account numbers below may be used on Sandbox (with any valid ABA number) to force the indicated response.  <br>  <br><code>NEG</code> - P15: High Risk — Test Account # 99915  <br>  <br><code>NEG</code> - P14: Negative Info — Test Account # 99941  <br>  <br><code>UNK</code> - P50: No info — Test Account # 99950  <br>  <br><code>POS</code> - P70: Validated — Test Account # 99970  <br>  <br><code>POS</code> - P71: Low Risk Approval — Test Account # 99971  <br>  <br><code>POS</code> - P73: Medium Risk Approval — Test Account # 99973  <br>  <br><code>UNK</code> - P80: Preauth Vendor Busy — Test Account # 99980  <br>  <br><code>UNK</code> - P90: Preauth Vendor Unavail — Test Account # 99990  <br>  <br><code>UNK</code> - P91: Preauth Vendor Error — Test Account # 99991  <br>  <br><code>UNK</code> - P92: Preauth Server Unavail — Test Account # 99992  <br><strong>_____</strong>  <br>  <br>Pre-authorization check result from Authenticate with the following possible values:  <br>  <br>NOTE: The test account numbers below may be used on Sandbox (with any valid ABA number) to force the indicated response.  <br>  <br><code>POS-P60:</code> Match - Test Account #99801  <br>  <br><code>CON-P75:</code> Conditional Match - Test Account #99809  <br>  <br><code>NEG-P10:</code> No Match - Test Account #99806  <br>  <br><code>NEG-P94:</code> Invalid Routing Number - Test Account #99824  <br>  <br><code>NEG-P94:</code> Invalid Account Number - Test Account #99828  <br>  <br><code>NEG-P95:</code> Bad Account - Test Account #99826  <br>  <br><code>UNK-P50:</code> No Info - Test Account #99820  <br>  <br><code>UNK-P90:</code> Preauth Vendor Unavail - Test Account #99821  <br>  <br><code>UNK-P91:</code> Preauth Vendor Error - Test Account #99822  <br>  <br><code>ERROR-P94:</code> Error - Test Account #99827</td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>preauth_desc</code></td>\n<td>Pre-authorization check description from Forte Verify with the following possible values:  <br><code>POS</code> - Positive  <br><code>NEG</code> - Negative  <br><code>UNK</code> - No information available  <br><strong>__</strong>  <br>Pre-authorization check description from Authenticate with the following possible values:  <br><code>P60:</code> Match  <br><code>P75:</code> Conditional Match  <br><code>P10:</code> No Match</td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>ownership_match</code></td>\n<td>Provides ownership results based on the name fields being inquired upon, in a pipe delimited format. Possible values are Y, N, C or blank (Y-Match, N-Not Match, C-Conditional Match, Blank-No Info)  <br>  <br>The name fields in the result are:  <br>FirstNameMatch <strong>I</strong> LastNameMatch <strong>I</strong> NameMatch <strong>I</strong> BusinessNameMatch  <br>  <br>E.g., If First name match is Y, Last name match is N, no response in name match and Business name match is C, then the parameter will return the response as: <strong>ownership_match = Y</strong> I <strong>N</strong> I I<strong>C</strong></td>\n<td></td>\n</tr>\n<tr>\n<td><code>preauth_neg_report</code></td>\n<td>Negative database response information (unformatted) when <code>pg_preauth_result=NEG</code>.</td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>avs_result</code></td>\n<td>Forte only returns this field if the merchant passes any combination of billing address parameters from the <code>physical_address object</code> in the request. To test this service in <code>Sandbox</code>, see the testing parameters in the <a href=\"https://developers.forte.net/verifying-credit-cards/\">Verifying Credit Cards</a> tutorial and <a href=\"https://developers.forte.net/transaction-codes/#elementor-toc__heading-anchor-2\">Response Codes</a> section. Supported values for this field include the following:  <br>  <br>  <br>  <br>  <br>- <code>X</code> - Match: Street address and 9-digit zip code both match  <br>- <code>Y</code> = Match: Street address and 5-digit zip code both match  <br>- <code>A</code> = Partial Match: Street address matches, but both 5-digit and 9-digit zip code do not match  <br>- <code>W</code> = Partial Match: Street address does not match, but 9-digit zip code matches  <br>- <code>Z</code> = Partial Match: Street address does not match, but 5-digit zip code matches  <br>- <code>N</code> = No Match: Street address, 5-digit zip code, and 9-digit zip code all do not match  <br>- <code>U</code> = System unavailable: Address information unavailable. Forte returns this response if the street address is a non-US address, if the AVS service is unavailable, or if the AVS service for a particular US bank is not functioning properly  <br>- <code>R</code> = System unavailable: Forte will retry the AVS check because the issuer's system is unavailable or the request times out  <br>- <code>E</code> = Invalid: AVS data is invalid  <br>- <code>S</code> = Not supported: The US issuing bank does not support AVS checks</td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>cvv_result</code></td>\n<td>The card verification value response. Supported values for this field include the following:  <br>  <br>  <br>  <br>  <br>- <code>M</code> = Match  <br>- <code>N</code> = No Match  <br>- <code>E</code> = Error (Unrecognized or Unknown Response)  <br>- <code>I</code> = Invalid or Null  <br>- <code>P</code> = Not Processed  <br>- <code>S</code> = Service Not Supported  <br>- <code>U</code> = Issuer Unable to Process  <br>- <code>X</code> = No Response  <br>- <code>\" \"</code>= A space will be sent as this response, only for Token transactions, where CVV must not be present in the request.</td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>available_card_balance</code></td>\n<td>The available balance on the credit card if a credit card is used for the transaction.</td>\n<td>string</td>\n</tr>\n<tr>\n<td><code>requested_amount</code></td>\n<td>The transaction amount</td>\n<td>string</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"hypermedia\">Hypermedia</h3>\n<p>Forte’s REST API returns the following format for hypermedia responses. Result availability depends on the resource/action in the request.</p>\n<blockquote>\n<p>The following sample of hypermedia responses are merely formatting examples provided for reference. </p>\n</blockquote>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"links\": {\n     \"self\":\"/customers?page_index=1\",\n     \"prev\":\"/customers?page_index=0\",\n     \"next\":\"/customers?page_index=2\",\n     \"paymethod\":\"/customers/cst_SoGUG6mcLUS1nVzYBIbk3g/paymethods\",\n     \"transactions\":\"/customers/cst_SoGUG6mcLUS1nVzYBIbk3g/transactions\",\n     \"addresses\":\"/customers/cst_SoGUG6mcLUS1nVzYBIbk3g/addresses\",\n   }\n}\n\n</code></pre>\n<h3 id=\"status-codes\">Status Codes</h3>\n<p>Forte's web services use standard HTTP status codes along with messages where appropriate. The table below displays the most common codes:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Text</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>200</code></td>\n<td>OK</td>\n<td>This code indicates a successful HTTP request; the actual response depends on the request method. For example, responses for <code>GET</code> requests contain entities corresponding to the requested resource while responses for <code>POST</code> requests contain entities describing the result of the action.</td>\n</tr>\n<tr>\n<td><code>201</code></td>\n<td>Created</td>\n<td>This code indicates that the server has fulfilled the request and has created a new resource.</td>\n</tr>\n<tr>\n<td><code>400</code></td>\n<td>Bad Request, Failed Transaction, or Declined</td>\n<td>This code indicates that the server cannot fulfill the request because of bad syntax (e.g., a create echeck request with a missing routing number) or the transaction failed (responses for failed transactions also contain the failed transaction information).</td>\n</tr>\n<tr>\n<td><code>401</code></td>\n<td>Unauthorized</td>\n<td>This code occurs when the user sends a bad username, password, and X-Forte-Auth-Organization-Id combination with the request.</td>\n</tr>\n<tr>\n<td><code>403</code></td>\n<td>Forbidden</td>\n<td>This code indicates that the server understands the request but refuses to authorize it. Unlike a 401 unauthorized response, authenticating will make no difference.</td>\n</tr>\n<tr>\n<td><code>404</code></td>\n<td>Not Found</td>\n<td>This code occurs when the user attempts an ID <code>GET</code> request, but the ID he/she provides does not exist in the database.</td>\n</tr>\n<tr>\n<td><code>500</code></td>\n<td>Internal Error</td>\n<td>This generic error code indicates that the server has encountered an unexpected condition and cannot provide a more specific or suitable error message.</td>\n</tr>\n</tbody>\n</table>\n</div><p>For status codes in the 400s, ensure that you correctly formatted the JSON (or XML) in the original request, especially when the system returns a descriptive error message along with the status code such as the following example messages:</p>\n<p><em>Example 1</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    message: \"Authentication Organization ID in header is missing or invalid.\"\n}\n\n</code></pre><p><em>Example 2</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    message: \"Payment Method's routing number length is invalid.\"\n}\n\n</code></pre><h3 id=\"understanding-webhooks\">Understanding Webhooks</h3>\n<p>Webhooks provide near-real-time notifications about the events that occur during a transaction,customer,paymethod,schedule and merchant application process through <code>POST</code>s to a customer-defined endpoint. Forte notifies merchants about events through subscriptions. Depending on these subscriptions, multiple events can occur during an operation. For example, a <code>POST</code> transaction request that creates tokens for a customer and a paymethod causes three events to be fired: <code>transaction.sale</code>, <code>customer.create</code>, and <code>paymethod.create</code>. These three events can be combined under a common event ID (e.g., <code>evt_xxxxxx</code>) for easier information management.</p>\n<blockquote>\n<p>Depending on how you configure your event subscriptions, the same data may be generated twice in separate webhooks. For example, a <code>POST</code> to the <code>customer</code> object that includes the creation of a paymethod could (if subscribed) generate a customer webhook with both customer and paymethod data as well as a paymethod webhook. </p>\n</blockquote>\n<p>Merchants can subscribe to the following webhook events:</p>\n<p>* transaction.authorize<br>* transaction.capture<br>* transaction.credit<br>* transaction.inquiry<br>* transaction.sale<br>* transaction.verify<br>* transaction.authenticate<br>* transaction.void<br>* customer.create<br>* customer.update<br>* customer.delete<br>* paymethod.create<br>* paymethod.update<br>* paymethod.delete<br>* schedule.create<br>* schedule.update<br>* schedule.delete</p>\n<p>Merchant application webhooks provide the status of an application as the application status</p>\n<p>events trigger during the application process.</p>\n<p>Partners can subscribe to the following merchant application webhook events:</p>\n<p>* merchantapplication.approved<br>* merchantapplication.declined<br>*merchantapplication.enrolled<br>* merchantapplication.pending<br>* merchantapplication.recalled<br>* merchantapplication.received<br>* merchantapplication.rejected</p>\n<p>If a webhook post fails (i.e., does not result in an HTTP <code>200</code> response), Forte retries the webhook post up to twenty times adding one minute for each retry.</p>\n<p>For more information on Webhooks, see <a href=\"https://developers.forte.net/using-webhooks/\">Using Webhooks</a>.</p>\n<hr>\n<h1 id=\"step-5-test-your-calls\">Step 5: Test Your Calls</h1>\n<p>To help you gain a greater understanding of how Forte's REST API works, we've built a <a href=\"https://www.getpostman.com/docs\">Postman</a> collection of sample REST requests that you can use to test each resource. <strong>NOTE</strong>: While we've included sample body parameters in this collection of request calls, you'll still need to add the URLs and Authentication Headers described in Step 3 above.</p>\n<p>Postman maintains a thorough documentation repository. Use it to <a href=\"https://www.youtube.com/watch?v=wArvaHYdw2I&amp;list=PLM-7VG-sgbtCJYpjQfmLCcJZ6Yd74oytQ&amp;autoplay=1\">set up your own environment</a> and <a href=\"https://www.youtube.com/watch?v=TU1i1CgjVR8&amp;list=PLM-7VG-sgbtCJYpjQfmLCcJZ6Yd74oytQ&amp;index=2\">create your own global variables</a> to perform tests with your unique <strong>Organization ID</strong>, <strong>Location ID</strong>, <strong>API Access ID</strong>, and <strong>API Secure Key</strong>.</p>\n<hr>\n<h1 id=\"tokens\">Tokens</h1>\n<p>A token is a unique string ID that references stored customer information, including payment, customer, and address data. Tokens provide customers convenient, secure access to their information, making the checkout process faster and easier. For merchants, tokens provide a convenient method of collecting scheduled recurring payments. For more information on tokens, see the <a href=\"https://developers.forte.net/tokens/\">Understanding Tokens</a> tutorial on DevDocs.</p>\n<hr>\n<h1 id=\"response-codes\">Response Codes</h1>\n<p>For more information on response codes, see the <a href=\"https://developers.forte.net/transaction-codes/\">Transaction Codes</a> page on DevDocs.</p>\n<hr>\n<h1 id=\"rate-limits\">Rate Limits</h1>\n<p>Forte throttles API requests to 10 per second. Once the request limit is met, Forte drops the connection and displays the following error: <code>403 - Forbidden: Access is denied</code>. For general synchronization of your transaction data, query the <a href=\"https://restdocs.forte.net/?version=latest#8dcc3490-bc9c-4794-ba52-38bf25b924be\">settlements</a> and <a href=\"https://restdocs.forte.net/?version=latest#d1907bd8-046a-452d-812e-54a4e15f78b7\">fundings</a> endpoints using strategic date and timestamp filters in the request. Do not query individual transactions; this will bog down your connection and limit your payment processing ability. We recommend using single transaction queries on a limited basis for user-initiated, real-time status updates.</p>\n<hr>\n<h1 id=\"versions\">Versions</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Versions</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Version 3  <br><strong>NOTE:</strong> This is the only <a href=\"https://restdocs.forte.net/\">supported version</a>.</td>\n<td>1. Authentication using the API Access ID and API Secure Key that the developer creates in Dex. 2. Endpoints now using Organization IDs and Location ID.</td>\n</tr>\n<tr>\n<td>Version 2  <br><strong>NOTE:</strong> Only version 3 is supported at this time.  <br>View version 2 <a href=\"https://www.forte.net/devdocs/api_resources/forte_api_v2.htm\">here</a>.</td>\n<td>1. Authentication using an API Access ID and an API Secure Key provided by Forte Integration Team. 2. Endpoints using Account IDs and Location IDs. 3. Available for both Sandbox and Live.</td>\n</tr>\n<tr>\n<td>Version 1  <br><strong>NOTE:</strong> Only <a href=\"https://restdocs.forte.net/\">version 3 </a> is supported at this time.</td>\n<td>1. Included only the following objects: Accounts, Locations, Customers, Addresses, Paymethods. 2. Authentication done using an API Login ID and a Secure Transaction Key provided by Forte Integration Team. 3.Only available in Sandbox.</td>\n</tr>\n</tbody>\n</table>\n</div><hr>\n<h1 id=\"devices\">Devices</h1>\n<p>CSG Forte offers multiple devices for a card present solution. The devices and supported processors are listed <a href=\"https://developers.forte.net/devices/\">here</a>.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Getting Started","slug":"getting-started"},{"content":"Step 1: Sign Up for a Test Account","slug":"step-1-sign-up-for-a-test-account"},{"content":"Step 2: Create Your API Credentials","slug":"step-2-create-your-api-credentials"},{"content":"Step 3: Create Your Authentication Headers","slug":"step-3-create-your-authentication-headers"},{"content":"Step 4: Craft a Call","slug":"step-4-craft-a-call"},{"content":"Step 5: Test Your Calls","slug":"step-5-test-your-calls"},{"content":"Tokens","slug":"tokens"},{"content":"Response Codes","slug":"response-codes"},{"content":"Rate Limits","slug":"rate-limits"},{"content":"Versions","slug":"versions"},{"content":"Devices","slug":"devices"}],"owner":"43571097","collectionId":"08340262-ebb7-4a6d-9e90-91e9af942a4d","publishedId":"2sB2cVeh9T","public":true,"customColor":{"top-bar":"5C3883","right-sidebar":"303030","highlight":"976CAE"},"publishDate":"2025-04-10T20:07:53.000Z"},"item":[{"name":"Addresses","item":[{"name":"Customer Address (Simple)","id":"116da481-0794-44d0-9f64-14b54d91d317","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"physical_address\": {\r\n          \"street_line1\": \"8003 Clock Tower Ln\",\r\n          \"street_line2\": \"Suite 200\",\r\n          \"locality\": \"Hill Valley\",\r\n          \"region\": \"CA\",\r\n          \"country\": \"US\",\r\n          \"postal_code\": \"95420\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/addresses","description":"<p>This URI creates a new address record for the customer and returns a new <code>address_token</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}","addresses"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"7987f060-d643-4257-8bbd-6fd646e2c512","name":"Create a Customer Address (Simple)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"physical_address\": {\r\n          \"street_line1\": \"8003 Clock Tower Ln\",\r\n          \"street_line2\": \"Suite 200\",\r\n          \"locality\": \"Hill Valley\",\r\n          \"region\": \"CA\",\r\n          \"postal_code\": \"95420\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/addresses"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 18:56:12 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"1-3593717-3660544 NNNN CT(48 39 0) RT(1508870937210 435264) q(0 0 1 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"address_token\": \"add_kVu82mnKcUumx0qoWsBZzw\",\n    \"location_id\": \"loc_192642\",\n    \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n    \"physical_address\": {\n        \"street_line1\": \"8003 Clock Tower Ln\",\n        \"street_line2\": \"Suite 200\",\n        \"locality\": \"Hill Valley\",\n        \"region\": \"CA\",\n        \"country\": \"US\",\n        \"postal_code\": \"95420\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/addresses/add_kVu82mnKcUumx0qoWsBZzw\"\n    }\n}"}],"_postman_id":"116da481-0794-44d0-9f64-14b54d91d317"},{"name":"Customer Address (Alternate URL)","id":"e131f956-21c2-461f-a9d1-467ed3c0c970","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"location_id\": \"loc_192642\"\r\n       \"physical_address\": {\r\n          \"street_line1\": \"8003 Clock Tower Ln\",\r\n          \"street_line2\": \"Suite 200\",\r\n          \"locality\": \"Hill Valley\",\r\n          \"region\": \"CA\",\r\n          \"country\": \"US\",\r\n          \"postal_code\": \"95420\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/customers/cst_{{customertoken}}/addresses","description":"<p>This URI creates a new address for the customer and returns a new <code>address_token</code>; however, you must include the <code>location_id</code> in the body of the request since this value is not included in the specified route. The Location ID identifies the <a href=\"https://restdocs.forte.net/#step-1-sign-up-for-a-test-account\">location</a> from where you are processing transactions.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","customers","cst_{{customertoken}}","addresses"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"d60bc247-8886-4279-8bc7-97d2d3fc13d3","name":"Create a Customer Address (Alternate URI)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"location_id\": \"loc_192642\",\r\n       \"physical_address\": {\r\n          \"street_line1\": \"8003 Clock Tower Ln\",\r\n          \"street_line2\": \"Suite 200\",\r\n          \"locality\": \"Hill Valley\",\r\n          \"region\": \"CA\",\r\n          \"postal_code\": \"95420\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/customers/cst_{{customertoken}}/addresses"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 18:49:07 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"1-3593717-3593727 SNNN RT(1508870937210 10320) q(0 0 0 -1) r(1 1) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"address_token\": \"add_rFNRVpagIEaUKPOD5-bqnQ\",\n    \"location_id\": \"loc_192642\",\n    \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n    \"physical_address\": {\n        \"street_line1\": \"8003 Clock Tower Ln\",\n        \"street_line2\": \"Suite 200\",\n        \"locality\": \"Hill Valley\",\n        \"region\": \"CA\",\n        \"country\": \"US\",\n        \"postal_code\": \"95420\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/addresses/add_rFNRVpagIEaUKPOD5-bqnQ\"\n    }\n}"}],"_postman_id":"e131f956-21c2-461f-a9d1-467ed3c0c970"},{"name":"Customer Address","id":"a9c20bdb-fd2a-4c60-adc3-85b11fbe8334","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"label\": \"Shipping\",\r\n       \"first_name\": \"Marty\",\r\n       \"last_name\": \"McFly\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"phone\": \"444-444-4444\",\r\n       \"email\": \"m.mcfly@brown.net\",\r\n       \"physical_address\":{\r\n          \"street_line1\": \"8003 Clock Tower Ln\",\r\n          \"street_line2\": \"Suite 200\",\r\n          \"locality\": \"Hill Valley\",\r\n          \"region\": \"CA\",\r\n          \"country\": \"US\",\r\n          \"postal_code\": \"95420\"\r\n       }\r\n} ","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/addresses","description":"<p>This URI creates a new address for the customer and returns a new <code>address_token</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}","addresses"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"3a1351cc-a4d6-4c8b-940b-2e18dbca4c50","name":"Create a Customer Address","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"label\": \"Shipping\",\r\n       \"first_name\": \"Marty\",\r\n       \"last_name\": \"McFly\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"phone\": \"444-444-4444\",\r\n       \"email\": \"m.mcfly@brown.net\",\r\n       \"physical_address\":{\r\n          \"street_line1\": \"8003 Clock Tower Ln\",\r\n          \"street_line2\": \"Suite 200\",\r\n          \"locality\": \"Hill Valley\",\r\n          \"postal_code\": \"95420\"\r\n       }\r\n} ","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/addresses"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 18:51:58 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"1-3593717-3621569 NNNN CT(38 36 0) RT(1508870937210 180887) q(0 0 1 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"address_token\": \"add_pb_F96SUt0Cv_K7NObXhGg\",\n    \"location_id\": \"loc_192642\",\n    \"customer_token\": \"cst_-mFhHBHVdkqwmQ4V27x-Xg\",\n    \"first_name\": \"Marty\",\n    \"last_name\": \"McFly\",\n    \"company_name\": \"Brown Associates\",\n    \"phone\": \"444-444-4444\",\n    \"email\": \"m.mcfly@brown.net\",\n    \"label\": \"Shipping\",\n    \"physical_address\": {\n        \"street_line1\": \"8003 Clock Tower Ln\",\n        \"street_line2\": \"Suite 200\",\n        \"locality\": \"Hill Valley\",\n        \"region\": \"CA\",\n        \"country\": \"US\",\n        \"postal_code\": \"95420\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/addresses/add_pb_F96SUt0Cv_K7NObXhGg\"\n    }\n}"}],"_postman_id":"a9c20bdb-fd2a-4c60-adc3-85b11fbe8334"},{"name":"Address by ID","id":"f4172895-5ce4-4804-9e74-6aa44a532285","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/addresses/add_{{addresstoken}}","description":"<p>This URI returns detailed address data using the <code>address_token</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","addresses","add_{{addresstoken}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"b031d7c6-e45f-4c09-a167-03677be81986","name":"Address by ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{location}}/addresses/add_{{addresstoken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"656","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 17:29:00 GMT","name":"Date","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","name":"Expires","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","name":"Pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","name":"Server","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"address_token\": \"add_KDbwcbrv-Uu6eSSn1rBl6A\",\r\n  \"organization_id\": \"org_334316\",\r\n  \"location_id\": \"loc_192642\",\r\n  \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n  \"first_name\": \"Jennifer\",\r\n  \"last_name\": \"Parker-McFly\",\r\n  \"company_name\": \"Brown Associates\",\r\n  \"phone\": \"444-444-4444\",\r\n  \"email\": \"j.mcfly@brown.net\",\r\n  \"label\": \"Shipping\",\r\n  \"address_type\": \"none\",\r\n  \"shipping_address_type\": \"commercial\",\r\n  \"physical_address\": {\r\n    \"street_line1\": \"58003 Clock Tower Ln\",\r\n    \"street_line2\": \"Suite 101\",\r\n    \"locality\": \"Hill Valley\",\r\n    \"region\": \"CA\",\r\n    \"country\": \"US\",\r\n    \"postal_code\": \"95420\"\r\n  },\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_desc\": \"Get Successful.\"\r\n  },\r\n  \"links\": {\r\n    \"self\": \"https://api.forte.net/v3/addresses/add_KDbwcbrv-Uu6eSSn1rBl6A\"\r\n  }\r\n}"}],"_postman_id":"f4172895-5ce4-4804-9e74-6aa44a532285"},{"name":"Customer's Address(es)","id":"c99d6f84-b7e9-4d82-be9f-42f663cfe2bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/addresses/","description":"<p>This URI returns all address(es) associated with a customer based on the customer_token.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}","addresses",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"acc38af4-ae18-4d3a-a4f5-752f79dbe3fa","name":"Customer's Address(es)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/addresses/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"1534","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 17:24:19 GMT","name":"Date","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","name":"Expires","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","name":"Pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","name":"Server","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"number_results\": 2,\r\n  \"search_criteria\": {\r\n    \"page_size\": 50,\r\n    \"page_index\": 0,\r\n    \"home_organization_id\": \"org_334316\",\r\n    \"resource_specific\": {\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\"\r\n    }\r\n  },\r\n  \"results\": [\r\n    {\r\n      \"address_token\": \"add_Qk4ZwL2QrUKf72LxHa2ZOQ\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"first_name\": \"Marty\",\r\n      \"last_name\": \"McFly\",\r\n      \"company_name\": \"Brown and Associates\",\r\n      \"address_type\": \"\",\r\n      \"shipping_address_type\": \"residential\",\r\n      \"physical_address\": {\r\n        \"street_line1\": \"8003 Clock Tower Ln\",\r\n        \"street_line2\": \"Suite 200\",\r\n        \"locality\": \"Hill Valley\",\r\n        \"region\": \"CA\",\r\n        \"country\": \"US\",\r\n        \"postal_code\": \"95420\"\r\n      },\r\n      \"links\": {\r\n        \"self\": \"https://api.forte.net/v3/addresses/add_Qk4ZwL2QrUKf72LxHa2ZOQ\"\r\n      }\r\n    },\r\n    {\r\n      \"address_token\": \"add_0KGuO6nwZUeD8HepNxlJEg\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"first_name\": \"Marty\",\r\n      \"last_name\": \"McFly\",\r\n      \"company_name\": \"Brown Associates\",\r\n      \"phone\": \"444-444-4444\",\r\n      \"email\": \"m.mcfly@brown.net\",\r\n      \"label\": \"Shipping\",\r\n      \"address_type\": \"none\",\r\n      \"shipping_address_type\": \"commercial\",\r\n      \"physical_address\": {\r\n        \"street_line1\": \"8003 Clock Tower Ln\",\r\n        \"street_line2\": \"Suite 200\",\r\n        \"locality\": \"Hill Valley\",\r\n        \"region\": \"CA\",\r\n        \"country\": \"US\",\r\n        \"postal_code\": \"95420\"\r\n      },\r\n      \"links\": {\r\n        \"self\": \"https://api.forte.net/v3/addresses/add_0KGuO6nwZUeD8HepNxlJEg\"\r\n      }\r\n    }\r\n  ],\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_desc\": \"Get Successful.\"\r\n  },\r\n  \"links\": {\r\n    \"self\": \"https://api.forte.net/v3/addresses/\",\r\n    \"next\": \"https://api.forte.net/v3/addresses/?page_index=1\"\r\n  }\r\n}"}],"_postman_id":"c99d6f84-b7e9-4d82-be9f-42f663cfe2bf"},{"name":"All Addresses for a Location","id":"83ddf0b3-08f7-4406-9bb6-1c07649311a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/addresses/","description":"<p>This URI returns all addresses owned by a <a href=\"https://restdocs.forte.net/#step-1-sign-up-for-a-test-account\">location</a>. Remember, a location is a processing endpoints that merchant organizations use to initiate transactions. To narrow your search data, use the <code>customer_token</code> parameter to filter your results.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","addresses",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"6eb4ee6b-0b66-4fbe-8055-a859c404cd38","name":"All Addresses for a Location","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{location}}/addresses/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"25296","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 17:13:46 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 7,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_300005\",\n        \"resource_specific\": {\n            \"location_id\": \"loc_115161\"\n        }\n    },\n    \"results\": [\n        {\n            \"address_token\": \"add_28067617\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"customer_token\": \"cst_26557171\",\n            \"first_name\": \"Marty\",\n            \"last_name\": \"McFly\",\n            \"label\": \"Default - Shipping\",\n            \"address_type\": \"default_shipping\",\n            \"shipping_address_type\": \"residential\",\n            \"physical_address\": {\n                \"street_line1\": \"123 Fake Street\",\n                \"street_line2\": \"Suite 500\",\n                \"locality\": \"Plano\",\n                \"region\": \"TX\",\n                \"country\": \"US\",\n                \"postal_code\": \"75555\"\n            },\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/addresses/add_28067617\"\n            }\n        },\n        {\n            \"address_token\": \"add_28067618\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"customer_token\": \"cst_26557172\",\n            \"first_name\": \"Jennifer\",\n            \"last_name\": \"McFly\",\n            \"phone\": \"444-444-4444\",\n            \"email\": \"j.mcfly@brownenterprises\",\n            \"label\": \"Default - Billing\",\n            \"address_type\": \"default_billing\",\n            \"shipping_address_type\": \"residential\",\n            \"physical_address\": {\n                \"street_line1\": \"500 W Bethany DR\",\n                \"street_line2\": \"Suite 200\",\n                \"locality\": \"Allen\",\n                \"region\": \"TX\",\n                \"country\": \"US\",\n                \"postal_code\": \"75033\"\n            },\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/addresses/add_28067618\"\n            }\n        },\n        {\n            \"address_token\": \"add_28067619\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"customer_token\": \"cst_26557172\",\n            \"first_name\": \"Emmett\",\n            \"last_name\": \"Brown\",\n            \"label\": \"Default - Shipping\",\n            \"address_type\": \"default_shipping\",\n            \"shipping_address_type\": \"residential\",\n            \"physical_address\": {\n                \"street_line1\": \"550 E Bethany Dr\",\n                \"street_line2\": \"Suite 500\",\n                \"locality\": \"Plano\",\n                \"region\": \"TX\",\n                \"country\": \"US\",\n                \"postal_code\": \"75555\"\n            },\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/addresses/add_28067619\"\n            }\n        },\n        {\n            \"address_token\": \"add_28067620\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"customer_token\": \"cst_26557173\",\n            \"first_name\": \"Griff\",\n            \"last_name\": \"Tannen\",\n            \"phone\": \"444-444-4444\",\n            \"email\": \"TestUd@achdirect.com\",\n            \"label\": \"Default - Billing\",\n            \"address_type\": \"default_billing\",\n            \"shipping_address_type\": \"residential\",\n            \"physical_address\": {\n                \"street_line1\": \"500 W Bethany DR\",\n                \"street_line2\": \"Suite 200\",\n                \"locality\": \"Allen\",\n                \"region\": \"TX\",\n                \"country\": \"US\",\n                \"postal_code\": \"75033\"\n            },\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/addresses/add_28067620\"\n            }\n        },\n        {\n            \"address_token\": \"add_28067621\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"customer_token\": \"cst_26557173\",\n            \"first_name\": \"Biff\",\n            \"last_name\": \"Tannen\",\n            \"label\": \"Default - Shipping\",\n            \"address_type\": \"default_shipping\",\n            \"shipping_address_type\": \"residential\",\n            \"physical_address\": {\n                \"street_line1\": \"123 Fake Street\",\n                \"street_line2\": \"Suite 500\",\n                \"locality\": \"Allen\",\n                \"region\": \"TX\",\n                \"country\": \"US\",\n                \"postal_code\": \"75555\"\n            },\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/addresses/add_28067621\"\n            }\n        },\n        {\n            \"address_token\": \"add_28067622\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"customer_token\": \"cst_26557174\",\n            \"first_name\": \"Martin\",\n            \"last_name\": \"McFly\",\n            \"phone\": \"444-444-4444\",\n            \"email\": \"TestUd@achdirect.com\",\n            \"label\": \"Default - Billing\",\n            \"address_type\": \"default_billing\",\n            \"shipping_address_type\": \"residential\",\n            \"physical_address\": {\n                \"street_line1\": \"500 W Bethany DR\",\n                \"street_line2\": \"Suite 200\",\n                \"locality\": \"Allen\",\n                \"region\": \"TX\",\n                \"country\": \"US\",\n                \"postal_code\": \"75033\"\n            },\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/addresses/add_28067622\"\n            }\n        },\n        {\n            \"address_token\": \"add_28067623\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"customer_token\": \"cst_26557174\",\n            \"first_name\": \"Shipping\",\n            \"last_name\": \"NameUd\",\n            \"label\": \"Default - Shipping\",\n            \"address_type\": \"default_shipping\",\n            \"shipping_address_type\": \"residential\",\n            \"physical_address\": {\n                \"street_line1\": \"550 E Bethany DrUd\",\n                \"street_line2\": \"Suite 500Ud\",\n                \"locality\": \"PlanoUd\",\n                \"region\": \"TX\",\n                \"country\": \"US\",\n                \"postal_code\": \"75555\"\n            },\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/addresses/add_28067623\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/addresses/\",\n        \"next\": \"https://api.forte.net/v3/addresses/?page_index=1\"\n    }\n}"}],"_postman_id":"83ddf0b3-08f7-4406-9bb6-1c07649311a9"},{"name":"All Addresses for an Organization","id":"5c37afda-a223-47aa-a961-d6c1480add61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/addresses/","description":"<p>This URI returns all address(es) owned by an Organization. To narrow your search data using specific criteria, use the following parameters to filter your results:</p>\n<ul><li><p>location_id</p></li><li><p>customer_token</p></li></ul>\n\n<p><strong>Note:</strong> Please note that sending a request at the partner (org) level may result in a large data set and may cause timeout errors depending on the request. We recommend sending your GET request at the Merchant (Organization) level.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","addresses",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"e882577a-c3d3-409a-94a6-61e7656030f1","name":"All Addresses for an Organization","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organization}}/addresses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"26049","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 17:32:32 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"number_results\": 5,\r\n  \"search_criteria\": {\r\n    \"page_size\": 50,\r\n    \"page_index\": 0,\r\n    \"home_organization_id\": \"org_334316\",\r\n    \"resource_specific\": {}\r\n  },\r\n  \"results\": [\r\n    {\r\n      \"address_token\": \"add_cagThS8ehE61jwEpVSJJ1w\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_E5v1yG3AdkiVIe6TWKuxgQ\",\r\n      \"first_name\": \"test\",\r\n      \"last_name\": \"test\",\r\n      \"label\": \"Default - Billing\",\r\n      \"address_type\": \"default_billing\",\r\n      \"shipping_address_type\": \"residential\",\r\n      \"links\": {\r\n        \"self\": \"https://api.forte.net/v3/addresses/add_cagThS8ehE61jwEpVSJJ1w\"\r\n      }\r\n    },\r\n    {\r\n      \"address_token\": \"add_ipLhxWZzkU2p4dfDG_I0RA\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_ySC0CBRmWU64c_5fceYosg\",\r\n      \"first_name\": \"test\",\r\n      \"last_name\": \"test\",\r\n      \"label\": \"Default - Billing\",\r\n      \"address_type\": \"default_billing\",\r\n      \"shipping_address_type\": \"residential\",\r\n      \"links\": {\r\n        \"self\": \"https://api.forte.net/v3/addresses/add_ipLhxWZzkU2p4dfDG_I0RA\"\r\n      }\r\n    },\r\n    {\r\n      \"address_token\": \"add_g7gnKpd9aEGuN3s6qB8Tgg\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_NmI9Wlc3aUa9yYoLsBtbTw\",\r\n      \"first_name\": \"Emmett\",\r\n      \"last_name\": \"Brown\",\r\n      \"company_name\": \"Brown Associates\",\r\n      \"phone\": \"444-444-4444\",\r\n      \"email\": \"e.brown@brown.net\",\r\n      \"label\": \"Brown Shipping\",\r\n      \"address_type\": \"default_shipping\",\r\n      \"shipping_address_type\": \"residential\",\r\n      \"physical_address\": {\r\n        \"street_line1\": \"123 Hill Valley Rd.\",\r\n        \"street_line2\": \"APT 1001\",\r\n        \"locality\": \"Hill Valley\",\r\n        \"region\": \"CA\",\r\n        \"country\": \"US\",\r\n        \"postal_code\": \"95420\"\r\n      },\r\n      \"links\": {\r\n        \"self\": \"https://api.forte.net/v3/addresses/add_g7gnKpd9aEGuN3s6qB8Tgg\"\r\n      }\r\n    },\r\n    {\r\n      \"address_token\": \"add_0YP3dXBvEUupRmN8oBqzIg\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_N5I5RGuPu0u6IjZLw0Re5Q\",\r\n      \"first_name\": \"Jennifer\",\r\n      \"last_name\": \"McFly\",\r\n      \"company_name\": \"McFly's McCreations\",\r\n      \"phone\": \"444-444-4444\",\r\n      \"email\": \"e.brown@brown.net\",\r\n      \"label\": \"Brown Shipping\",\r\n      \"address_type\": \"default_shipping\",\r\n      \"shipping_address_type\": \"residential\",\r\n      \"physical_address\": {\r\n        \"street_line1\": \"123 Hill Valley Rd.\",\r\n        \"street_line2\": \"APT 1001\",\r\n        \"locality\": \"Hill Valley\",\r\n        \"region\": \"CA\",\r\n        \"country\": \"US\",\r\n        \"postal_code\": \"95420\"\r\n      },\r\n      \"links\": {\r\n        \"self\": \"https://api.forte.net/v3/addresses/add_0YP3dXBvEUupRmN8oBqzIg\"\r\n      }\r\n    },\r\n    {\r\n      \"address_token\": \"add_6jpyQMMQ9UysAu7Gkh0JmA\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"first_name\": \"Marty\",\r\n      \"last_name\": \"McFly\",\r\n      \"company_name\": \"Brown Associates\",\r\n      \"phone\": \"444-444-4444\",\r\n      \"email\": \"m.mcfly@brown.net\",\r\n      \"label\": \"Shipping\",\r\n      \"address_type\": \"none\",\r\n      \"shipping_address_type\": \"commercial\",\r\n      \"physical_address\": {\r\n        \"street_line1\": \"8003 Clock Tower Ln\",\r\n        \"street_line2\": \"Suite 200\",\r\n        \"locality\": \"Hill Valley\",\r\n        \"region\": \"CA\",\r\n        \"country\": \"US\",\r\n        \"postal_code\": \"95420\"\r\n      },\r\n      \"links\": {\r\n        \"self\": \"https://api.forte.net/v3/addresses/add_6jpyQMMQ9UysAu7Gkh0JmA\"\r\n      }\r\n    }\r\n  ],\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_desc\": \"Get Successful.\"\r\n  },\r\n  \"links\": {\r\n    \"self\": \"https://api.forte.net/v3/addresses/\",\r\n    \"next\": \"https://api.forte.net/v3/addresses/?page_index=1\"\r\n  }\r\n}"}],"_postman_id":"5c37afda-a223-47aa-a961-d6c1480add61"},{"name":"Update an Address (Simple)","id":"7844e70e-546f-434a-9e3c-40ed35b2ecd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n       \"physical_address\": {\r\n          \"street_line1\": \"8003 Clock Tower Ln\",\r\n          \"street_line2\": \"Suite 101\",\r\n          \"locality\": \"Hill Valley\",\r\n          \"region\": \"CA\",\r\n          \"country\": \"US\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/addresses/add_{{addresstoken}}","description":"<p>This URI updates the specified address record.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}","addresses","add_{{addresstoken}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"7668f4a4-858b-427d-8926-5fac25a379a5","name":"Update an Address (Simple)","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"physical_address\": {\r\n          \"street_line1\": \"8003 Clock Tower Ln\",\r\n          \"street_line2\": \"Suite 101\",\r\n          \"locality\": \"Hill Valley\",\r\n          \"region\": \"CA\",\r\n          \"country\": \"US\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/addresses/add_{{addresstoken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"406","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 18:53:55 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"1-3593717-3639213 NNNN CT(33 74 0) RT(1508870937210 298199) q(0 0 1 -1) r(1 1) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"address_token\": \"add_KDbwcbrv-Uu6eSSn1rBl6A\",\n    \"location_id\": \"loc_192642\",\n    \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n    \"physical_address\": {\n        \"street_line1\": \"8003 Clock Tower Ln\",\n        \"street_line2\": \"Suite 101\",\n        \"locality\": \"Hill Valley\",\n        \"region\": \"CA\",\n        \"country\": \"US\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/addresses/add_KDbwcbrv-Uu6eSSn1rBl6A\"\n    }\n}"}],"_postman_id":"7844e70e-546f-434a-9e3c-40ed35b2ecd2"},{"name":"Update an Address ","id":"a365b8d0-ab02-4696-ab1e-e8211ebb499d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n       \"label\": \"Shipping\",\r\n       \"first_name\": \"Jennifer\",\r\n       \"last_name\": \"Parker-McFly\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"phone\": \"444-444-4444\",\r\n       \"email\": \"j.mcfly@brown.net\",\r\n       \"shipping_address_type\": \"commercial\",\r\n       \"address_type\": \"none\",\r\n       \"physical_address\": {\r\n          \"street_line1\": \"58003 Clock Tower Ln\",\r\n          \"street_line2\": \"Suite 101\",\r\n          \"locality\": \"Hill Valley\",\r\n          \"region\": \"CA\",\r\n          \"postal_code\": \"95420\",\r\n          \"country\": \"US\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/addresses/add_{{addresstoken}}","description":"<p>This URI updates the specified address record.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}","addresses","add_{{addresstoken}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"4196b076-648c-4bae-b537-515b2bf502dc","name":"Update an Address ","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"label\": \"Shipping\",\r\n       \"first_name\": \"Jennifer\",\r\n       \"last_name\": \"Parker-McFly\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"phone\": \"444-444-4444\",\r\n       \"email\": \"j.mcfly@brown.net\",\r\n       \"shipping_address_type\": \"commercial\",\r\n       \"address_type\": \"none\",\r\n       \"physical_address\": {\r\n          \"street_line1\": \"58003 Clock Tower Ln\",\r\n          \"street_line2\": \"Suite 101\",\r\n          \"locality\": \"Hill Valley\",\r\n          \"region\": \"CA\",\r\n          \"postal_code\": \"95420\",\r\n          \"country\": \"US\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/addresses/add_{{addresstoken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"643","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 18:55:02 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"1-3593717-3649861 NNNN CT(31 32 0) RT(1508870937210 365361) q(0 0 1 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"address_token\": \"add_KDbwcbrv-Uu6eSSn1rBl6A\",\n    \"location_id\": \"loc_192642\",\n    \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n    \"first_name\": \"Jennifer\",\n    \"last_name\": \"Parker-McFly\",\n    \"company_name\": \"Brown Associates\",\n    \"phone\": \"444-444-4444\",\n    \"email\": \"j.mcfly@brown.net\",\n    \"label\": \"Shipping\",\n    \"address_type\": \"none\",\n    \"shipping_address_type\": \"commercial\",\n    \"physical_address\": {\n        \"street_line1\": \"58003 Clock Tower Ln\",\n        \"street_line2\": \"Suite 101\",\n        \"locality\": \"Hill Valley\",\n        \"region\": \"CA\",\n        \"postal_code\": \"95420\",\n        \"country\": \"US\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/addresses/add_KDbwcbrv-Uu6eSSn1rBl6A\"\n    }\n}"}],"_postman_id":"a365b8d0-ab02-4696-ab1e-e8211ebb499d"},{"name":"Address","id":"89a04b40-2c14-4837-b477-4a4eb99786b1","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/addresses/add_{{addresstoken}}","description":"<p>Deletes the address associated with the specified <code>address_token</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","addresses","add_{{addresstoken}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"875b7579-0452-4504-a34a-4a38b2dc35f9","name":"Delete an Address","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/addresses/add_{{addresstoken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"147","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 05 Dec 2017 21:36:46 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"9-276075117-276104900 SNNN RT(1512509652758 153606) q(0 0 0 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"address_token\": \"add_Tbd16HBMkUGmblYf3lfMdA\",\n    \"location_id\": \"loc_192642\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Delete Successful.\"\n    }\n}"}],"_postman_id":"89a04b40-2c14-4837-b477-4a4eb99786b1"}],"id":"8eefffed-3a30-4f1c-9931-5a5d379cb0a2","description":"<p>The <code>addresses</code> object represents the customer's billing and/or shipping addresses and includes the <code>physical_address</code> sub-object. <strong>NOTE</strong>: For token payments, Forte will use the default shipping and billing addresses. Set the customers default shipping and billing addresses prior to creating a token payment.</p>\n<h2 id=\"addresses-object\">Addresses Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n<th>Req</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>address_token</code></td>\n<td>A unique string used to represent an address. For example, <code>add_tq0hemmmtf-zsxgq689rew</code>. [max length = 26]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>customer_token</code></td>\n<td>A unique string used to represent a customer. For example, <code>cst_SoGUG6mcLUS1nVzYBIbk3g</code>. [max length = 26]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>organization_id</code></td>\n<td>The identification number of the associated organization. For example, <code>org_5551236</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>location_id</code></td>\n<td>The identification number of the associated location. For example, <code>loc_1234568</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>first_name</code></td>\n<td>The first name of the user associated with this billing or shipping address [max length = 25]. <strong>NOTE</strong>: Either the <code>first_name</code>, <code>last_name</code>, or <code>company_name</code> parameters are required when creating addresses.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>last_name</code></td>\n<td>The last name of the user associated with this billing or shipping address [max length = 25]. <strong>NOTE</strong>: Either the <code>first_name</code>, <code>last_name</code>, or <code>company_name</code> parameters are required when creating addresses.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>company_name</code></td>\n<td>The name of the company associated with this billing or shipping address [max length = 20]. <strong>NOTE</strong>: Either the <code>first_name</code>, <code>last_name</code>, or <code>company_name</code> parameters are required when creating addresses.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>phone</code></td>\n<td>The phone number associated with this billing or shipping address. This field supports both U.S. and Canadian phone numbers. [max length = 15]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td>The email address associated with this billing or shipping address [max length = 50]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td>A label that succinctly identifies the address. For example, \"Work\" or \"Home.\" [max length = 50]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>address_type</code></td>\n<td>The type of address. Use one of the following values:  <br /><br />- <code>default_billing</code> - The default billing address<br /><br />- <code>default_shipping</code> - The default shipping address<br /><br />- <code>none</code> - The address is not a default address)<br /><br />- <code>both</code> - The address is both a default shipping and default billing address</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>shipping_address_type</code></td>\n<td>Indicates whether the address is a <code>residential</code> or <code>commercial</code> address.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>physical_address</code></td>\n<td>The Physical Address Object.</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>physical_address.street_line1</code></td>\n<td>The first line of the street address [max length = 35]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>physical_address.street_line2</code></td>\n<td>The second line of the street address [max length = 35]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>physical_address.locality</code></td>\n<td>Locality or city/town/village [max length = 25]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>physical_address.region</code></td>\n<td>Region or state/province. [max length = 10]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>physical_address.country</code></td>\n<td>The ISO 3166-1 alpha-2 country abbreviation. [max length = 2]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>physical_address.postal_code</code></td>\n<td>Postal Code [max length = 15].</td>\n<td>string</td>\n<td>O</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"5d0bda70-c1a7-4b01-81a7-4a0cdedb5969","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9e2dce5e-6889-4f4e-880a-e0e1ad765391","type":"text/javascript","exec":[""]}}],"_postman_id":"8eefffed-3a30-4f1c-9931-5a5d379cb0a2"},{"name":"Applications","item":[{"name":"Application","id":"3a960468-c017-4970-83c3-04c1dcd06510","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"fee_id\": 1648,\r\n       \"source_ip\":\"55.5.55.555\",\r\n       \"annual_volume\":\"100000\", \r\n       \"average_transaction_amount\": \"10000\",\r\n       \"maximum_transaction_amount\":\"5000\",\r\n       \"average_payable_amount\":\"2500\",\r\n       \"maximum_payable_amount\":\"10000\",\r\n       \"monthly_payable_volume\":\"1000\",\r\n       \"market_type\":\"internet\",\r\n       \"t_and_c_version\" : \"Tc1\",\r\n       \"t_and_c_time_stamp\": \"4/3/2016\",\r\n       \"risk_session_id\":\"s3AH5fDIdXjI7y1disbZChw8Qrgl6Bz7uKZLjRrgNhYmuWApi2FhdhB5wW4MgqknPHx1WR7s4RX1vWs\",\r\n       \"applicant_organization\": {\r\n          \"legal_name\":\"George McFly Enterprises\",\r\n          \"tax_id_number\":\"123456789\",\r\n          \"legal_structure\":\"partnership_general_or_limited\",\r\n          \"dba_name\":\"GMF Enterprises\",\r\n          \"street_address1\":\"503 DeLorean Way\",\r\n          \"locality\":\"Hill Valley\",\r\n          \"region\":\"CA\",\r\n          \"postal_code\":\"95420-4344\",\r\n          \"customer_service_phone\":\"5555236987\",\r\n          \"website\":\"www.GMFEnterprises.com\",\r\n          \"business_type\":\"A10100\",\r\n          \"bank_routing_number\":\"211170101\",\r\n          \"bank_account_number\":\"121245611\",\r\n          \"bank_account_type\":\"checking\"\r\n       },\r\n       \"owner\": {\r\n          \"first_name\":\"George\",\r\n          \"last_name\":\"McFly\",\r\n          \"title:\"ceo\",\r\n          \"street_address1\":\"49 Great Scott! Drive\",\r\n          \"locality\":\"Hill Valley\", \r\n          \"region\":\"CA\",\r\n          \"postal_code\":\"95420-4345\",\r\n          \"country\": \"USA\",\r\n          \"citizenship\": \"USA\",\r\n          \"email_address\":\"george.mcfly@GMFEnterprises.com\",\r\n          \"mobile_phone\":\"214-448-5393\",\r\n          \"last4_ssn\":\"6789\",\r\n          \"date_of_birth\":\"3/3/1938\",\r\n          \"percentage\":\"40\"\r\n       },\r\n       \"owner_2\": {\r\n          \"first_name\":\"Marty\",\r\n          \"last_name\":\"McFly\",\r\n          \"street_address1\":\"52 Great Scott! Drive\",\r\n          \"locality\":\"Hill Valley\", \r\n          \"region\":\"CA\",\r\n          \"postal_code\":\"95420-4345\",\r\n          \"country\": \"USA\",\r\n          \"citizenship\": \"USA\",\r\n          \"email_address\":\"martin.mcfly@GMFEnterprises.com\",\r\n          \"mobile_phone\":\"972-712-3019\",\r\n          \"last4_ssn\":\"5896\",\r\n          \"date_of_birth\":\"11/3/1969\",\r\n          \"percentage\":\"30\"\r\n       },\r\n       \"owner_3\": {\r\n          \"first_name\":\"Jennifer\",\r\n          \"last_name\":\"McFly\",\r\n          \"street_address1\":\"54 Great Scott! Drive\",\r\n          \"locality\":\"Hill Valley\", \r\n          \"region\":\"CA\",\r\n          \"postal_code\":\"95420-4345\",\r\n          \"country\": \"USA\",\r\n          \"citizenship\": \"USA\",\r\n          \"email_address\":\"j.mcfly@GMFEnterprises.com\",\r\n          \"mobile_phone\":\"469-222-0608\",\r\n          \"last4_ssn\":\"4455\",\r\n          \"date_of_birth\":\"8/31/1969\",\r\n          \"percentage\":\"30\"\r\n       }\r\n}   ","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/applications/","description":"<p>This URI creates the merchant application, routes the information to Forte's Underwriting and decisioning queues, and returns one of the following status codes:</p>\n<ul><li><p><code>approved</code></p></li><li><p><code>pending</code></p></li><li><p><code>declined</code></p></li><li><p><code>enrolled</code></p></li><li><p><code>rejected</code></p></li><li><p><code>recalled</code></p></li></ul>\n\n<p><strong>NOTE</strong>: The <code>organization_id</code> referenced in this URI must be the <code>home_organization_id</code> of the Partner.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","applications",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"698e5fe0-2cfa-4f7f-91bb-a55651ccfbf1","name":"Create Application","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n       \"fee_id\": 1648,\r\n       \"source_ip\":\"55.5.55.555\",\r\n       \"annual_volume\":\"100000\", \r\n       \"average_transaction_amount\": \"10000\",\r\n       \"maximum_transaction_amount\":\"5000\",\r\n       \"average_payable_amount\":\"2500\",\r\n       \"maximum_payable_amount\":\"10000\",\r\n       \"monthly_payable_volume\":\"1000\",\r\n       \"market_type\":\"internet\",\r\n       \"t_and_c_version\" : \"Tc1\",\r\n       \"t_and_c_time_stamp\": \"4/3/2016\",\r\n       \"risk_session_id\":\"s3AH5fDIdXjI7y1disbZChw8Qrgl6Bz7uKZLjRrgNhYmuWApi2FhdhB5wW4MgqknPHx1WR7s4RX1vWs\",\r\n       \"applicant_organization\": {\r\n          \"legal_name\":\"George McFly Enterprises\",\r\n          \"tax_id_number\":\"123456789\",\r\n          \"legal_structure\":\"partnership_general_or_limited\",\r\n          \"dba_name\":\"GMF Enterprises\",\r\n          \"street_address1\":\"503 DeLorean Way\",\r\n          \"locality\":\"Hill Valley\",\r\n          \"region\":\"CA\",\r\n          \"postal_code\":\"95420-4344\",\r\n          \"customer_service_phone\":\"5555236987\",\r\n          \"website\":\"www.GMFEnterprises.com\",\r\n          \"business_type\":\"A10100\",\r\n          \"bank_routing_number\":\"211170101\",\r\n          \"bank_account_number\":\"121245611\",\r\n          \"bank_account_type\":\"checking\"\r\n       },\r\n       \"owner\": {\r\n          \"first_name\":\"George\",\r\n          \"last_name\":\"McFly\",\r\n          \"title\":\"ceo\",\r\n          \"street_address1\":\"49 Great Scott! Drive\",\r\n          \"locality\":\"Hill Valley\", \r\n          \"region\":\"CA\",\r\n          \"postal_code\":\"95420-4345\",\r\n          \"country\": \"USA\",\r\n          \"citizenship\": \"USA\",\r\n          \"email_address\":\"george.mcfly@GMFEnterprises.com\",\r\n          \"mobile_phone\":\"214-448-5393\",\r\n          \"last4_ssn\":\"6789\",\r\n          \"date_of_birth\":\"3/3/1938\",\r\n          \"percentage\":\"40\"\r\n       },\r\n       \"owner_2\": {\r\n          \"first_name\":\"Marty\",\r\n          \"last_name\":\"McFly\",\r\n          \"street_address1\":\"52 Great Scott! Drive\",\r\n          \"locality\":\"Hill Valley\", \r\n          \"region\":\"CA\",\r\n          \"postal_code\":\"95420-4345\",\r\n          \"country\": \"USA\",\r\n          \"citizenship\": \"USA\",\r\n          \"email_address\":\"martin.mcfly@GMFEnterprises.com\",\r\n          \"mobile_phone\":\"972-712-3019\",\r\n          \"last4_ssn\":\"5896\",\r\n          \"date_of_birth\":\"11/3/1969\",\r\n          \"percentage\":\"30\"\r\n       },\r\n       \"owner_3\": {\r\n          \"first_name\":\"Jennifer\",\r\n          \"last_name\":\"McFly\",\r\n          \"street_address1\":\"54 Great Scott! Drive\",\r\n          \"locality\":\"Hill Valley\", \r\n          \"region\":\"CA\",\r\n          \"postal_code\":\"95420-4345\",\r\n          \"country\": \"USA\",\r\n          \"citizenship\": \"USA\",\r\n          \"email_address\":\"j.mcfly@GMFEnterprises.com\",\r\n          \"mobile_phone\":\"469-222-0608\",\r\n          \"last4_ssn\":\"4455\",\r\n          \"date_of_birth\":\"8/31/1969\",\r\n          \"percentage\":\"30\"\r\n       }\r\n}   ","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/applications/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"2231","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Wed, 08 Aug 2018 16:51:28 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\"application_id\":\"app_133180\",\"fee_id\":\"1648\",\"status\":\"pending\",\"annual_volume\":100000.00,\"average_transaction_amount\":10000.00,\"maximum_transaction_amount\":5000.00,\"monthly_payable_volume\":1000.00,\"average_payable_amount\":2500.00,\"maximum_payable_amount\":10000.00,\"source_ip\":\"55.5.55.555\",\"t_and_c_version\":\"Tc1\",\"t_and_c_time_stamp\":\"2016-04-03T00:00:00\",\"market_type\":\"internet\",\"risk_session_id\":\"s%3AH5fDIdXjI7y1disbZChw8Qrgl6Bz7uKZ.LjRrgNhYmuWApi%2FhdhB5wW4MgqknPHx1WR7s4RX1vWs\",\"applicant_organization\":{\"dba_name\":\"GMF Enterprises\",\"legal_name\":\"George McFly Enterprises\",\"street_address1\":\"503 DeLorean Way\",\"locality\":\"Hill Valley\",\"region\":\"CA\",\"postal_code\":\"95420-4344\",\"country\":\"USA\",\"website\":\"www.GMFEnterprises.com\",\"customer_service_phone\":\"555-523-6987\",\"legal_structure\":\"partnership_general_or_limited\",\"business_type\":\"A10100\",\"bank_routing_number\":\"211170101\",\"bank_account_type\":\"checking\"},\"owner\":{\"first_name\":\"George\",\"last_name\":\"McFly\",\"title\":\"ceo\", \"last4_ssn\":\"6789\",\"date_of_birth\":\"1938-03-03T00:00:00\",\"email_address\":\"george.mcfly@GMFEnterprises.com\",\"mobile_phone\":\"214-448-5393\",\"street_address1\":\"49 Great Scott! Drive\",\"locality\":\"Hill Valley\",\"region\":\"CA\",\"postal_code\":\"95420-4345\",\"country\":\"USA\",\"citizenship\":\"USA\",\"percentage\":40.00},\"owner_2\":{\"first_name\":\"Marty\",\"last_name\":\"McFly\",\"last4_ssn\":\"5896\",\"date_of_birth\":\"1969-11-03T00:00:00\",\"email_address\":\"martin.mcfly@GMFEnterprises.com\",\"mobile_phone\":\"972-712-3019\",\"street_address1\":\"52 Great Scott! Drive\",\"locality\":\"Hill Valley\",\"region\":\"CA\",\"postal_code\":\"95420-4345\",\"country\":\"USA\",\"citizenship\":\"USA\",\"percentage\":30.00},\"owner_3\":{\"first_name\":\"Jennifer\",\"last_name\":\"McFly\",\"last4_ssn\":\"4455\",\"date_of_birth\":\"1969-08-31T00:00:00\",\"email_address\":\"j.mcfly@GMFEnterprises.com\",\"mobile_phone\":\"469-222-0608\",\"street_address1\":\"54 Great Scott! Drive\",\"locality\":\"Hill Valley\",\"region\":\"CA\",\"postal_code\":\"95420-4345\",\"country\":\"USA\",\"citizenship\":\"USA\",\"percentage\":30.00},\"response\":{\"environment\":\"live\",\"response_desc\":\"Application submitted is pending review.\"},\"links\":{\"documents\":\"https://api-live-testlan.4ta.com/v3/applications/app_133180/documents\",\"self\":\"https://api-live-testlan.4ta.com/v3/applications/app_133180\"}}"}],"_postman_id":"3a960468-c017-4970-83c3-04c1dcd06510"},{"name":"Gateway-Only Application","id":"12a632e6-869e-4398-a829-13eb2d367825","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"fee_id\": 1648,\r\n       \"source_ip\":\"55.5.55.555\",\r\n       \"annual_volume\":\"100000\", \r\n       \"average_transaction_amount\": \"10000\",\r\n       \"maximum_transaction_amount\":\"5000\",\r\n       \"average_payable_amount\":\"2500\",\r\n       \"maximum_payable_amount\":\"10000\",\r\n       \"monthly_payable_volume\":\"1000\",\r\n       \"market_type\":\"internet\",\r\n       \"t_and_c_version\" : \"Tc1\",\r\n       \"t_and_c_time_stamp\": \"4/3/2016\",\r\n       \"risk_session_id\":\"s%3AH5fDIdXjI7y1disbZChw8Qrgl6Bz7uKZ.LjRrgNhYmuWApi%2FhdhB5wW4MgqknPHx1WR7s4RX1vWs\",\r\n       \"applicant_organization\": {\r\n          \"legal_name\":\"George McFly Enterprises\",\r\n          \"tax_id_number\":\"123456789\",\r\n          \"legal_structure\":\"partnership_general_or_limited\",\r\n          \"dba_name\":\"GMF Enterprises\",\r\n          \"street_address1\":\"503 DeLorean Way\",\r\n          \"locality\":\"Hill Valley\",\r\n          \"region\":\"CA\",\r\n          \"postal_code\":\"95420-4344\",\r\n          \"customer_service_phone\":\"5555236987\",\r\n          \"website\":\"www.GMFEnterprises.com\",\r\n          \"business_type\":\"A10100\",\r\n          \"bank_routing_number\":\"211170101\",\r\n          \"bank_account_number\":\"121245611\",\r\n          \"bank_account_type\":\"checking\"\r\n       },\r\n       \"owner\": {\r\n          \"first_name\":\"George\",\r\n          \"last_name\":\"McFly\",\r\n          \"street_address1\":\"49 Great Scott! Drive\",\r\n          \"locality\":\"Hill Valley\", \r\n          \"region\":\"CA\",\r\n          \"postal_code\":\"95420-4345\",\r\n          \"country\": \"USA\",\r\n          \"citizenship\": \"USA\",\r\n          \"email_address\":\"george.mcfly@GMFEnterprises.com\",\r\n          \"mobile_phone\":\"214-448-5393\",\r\n          \"last4_ssn\":\"6789\",\r\n          \"date_of_birth\":\"3/3/1938\",\r\n          \"percentage\":\"40\"\r\n       },\r\n       \"owner_2\": {\r\n          \"first_name\":\"Marty\",\r\n          \"last_name\":\"McFly\",\r\n          \"street_address1\":\"52 Great Scott! Drive\",\r\n          \"locality\":\"Hill Valley\", \r\n          \"region\":\"CA\",\r\n          \"postal_code\":\"95420-4345\",\r\n          \"country\": \"USA\",\r\n          \"citizenship\": \"USA\",\r\n          \"email_address\":\"martin.mcfly@GMFEnterprises.com\",\r\n          \"mobile_phone\":\"972-712-3019\",\r\n          \"last4_ssn\":\"5896\",\r\n          \"date_of_birth\":\"11/3/1969\",\r\n          \"percentage\":\"30\"\r\n       },\r\n       \"owner_3\": {\r\n          \"first_name\":\"Jennifer\",\r\n          \"last_name\":\"McFly\",\r\n          \"street_address1\":\"54 Great Scott! Drive\",\r\n          \"locality\":\"Hill Valley\", \r\n          \"region\":\"CA\",\r\n          \"postal_code\":\"95420-4345\",\r\n          \"country\": \"USA\",\r\n          \"citizenship\": \"USA\",\r\n          \"email_address\":\"j.mcfly@GMFEnterprises.com\",\r\n          \"mobile_phone\":\"469-222-0608\",\r\n          \"last4_ssn\":\"4455\",\r\n          \"date_of_birth\":\"8/31/1969\",\r\n          \"percentage\":\"30\"\r\n       },\r\n       \"gateway\": {\r\n    \t  \"provider\": \"firstdata\",\r\n    \t  \"bank_id_number\": \"\",\r\n    \t  \"merchant_id\": \"987456321\",\r\n    \t  \"terminal_id\": \"123456789\",\r\n    \t  \"agent\": \"\",\r\n    \t  \"chain\": \"\",\r\n    \t  \"store\": \"\",\r\n    \t  \"terminal\": \"\"\r\n    \t}\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/applications/","description":"<p>This URI creates an application for gateway-only merchants and places it into an <code>approved</code> status.</p>\n<p><strong>NOTE</strong>: The <code>organization_id</code> referenced in this URI must be the <code>home_organization_id</code> of the Partner.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","applications",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"42e116b9-8183-41b6-8c36-ed78eaeb65d2","name":"Create Application","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"fee_id\": 1648,\r\n       \"source_ip\":\"55.5.55.555\",\r\n       \"annual_volume\":\"100000\", \r\n       \"average_transaction_amount\": \"10000\",\r\n       \"maximum_transaction_amount\":\"5000\",\r\n       \"average_payable_amount\":\"2500\",\r\n       \"maximum_payable_amount\":\"10000\",\r\n       \"monthly_payable_volume\":\"1000\",\r\n       \"market_type\":\"internet\",\r\n       \"t_and_c_version\" : \"Tc1\",\r\n       \"t_and_c_time_stamp\": \"4/3/2016\",\r\n       \"risk_session_id\":\"s%3AH5fDIdXjI7y1disbZChw8Qrgl6Bz7uKZ.LjRrgNhYmuWApi%2FhdhB5wW4MgqknPHx1WR7s4RX1vWs\",\r\n       \"applicant_organization\": {\r\n          \"legal_name\":\"George McFly Enterprises\",\r\n          \"tax_id_number\":\"123456789\",\r\n          \"legal_structure\":\"partnership_general_or_limited\",\r\n          \"dba_name\":\"GMF Enterprises\",\r\n          \"street_address1\":\"503 DeLorean Way\",\r\n          \"locality\":\"Hill Valley\",\r\n          \"region\":\"CA\",\r\n          \"postal_code\":\"95420-4344\",\r\n          \"customer_service_phone\":\"5555236987\",\r\n          \"website\":\"www.GMFEnterprises.com\",\r\n          \"business_type\":\"A10100\",\r\n          \"bank_routing_number\":\"211170101\",\r\n          \"bank_account_number\":\"121245611\",\r\n          \"bank_account_type\":\"checking\"\r\n       },\r\n       \"owner\": {\r\n          \"first_name\":\"George\",\r\n          \"last_name\":\"McFly\",\r\n          \"street_address1\":\"49 Great Scott! Drive\",\r\n          \"locality\":\"Hill Valley\", \r\n          \"region\":\"CA\",\r\n          \"postal_code\":\"95420-4345\",\r\n          \"country\": \"USA\",\r\n          \"citizenship\": \"USA\",\r\n          \"email_address\":\"george.mcfly@GMFEnterprises.com\",\r\n          \"mobile_phone\":\"214-448-5393\",\r\n          \"last4_ssn\":\"6789\",\r\n          \"date_of_birth\":\"3/3/1938\",\r\n          \"percentage\":\"40\"\r\n       },\r\n       \"owner_2\": {\r\n          \"first_name\":\"Marty\",\r\n          \"last_name\":\"McFly\",\r\n          \"street_address1\":\"52 Great Scott! Drive\",\r\n          \"locality\":\"Hill Valley\", \r\n          \"region\":\"CA\",\r\n          \"postal_code\":\"95420-4345\",\r\n          \"country\": \"USA\",\r\n          \"citizenship\": \"USA\",\r\n          \"email_address\":\"martin.mcfly@GMFEnterprises.com\",\r\n          \"mobile_phone\":\"972-712-3019\",\r\n          \"last4_ssn\":\"5896\",\r\n          \"date_of_birth\":\"11/3/1969\",\r\n          \"percentage\":\"30\"\r\n       },\r\n       \"owner_3\": {\r\n          \"first_name\":\"Jennifer\",\r\n          \"last_name\":\"McFly\",\r\n          \"street_address1\":\"54 Great Scott! Drive\",\r\n          \"locality\":\"Hill Valley\", \r\n          \"region\":\"CA\",\r\n          \"postal_code\":\"95420-4345\",\r\n          \"country\": \"USA\",\r\n          \"citizenship\": \"USA\",\r\n          \"email_address\":\"j.mcfly@GMFEnterprises.com\",\r\n          \"mobile_phone\":\"469-222-0608\",\r\n          \"last4_ssn\":\"4455\",\r\n          \"date_of_birth\":\"8/31/1969\",\r\n          \"percentage\":\"30\"\r\n       }\r\n}   ","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/applications/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"2231","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Wed, 08 Aug 2018 16:51:28 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n\t\"application_id\":\"app_133180\",\n\t\"fee_id\":\"1648\",\n\t\"status\":\"pending\",\n\t\"annual_volume\":100000.00,\n\t\"average_transaction_amount\":10000.00,\n\t\"maximum_transaction_amount\":5000.00,\n\t\"monthly_payable_volume\":1000.00,\n\t\"average_payable_amount\":2500.00,\n\t\"maximum_payable_amount\":10000.00,\n\t\"source_ip\":\"55.5.55.555\",\n\t\"t_and_c_version\":\"Tc1\",\n\t\"t_and_c_time_stamp\":\"2016-04-03T00:00:00\",\n\t\"market_type\":\"internet\",\n\t\"risk_session_id\":\"s%3AH5fDIdXjI7y1disbZChw8Qrgl6Bz7uKZ.LjRrgNhYmuWApi%2FhdhB5wW4MgqknPHx1WR7s4RX1vWs\",\n\t\"applicant_organization\":{\n\t\t\"dba_name\":\"GMF Enterprises\",\n\t\t\"legal_name\":\"George McFly Enterprises\",\n\t\t\"street_address1\":\"503 DeLorean Way\",\n\t\t\"locality\":\"Hill Valley\",\n\t\t\"region\":\"CA\",\n\t\t\"postal_code\":\"95420-4344\",\n\t\t\"country\":\"US\",\n\t\t\"website\":\"www.GMFEnterprises.com\",\n\t\t\"customer_service_phone\":\"555-523-6987\",\n\t\t\"legal_structure\":\"partnership_general_or_limited\",\n\t\t\"business_type\":\"A10100\",\n\t\t\"bank_routing_number\":\"211170101\",\n\t\t\"bank_account_type\":\"checking\"\n\t\t\n\t},\n\t\"owner\":{\n\t\t\"first_name\":\"George\",\n\t\t\"last_name\":\"McFly\",\n\t\t\"last4_ssn\":\"6789\",\n\t\t\"date_of_birth\":\"1938-03-03T00:00:00\",\n\t\t\"email_address\":\"george.mcfly@GMFEnterprises.com\",\n\t\t\"mobile_phone\":\"214-448-5393\",\n\t\t\"street_address1\":\"49 Great Scott! Drive\",\n\t\t\"locality\":\"Hill Valley\",\n\t\t\"region\":\"CA\",\n\t\t\"postal_code\":\"95420-4345\",\n\t\t\"country\":\"USA\",\n\t\t\"citizenship\":\"US\",\n\t\t\"percentage\":40.00\n\t\t\t\n\t},\n\t\"owner_2\":{\n\t\t\"first_name\":\"Marty\",\n\t\t\"last_name\":\"McFly\",\n\t\t\"last4_ssn\":\"5896\",\n\t\t\"date_of_birth\":\"1969-11-03T00:00:00\",\n\t\t\"email_address\":\"martin.mcfly@GMFEnterprises.com\",\n\t\t\"mobile_phone\":\"972-712-3019\",\n\t\t\"street_address1\":\"52 Great Scott! Drive\",\n\t\t\"locality\":\"Hill Valley\",\n\t\t\"region\":\"CA\",\n\t\t\"postal_code\":\"95420-4345\",\n\t\t\"country\":\"US\",\n\t\t\"citizenship\":\"US\",\n\t\t\"percentage\":30.00\n\t},\n\t\"owner_3\":{\n\t\t\"first_name\":\"Jennifer\",\n\t\t\"last_name\":\"McFly\",\n\t\t\"last4_ssn\":\"4455\",\n\t\t\"date_of_birth\":\"1969-08-31T00:00:00\",\n\t\t\"email_address\":\"j.mcfly@GMFEnterprises.com\",\n\t\t\"mobile_phone\":\"469-222-0608\",\n\t\t\"street_address1\":\"54 Great Scott! Drive\",\n\t\t\"locality\":\"Hill Valley\",\n\t\t\"region\":\"CA\",\n\t\t\"postal_code\":\"95420-4345\",\n\t\t\"country\":\"US\",\n\t\t\"citizenship\":\"US\",\n\t\t\"percentage\":30.00\n\t},\n\t\"gateway\": {\n    \t\"provider\": \"firstdata\",\n    \t\"bank_id_number\": \"\",\n    \t\"merchant_id\": \"987456321\",\n    \t\"terminal_id\": \"123456789\",\n    \t\"agent\": \"\",\n    \t\"chain\": \"\",\n    \t\"store\": \"\",\n    \t\"terminal\": \"\"\n\t},\n\t\"response\":{\n\t\t\"environment\":\"live\",\n\t\t\"response_desc\":\"Application submitted is pending review.\"\n\t\t\n\t},\n\t\"links\":{\n\t\t\"documents\":\"https://api-live-testlan.4ta.com/v3/applications/app_133180/documents\",\n\t\t\"self\":\"https://api-live-testlan.4ta.com/v3/applications/app_133180\"\n\t}\n}"}],"_postman_id":"12a632e6-869e-4398-a829-13eb2d367825"},{"name":"All Applications for an Organization","id":"f9032c99-2e7b-453e-923a-f7d7ef9835b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/applications?filter=start_received_date+eq+'2017-01-01'+and+end_received_date+eq+'2017-06-30'","description":"<p>This URI returns all applications submitted by the partner organization, including their current status. Supported statuses include the following:</p>\n<ul><li><p>`approved` - Forte has approved the application and sent the merchant's data to the enrollment queue.</p></li><li><p>`pending` - Forte's Credit and Risk Team needs to review the application and may request additional documentation from the merchant.</p></li><li><p>`declined` - The application failed one or more automated underwriting checks and Forte has declined to move forward with the merchant. The reason for the decline displays in the `decline_reason` field.</p></li><li><p>`enrolled` - Merchant has completed enrollment and is ready to process transactions.</p></li><li><p>`rejected` - Forte is unable to verify the identity data of an application or cannot authenticate the banking data or signatures. The reason for the rejected status displays in the reject_reason field.</p></li><li><p>`recalled` - The applicant has stopped responding to requests for information from Forte or the Partner. The reason for the recalled status displays in the recalled_reason field.<br /></p></li></ul>\n\n<p>To narrow your search data using specific criteria, use the following filter parameters:</p>\n<ul><li><p>start_updated_date / end_updated_date</p></li><li><p>start_received_date / end_received_date</p></li><li><p>status</p></li></ul>\n\n<p><strong>NOTES</strong>: The <code>organization_id</code> referenced in this URI must be the <code>home_organization_id</code> of the partner.</p>\n<p>Please note that sending a request at the partner (org) level may result in a large data set and may cause timeout errors depending on the request. We recommend sending your GET request at the Merchant (Organization) level.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","applications"],"host":["{{baseURI}}"],"query":[{"key":"filter","value":"start_received_date+eq+'2017-01-01'+and+end_received_date+eq+'2017-06-30'"}],"variable":[]}},"response":[{"id":"5092ce7e-536d-48e8-9e7e-561fe3773283","name":"Get All Applications for an Organization","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{baseURI}}/org_{{organizationID}}/applications?filter=start_received_date+eq+'2017-01-01'+and+end_received_date+eq+'2017-06-30'","host":["{{baseURI}}"],"path":["org_{{organizationID}}","applications"],"query":[{"key":"filter","value":"start_received_date+eq+'2017-01-01'+and+end_received_date+eq+'2017-06-30'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Wed, 25 Oct 2017 18:56:50 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"3-15010348-15010351 NNNN CT(33 75 0) RT(1508957810297 39) q(0 0 1 0) r(2 2) U16","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 2,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_334316\",\n        \"resource_specific\": {\n            \"start_received_date\": \"2017-01-01T00:00:00\",\n            \"end_received_date\": \"2017-06-30T00:00:00\"\n        }\n    },\n    \"results\": [\n        {\n            \"application_id\": \"app_111234\",\n            \"location_id\": \"loc_123000\",\n            \"status\": \"declined\",\n            \"decline_reason\": \"reputation\",\n            \"fee_id\": \"8258\",\n            \"source_ip\": \"55.5.55.555\",\n            \"annual_volume\": 100000,\n            \"average_transaction_amount\": 10000,\n            \"average_payable_amount\": 1000,\n            \"maximum_payable_amount\": 6000,\n            \"monthly_payable_volume\": 600,\n            \"market_type\": \"internet\",\n            \"t_and_c_version\": \"Tc1\",\n            \"t_and_c_time_stamp\": \"2/3/2017\",\n            \"risk_session_id\": \"s%3AH5fDIdXjI7y1disbZChw8Qrgl6Bz7uKZ.LjRrgNhYmuWApi%2FhdhB5wW4MgqknPHx1WR7s4RX1vWs\",\n            \"applicant_organization\": {\n                \"organization_id\": \"org_123456\",\n                \"legal_name\": \"Biff Tannen Innovations\",\n                \"legal_structure\": \"sole_proprietorship\",\n                \"dba_name\": \"BTI\",\n                \"street_address1\": \"503 DeLorean Way\",\n                \"locality\": \"Hill Valley\",\n                \"region\": \"CA\",\n                \"postal_code\": \"95420-4344\",\n                \"customer_service_phone\": \"5555236987\",\n                \"website\": \"www.BTInnovations.com\",\n                \"business_type\": \"A10100\",\n                \"bank_routing_number\": \"211170101\",\n                \"bank_account_type\": \"checking\"\n            },\n            \"received_date\": \"2017-02-03T09:22:34.63\",\n            \"updated_date:\": \"2017-02-05T03:14:43.72\",\n            \"sales_rep\": \"JohnnyBGoode\",\n            \"fee_plan\": \"gold\",\n            \"owner\": {\n                \"first_name\": \"Biff\",\n                \"last_name\": \"Tannen\",\n                \"street_address1\": \"49 Great Scott! Drive\",\n                \"locality\": \"Hill Valley\",\n                \"region\": \"CA\",\n                \"postal_code\": \"95420-4345\",\n                \"country\": \"USA\",\n                \"citizenship\": \"USA\",\n                \"email_address\": \"b.tannen@BTInnovations.com\",\n                \"mobile_phone\": \"5555698965\",\n                \"date_of_birth\": \"3/3/1968\",\n                \"percentage\": 100\n            },\n            \"links\": {\n                \"documents\": \"https://api.forte.net/v3/applications/app_111234/documents\",\n                \"self\": \"https://api.forte.net/v3/applications/app_111234\"\n            }\n        },\n        {\n            \"application_id\": \"app_998877\",\n            \"location_id\": \"loc_456789\",\n            \"status\": \"approved\",\n            \"fee_id\": \"14081\",\n            \"source_ip\": \"55.5.55.555\",\n            \"annual_volume\": 100000,\n            \"average_transaction_amount\": 10000,\n            \"average_payable_amount\": 2500,\n            \"maximum_payable_amount\": 10000,\n            \"monthly_payable_volume\": 1000,\n            \"market_type\": \"internet\",\n            \"t_and_c_version\": \"Tc1\",\n            \"t_and_c_time_stamp\": \"5/25/2017\",\n            \"risk_session_id\": \"s%3AH5fDIdXjI7y1disbZChw8Qrgl6Bz7uKZ.LjRrgNhYmuWApi%2FhdhB5wW4MgqknPHx1WR7s4RX1vWs\",\n            \"applicant_organization\": {\n                \"organization_id\": \"org_987654\",\n                \"legal_name\": \"George McFly Enterprises\",\n                \"legal_structure\": \"sole_proprietorship\",\n                \"dba_name\": \"GMF Enterprises\",\n                \"street_address1\": \"503 DeLorean Way\",\n                \"locality\": \"Hill Valley\",\n                \"region\": \"CA\",\n                \"postal_code\": \"95420-4344\",\n                \"customer_service_phone\": \"5555236987\",\n                \"website\": \"www.GMFEnterprises.com\",\n                \"business_type\": \"A10100\",\n                \"bank_routing_number\": \"211170101\",\n                \"bank_account_type\": \"checking\"\n            },\n            \"received_date\": \"2017-05-25T05:29:48.62\",\n            \"updated_date:\": \"2017-05-27T03:22:14.31\",\n            \"sales_rep\": \"JohnnyBGoode\",\n            \"fee_plan\": \"gold\",\n            \"owner\": {\n                \"first_name\": \"George\",\n                \"last_name\": \"McFly\",\n                \"street_address1\": \"49 Great Scott! Drive\",\n                \"locality\": \"Hill Valley\",\n                \"region\": \"CA\",\n                \"postal_code\": \"95420-4345\",\n                \"country\": \"USA\",\n                \"citizenship\": \"USA\",\n                \"email_address\": \"george.mcfly@GMFEnterprises.com\",\n                \"mobile_phone\": \"5555698965\",\n                \"date_of_birth\": \"3/3/1938\",\n                \"percentage\": 100\n            },\n            \"links\": {\n                \"documents\": \"https://api.forte.net/v3/applications/app_998877/documents\",\n                \"self\": \"https://api.forte.net/v3/applications/app_998877\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/applications/?filter=start_received_date+eq+%272017-01-01%27+and+end_received_date+eq+%272017-06-30%27\"\n    }\n}"}],"_postman_id":"f9032c99-2e7b-453e-923a-f7d7ef9835b9"},{"name":"Applications by ID","id":"588a93cb-65e6-49ac-ae85-97ce4452f0e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/applications/app_{{applicationID}}","description":"<p>This URI returns a specific application submitted by the partner using the <code>application_id</code>. <strong>NOTE</strong>: The <code>organization_id</code> referenced in this URI must be the <code>home_organization_id</code> of the partner.<br />Applications can have the following statuses:</p>\n<ul><li><p>`approved` - Forte has approved the application and sent the merchant's data to the enrollment queue.</p></li><li><p>`pending` - Forte's Credit and Risk Team needs to review the application and may request additional documentation from the merchant.</p></li><li><p>`declined` - The application failed one or more automated underwriting checks and Forte has declined to move forward with the merchant. The reason for the decline displays in the `decline_reason` field.</p></li><li><p>`enrolled` - Merchant has completed enrollment and is ready to process transactions.</p></li><li><p>`rejected` - Forte is unable to verify the identity data of an application or cannot authenticate the banking data or signatures. The reason for the rejected status displays in the reject_reason field.</p></li><li><p>`recalled` - The applicant has stopped responding to requests for information from Forte or the Partner. The reason for the recalled status displays in the recalled_reason field.</p></li></ul>","urlObject":{"path":["organizations","org_{{organizationID}}","applications","app_{{applicationID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"cc96b2ff-6b83-44a2-80da-97978091ec0d","name":"Find Applications by ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseURI}}/org_{{organizationID}}/applications/app_{{applicationID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Wed, 25 Oct 2017 19:03:26 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"7-16959006-16959017 NNNN CT(35 71 0) RT(1508958206196 41) q(0 0 1 -1) r(1 1) U16","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"application_id\": \"app_109630\",\n    \"organization_id\": \"org_234791\",\n    \"status\": \"approved\",\n    \"fee_id\": \"14081\",\n    \"source_ip\": \"55.5.55.555\",\n    \"annual_volume\": 100000,\n    \"average_transaction_amount\": 10000,\n    \"average_payable_amount\": 2500,\n    \"maximum_payable_amount\": 10000,\n    \"monthly_payable_volume\": 1000,\n    \"market_type\": \"internet\",\n    \"t_and_c_version\": \"Tc1\",\n    \"t_and_c_time_stamp\": \"4/3/2016\",\n    \"risk_session_id\": \"s%3AH5fDIdXjI7y1disbZChw8Qrgl6Bz7uKZ.LjRrgNhYmuWApi%2FhdhB5wW4MgqknPHx1WR7s4RX1vWs\",\n    \"applicant_organization\": {\n        \"organization_id\": \"org_852963\",\n        \"legal_name\": \"George McFly Enterprises\",\n        \"legal_structure\": \"sole_proprietorship\",\n        \"dba_name\": \"GMF Enterprises\",\n        \"street_address1\": \"503 DeLorean Way\",\n        \"locality\": \"Hill Valley\",\n        \"region\": \"CA\",\n        \"postal_code\": \"95420-4344\",\n        \"customer_service_phone\": \"5555236987\",\n        \"website\": \"www.GMFEnterprises.com\",\n        \"business_type\": \"A10100\",\n        \"bank_routing_number\": \"211170101\",\n        \"bank_account_type\": \"checking\"\n    },\n    \"received_date\": \"2017-05-25T05:29:48.62\",\n    \"updated_date:\": \"2017-05-27T03:22:14.31\",\n    \"sales_rep\": \"JohnnyBGoode\",\n    \"fee_plan\": \"bronze\",\n    \"owner\": {\n        \"first_name\": \"George\",\n        \"last_name\": \"McFly\",\n        \"street_address1\": \"49 Great Scott! Drive\",\n        \"locality\": \"Hill Valley\",\n        \"region\": \"CA\",\n        \"postal_code\": \"95420-4345\",\n        \"country\": \"USA\",\n        \"citizenship\": \"USA\",\n        \"email_address\": \"george.mcfly@GMFEnterprises.com\",\n        \"mobile_phone\": \"5555698965\",\n        \"date_of_birth\": \"3/3/1938\",\n        \"percentage\": 100\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Application submitted has been approved.\"\n    },\n    \"links\": {\n        \"documents\": \"https://api.forte.net/v3/applications/app_109630/documents\",\n        \"self\": \"https://api.forte.net/v3/applications/app_109630\"\n    }\n}"}],"_postman_id":"588a93cb-65e6-49ac-ae85-97ce4452f0e0"}],"id":"8c5781d2-944e-4110-8ffc-72dfb62f63e5","description":"<p>The <code>applications</code> object enables Forte partners to create merchant applications and submit them automatically to Forte's Underwriting and decisioning queues. Partners can upload supporting documentation for applications using the <code>documents</code> object.</p>\n<h2 id=\"applications-object\">Applications Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n<th>Req</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>fee_id</code></td>\n<td>The ID of the rate plan, which details the fee values that Forte will charge the merchant. [max length = 6]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>source_ip</code></td>\n<td>The IP Address from which the merchant is applying. [max length = 80]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>annual_volume</code></td>\n<td>The anticipated annual volume of the business. [max length = 10]</td>\n<td>double</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>average_transaction_amount</code></td>\n<td>The average transaction amount of the business. <strong>NOTE</strong>: When testing, use this parameter to test success and fail responses. Passing a value greater than 10,000 in this field will trigger an automatic decline in the test environment. [max length = 5]</td>\n<td>double</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>market_type</code></td>\n<td>The method by which the business captures the majority of its transactions. Options for this parameter include the following values:  <br />  <br />  <br />  <br />- <code>internet</code>  <br />- <code>phone</code>  <br />- <code>mail</code>  <br />- <code>point_of_sale</code></td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>t_and_c_version</code></td>\n<td>The version of Forte's Terms and Conditions provided to the applying merchant. <strong>NOTE</strong>: This must match the version associated with the Rate Plan (<code>fee_id</code>).</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>t_and_c_time_stamp</code></td>\n<td>The date and/or timestamp when the merchant agreed to Forte's Terms and Conditions. [max length = 20] <strong>NOTE</strong>: The value of this field can be up to one full day in the future. The following formats are supported:  <br />  <br />  <br />  <br />- <em>YYY/MM/DD</em>, <em>MMDDYYYY</em>  <br />- <em>YYYY-MM-DDTHH:MM:SSZ</em>, <em>YYYYMM-DDTHH:MM:SS</em></td>\n<td>datetime</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>risk_session_id</code></td>\n<td>A random unique code that partners generate on their client form and include in the API request call prior to sending the application (e.g., <code>s3AH5fDIdXjI7y1disbZChw8Qrgl6Bz7uKZLjRrgNhYmu</code>  <br /><code>WApi2FhdhB5wW4MgqknPHx1WR7s4RX1vWs</code>).  <br />  <br />The value of the <code>risk_session_id</code> parameter can be up to 128 characters long and can only consist of the following characters:  <br />  <br />  <br />  <br />- Upper and lowercase English letters (a–z or A–Z)  <br />- Digits (0–9)  <br />- Underscore or hyphen (_ or -)  <br />  <br />  <br />  <br />  <br />  <br />The script that generates the <code>risk_session_id</code> value must be embedded on a page where the user will be for five or more seconds. For profiling to properly occur, the session must run on the applicant's browser for a minimum of five seconds. Additionally, the applicant's browser or front-end software must have javascript enabled. See the note below. [max length = 128bytes]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>maximum_transaction_amount</code></td>\n<td>The maximum allowable amount for a credit card or ACH transaction.</td>\n<td>double</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>average_payable_amount</code></td>\n<td>The average amount the merchant disburses in credit transactions (e.g., refunds, payroll, commissions, etc). <strong>NOTE</strong>: If either the <code>average_payable_amount</code>,<code>maximum_payable_amount</code>, or the <code>monthly_payable_volume</code> parameters are passed, all three parameters become required.</td>\n<td>double</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>maximum_payable_amount</code></td>\n<td>The maximum amount the merchant would disburse in a credit transaction (e.g., refunds, payroll, commissions, etc.). <strong>NOTE</strong>: If either the <code>average_payable_amount</code>,<code>maximum_payable_amount</code>, or the <code>monthly_payable_volume</code> parameters are passed, all three parameters become required.</td>\n<td>double</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>monthly_payable_volume</code></td>\n<td>An estimate of the amount the merchant disburses in credit transactions each month (e.g., refunds, payroll, commissions, etc). <strong>NOTE</strong>: If either the <code>average_payable_amount</code>,<code>maximum_payable_amount</code>, or the <code>monthly_payable_volume</code> parameters are passed, all three parameters become required.</td>\n<td>double</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>received_date</code></td>\n<td>The date and time when the application was received.</td>\n<td>datetime</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>updated_date</code></td>\n<td>The date and time when the application was last updated.</td>\n<td>datetime</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>sales_rep</code></td>\n<td>The name or ID of the sales representative associated with this application.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>location_id</code></td>\n<td>The merchant's location ID that Forte created after enrolling the applicant.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>The status of the application. Supported values include the following:  <br />  <br />  <br />  <br />- <code>approved</code> - Forte has approved the application and sent the merchant's data to the enrollment queue.  <br />- <code>pending</code> - Forte's Credit and Risk Team needs to review the application and may request additional documentation from the merchant.  <br />- <code>declined</code> - The application failed one or more automated underwriting checks and Forte has declined to move forward with the merchant. The reason for the decline displays in the <code>decline_reason</code> field.  <br />  <br />• <code>enrolled</code> - Merchant has completed enrollment and is ready to process transactions.  <br />  <br />• <code>rejected</code> - Forte is unable to verify the identity data of an application or cannot authenticate the banking data or signatures. The reason for the rejected status displays in the <code>rejected_reason</code> dield.  <br />  <br />• <code>recalled</code> - The applicant has stopped responding to requests for information from Forte or the Partner. The reason for the recalled status displays in the <code>recalled_reason</code> field.</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td><code>decline_reason</code> field.  <br />  <br />enrrolled -</td>\n<td>string</td>\n<td>—</td>\n<td></td>\n</tr>\n<tr>\n<td><code>decline_reason</code></td>\n<td>The reason for a <code>declined</code> status. Supported values include the following:  <br />  <br />  <br />  <br />- <code>credit_locked</code>  <br />- <code>ssn_mismatch</code>  <br />- <code>tincheck_failure</code>  <br />- <code>identity</code>  <br />- <code>type_of_business</code>  <br />- <code>credit</code>  <br />- <code>reputation</code></td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>applicant_organization</code></td>\n<td>The Applicant Organization Object.</td>\n<td>object</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>applicant_organization.legal_name</code></td>\n<td>The legal name of the business. The value of this parameter must match the name associated with the merchant's Tax ID Number. [max length = 50].</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>applicant_organization.tax_id_number</code></td>\n<td>The Tax ID Number of the business (e.g., TIN, EIN, SSN, etc.). The following formats are supported [max length = 30]:  <br />  <br />  <br />  <br />- SSN = <em>XXXXXXXXX</em>, <em>XXX-XX-XXXX</em>  <br />- ITIN = <em>9XXXXXXXX</em>, <em>9XX-XX-XXXX</em>  <br />- EIN = <em>XXXXXXXXX</em>, <em>XX-XXXXXXX</em></td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>applicant_organization.legal_structure</code></td>\n<td>The ownership type of the business. Options for this parameter include the following values:  <br />  <br />  <br />  <br />- <code>c_corporation</code>  <br />- <code>government</code>  <br />- <code>limited_liability_corporation</code>  <br />- <code>partnership_general_or_limited</code>  <br />- <code>publicly_held_corporation</code>  <br />- <code>s_corporation</code>  <br />- <code>sole_proprietorship</code>  <br />- <code>tax_exempt_or_non_profit_organization</code></td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>applicant_organization.dba_name</code></td>\n<td>The name of the business as it will appear on your customer's statements. The default value for this parameter is the DBA (Doing Business As) Name. [max length = 50].</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>applicant_organization.organization_id</code></td>\n<td>The merchant organization ID that Forte created after enrolling the applicant.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>applicant_organization.street_address1</code></td>\n<td>The physical address of the business. This parameter cannot contain P.O. boxes, including paid mailbox services provided by companies like the UPS Store. [max length = 50]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>applicant_organization.locality</code></td>\n<td>The city where the business is located. [max length = 50]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>applicant_organization.region</code></td>\n<td>The state or province where the business is located. [max length = 2]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>applicant_organization.postal_code</code></td>\n<td>The zip/postal code of the business. The following formats are supported [max length = 15]:  <br />  <br />  <br />  <br />- <em>XXXXX</em>  <br />- <em>XXXXX-XXXX</em></td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>applicant_organization.customer_service_phone</code></td>\n<td>The customer service phone number of the business. [max length = 12]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>applicant_organization.website</code></td>\n<td>The website of the business. The value of this parameter must be in <a href=\"https://null\">www.yourcompanysite.com</a> format. The www prefix is required. Slashes and underscore punctuation are allowed in the URL. [max length = 100]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>applicant_organization.business_type</code></td>\n<td>The type of business. See Forte's list of <a href=\"https://developers.forte.net/business-classification-codes/\">Business Classification Codes</a>.  <br />[max length = 50]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>applicant_organization.bank_account_type</code></td>\n<td>The type of bank account. This bank account can only be a business checking or business savings account; it cannot be the applicant's personal checking or personal savings account. The following values are supported:  <br />  <br />  <br />  <br />- <code>checking</code>  <br />- <code>savings</code></td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>applicant_organization.bank_routing_number</code></td>\n<td>The transit routing number (TRN) of the merchant's bank. This field supports both U.S. and Canadian routing numbers.  <br /><strong>NOTE</strong>: A Canadian routing number displayed on a check needs to be reformatted differently for electronic payments. If a check displays a routing number as BBBBB-AAA (where AAA indicates the Financial Institution and BBBBB is the branch), then the routing number must be changed to 0AAABBBBB to process the payment electronically. For example, if a check from an account issued by the Bank of Montreal showed the routing number 00011-001, then that number would need to be reformatted to 000100011 for the payment to be electronically processed. Click <a href=\"https://www.payments.ca/payment-resources/directories?field_directory_type=11\">here</a> for a directory of Canadian financial institutions. This field is required when creating or updating a new record and can only contain digits. [max length = 9].</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>applicant_organization.bank_account_number</code></td>\n<td>The account number (i.e., DDA) of the applicant's business bank account. The value of this parameter can only contain digits. [max length = 17]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>owner</code></td>\n<td>The primary owner object. All applications must include at least one primary owner. This owner must be the controller of the business.</td>\n<td>object</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>owner.percentage</code></td>\n<td>Indicates the percentage of the business owned by the primary owner (i.e., maximum ownership percentage = 100). <strong>NOTES</strong>:  <br />  <br />  <br />  <br />  <br />- The sum of <code>owner.percentage</code>, <code>owner_2.percentage</code>, <code>owner_3.percentage</code>, and <code>owner_4.percentage</code> cannot be greater than 100.  <br />- This field is <strong>NOT</strong> required for the following legal structures:  <br />- <code>government</code>  <br />- <code>sole_proprietorship</code>  <br />- <code>publicly_held_corporation</code></td>\n<td>double</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>owner.title</code></td>\n<td>The primary owner’s official title at the company. Supported values include the following:  <br />  <br />  <br />  <br />- <code>ceo</code>  <br />- <code>cfo</code>  <br />- <code>coo</code>  <br />- <code>managing_member</code>  <br />- <code>general_partner</code>  <br />- <code>president</code>  <br />- <code>vice_president</code>  <br />- <code>treasurer</code>  <br />- <code>other</code></td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>owner.first_name</code></td>\n<td>The first name of the account owner. [max length = 50]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>owner.last_name</code></td>\n<td>The last name of the account owner. [max length = 50]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>owner.street_address1</code></td>\n<td>The home address of the account owner. [max length = 50]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>owner.locality</code></td>\n<td>The city of the account owner's home address. [max length = 50]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>owner.region</code></td>\n<td>The state or province of the account owner's home address. [max length = 2]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>owner.postal_code</code></td>\n<td>The zip/postal code of the account owner's home address. [max length = 15]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>owner.country</code></td>\n<td>The country code of the account owner's home address <strong>NOTE</strong>: This field is <strong>NOT</strong> required for the following legal structures:  <br />  <br />  <br />  <br />- <code>government</code>  <br />- <code>sole_proprietorship</code>  <br />- <code>publicly_held_corporation</code>  <br />  <br />  <br />  <br />  <br />  <br />[max length = 3]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>owner.citizenship</code></td>\n<td>The country code of the account owner's country of citizenship. <strong>NOTE</strong>: This field is <strong>NOT</strong> required for the following legal structures:  <br />  <br />  <br />  <br />- <code>government</code>  <br />- <code>sole_proprietorship</code>  <br />- <code>publicly_held_corporation</code>  <br />  <br />  <br />  <br />  <br />  <br />[max length=3]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>owner.email_address</code></td>\n<td>The business email of the account owner. This email address cannot be a generic email address or a distribution list. The value of this parameter must be in a valid email format (e.g., <a href=\"https://null\"><i>john.doe@email.com</i></a>). [max length = 100]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>owner.mobile_phone</code></td>\n<td>The cell phone number of the account owner. The value of this parameter can be up to 15 characters (with country code).</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>owner.last4_ssn</code></td>\n<td>The last four digits of the account owner's Social Security Number (SSN). [max length = 4]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>owner.date_of_birth</code></td>\n<td>The birth date of the account owner in YYYY/MM/DD format. [max length = 10]</td>\n<td>date</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>owner_2</code></td>\n<td>The secondary owner object.<strong>NOTE</strong>: This object is only required for American merchants with additional owner(s) who own at least 25% of the business. Addtionally, do not pass this object for merchants set up in the following legal structures:  <br />  <br />  <br />  <br />- <code>government</code>  <br />- <code>sole_proprietorship</code>  <br />- <code>publicly_held_corporation</code></td>\n<td>object</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_2.percentage</code></td>\n<td>Indicates the percentage of the business owned by the secondary owner. This value must be 25 or greater.</td>\n<td>double</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_2.first_name</code></td>\n<td>The first name of the account owner. [max length = 50]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_2.last_name</code></td>\n<td>The last name of the account owner. [max length = 50]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_2.street_address1</code></td>\n<td>The home address of the account owner. [max length = 50]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_2.locality</code></td>\n<td>The city of the account owner's home address. [max length = 50]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_2.region</code></td>\n<td>The state or province of the account owner's home address. [max length = 2]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_2.postal_code</code></td>\n<td>The zip/postal code of the account owner's home address. [max length = 15]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_2.country</code></td>\n<td>The country code of the account owner's home address. [max length=3]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_2.citizenship</code></td>\n<td>The country code of the account owner's country of citizenship. [max length=3]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_2.email_address</code></td>\n<td>The business email of the account owner. This email address cannot be a generic email address or a distribution list. The value of this parameter must be in a valid email format (e.g., <a href=\"https://null\"><i>john.doe@email.com</i></a>). [max length = 100]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_2.mobile_phone</code></td>\n<td>The cell phone number of the account owner. The value of this parameter can be up to 15 characters (with country code).</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_2.last4_ssn</code></td>\n<td>The last four digits of the account owner's Social Security Number (SSN). [max length = 4]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_2.date_of_birth</code></td>\n<td>The birth date of the account owner in YYYY/MM/DD format. [max length = 10]</td>\n<td>date</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_3</code></td>\n<td>The tertiary owner object. <strong>NOTE</strong>: This object is only required for American merchants with additional owner(s) who own at least 25% of the business. Addtionally, do not pass this object for merchants set up in the following legal structures:  <br />  <br />  <br />  <br />- <code>government</code>  <br />- <code>sole_proprietorship</code>  <br />- <code>publicly_held_corporation</code></td>\n<td>object</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_3.percentage</code></td>\n<td>Indicates the percentage of the business owned by the tertiary owner. This value must be 25 or greater.</td>\n<td>double</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_3.first_name</code></td>\n<td>The first name of the account owner. [max length = 50]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_3.last_name</code></td>\n<td>The last name of the account owner. [max length = 50]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_3.street_address1</code></td>\n<td>The home address of the account owner. [max length = 50]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_3.locality</code></td>\n<td>The city of the account owner's home address. [max length = 50]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_3.region</code></td>\n<td>The state or province of the account owner's home address. [max length = 2]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_3.postal_code</code></td>\n<td>The zip/postal code of the account owner's home address. [max length = 15]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_3.country</code></td>\n<td>The country code of the account owner's home address. [max length=3]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_3.citizenship</code></td>\n<td>The country code of the account owner's country of citizenship. [max length=3]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_3.email_address</code></td>\n<td>The business email of the account owner. This email address cannot be a generic email address or a distribution list. The value of this parameter must be in a valid email format (e.g., <a href=\"https://null\"><i>john.doe@email.com</i></a>). [max length = 100]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_3.mobile_phone</code></td>\n<td>The cell phone number of the account owner. The value of this parameter can be up to 15 characters (with country code).</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_3.last4_ssn</code></td>\n<td>The last four digits of the account owner's Social Security Number (SSN). [max length = 4]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_3.date_of_birth</code></td>\n<td>The birth date of the account owner in YYYY/MM/DD format. [max length = 10]</td>\n<td>date</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_4</code></td>\n<td>The quaternary owner object.  <br />  <br /><strong>NOTE</strong>: This object is only required for American merchants with additional owner(s) who own at least 25% of the business. Addtionally, do not pass this object for merchants set up in the following legal structures:  <br />  <br />- <code>government</code>  <br />- <code>sole_proprietorship</code>  <br />- <code>publicly_held_corporation</code></td>\n<td>object</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_4.percentage</code></td>\n<td>Indicates the percentage of the business owned by the quaternary owner. This value must be 25 or greater.</td>\n<td>double</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_4.first_name</code></td>\n<td>The first name of the account owner. [max length = 50]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_4.last_name</code></td>\n<td>The last name of the account owner. [max length = 50]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_4.street_address1</code></td>\n<td>The home address of the account owner. [max length = 50]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_4.locality</code></td>\n<td>The city of the account owner's home address. [max length = 50]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_4.region</code></td>\n<td>The state or province of the account owner's home address. [max length = 2]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_4.postal_code</code></td>\n<td>The zip/postal code of the account owner's home address. [max length = 15]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_4.country</code></td>\n<td>The country code of the account owner's home address. [max length=3]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_4.citizenship</code></td>\n<td>The country code of the account owner's country of citizenship. [max length=3]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_4.email_address</code></td>\n<td>The business email of the account owner. This email address cannot be a generic email address or a distribution list. The value of this parameter must be in a valid email format (e.g., <a href=\"https://null\"><i>john.doe@email.com</i></a>). [max length = 100]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_4.mobile_phone</code></td>\n<td>The cell phone number of the account owner. The value of this parameter can be up to 15 characters (with country code).</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_4.last4_ssn</code></td>\n<td>The last four digits of the account owner's Social Security Number (SSN). [max length = 4]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>owner_4.date_of_birth</code></td>\n<td>The birth date of the account owner in YYYY/MM/DD format. [max length = 10]</td>\n<td>date</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>gateway</code></td>\n<td>The gateway object. Use for gateway-only merchant applications.</td>\n<td>object</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>gateway.provider</code></td>\n<td>The processor the gateway-only merchant will use. Supported options include the following:  <br />  <br />- <code>vantiv</code>  <br />  <br />- <code>global</code>  <br />- <code>vital</code>  <br />- <code>firstdata</code>  <br />- <code>Elavon</code>  <br />- <code>Chase</code></td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>gateway.bank_id_number</code></td>\n<td>The banking ID associated with Vantiv, Global, or Vital merchants.</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>gateway.merchant_id</code></td>\n<td>The merchant ID associated with Vantiv, Global, or FirstData merchants.</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>gateway.terminal_id</code></td>\n<td>The terminal ID associated with Global, Vital, or FirstData merchants.</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>gateway.agent</code></td>\n<td>The Agent number associated with Vital merchants.</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>gateway.chain</code></td>\n<td>The Chain number associated with Vantiv or Vital merchants.</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>gateway.store</code></td>\n<td>The Store number associated with Vantiv or Vital merchants.</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>gateway.terminal</code></td>\n<td>The Terminal number associated with Vital merchants.</td>\n<td>string</td>\n<td>C</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>NOTE</strong>: The following PHP code sample uses the uniqid() function to generate the <code>risk_session_id</code> value:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-PHP\">&lt;html&gt;\n&lt;body&gt;\necho $a;\n?&gt;\n&lt;script type=\"text/javascript\" src=\"https://img3.forte.net/fp/tags.js?org_id=xdzpgyj7&amp;session_id=&lt;?php echo $a;?&gt;&amp;pageid=1\"&gt;\n&lt;/script&gt;\n&lt;noscript&gt;\n&lt;iframe style=\"width: 100px; height: 100px; border: 0;position: absolute; top: -5000px;\" src=\"https://img3.forte.net/tags?org_id=xdzpgyj7&amp;session_id=&lt;?php echo $a;?&gt;&amp;pageid=1\"&gt;\n&lt;/iframe&gt;\n&lt;/noscript&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n\n</code></pre>\n<p>To add this parameter to the <code>applications</code> object, complete the following steps:</p>\n<p><strong>STEP 1</strong>: Generate a unique <code>risk_session_id</code> code that fulfills the formatting requirements described above by using the PHP code sample provided or an alternative method.</p>\n<p><strong>STEP 2</strong>: Add the generated value to the following script (i.e., in place of <code>UNIQUE_SESSION_ID</code>). This script can be executed only once by the applicant's browser.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">&lt;script type=\"text/javascript\" src=\"https://img3.forte.net/fp/tags.js?org_id=xdzpgyj7&amp;session_id=UNIQUE_SESSION_ID&amp;pageid=1\"&gt; \n&lt;/script&gt; \n&lt;noscript&gt; \n&lt;iframe style=\"width: 100px; height: 100px; border: 0;position: absolute; top: -5000px;\" src=\"https://img3.forte.net/tags?org_id=xdzpgyj7&amp;session_id=UNIQUE_SESSION_ID&amp;pageid=1\"&gt;\n&lt;/iframe&gt; \n&lt;/noscript&gt;\n\n</code></pre>\n<p><strong>STEP 3</strong>: When generating the <code>applications</code> POST request, assign the unique code value created in step 1 to the <code>risk_session_id</code> parameter.</p>\n<p><strong>STEP 4</strong>: Submit the application.</p>\n","event":[{"listen":"prerequest","script":{"id":"6ef86397-436d-4435-815a-02c82564457e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"253d54ca-3743-4d45-af36-c9eb08ce1a99","type":"text/javascript","exec":[""]}}],"_postman_id":"8c5781d2-944e-4110-8ffc-72dfb62f63e5"},{"name":"Customers","item":[{"name":"Customer (Simple)","id":"fade5c33-e33b-4363-8bae-16cd7c783777","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"first_name\": \"Emmett\",\r\n       \"last_name\": \"Brown\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"customer_id\": \"025897\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/","description":"<p>This endpoint creates a customer record with just the First and Last Name and the Customer ID while returning a new <code>customer_token</code>.</p>\n<p><strong>NOTE</strong>: Token-based transactions will use the default addresses. Token payments require you to set the customer's default shipping and billing addresses prior to passing the transaction data.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"eb379ec1-4e25-4ee7-bf5d-6810f057e14d","name":"Create a Customer (Simple)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"first_name\": \"Emmett\",\r\n       \"last_name\": \"Brown\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"customer_id\": \"025897\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/org_{{organizationID}}/locations/loc_{{locationID}}/customers/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-encoding","value":"gzip","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Mon, 04 Dec 2017 22:32:48 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"4-209571950-209571953 NNNN CT(33 68 0) RT(1512426767905 51) q(0 0 1 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"customer_token\": \"cst_D7AwlaDpL0OwwVJM9sTtDA\",\n    \"location_id\": \"loc_192642\",\n    \"first_name\": \"Emmett\",\n    \"last_name\": \"Brown\",\n    \"company_name\": \"Brown Associates\",\n    \"display_name\": \"Brown Associates\",\n    \"customer_id\": \"025897\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"addresses\": \"https://api.forte.net/v3/customers/cst_D7AwlaDpL0OwwVJM9sTtDA/addresses\",\n        \"paymethods\": \"https://api.forte.net/v3/customers/cst_D7AwlaDpL0OwwVJM9sTtDA/paymethods\",\n        \"transactions\": \"https://api.forte.net/v3/customers/cst_D7AwlaDpL0OwwVJM9sTtDA/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/customers/cst_D7AwlaDpL0OwwVJM9sTtDA/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/customers/cst_D7AwlaDpL0OwwVJM9sTtDA/schedules\",\n        \"self\": \"https://api.forte.net/v3/customers/cst_D7AwlaDpL0OwwVJM9sTtDA\"\n    }\n}"}],"_postman_id":"fade5c33-e33b-4363-8bae-16cd7c783777"},{"name":"Locationless Customer","id":"8dcd56b4-b1fb-4d05-9886-8bcd4a454660","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"first_name\": \"Emmett\",\r\n       \"last_name\": \"Brown\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"organization_id\": \"org_115161\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/customers/","description":"<p>Use this endpoint to create a customer at the merchant organization level (rather than the location level). Partners should authenticate at the partner level while specifying the merchant organization in the body of the request.</p>\n<p><strong>NOTE</strong>: Token-based transactions will use the default addresses. Token payments require you to set the customer's default shipping and billing addresses prior to passing the transaction data.</p>\n","urlObject":{"path":["customers",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"0a6d00ec-76e0-47e8-aa31-9e92884205cd","name":"Locationless Customer","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"first_name\": \"Emmett\",\r\n       \"last_name\": \"Brown\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"organization_id\": \"org_115161\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/customers/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 18:14:20 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"848","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"customer_token\": \"cst_ZKgFBQUqiEySx6kh9pTi4w\",\n    \"organization_id\": \"org_115161\",\n    \"first_name\": \"Emmett\",\n    \"last_name\": \"Brown\",\n    \"company_name\": \"Brown Associates\",\n    \"display_name\": \"Brown Associates\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"addresses\": \"https://api.forte.net/v3/customers/cst_ZKgFBQUqiEySx6kh9pTi4w/addresses\",\n        \"paymethods\": \"https://api.forte.net/v3/customers/cst_ZKgFBQUqiEySx6kh9pTi4w/paymethods\",\n        \"transactions\": \"https://api.forte.net/v3/customers/cst_ZKgFBQUqiEySx6kh9pTi4w/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/customers/cst_ZKgFBQUqiEySx6kh9pTi4w/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/customers/cst_ZKgFBQUqiEySx6kh9pTi4w/schedules\",\n        \"self\": \"https://api.forte.net/v3/customers/cst_ZKgFBQUqiEySx6kh9pTi4w\"\n    }\n}"}],"_postman_id":"8dcd56b4-b1fb-4d05-9886-8bcd4a454660"},{"name":"Customer with First and Last Name Only","id":"d305f98d-548e-4ef7-b3c4-c167e682292e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"first_name\": \"Emmett\",\r\n    \"last_name\": \"Brown\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/","description":"<p>This endpoint creates a customer record with just the First and Last Name while returning a new <code>customer_token</code>.</p>\n<p><strong>NOTE</strong>: Token-based transactions will use the default addresses. Token payments require you to set the customer's default shipping and billing addresses prior to passing the transaction data.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"e8136f20-f437-4954-b72c-6cdc5447bfa7","name":"Customer with First and Last Name Only","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"first_name\": \"Emmett\",\r\n    \"last_name\": \"Brown\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Mar 2021 18:00:02 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"807","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"customer_token\": \"cst_91fOEIP6KEijWBY1j_sNoA\",\n    \"location_id\": \"loc_124125\",\n    \"first_name\": \"Emmett\",\n    \"last_name\": \"Brown\",\n    \"display_name\": \"Emmett Brown\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"addresses\": \"https://api.forte.net/v3/customers/cst_91fOEIP6KEijWBY1j_sNoA/addresses\",\n        \"paymethods\": \"https://api.forte.net/v3/customers/cst_91fOEIP6KEijWBY1j_sNoA/paymethods\",\n        \"transactions\": \"https://api.forte.net/v3/customers/cst_91fOEIP6KEijWBY1j_sNoA/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/customers/cst_91fOEIP6KEijWBY1j_sNoA/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/customers/cst_91fOEIP6KEijWBY1j_sNoA/schedules\",\n        \"self\": \"https://api.forte.net/v3/customers/cst_91fOEIP6KEijWBY1j_sNoA/\"\n    }\n}"}],"_postman_id":"d305f98d-548e-4ef7-b3c4-c167e682292e"},{"name":"Customer with Billing/Shipping Addresses","id":"150a44f5-0600-4de3-871c-b160ca0f1027","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"first_name\": \"Emmett\",\r\n       \"last_name\": \"Brown\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"addresses\": [\r\n          {\r\n             \"label\": \"Brown Shipping\",\r\n             \"first_name\": \"Emmett\",\r\n             \"last_name\": \"Brown\",\r\n             \"company_name\": \"Brown Associates\",\r\n             \"phone\": \"444-444-4444\",\r\n             \"email\": \"e.brown@brown.net\",\r\n             \"shipping_address_type\": \"residential\",\r\n             \"address_type\": \"default_shipping\",\r\n             \"physical_address\": {\r\n                \"street_line1\": \"123 Hill Valley Rd.\",\r\n                \"street_line2\": \"APT 1001\",\r\n                \"locality\": \"Hill Valley\",\r\n                \"region\": \"CA\",\r\n                \"postal_code\": \"95420\"\r\n             }\r\n          },\r\n          {\r\n             \"label\": \"Brown Billing\",\r\n             \"first_name\": \"Emmett\",\r\n             \"last_name\": \"Brown\",\r\n             \"company_name\": \"Brown Associates\",\r\n             \"phone\": \"444-444-4444\",\r\n             \"email\": \"e.brown@forte.net\",\r\n             \"shipping_address_type\": \"commercial\",\r\n             \"address_type\": \"default_billing\",\r\n             \"physical_address\": {\r\n                \"street_line1\": \"500 Delorean Dr\",\r\n                \"street_line2\": \"Suite 200\",\r\n                \"locality\": \"Hill Valley\",\r\n                \"region\": \"CA\",\r\n                \"postal_code\": \"95420\"\r\n             }\r\n        }\r\n       ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/","description":"<p>This endpoint creates a customer record with Billing and Shipping Addresses while returning a new <code>customer_token</code>.</p>\n<p><strong>NOTE</strong>: Token-based transactions will use the default addresses. Token payments require you to set the customer's default shipping and billing addresses prior to passing the transaction data.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"803c53d0-e36f-41f5-92fe-a810af5837e8","name":"Customer with Billing and Shipping Address","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"first_name\": \"Emmett\",\r\n       \"last_name\": \"Brown\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"addresses\": [\r\n          {\r\n             \"label\": \"Brown Shipping\",\r\n             \"first_name\": \"Emmett\",\r\n             \"last_name\": \"Brown\",\r\n             \"company_name\": \"Brown Associates\",\r\n             \"phone\": \"444-444-4444\",\r\n             \"email\": \"e.brown@brown.net\",\r\n             \"shipping_address_type\": \"residential\",\r\n             \"address_type\": \"default_shipping\",\r\n             \"physical_address\": {\r\n                \"street_line1\": \"123 Hill Valley Rd.\",\r\n                \"street_line2\": \"APT 1001\",\r\n                \"locality\": \"Hill Valley\",\r\n                \"region\": \"CA\",\r\n                \"postal_code\": \"95420\"\r\n             }\r\n          },\r\n          {\r\n             \"label\": \"Brown Billing\",\r\n             \"first_name\": \"Emmett\",\r\n             \"last_name\": \"Brown\",\r\n             \"company_name\": \"Brown Associates\",\r\n             \"phone\": \"444-444-4444\",\r\n             \"email\": \"e.brown@forte.net\",\r\n             \"shipping_address_type\": \"commercial\",\r\n             \"address_type\": \"default_billing\",\r\n             \"physical_address\": {\r\n                \"street_line1\": \"500 Delorean Dr\",\r\n                \"street_line2\": \"Suite 200\",\r\n                \"locality\": \"Hill Valley\",\r\n                \"region\": \"CA\",\r\n                \"postal_code\": \"95420\"\r\n             }\r\n        }\r\n       ]\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/?Authorization=&Accept=application/json&X_Forte_Auth_Organization_Id=org_{{AuthOrganizationID}}&Content_Type=application/json","host":["{{baseURI}}"],"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers",""],"query":[{"key":"Authorization","value":""},{"key":"Accept","value":"application/json"},{"key":"X_Forte_Auth_Organization_Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content_Type","value":"application/json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Mar 2021 18:11:39 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"2076","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"customer_token\": \"cst_hmTr7iMQ0kGWCOJwxrROeA\",\n    \"location_id\": \"loc_124125\",\n    \"default_shipping_address_token\": \"add_Z1yopne62k2HxQqXDtNQBw\",\n    \"default_billing_address_token\": \"add_YQdPbCdRu0ODqexzSCRybg\",\n    \"first_name\": \"Emmett\",\n    \"last_name\": \"Brown\",\n    \"company_name\": \"Brown Associates\",\n    \"display_name\": \"Brown Associates\",\n    \"addresses\": [\n        {\n            \"address_token\": \"add_YQdPbCdRu0ODqexzSCRybg\",\n            \"location_id\": \"loc_124125\",\n            \"first_name\": \"Emmett\",\n            \"last_name\": \"Brown\",\n            \"company_name\": \"Brown Associates\",\n            \"phone\": \"444-444-4444\",\n            \"email\": \"e.brown@forte.net\",\n            \"label\": \"Brown Billing\",\n            \"address_type\": \"default_billing\",\n            \"shipping_address_type\": \"commercial\",\n            \"physical_address\": {\n                \"street_line1\": \"500 Delorean Dr\",\n                \"street_line2\": \"Suite 200\",\n                \"locality\": \"Hill Valley\",\n                \"region\": \"CA\",\n                \"postal_code\": \"95420\",\n                \"country\": \"US\"\n            },\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/addresses/add_YQdPbCdRu0ODqexzSCRybg\"\n            }\n        },\n        {\n            \"address_token\": \"add_Z1yopne62k2HxQqXDtNQBw\",\n            \"location_id\": \"loc_124125\",\n            \"first_name\": \"Emmett\",\n            \"last_name\": \"Brown\",\n            \"company_name\": \"Brown Associates\",\n            \"phone\": \"444-444-4444\",\n            \"email\": \"e.brown@brown.net\",\n            \"label\": \"Brown Shipping\",\n            \"address_type\": \"default_shipping\",\n            \"shipping_address_type\": \"residential\",\n            \"physical_address\": {\n                \"street_line1\": \"123 Hill Valley Rd.\",\n                \"street_line2\": \"APT 1001\",\n                \"locality\": \"Hill Valley\",\n                \"region\": \"CA\",\n                \"postal_code\": \"95420\",\n                \"country\": \"US\"\n            },\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/addresses/add_Z1yopne62k2HxQqXDtNQBw\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"addresses\": \"https://api.forte.net/v3/customers/cst_hmTr7iMQ0kGWCOJwxrROeA/addresses\",\n        \"paymethods\": \"https://api.forte.net/v3/customers/cst_hmTr7iMQ0kGWCOJwxrROeA/paymethods\",\n        \"transactions\": \"https://api.forte.net/v3/customers/cst_hmTr7iMQ0kGWCOJwxrROeA/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/customers/cst_hmTr7iMQ0kGWCOJwxrROeA/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/customers/cst_hmTr7iMQ0kGWCOJwxrROeA/schedules\",\n        \"self\": \"https://api.forte.net/v3/customers/cst_hmTr7iMQ0kGWCOJwxrROeA/\"\n    }\n}"}],"_postman_id":"150a44f5-0600-4de3-871c-b160ca0f1027"},{"name":"Customer with Payment Method","id":"c84327e1-4a5a-4ac5-bfee-7d8e087b74eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"first_name\": \"Emmett\",\r\n    \"last_name\": \"Brown\",\r\n    \"company_name\": \"Brown Associates\",\r\n    \"addresses\": [\r\n          {\r\n             \"label\": \"Brown Billing\",\r\n             \"first_name\": \"Emmett\",\r\n             \"last_name\": \"Brown\",\r\n             \"company_name\": \"Brown Associates\",\r\n             \"phone\": \"444-444-4444\",\r\n             \"email\": \"e.brown@forte.net\",\r\n             \"address_type\": \"default_billing\",\r\n             \"physical_address\": {\r\n                \"street_line1\": \"500 Delorean Dr\",\r\n                \"street_line2\": \"Suite 200\",\r\n                \"locality\": \"Hill Valley\",\r\n                \"region\": \"CA\",\r\n                \"postal_code\": \"95420\"\r\n             }\r\n          }\r\n          ],\r\n       \"paymethod\": {\r\n             \"label\": \"Visa - 1243\",\r\n             \"notes\": \"Business CC\",\r\n             \"card\": {\r\n                \"account_number\": \"4111111111111111\",\r\n                \"expire_month\": 10,\r\n                \"expire_year\": 2030,\r\n                \"card_verification_value\": \"693\",\r\n                \"card_type\": \"visa\",\r\n                \"name_on_card\": \"Emmett L. Brown\"\r\n             }\r\n          }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/","description":"<p>This endpoint creates a customer record with a Payment Method while returning a new <code>customer_token</code>.</p>\n<p><strong>NOTE</strong>: Token-based transactions will use the default addresses. Token payments require you to set the customer's default shipping and billing addresses prior to passing the transaction data.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"06fc682a-d5fa-4842-8212-cd064787f506","name":"Customer with Payment Method","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"first_name\": \"Emmett\",\r\n       \"last_name\": \"Brown\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"paymethod\": {\r\n             \"label\": \"Visa - 1243\",\r\n             \"notes\": \"Business CC\",\r\n             \"card\": {\r\n                \"account_number\": \"4111111111111111\",\r\n                \"expire_month\": 10,\r\n                \"expire_year\": 2030,\r\n                \"card_verification_value\": \"693\",\r\n                \"card_type\": \"visa\",\r\n                \"name_on_card\": \"Emmett L. Brown\"\r\n             }\r\n          }\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/?Authorization={{Authorization}}&Accept=application/json&X-Forte-Auth-Organization-Id=org_{{AuthOrganizationID}}&Content-Type=application/json","host":["{{baseURI}}"],"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers",""],"query":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Mar 2021 18:27:26 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"1626","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"customer_token\": \"cst_netzN2bKEEeIU5DmrG879w\",\n    \"location_id\": \"loc_282980\",\n    \"default_paymethod_type\": \"visa\",\n    \"default_paymethod_token\": \"mth_MskEONGdvkm2wPBdQEZuDA\",\n    \"default_billing_address_token\": \"add_D4vKk_RAsUWSlYRlrVEsXw\",\n    \"first_name\": \"Emmett\",\n    \"last_name\": \"Brown\",\n    \"company_name\": \"Brown Associates\",\n    \"display_name\": \"Brown Associates\",\n    \"addresses\": [\n        {\n            \"address_token\": \"add_D4vKk_RAsUWSlYRlrVEsXw\",\n            \"location_id\": \"loc_282980\",\n            \"first_name\": \"Emmett\",\n            \"last_name\": \"Brown\",\n            \"company_name\": \"Brown Associates\",\n            \"phone\": \"444-444-4444\",\n            \"email\": \"e.brown@forte.net\",\n            \"label\": \"Brown Billing\",\n            \"address_type\": \"default_billing\",\n            \"physical_address\": {\n                \"street_line1\": \"500 Delorean Dr\",\n                \"street_line2\": \"Suite 200\",\n                \"locality\": \"Hill Valley\",\n                \"region\": \"CA\",\n                \"postal_code\": \"95420\",\n                \"country\": \"US\"\n            },\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/addresses/add_D4vKk_RAsUWSlYRlrVEsXw\"\n            }\n        }\n    ],\n    \"paymethod\": {\n        \"paymethod_token\": \"mth_MskEONGdvkm2wPBdQEZuDA\",\n        \"location_id\": \"loc_282980\",\n        \"label\": \"Visa - 1243\",\n        \"notes\": \"Business CC\",\n        \"card\": {\n            \"name_on_card\": \"Emmett L. Brown\",\n            \"last_4_account_number\": \"1111\",\n            \"masked_account_number\": \"****1111\",\n            \"expire_month\": 10,\n            \"expire_year\": 2030,\n            \"card_type\": \"visa\"\n        },\n        \"links\": {\n         \"transactions\":\"https://api.forte.net/v3/paymethods/mth_MskEONGdvkm2wPBdQEZuDA/transactions\",\n           \"settlements\":\"https://api.forte.net/v3/paymethods/mth_MskEONGdvkm2wPBdQEZuDA/settlements\",\n            \"schedules\": \"https://api.forte.net/v3/paymethods/mth_MskEONGdvkm2wPBdQEZuDA/schedules\",\n            \"self\": \"https://api.forte.net/v3/paymethods/mth_MskEONGdvkm2wPBdQEZuDA/\"\n        }\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"addresses\": \"https://api.forte.net/v3/customers/cst_netzN2bKEEeIU5DmrG879w/addresses\",\n        \"paymethods\": \"https://api.forte.net/v3/customers/cst_netzN2bKEEeIU5DmrG879w/paymethods\",\n        \"transactions\": \"https://api.forte.net/v3/customers/cst_netzN2bKEEeIU5DmrG879w/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/customers/cst_netzN2bKEEeIU5DmrG879w/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/customers/cst_netzN2bKEEeIU5DmrG879w/schedules\",\n        \"self\": \"https://api.forte.net/v3/customers/cst_netzN2bKEEeIU5DmrG879w/\"\n    }\n}\n"}],"_postman_id":"c84327e1-4a5a-4ac5-bfee-7d8e087b74eb"},{"name":"Customer with PayPal Payment Method","id":"bcb3122b-9d08-4cd7-9e98-46a84a8c861f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"first_name\": \"Emmett\",\r\n    \"last_name\": \"Brown\",\r\n    \"company_name\": \"Brown Associates\",\r\n    \"paymethod\": {\r\n        \"label\": \"PayPal - 1243\",\r\n        \"notes\": \"Business CC\",\r\n        \"vendor\": {\r\n            \"vendor_type\": \"paypal\",\r\n            \"vendor_billing_agreement_token\": \"BA-4A647113CM7972924\"\r\n        }\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/","description":"<p>This endpoint creates a customer record with a Payment Method while returning a new <code>customer_token.</code></p>\n<p>However, you must include the <code>vendor</code> sub-object under <code>paymethod</code> object in the body of the request.</p>\n<p><strong>NOTE</strong>: Token-based transactions will use the default addresses. Token payments require you to set the customer's default shipping and billing addresses prior to passing the transaction data.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"785657bc-38bc-402e-941a-9bd9f76919b8","name":"Customer with PayPal Payment Method","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"X-Forte-Auth_Organization_Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"first_name\": \"Emmett\",\r\n    \"last_name\": \"Brown\",\r\n    \"company_name\": \"Brown Associates\",\r\n    \"paymethod\": {\r\n        \"label\": \"PayPal - 1243\",\r\n        \"notes\": \"Business CC\",\r\n        \"vendor\": {\r\n            \"vendor_type\": \"paypal\",\r\n            \"vendor_billing_agreement_token\": \"BA-4A647113CM7972924\"\r\n        }\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"customer_token\": \"cst_1UkPNV1TLEexrtq-iBwTjg\",\n    \"location_id\": \"loc_192642\",\n    \"default_paymethod_type\": \"paypal\",\n    \"default_paymethod_token\": \"mth_WfdgmBjI9k-5xp7sPTs4kg\",\n    \"first_name\": \"Emmett\",\n    \"last_name\": \"Brown\",\n    \"company_name\": \"Brown Associates\",\n    \"display_name\": \"Brown Associates\",\n    \"paymethod\": {\n        \"paymethod_token\": \"mth_WfdgmBjI9k-5xp7sPTs4kg\",\n        \"location_id\": \"loc_192642\",\n        \"label\": \"PayPal - 1243\",\n        \"notes\": \"Business CC\",\n        \"vendor\": {\n            \"vendor_type\": \"paypal\",\n            \"vendor_billing_agreement_token\": \"BA-6RR2783828950364P\",\n            \"vendor_billing_agreement_id\": \"B-7H989178H5887753B\"\n        },\n        \"links\": {\n            \"transactions\": \"https://api.forte.net/v3/paymethods/mth_WfdgmBjI9k-5xp7sPTs4kg/transactions\",\n            \"settlements\": \"https://api.forte.net/v3/paymethods/mth_WfdgmBjI9k-5xp7sPTs4kg/settlements\",\n            \"schedules\": \"https://api.forte.net/v3/paymethods/mth_WfdgmBjI9k-5xp7sPTs4kg/schedules\",\n            \"self\": \"https://api.forte.net/v3/paymethods/mth_WfdgmBjI9k-5xp7sPTs4kg/\"\n        }\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"addresses\": \"https://api.forte.net/v3/customers/cst_1UkPNV1TLEexrtq-iBwTjg/addresses\",\n        \"paymethods\": \"https://api.forte.net/v3/customers/cst_1UkPNV1TLEexrtq-iBwTjg/paymethods\",\n        \"transactions\": \"https://api.forte.net/v3/customers/cst_1UkPNV1TLEexrtq-iBwTjg/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/customers/cst_1UkPNV1TLEexrtq-iBwTjg/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/customers/cst_1UkPNV1TLEexrtq-iBwTjg/schedules\",\n        \"self\": \"https://api.forte.net/v3/customers/cst_1UkPNV1TLEexrtq-iBwTjg/\"\n    }\n}"}],"_postman_id":"bcb3122b-9d08-4cd7-9e98-46a84a8c861f"},{"name":"Customer with Billing/Shipping Address and Payment Data","id":"ab4dab82-32dd-4f79-97cf-0048654f75bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"first_name\": \"Emmett\",\r\n       \"last_name\": \"Brown\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"addresses\": [\r\n          {\r\n             \"label\": \"Brown Shipping\",\r\n             \"first_name\": \"Emmett\",\r\n             \"last_name\": \"Brown\",\r\n             \"company_name\": \"Brown Associates\",\r\n             \"phone\": \"444-444-4444\",\r\n             \"email\": \"e.brown@brown.net\",\r\n             \"shipping_address_type\": \"residential\",\r\n             \"address_type\": \"default_shipping\",\r\n             \"physical_address\": {\r\n                \"street_line1\": \"123 Hill Valley Rd.\",\r\n                \"street_line2\": \"APT 1001\",\r\n                \"locality\": \"Hill Valley\",\r\n                \"region\": \"CA\",\r\n                \"postal_code\": \"95420\"\r\n             }\r\n          },\r\n          {\r\n             \"label\": \"Brown Billing\",\r\n             \"first_name\": \"Emmett\",\r\n             \"last_name\": \"Brown\",\r\n             \"company_name\": \"Brown Associates\",\r\n             \"phone\": \"444-444-4444\",\r\n             \"email\": \"e.brown@forte.net\",\r\n             \"shipping_address_type\": \"commercial\",\r\n             \"address_type\": \"default_billing\",\r\n             \"physical_address\": {\r\n                \"street_line1\": \"500 Delorean Dr\",\r\n                \"street_line2\": \"Suite 200\",\r\n                \"locality\": \"Hill Valley\",\r\n                \"region\": \"CA\",\r\n                \"postal_code\": \"95420\"\r\n             }\r\n          }\r\n          ],\r\n          \"paymethod\": {\r\n             \"label\": \"Visa - 1243\",\r\n             \"notes\": \"Business CC\",\r\n             \"card\": {\r\n                \"account_number\": \"4111111111111111\",\r\n                \"expire_month\": 10,\r\n                \"expire_year\": 2030,\r\n                \"card_verification_value\": \"693\",\r\n                \"card_type\": \"visa\",\r\n                \"name_on_card\": \"Emmett L. Brown\"\r\n             }\r\n          }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/","description":"<p>This endpoint creates a customer record with Billing/Shipping Addresses and a Payment Method while returning a new <code>customer_token</code>.</p>\n<p><strong>NOTE</strong>: Token-based transactions will use the default addresses. Token payments require you to set the customer's default shipping and billing addresses prior to passing the transaction data.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"b4a19d2e-b33f-40b1-bd16-92d496cead3b","name":"Create Customer with Billing, Shipping, and Payment Data","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"first_name\": \"Emmett\",\r\n       \"last_name\": \"Brown\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"addresses\": [\r\n          {\r\n             \"label\": \"Brown Shipping\",\r\n             \"first_name\": \"Emmett\",\r\n             \"last_name\": \"Brown\",\r\n             \"company_name\": \"Brown Associates\",\r\n             \"phone\": \"444-444-4444\",\r\n             \"email\": \"e.brown@brown.net\",\r\n             \"shipping_address_type\": \"residential\",\r\n             \"address_type\": \"default_shipping\",\r\n             \"physical_address\": {\r\n                \"street_line1\": \"123 Hill Valley Rd.\",\r\n                \"street_line2\": \"APT 1001\",\r\n                \"locality\": \"Hill Valley\",\r\n                \"region\": \"CA\",\r\n                \"postal_code\": \"95420\"\r\n             }\r\n          },\r\n          {\r\n             \"label\": \"Brown Billing\",\r\n             \"first_name\": \"Emmett\",\r\n             \"last_name\": \"Brown\",\r\n             \"company_name\": \"Brown Associates\",\r\n             \"phone\": \"444-444-4444\",\r\n             \"email\": \"e.brown@forte.net\",\r\n             \"shipping_address_type\": \"commercial\",\r\n             \"address_type\": \"default_billing\",\r\n             \"physical_address\": {\r\n                \"street_line1\": \"500 Delorean Dr\",\r\n                \"street_line2\": \"Suite 200\",\r\n                \"locality\": \"Hill Valley\",\r\n                \"region\": \"CA\",\r\n                \"postal_code\": \"95420\"\r\n             }\r\n          }\r\n          ],\r\n          \"paymethod\": {\r\n             \"label\": \"Visa - 1243\",\r\n             \"notes\": \"Business CC\",\r\n             \"card\": {\r\n                \"account_number\": \"4111111111111111\",\r\n                \"expire_month\": 10,\r\n                \"expire_year\": 2030,\r\n                \"card_verification_value\": \"693\",\r\n                \"card_type\": \"visa\",\r\n                \"name_on_card\": \"Emmett L. Brown\"\r\n             }\r\n          }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/org_{{organizationID}}/locations/loc_{{locationID}}/customers/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Mon, 23 Oct 2017 17:26:20 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"4-80726028-80726037 NNNN CT(33 69 0) RT(1508779580102 49) q(0 0 1 -1) r(3 3) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"customer_token\": \"cst_n2Gc5zaMAEu8g9A5wdtJGA\",\n    \"location_id\": \"loc_192642\",\n    \"default_paymethod_type\": \"visa\",\n    \"default_paymethod_token\": \"mth_6WlsUkmMPk2xgvX5VbEpzQ\",\n    \"default_shipping_address_token\": \"add_6CrGDw3RykiklPb82mNqCA\",\n    \"default_billing_address_token\": \"add_sI_JSBaTv0u-290vdV8kBg\",\n    \"first_name\": \"Emmett\",\n    \"last_name\": \"Brown\",\n    \"company_name\": \"Brown Associates\",\n    \"display_name\": \"Brown Associates\",\n    \"addresses\": [\n        {\n            \"address_token\": \"add_sI_JSBaTv0u-290vdV8kBg\",\n            \"location_id\": \"loc_192642\",\n            \"first_name\": \"Emmett\",\n            \"last_name\": \"Brown\",\n            \"company_name\": \"Brown Associates\",\n            \"phone\": \"444-444-4444\",\n            \"email\": \"e.brown@forte.net\",\n            \"label\": \"Brown Billing\",\n            \"address_type\": \"default_billing\",\n            \"shipping_address_type\": \"commercial\",\n            \"physical_address\": {\n                \"street_line1\": \"500 Delorean Dr\",\n                \"street_line2\": \"Suite 200\",\n                \"locality\": \"Hill Valley\",\n                \"region\": \"CA\",\n                \"postal_code\": \"95420\"\n            },\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/addresses/add_sI_JSBaTv0u-290vdV8kBg\"\n            }\n        },\n        {\n            \"address_token\": \"add_6CrGDw3RykiklPb82mNqCA\",\n            \"location_id\": \"loc_192642\",\n            \"first_name\": \"Emmett\",\n            \"last_name\": \"Brown\",\n            \"company_name\": \"Brown Associates\",\n            \"phone\": \"444-444-4444\",\n            \"email\": \"e.brown@brown.net\",\n            \"label\": \"Brown Shipping\",\n            \"address_type\": \"default_shipping\",\n            \"shipping_address_type\": \"residential\",\n            \"physical_address\": {\n                \"street_line1\": \"123 Hill Valley Rd.\",\n                \"street_line2\": \"APT 1001\",\n                \"locality\": \"Hill Valley\",\n                \"region\": \"CA\",\n                \"postal_code\": \"95420\"\n            },\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/addresses/add_6CrGDw3RykiklPb82mNqCA\"\n            }\n        }\n    ],\n    \"paymethod\": {\n        \"paymethod_token\": \"mth_6WlsUkmMPk2xgvX5VbEpzQ\",\n        \"location_id\": \"loc_192642\",\n        \"label\": \"Visa - 1243\",\n        \"notes\": \"Business CC\",\n        \"card\": {\n            \"name_on_card\": \"Emmett L. Brown\",\n            \"last_4_account_number\": \"1111\",\n            \"masked_account_number\": \"****1111\",\n            \"expire_month\": 10,\n            \"expire_year\": 2030,\n            \"card_type\": \"visa\"\n        },\n        \"links\": {\n            \"transactions\": \"https://api.forte.net/v3/paymethods/mth_6WlsUkmMPk2xgvX5VbEpzQ/transactions\",\n            \"settlements\": \"https://api.forte.net/v3/paymethods/mth_6WlsUkmMPk2xgvX5VbEpzQ/settlements\",\n            \"schedules\": \"https://api.forte.net/v3/paymethods/mth_6WlsUkmMPk2xgvX5VbEpzQ/schedules\",\n            \"self\": \"https://api.forte.net/v3/paymethods/mth_6WlsUkmMPk2xgvX5VbEpzQ\"\n        }\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"addresses\": \"https://api.forte.net/v3/customers/cst_n2Gc5zaMAEu8g9A5wdtJGA/addresses\",\n        \"paymethods\": \"https://api.forte.net/v3/customers/cst_n2Gc5zaMAEu8g9A5wdtJGA/paymethods\",\n        \"transactions\": \"https://api.forte.net/v3/customers/cst_n2Gc5zaMAEu8g9A5wdtJGA/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/customers/cst_n2Gc5zaMAEu8g9A5wdtJGA/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/customers/cst_n2Gc5zaMAEu8g9A5wdtJGA/schedules\",\n        \"self\": \"https://api.forte.net/v3/customers/cst_n2Gc5zaMAEu8g9A5wdtJGA\"\n    }\n}"}],"_postman_id":"ab4dab82-32dd-4f79-97cf-0048654f75bc"},{"name":"Customer with Billing/Shipping Address and PayPal Payment Data","id":"b6e0af0e-f532-4284-8811-e2d879989d90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"first_name\": \"Emmett\",\r\n    \"last_name\": \"Brown\",\r\n    \"company_name\": \"Brown Associates\",\r\n    \"addresses\": [\r\n        {\r\n            \"label\": \"Brown Shipping\",\r\n            \"first_name\": \"Emmett\",\r\n            \"last_name\": \"Brown\",\r\n            \"company_name\": \"Brown Associates\",\r\n            \"phone\": \"444-444-4444\",\r\n            \"email\": \"e.brown@brown.net\",\r\n            \"shipping_address_type\": \"residential\",\r\n            \"address_type\": \"default_shipping\",\r\n            \"physical_address\": {\r\n                \"street_line1\": \"123 Hill Valley Rd.\",\r\n                \"street_line2\": \"APT 1001\",\r\n                \"locality\": \"Hill Valley\",\r\n                \"region\": \"CA\",\r\n                \"postal_code\": \"95420\"\r\n            }\r\n        },\r\n        {\r\n            \"label\": \"Brown Billing\",\r\n            \"first_name\": \"Emmett\",\r\n            \"last_name\": \"Brown\",\r\n            \"company_name\": \"Brown Associates\",\r\n            \"phone\": \"444-444-4444\",\r\n            \"email\": \"e.brown@forte.net\",\r\n            \"shipping_address_type\": \"commercial\",\r\n            \"address_type\": \"default_billing\",\r\n            \"physical_address\": {\r\n                \"street_line1\": \"500 Delorean Dr\",\r\n                \"street_line2\": \"Suite 200\",\r\n                \"locality\": \"Hill Valley\",\r\n                \"region\": \"CA\",\r\n                \"postal_code\": \"95420\"\r\n            }\r\n        }\r\n    ],\r\n    \"paymethod\": {\r\n        \"label\": \"PP-Card 1\",\r\n        \"notes\": \"Business PP CC\",\r\n        \"vendor\": {\r\n            \"vendor_type\": \"paypal\",\r\n            \"vendor_billing_agreement_token\": \"BA-6RR2783828950364P\"\r\n        }\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/","description":"<p>This endpoint creates a customer record with Billing/Shipping Addresses and a Payment Method while returning a new <code>customer_token.</code></p>\n<blockquote>\n<p><strong>NOTE</strong>: Include the <code>vendor</code> sub-object under <code>paymethod</code> object in the body of the request to create PayPal tokens.  </p>\n</blockquote>\n<p>Token-based transactions will use the default addresses. Token payments require you to set the customer's default shipping and billing addresses prior to passing the transaction data.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"6b9def51-10f8-4310-92d9-108ec3584246","name":"Customer with Billing/Shipping Address and PayPal Payment Data","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"X-Forte-Auth_Organization_Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"first_name\": \"Emmett\",\r\n    \"last_name\": \"Brown\",\r\n    \"company_name\": \"Brown Associates\",\r\n    \"addresses\": [\r\n        {\r\n            \"label\": \"Brown Shipping\",\r\n            \"first_name\": \"Emmett\",\r\n            \"last_name\": \"Brown\",\r\n            \"company_name\": \"Brown Associates\",\r\n            \"phone\": \"444-444-4444\",\r\n            \"email\": \"e.brown@brown.net\",\r\n            \"shipping_address_type\": \"residential\",\r\n            \"address_type\": \"default_shipping\",\r\n            \"physical_address\": {\r\n                \"street_line1\": \"123 Hill Valley Rd.\",\r\n                \"street_line2\": \"APT 1001\",\r\n                \"locality\": \"Hill Valley\",\r\n                \"region\": \"CA\",\r\n                \"postal_code\": \"95420\"\r\n            }\r\n        },\r\n        {\r\n            \"label\": \"Brown Billing\",\r\n            \"first_name\": \"Emmett\",\r\n            \"last_name\": \"Brown\",\r\n            \"company_name\": \"Brown Associates\",\r\n            \"phone\": \"444-444-4444\",\r\n            \"email\": \"e.brown@forte.net\",\r\n            \"shipping_address_type\": \"commercial\",\r\n            \"address_type\": \"default_billing\",\r\n            \"physical_address\": {\r\n                \"street_line1\": \"500 Delorean Dr\",\r\n                \"street_line2\": \"Suite 200\",\r\n                \"locality\": \"Hill Valley\",\r\n                \"region\": \"CA\",\r\n                \"postal_code\": \"95420\"\r\n            }\r\n        }\r\n    ],\r\n    \"paymethod\": {\r\n        \"label\": \"PP-Card 1\",\r\n        \"notes\": \"Business PP CC\",\r\n        \"vendor\": {\r\n            \"vendor_type\": \"paypal\",\r\n            \"vendor_billing_agreement_token\": \"BA-6RR2783828950364P\"\r\n        }\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"customer_token\": \"cst_WSvkG1Ta1kaY90rw-U4B5A\",\n    \"location_id\": \"loc_192642\",\n    \"default_paymethod_type\": \"paypal\",\n    \"default_paymethod_token\": \"mth_lERVytt-M0y1dzBDgoSAEQ\",\n    \"default_shipping_address_token\": \"add_ueWaR_7r30C1C6UgFK1gkQ\",\n    \"default_billing_address_token\": \"add_Hlf5ppOxOk6EyQwSFeTiJA\",\n    \"first_name\": \"Emmett\",\n    \"last_name\": \"Brown\",\n    \"company_name\": \"Brown Associates\",\n    \"display_name\": \"Brown Associates\",\n    \"addresses\": [\n        {\n            \"address_token\": \"add_Hlf5ppOxOk6EyQwSFeTiJA\",\n            \"location_id\": \"loc_192642\",\n            \"first_name\": \"Emmett\",\n            \"last_name\": \"Brown\",\n            \"company_name\": \"Brown Associates\",\n            \"phone\": \"444-444-4444\",\n            \"email\": \"e.brown@forte.net\",\n            \"label\": \"Brown Billing\",\n            \"address_type\": \"default_billing\",\n            \"shipping_address_type\": \"commercial\",\n            \"physical_address\": {\n                \"street_line1\": \"500 Delorean Dr\",\n                \"street_line2\": \"Suite 200\",\n                \"locality\": \"Hill Valley\",\n                \"region\": \"CA\",\n                \"postal_code\": \"95420\",\n                \"country\": \"US\"\n            },\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/addresses/add_Hlf5ppOxOk6EyQwSFeTiJA\"\n            }\n        },\n        {\n            \"address_token\": \"add_ueWaR_7r30C1C6UgFK1gkQ\",\n            \"location_id\": \"loc_192642\",\n            \"first_name\": \"Emmett\",\n            \"last_name\": \"Brown\",\n            \"company_name\": \"Brown Associates\",\n            \"phone\": \"444-444-4444\",\n            \"email\": \"e.brown@brown.net\",\n            \"label\": \"Brown Shipping\",\n            \"address_type\": \"default_shipping\",\n            \"shipping_address_type\": \"residential\",\n            \"physical_address\": {\n                \"street_line1\": \"123 Hill Valley Rd.\",\n                \"street_line2\": \"APT 1001\",\n                \"locality\": \"Hill Valley\",\n                \"region\": \"CA\",\n                \"postal_code\": \"95420\",\n                \"country\": \"US\"\n            },\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/addresses/add_ueWaR_7r30C1C6UgFK1gkQ\"\n            }\n        }\n    ],\n    \"paymethod\": {\n        \"paymethod_token\": \"mth_lERVytt-M0y1dzBDgoSAEQ\",\n        \"location_id\": \"loc_192642\",\n        \"label\": \"PP-Card 1\",\n        \"notes\": \"Business PP CC\",\n        \"vendor\": {\n            \"vendor_type\": \"paypal\",\n            \"vendor_billing_agreement_token\": \"BA-6RR2783828950364P\",\n            \"vendor_billing_agreement_id\": \"B-7H989178H5887753B\"\n        },\n        \"links\": {\n            \"transactions\": \"https://api.forte.net/v3/paymethods/mth_lERVytt-M0y1dzBDgoSAEQ/transactions\",\n            \"settlements\": \"https://api.forte.net/v3/paymethods/mth_lERVytt-M0y1dzBDgoSAEQ/settlements\",\n            \"schedules\": \"https://api.forte.net/v3/paymethods/mth_lERVytt-M0y1dzBDgoSAEQ/schedules\",\n            \"self\": \"https://api.forte.net/v3/paymethods/mth_lERVytt-M0y1dzBDgoSAEQ/\"\n        }\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"addresses\": \"https://api.forte.net/v3/customers/cst_WSvkG1Ta1kaY90rw-U4B5A/addresses\",\n        \"paymethods\": \"https://api.forte.net/v3/customers/cst_WSvkG1Ta1kaY90rw-U4B5A/paymethods\",\n        \"transactions\": \"https://api.forte.net/v3/customers/cst_WSvkG1Ta1kaY90rw-U4B5A/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/customers/cst_WSvkG1Ta1kaY90rw-U4B5A/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/customers/cst_WSvkG1Ta1kaY90rw-U4B5A/schedules\",\n        \"self\": \"https://api.forte.net/v3/customers/cst_WSvkG1Ta1kaY90rw-U4B5A/\"\n    }\n}"}],"_postman_id":"b6e0af0e-f532-4284-8811-e2d879989d90"},{"name":"All Customers for an Organization","id":"a533c8f0-06bf-4e62-9dfb-0a25b1f26dd9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/customers/","description":"<p>This URI returns all the customers for an Organization. To narrow your search data using specific criteria, use the following parameters to filter your results:</p>\n<ul><li><p>location_id</p></li><li><p>status</p></li><li><p>first_name</p></li><li><p>last_name</p></li><li><p>company_name</p></li><li><p>customer_id</p></li></ul>\n\n<p><strong>Note:</strong> Please note that sending a request at the partner (org) level may result in a large data set and may cause timeout errors depending on the request. We recommend sending your GET request at the Merchant (Organization) level.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","customers",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"73c88b66-b263-421c-9436-0c8a76e2370c","name":"Find All Customers for an Organization","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseURI}}/organizations/org_{{organizationID}}/customers/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-encoding","value":"gzip","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Mon, 04 Dec 2017 22:38:36 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"4-209571950-209636223 NNNN CT(32 71 0) RT(1512426767905 347282) q(0 0 1 -1) r(7 7) U16","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 3,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_334316\",\n        \"resource_specific\": {}\n    },\n    \"results\": [\n        {\n            \"customer_token\": \"cst_AKnhLS9RM06ZyCLej9Fq5g\",\n            \"organization_id\": \"org_334316\",\n            \"status\": \"active\",\n            \"first_name\": \"Marty\",\n            \"last_name\": \"McFly\",\n            \"display_name\": \"Marty McFly\",\n            \"created_date\": \"2017-05-02T14:15:10.803\",\n            \"updated_date\": \"2017-05-02T14:15:10.803\",\n            \"links\": {\n                \"addresses\": \"https://api.forte.net/v3/customers/cst_AKnhLS9RM06ZyCLej9Fq5g/addresses\",\n                \"paymethods\": \"https://api.forte.net/v3/customers/cst_AKnhLS9RM06ZyCLej9Fq5g/paymethods\",\n                \"transactions\": \"https://api.forte.net/v3/customers/cst_AKnhLS9RM06ZyCLej9Fq5g/transactions\",\n                \"settlements\": \"https://api.forte.net/v3/customers/cst_AKnhLS9RM06ZyCLej9Fq5g/settlements\",\n                \"schedules\": \"https://api.forte.net/v3/customers/cst_AKnhLS9RM06ZyCLej9Fq5g/schedules\",\n                \"self\": \"https://api.forte.net/v3/customers/cst_AKnhLS9RM06ZyCLej9Fq5g\"\n            }\n        },\n        {\n            \"customer_token\": \"cst_5bspA0ymlkC4V9_zIWGm4w\",\n            \"organization_id\": \"org_334316\",\n            \"status\": \"active\",\n            \"first_name\": \"Emmett\",\n            \"last_name\": \"Brown\",\n            \"display_name\": \"Dr. Emmett Brown\",\n            \"created_date\": \"2017-05-02T15:14:55.353\",\n            \"updated_date\": \"2017-05-02T15:14:55.353\",\n            \"links\": {\n                \"addresses\": \"https://api.forte.net/v3/customers/cst_5bspA0ymlkC4V9_zIWGm4w/addresses\",\n                \"paymethods\": \"https://api.forte.net/v3/customers/cst_5bspA0ymlkC4V9_zIWGm4w/paymethods\",\n                \"transactions\": \"https://api.forte.net/v3/customers/cst_5bspA0ymlkC4V9_zIWGm4w/transactions\",\n                \"settlements\": \"https://api.forte.net/v3/customers/cst_5bspA0ymlkC4V9_zIWGm4w/settlements\",\n                \"schedules\": \"https://api.forte.net/v3/customers/cst_5bspA0ymlkC4V9_zIWGm4w/schedules\",\n                \"self\": \"https://api.forte.net/v3/customers/cst_5bspA0ymlkC4V9_zIWGm4w\"\n            }\n        },\n        {\n            \"customer_token\": \"cst_ceTdKvuEKEmFr7nMxaNeug\",\n            \"organization_id\": \"org_334316\",\n            \"status\": \"active\",\n            \"first_name\": \"Jennifer\",\n            \"last_name\": \"McFly\",\n            \"display_name\": \"Jenn McFly\",\n            \"created_date\": \"2017-05-02T15:26:40.487\",\n            \"updated_date\": \"2017-05-02T15:26:40.487\",\n            \"links\": {\n                \"addresses\": \"https://api.forte.net/v3/customers/cst_ceTdKvuEKEmFr7nMxaNeug/addresses\",\n                \"paymethods\": \"https://api.forte.net/v3/customers/cst_ceTdKvuEKEmFr7nMxaNeug/paymethods\",\n                \"transactions\": \"https://api.forte.net/v3/customers/cst_ceTdKvuEKEmFr7nMxaNeug/transactions\",\n                \"settlements\": \"https://api.forte.net/v3/customers/cst_ceTdKvuEKEmFr7nMxaNeug/settlements\",\n                \"schedules\": \"https://api.forte.net/v3/customers/cst_ceTdKvuEKEmFr7nMxaNeug/schedules\",\n                \"self\": \"https://api.forte.net/v3/customers/cst_ceTdKvuEKEmFr7nMxaNeug\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/customers/\",\n        \"next\": \"https://api.forte.net/v3/customers/?page_index=1\"\n    }\n}"}],"_postman_id":"a533c8f0-06bf-4e62-9dfb-0a25b1f26dd9"},{"name":"All Customers for a Location","id":"d26c988a-b488-4242-a72c-83ed6f720851","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers","description":"<p>This URI returns all the customers for a location. To narrow your search data using specific criteria, use the following parameters to filter your results:</p>\n<ul>\n<li> status</li>\n<li> first_name</li>\n<li> last_name</li>\n<li> company_name</li>\n<li> customer_id</li>\n</ul>","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"b7c8d0d5-bf60-48b4-b02b-eb3e95f50913","name":"All Customers for a Location","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseURI}}/org_{{organization}}/locations/loc_{{location}}/customers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"95625","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 17:02:27 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"number_results\": 2,\r\n  \"search_criteria\": {\r\n    \"page_size\": 50,\r\n    \"page_index\": 0,\r\n    \"home_organization_id\": \"org_334316\",\r\n    \"resource_specific\": {\r\n      \"location_id\": \"loc_192642\"\r\n    }\r\n  },\r\n  \"results\": [\r\n    {\r\n      \"customer_token\": \"cst_MvlOPZxkPU66y-6777eEvg\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"default_paymethod_type\": \"visa\",\r\n      \"default_paymethod_token\": \"mth_mE5QbOwfbUm47DudO5S0lA\",\r\n      \"status\": \"active\",\r\n      \"first_name\": \"Biff\",\r\n      \"last_name\": \"Tannen\",\r\n      \"company_name\": \"468845.9855421111\",\r\n      \"display_name\": \"468845.9855421111\",\r\n      \"created_date\": \"2017-09-05T02:22:52.05\",\r\n      \"updated_date\": \"2017-09-05T02:22:52.147\",\r\n      \"paymethod\": {\r\n        \"paymethod_token\": \"mth_mE5QbOwfbUm47DudO5S0lA\",\r\n        \"organization_id\": \"org_334316\",\r\n        \"location_id\": \"loc_192642\",\r\n        \"customer_token\": \"cst_MvlOPZxkPU66y-6777eEvg\",\r\n        \"label\": \"VISA Credit Card - 1111\",\r\n        \"card\": {\r\n          \"name_on_card\": \"Biff Tannen\",\r\n          \"last_4_account_number\": \"1111\",\r\n          \"masked_account_number\": \"****1111\",\r\n          \"expire_month\": 12,\r\n          \"expire_year\": 2017,\r\n          \"procurement_card\": false,\r\n          \"card_type\": \"visa\",\r\n          \"suppress_account_updater\": false\r\n        },\r\n        \"links\": {\r\n          \"transactions\": \"https://api.forte.net/v3/paymethods/mth_mE5QbOwfbUm47DudO5S0lA/transactions\",\r\n          \"settlements\": \"https://api.forte.net/v3/paymethods/mth_mE5QbOwfbUm47DudO5S0lA/settlements\",\r\n          \"schedules\": \"https://api.forte.net/v3/paymethods/mth_mE5QbOwfbUm47DudO5S0lA/schedules\",\r\n          \"self\": \"https://api.forte.net/v3/paymethods/mth_mE5QbOwfbUm47DudO5S0lA\"\r\n        }\r\n      },\r\n      \"links\": {\r\n        \"addresses\": \"https://api.forte.net/v3/customers/cst_MvlOPZxkPU66y-6777eEvg/addresses\",\r\n        \"paymethods\": \"https://api.forte.net/v3/customers/cst_MvlOPZxkPU66y-6777eEvg/paymethods\",\r\n        \"transactions\": \"https://api.forte.net/v3/customers/cst_MvlOPZxkPU66y-6777eEvg/transactions\",\r\n        \"settlements\": \"https://api.forte.net/v3/customers/cst_MvlOPZxkPU66y-6777eEvg/settlements\",\r\n        \"schedules\": \"https://api.forte.net/v3/customers/cst_MvlOPZxkPU66y-6777eEvg/schedules\",\r\n        \"self\": \"https://api.forte.net/v3/customers/cst_MvlOPZxkPU66y-6777eEvg\"\r\n      }\r\n    },\r\n    {\r\n      \"customer_token\": \"cst_mVLtLD2KSESuQml6A7rOhA\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"default_paymethod_type\": \"visa\",\r\n      \"default_paymethod_token\": \"mth_dq5wWyc5FkGE8-MZIosXPg\",\r\n      \"status\": \"active\",\r\n      \"first_name\": \"Marty\",\r\n      \"last_name\": \"McFly\",\r\n      \"display_name\": \"Martin McFly\",\r\n      \"created_date\": \"2017-08-25T17:23:06.23\",\r\n      \"updated_date\": \"2017-08-25T17:23:06.327\",\r\n      \"paymethod\": {\r\n        \"paymethod_token\": \"mth_dq5wWyc5FkGE8-MZIosXPg\",\r\n        \"organization_id\": \"org_334316\",\r\n        \"location_id\": \"loc_192642\",\r\n        \"customer_token\": \"cst_mVLtLD2KSESuQml6A7rOhA\",\r\n        \"label\": \"VISA Credit Card - 1111\",\r\n        \"card\": {\r\n          \"name_on_card\": \"Marty McFly\",\r\n          \"last_4_account_number\": \"1111\",\r\n          \"masked_account_number\": \"****1111\",\r\n          \"expire_month\": 12,\r\n          \"expire_year\": 2017,\r\n          \"procurement_card\": false,\r\n          \"card_type\": \"visa\",\r\n          \"suppress_account_updater\": false\r\n        },\r\n        \"links\": {\r\n          \"transactions\": \"https://api.forte.net/v3/paymethods/mth_dq5wWyc5FkGE8-MZIosXPg/transactions\",\r\n          \"settlements\": \"https://api.forte.net/v3/paymethods/mth_dq5wWyc5FkGE8-MZIosXPg/settlements\",\r\n          \"schedules\": \"https://api.forte.net/v3/paymethods/mth_dq5wWyc5FkGE8-MZIosXPg/schedules\",\r\n          \"self\": \"https://api.forte.net/v3/paymethods/mth_dq5wWyc5FkGE8-MZIosXPg\"\r\n        }\r\n      },\r\n      \"links\": {\r\n        \"addresses\": \"https://api.forte.net/v3/customers/cst_mVLtLD2KSESuQml6A7rOhA/addresses\",\r\n        \"paymethods\": \"https://api.forte.net/v3/customers/cst_mVLtLD2KSESuQml6A7rOhA/paymethods\",\r\n        \"transactions\": \"https://api.forte.net/v3/customers/cst_mVLtLD2KSESuQml6A7rOhA/transactions\",\r\n        \"settlements\": \"https://api.forte.net/v3/customers/cst_mVLtLD2KSESuQml6A7rOhA/settlements\",\r\n        \"schedules\": \"https://api.forte.net/v3/customers/cst_mVLtLD2KSESuQml6A7rOhA/schedules\",\r\n        \"self\": \"https://api.forte.net/v3/customers/cst_mVLtLD2KSESuQml6A7rOhA\"\r\n      }\r\n    }\r\n  ],\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_desc\": \"Get Successful.\"\r\n  },\r\n  \"links\": {\r\n    \"self\": \"https://api.forte.net/v3/customers/\",\r\n    \"next\": \"https://api.forte.net/v3/customers/?page_index=1\"\r\n  }\r\n}"}],"_postman_id":"d26c988a-b488-4242-a72c-83ed6f720851"},{"name":"A Customer by ID","id":"d29c3e84-43ec-46ba-88d4-9b22e7438315","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}","description":"<p>This endpoint returns all the default information for a specific customer based on the <code>customer_token</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"f4cf7e7c-4096-42a8-84f0-bd396e1be0c6","name":"A Customer by ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseURI}}/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"137","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 17:07:36 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true},{"key":"WWW-Authenticate","value":"Basic realm=\"api-live-testlan.4ta.com\"","description":"Indicates the authentication scheme that should be used to access the requested entity.","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"customer_token\": \"cst__hbpJNFPhUK8MGmTynKuAQ\",\r\n  \"organization_id\": \"org_334316\",\r\n  \"location_id\": \"loc_192642\",\r\n  \"default_paymethod_type\": \"visa\",\r\n  \"default_paymethod_token\": \"mth_j4VdXyU0-kmMjAVf-leTdA\",\r\n  \"default_shipping_address_token\": \"add_M9AzCIEM1ECmmiM5M7Eo8A\",\r\n  \"default_billing_address_token\": \"add_fkWcRA-EXECdFqeY0yXNLw\",\r\n  \"status\": \"active\",\r\n  \"first_name\": \"Jennifer\",\r\n  \"last_name\": \"McFly\",\r\n  \"company_name\": \"Brown Associates\",\r\n  \"display_name\": \"Brown Associates\",\r\n  \"addresses\": [\r\n    {\r\n      \"address_token\": \"add_fkWcRA-EXECdFqeY0yXNLw\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst__hbpJNFPhUK8MGmTynKuAQ\",\r\n      \"first_name\": \"Emmett\",\r\n      \"last_name\": \"Brown\",\r\n      \"company_name\": \"Brown Associates\",\r\n      \"phone\": \"444-444-4444\",\r\n      \"email\": \"e.brown@forte.net\",\r\n      \"label\": \"Brown Billing\",\r\n      \"address_type\": \"default_billing\",\r\n      \"shipping_address_type\": \"commercial\",\r\n      \"physical_address\": {\r\n        \"street_line1\": \"500 Delorean Dr\",\r\n        \"street_line2\": \"Suite 200\",\r\n        \"locality\": \"Hill Valley\",\r\n        \"region\": \"CA\",\r\n        \"postal_code\": \"95420\"\r\n      },\r\n      \"links\": {\r\n        \"self\": \"https://api.forte.net/v3/addresses/add_fkWcRA-EXECdFqeY0yXNLw\"\r\n      }\r\n    },\r\n    {\r\n      \"address_token\": \"add_M9AzCIEM1ECmmiM5M7Eo8A\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst__hbpJNFPhUK8MGmTynKuAQ\",\r\n      \"first_name\": \"Emmett\",\r\n      \"last_name\": \"Brown\",\r\n      \"company_name\": \"Brown Associates\",\r\n      \"phone\": \"444-444-4444\",\r\n      \"email\": \"e.brown@brown.net\",\r\n      \"label\": \"Brown Shipping\",\r\n      \"address_type\": \"default_shipping\",\r\n      \"shipping_address_type\": \"residential\",\r\n      \"physical_address\": {\r\n        \"street_line1\": \"123 Hill Valley Rd.\",\r\n        \"street_line2\": \"APT 1001\",\r\n        \"locality\": \"Hill Valley\",\r\n        \"region\": \"CA\",\r\n        \"postal_code\": \"95420\"\r\n      },\r\n      \"links\": {\r\n        \"self\": \"https://api.forte.net/v3/addresses/add_M9AzCIEM1ECmmiM5M7Eo8A\"\r\n      }\r\n    }\r\n  ],\r\n  \"paymethod\": {\r\n    \"paymethod_token\": \"mth_j4VdXyU0-kmMjAVf-leTdA\",\r\n    \"organization_id\": \"org_334316\",\r\n    \"location_id\": \"loc_192642\",\r\n    \"customer_token\": \"cst__hbpJNFPhUK8MGmTynKuAQ\",\r\n    \"customer_id\": \"\",\r\n    \"label\": \"Visa - 1243\",\r\n    \"notes\": \"Business CC\",\r\n    \"card\": {\r\n      \"name_on_card\": \"Emmett L. Brown\",\r\n      \"last_4_account_number\": \"1111\",\r\n      \"masked_account_number\": \"****1111\",\r\n      \"expire_month\": 10,\r\n      \"expire_year\": 2020,\r\n      \"procurement_card\": false,\r\n      \"card_type\": \"visa\",\r\n      \"suppress_account_updater\": false\r\n    },\r\n    \"links\": {\r\n      \"transactions\": \"https://api.forte.net/v3/paymethods/mth_j4VdXyU0-kmMjAVf-leTdA/transactions\",\r\n      \"settlements\": \"https://api.forte.net/v3/paymethods/mth_j4VdXyU0-kmMjAVf-leTdA/settlements\",\r\n      \"schedules\": \"https://api.forte.net/v3/paymethods/mth_j4VdXyU0-kmMjAVf-leTdA/schedules\",\r\n      \"self\": \"https://api.forte.net/v3/paymethods/mth_j4VdXyU0-kmMjAVf-leTdA\"\r\n    }\r\n  },\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_desc\": \"Get Successful.\"\r\n  },\r\n  \"links\": {\r\n    \"addresses\": \"https://api.forte.net/v3/customers/cst__hbpJNFPhUK8MGmTynKuAQ/addresses\",\r\n    \"paymethods\": \"https://api.forte.net/v3/customers/cst__hbpJNFPhUK8MGmTynKuAQ/paymethods\",\r\n    \"transactions\": \"https://api.forte.net/v3/customers/cst__hbpJNFPhUK8MGmTynKuAQ/transactions\",\r\n    \"settlements\": \"https://api.forte.net/v3/customers/cst__hbpJNFPhUK8MGmTynKuAQ/settlements\",\r\n    \"schedules\": \"https://api.forte.net/v3/customers/cst__hbpJNFPhUK8MGmTynKuAQ/schedules\",\r\n    \"self\": \"https://api.forte.net/v3/customers/cst__hbpJNFPhUK8MGmTynKuAQ\"\r\n  }\r\n}"}],"_postman_id":"d29c3e84-43ec-46ba-88d4-9b22e7438315"},{"name":"Customers by Search Filter","id":"4314fe85-d93f-4fb2-b534-f8dcd4a0abf4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/customers/?filter=last_name eq McFly","description":"<p>This URI returns all the customers for an Organization by search criteria provided within the route. To narrow your search data using specific criteria, use the following parameters to filter your results:</p>\n<ul><li><p>location_id</p></li><li><p>status</p></li><li><p>first_name</p></li><li><p>last_name</p></li><li><p>company_name</p></li><li><p>customer_id</p></li></ul>\n\n<p><strong>Note:</strong> Please note that sending a request at the partner (org) level may result in a large data set and may cause timeout errors depending on the request. We recommend sending your GET request at the Merchant (Organization) level.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","customers",""],"host":["{{baseURI}}"],"query":[{"key":"filter","value":"last_name eq McFly"}],"variable":[]}},"response":[{"id":"962804f7-107c-4191-87a5-7befb090e785","name":"Find Customers by Search Filter","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{baseURI}}/organizations/org_{{organizationID}}/customers/?filter=last_name eq McFly","host":["{{baseURI}}"],"path":["organizations","org_{{organizationID}}","customers",""],"query":[{"key":"filter","value":"last_name eq McFly"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Mon, 23 Oct 2017 17:17:12 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"8-89394077-89446302 NNNN CT(41 37 0) RT(1508778775769 256377) q(0 0 1 -1) r(2 2) U16","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 2,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_334316\",\n        \"resource_specific\": {\n            \"last_name\": \"McFly\"\n        }\n    },\n    \"results\": [\n        {\n            \"customer_token\": \"cst__hbpJNFPhUK8MGmTynKuAQ\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"default_paymethod_type\": \"visa\",\n            \"default_paymethod_token\": \"mth_j4VdXyU0-kmMjAVf-leTdA\",\n            \"default_shipping_address_token\": \"add_M9AzCIEM1ECmmiM5M7Eo8A\",\n            \"default_billing_address_token\": \"add_fkWcRA-EXECdFqeY0yXNLw\",\n            \"status\": \"active\",\n            \"first_name\": \"Jennifer\",\n            \"last_name\": \"McFly\",\n            \"company_name\": \"Brown Associates\",\n            \"display_name\": \"Brown Associates\",\n            \"addresses\": [\n                {\n                    \"address_token\": \"add_fkWcRA-EXECdFqeY0yXNLw\",\n                    \"organization_id\": \"org_334316\",\n                    \"location_id\": \"loc_192642\",\n                    \"customer_token\": \"cst__hbpJNFPhUK8MGmTynKuAQ\",\n                    \"first_name\": \"Emmett\",\n                    \"last_name\": \"Brown\",\n                    \"company_name\": \"Brown Associates\",\n                    \"phone\": \"444-444-4444\",\n                    \"email\": \"e.brown@forte.net\",\n                    \"label\": \"Brown Billing\",\n                    \"address_type\": \"default_billing\",\n                    \"shipping_address_type\": \"commercial\",\n                    \"physical_address\": {\n                        \"street_line1\": \"500 Delorean Dr\",\n                        \"street_line2\": \"Suite 200\",\n                        \"locality\": \"Hill Valley\",\n                        \"region\": \"CA\",\n                        \"postal_code\": \"95420\"\n                    },\n                    \"links\": {\n                        \"self\": \"https://api.forte.net/v3/addresses/add_fkWcRA-EXECdFqeY0yXNLw\"\n                    }\n                }\n            ],\n            \"paymethod\": {\n                \"paymethod_token\": \"mth_j4VdXyU0-kmMjAVf-leTdA\",\n                \"organization_id\": \"org_334316\",\n                \"location_id\": \"loc_192642\",\n                \"customer_token\": \"cst__hbpJNFPhUK8MGmTynKuAQ\",\n                \"label\": \"Visa - 1243\",\n                \"notes\": \"Business CC\",\n                \"card\": {\n                    \"name_on_card\": \"Emmett L. Brown\",\n                    \"last_4_account_number\": \"1111\",\n                    \"masked_account_number\": \"****1111\",\n                    \"expire_month\": 10,\n                    \"expire_year\": 2020,\n                    \"procurement_card\": false,\n                    \"card_type\": \"visa\",\n                    \"suppress_account_updater\": false\n                },\n                \"links\": {\n                    \"transactions\": \"https://api.forte.net/v3/paymethods/mth_j4VdXyU0-kmMjAVf-leTdA/transactions\",\n                    \"settlements\": \"https://api.forte.net/v3/paymethods/mth_j4VdXyU0-kmMjAVf-leTdA/settlements\",\n                    \"schedules\": \"https://api.forte.net/v3/paymethods/mth_j4VdXyU0-kmMjAVf-leTdA/schedules\",\n                    \"self\": \"https://api.forte.net/v3/paymethods/mth_j4VdXyU0-kmMjAVf-leTdA\"\n                }\n            },\n            \"links\": {\n                \"addresses\": \"https://api.forte.net/v3/customers/cst__hbpJNFPhUK8MGmTynKuAQ/addresses\",\n                \"paymethods\": \"https://api.forte.net/v3/customers/cst__hbpJNFPhUK8MGmTynKuAQ/paymethods\",\n                \"transactions\": \"https://api.forte.net/v3/customers/cst__hbpJNFPhUK8MGmTynKuAQ/transactions\",\n                \"settlements\": \"https://api.forte.net/v3/customers/cst__hbpJNFPhUK8MGmTynKuAQ/settlements\",\n                \"schedules\": \"https://api.forte.net/v3/customers/cst__hbpJNFPhUK8MGmTynKuAQ/schedules\",\n                \"self\": \"https://api.forte.net/v3/customers/cst__hbpJNFPhUK8MGmTynKuAQ\"\n            }\n        },\n        {\n            \"customer_token\": \"cst_h3uHz2OIKUKQQMHgrSzHZg\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"default_paymethod_type\": \"visa\",\n            \"default_paymethod_token\": \"mth_QVFB1RzwDUe9A2kOFAI6UQ\",\n            \"default_shipping_address_token\": \"add_PZlDG3i-lUCu7eC69J7GDQ\",\n            \"default_billing_address_token\": \"add_7JNkcj4ye02sJJVCdJcbRQ\",\n            \"status\": \"active\",\n            \"first_name\": \"Marty\",\n            \"last_name\": \"McFly\",\n            \"company_name\": \"Brown Associates\",\n            \"display_name\": \"Brown Associates\",\n            \"addresses\": [\n                {\n                    \"address_token\": \"add_7JNkcj4ye02sJJVCdJcbRQ\",\n                    \"organization_id\": \"org_334316\",\n                    \"location_id\": \"loc_192642\",\n                    \"customer_token\": \"cst_h3uHz2OIKUKQQMHgrSzHZg\",\n                    \"first_name\": \"Emmett\",\n                    \"last_name\": \"Brown\",\n                    \"company_name\": \"Brown Associates\",\n                    \"phone\": \"444-444-4444\",\n                    \"email\": \"e.brown@forte.net\",\n                    \"label\": \"Brown Billing\",\n                    \"address_type\": \"default_billing\",\n                    \"shipping_address_type\": \"commercial\",\n                    \"physical_address\": {\n                        \"street_line1\": \"500 Delorean Dr\",\n                        \"street_line2\": \"Suite 200\",\n                        \"locality\": \"Hill Valley\",\n                        \"region\": \"CA\",\n                        \"postal_code\": \"95420\"\n                    },\n                    \"links\": {\n                        \"self\": \"https://api.forte.net/v3/addresses/add_7JNkcj4ye02sJJVCdJcbRQ\"\n                    }\n                }\n            ],\n            \"paymethod\": {\n                \"paymethod_token\": \"mth_QVFB1RzwDUe9A2kOFAI6UQ\",\n                \"organization_id\": \"org_334316\",\n                \"location_id\": \"loc_192642\",\n                \"customer_token\": \"cst_h3uHz2OIKUKQQMHgrSzHZg\",\n                \"label\": \"Visa - 1243\",\n                \"notes\": \"Business CC\",\n                \"card\": {\n                    \"name_on_card\": \"Emmett L. Brown\",\n                    \"last_4_account_number\": \"1111\",\n                    \"masked_account_number\": \"****1111\",\n                    \"expire_month\": 10,\n                    \"expire_year\": 2020,\n                    \"procurement_card\": false,\n                    \"card_type\": \"visa\",\n                    \"suppress_account_updater\": false\n                },\n                \"links\": {\n                    \"transactions\": \"https://api.forte.net/v3/paymethods/mth_QVFB1RzwDUe9A2kOFAI6UQ/transactions\",\n                    \"settlements\": \"https://api.forte.net/v3/paymethods/mth_QVFB1RzwDUe9A2kOFAI6UQ/settlements\",\n                    \"schedules\": \"https://api.forte.net/v3/paymethods/mth_QVFB1RzwDUe9A2kOFAI6UQ/schedules\",\n                    \"self\": \"https://api.forte.net/v3/paymethods/mth_QVFB1RzwDUe9A2kOFAI6UQ\"\n                }\n            },\n            \"links\": {\n                \"addresses\": \"https://api.forte.net/v3/customers/cst_h3uHz2OIKUKQQMHgrSzHZg/addresses\",\n                \"paymethods\": \"https://api.forte.net/v3/customers/cst_h3uHz2OIKUKQQMHgrSzHZg/paymethods\",\n                \"transactions\": \"https://api.forte.net/v3/customers/cst_h3uHz2OIKUKQQMHgrSzHZg/transactions\",\n                \"settlements\": \"https://api.forte.net/v3/customers/cst_h3uHz2OIKUKQQMHgrSzHZg/settlements\",\n                \"schedules\": \"https://api.forte.net/v3/customers/cst_h3uHz2OIKUKQQMHgrSzHZg/schedules\",\n                \"self\": \"https://api.forte.net/v3/customers/cst_h3uHz2OIKUKQQMHgrSzHZg\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/customers/?filter=last_name+eq+McFly\"\n    }\n}"}],"_postman_id":"4314fe85-d93f-4fb2-b534-f8dcd4a0abf4"},{"name":"Update a Customer (Simple)","id":"2bdb7455-0533-472c-a853-bd29831fae82","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n       \"first_name\": \"Dr. Emmett\",\r\n       \"last_name\": \"Brown\",\r\n       \"customer_id\": \"456778\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"status\": \"active\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}","description":"<p>This URI can perform the following tasks while returning the <code>customer_token</code>: </p><ul><li> Change a customer's status</li><li> Change the default billing and/or shipping address</li><li> Change the customer's default paymethod</li></ul>\n<strong>NOTE</strong>: This endpoint cannot update a customer's addresses or paymethods. To update that data, you must use the <code>addresses</code> and <code>paymethods</code> resources.<p></p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"145b8e32-80e6-45de-ad99-d8ff4e43ddb5","name":"Update a Customer (Simple)","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"first_name\": \"Dr. Emmett\",\r\n       \"last_name\": \"Brown\",\r\n       \"customer_id\": \"456778\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"status\": \"active\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"874","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 17:00:45 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"10-4938341-4938347 NNNN CT(61 90 0) RT(1508864445151 35) q(0 0 2 -1) r(3 3) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"customer_token\": \"cst_-mFhHBHVdkqwmQ4V27x-Xg\",\n    \"location_id\": \"loc_192642\",\n    \"status\": \"active\",\n    \"first_name\": \"Dr. Emmett\",\n    \"last_name\": \"Brown\",\n    \"company_name\": \"Brown Associates\",\n    \"display_name\": \"Brown Associates\",\n    \"customer_id\": \"456778\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"addresses\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg/addresses\",\n        \"paymethods\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg/paymethods\",\n        \"transactions\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg/schedules\",\n        \"self\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg\"\n    }\n}"}],"_postman_id":"2bdb7455-0533-472c-a853-bd29831fae82"},{"name":"Update a Customer (Alternate URI)","id":"38e36aad-a1d7-473b-9b8f-3142f666dd6c","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n       \"first_name\": \"Dr. Emmett\",\r\n       \"last_name\": \"Brown\",\r\n       \"customer_id\": \"456778\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"status\": \"active\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/customers/cst_{{customertoken}}","description":"<p>This URI can perform the following tasks while returning the <code>customer_token</code>. <strong>NOTE</strong>: This <code>customer_token</code> is an organization-level token, meaning it can be used across locations of this organization. </p><ul><li> Change a customer's status</li><li> Change the default billing and/or shipping address</li><li> Change the customer's default paymethod</li></ul>\n<strong>NOTE</strong>: This endpoint cannot update a customer's addresses or paymethods. To update that data, you must use the address and paymethod resources.<p></p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","customers","cst_{{customertoken}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"f489e25c-fdcf-45a4-b4c6-753470c63e21","name":"Update a Customer (Alternate URI)","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"first_name\": \"Dr. Emmett\",\r\n       \"last_name\": \"Brown\",\r\n       \"customer_id\": \"456778\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"status\": \"active\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/customers/cst_{{customertoken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"874","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 16:42:31 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"6-3008120-3008141 NNNN CT(38 92 0) RT(1508863350577 90) q(0 0 1 0) r(3 3) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"customer_token\": \"cst_-mFhHBHVdkqwmQ4V27x-Xg\",\n    \"location_id\": \"loc_192642\",\n    \"status\": \"active\",\n    \"first_name\": \"Dr. Emmett\",\n    \"last_name\": \"Brown\",\n    \"company_name\": \"Brown Associates\",\n    \"display_name\": \"Brown Associates\",\n    \"customer_id\": \"456778\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"addresses\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg/addresses\",\n        \"paymethods\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg/paymethods\",\n        \"transactions\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg/schedules\",\n        \"self\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg\"\n    }\n}"}],"_postman_id":"38e36aad-a1d7-473b-9b8f-3142f666dd6c"},{"name":"Update a Customer ","id":"3507708b-bbfb-4486-9541-a0f76badd894","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n       \"default_shipping_address_token\": \"add_58XkUwLqsUKDPtuYDARE0Q\",\r\n       \"default_billing_address_token\": \"add_58XkUwLqsUKDPtuYDARE0Q\",\r\n       \"default_paymethod_token\": \"mth_LsLlOtcf9EGnzl-Lwj_Tog\",\r\n       \"first_name\": \"Martin\",\r\n       \"last_name\": \"McFly\",\r\n       \"customer_id\": \"456123\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"status\": \"active\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}","description":"<p>This URI can perform the following tasks while returning the <code>customer_token</code>: </p><ul><li> Change a customer's status</li><li> Change the default billing and/or shipping address</li><li> Change the customer's default paymethod</li></ul>\n<strong>NOTE</strong>: This endpoint cannot update a customer's addresses or paymethods. To update that data, you must use the address and paymethod resources.<p></p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"b049d41a-48dd-4a3e-8de4-e2016eec6f61","name":"Update a Customer ","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"default_shipping_address_token\": \"add_58XkUwLqsUKDPtuYDARE0Q\",\r\n       \"default_billing_address_token\": \"add_58XkUwLqsUKDPtuYDARE0Q\",\r\n       \"default_paymethod_token\": \"mth_LsLlOtcf9EGnzl-Lwj_Tog\",\r\n       \"first_name\": \"Martin\",\r\n       \"last_name\": \"McFly\",\r\n       \"customer_id\": \"456123\",\r\n       \"company_name\": \"Brown Associates\",\r\n       \"status\": \"active\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"1048","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 16:51:22 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"8-4251356-4291803 NNNN CT(34 36 0) RT(1508863676918 205329) q(0 0 1 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"customer_token\": \"cst_-mFhHBHVdkqwmQ4V27x-Xg\",\n    \"location_id\": \"loc_192642\",\n    \"default_paymethod_token\": \"mth_LsLlOtcf9EGnzl-Lwj_Tog\",\n    \"default_shipping_address_token\": \"add_58XkUwLqsUKDPtuYDARE0Q\",\n    \"default_billing_address_token\": \"add_58XkUwLqsUKDPtuYDARE0Q\",\n    \"status\": \"active\",\n    \"first_name\": \"Martin\",\n    \"last_name\": \"McFly\",\n    \"company_name\": \"Brown Associates\",\n    \"display_name\": \"Brown Associates\",\n    \"customer_id\": \"456123\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"addresses\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg/addresses\",\n        \"paymethods\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg/paymethods\",\n        \"transactions\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg/schedules\",\n        \"self\": \"https://api.forte.net/v3/customers/cst_-mFhHBHVdkqwmQ4V27x-Xg\"\n    }\n}"}],"_postman_id":"3507708b-bbfb-4486-9541-a0f76badd894"},{"name":"Update a Customer with a Paymethod","id":"cb643a9d-620c-42c9-b2b2-ecb3bcf4d622","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\"paymethod_token\": \"mth_5VywQ8J1DEahKDLWDyvKpA\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/paymethods","description":"<p>This URI can associate an existing, clientless <code>paymethod_token</code> with a customer record. For more information on clientless paymethods, see the <a href=\"https://restdocs.forte.net/#bd1b083c-0c8c-46d7-b59a-c435b341dca1\">paymethods object</a>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}","paymethods"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"49ba16f6-38dd-45d2-a906-4f0e8ffa63d2","name":"Update a Customer with a Paymethod","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"paymethod_token\": \"mth_5VywQ8J1DEahKDLWDyvKpA\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/paymethods"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"580","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 17:04:59 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"6-3245234-3249946 SNNN RT(1508864658560 40848) q(0 0 0 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"paymethod_token\": \"mth_Ih4UFqDvGEmdOMM1E_yVeg\",\n    \"location_id\": \"loc_192642\",\n    \"customer_token\": \"cst_-mFhHBHVdkqwmQ4V27x-Xg\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_Ih4UFqDvGEmdOMM1E_yVeg/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_Ih4UFqDvGEmdOMM1E_yVeg/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_Ih4UFqDvGEmdOMM1E_yVeg/schedules\",\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_Ih4UFqDvGEmdOMM1E_yVeg\"\n    }\n}"}],"_postman_id":"cb643a9d-620c-42c9-b2b2-ecb3bcf4d622"},{"name":"Customer","id":"8b83cd7b-e352-48ea-8079-e438f8f826ad","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}","description":"<p>Use this URI to delete a customer. <strong>NOTE</strong>: A customer cannot be deleted if he or she is tied to an active schedule.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"44a39b7e-bc70-4e1c-b4cd-d5c388642a5d","name":"Delete a Customer","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"148","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 17:14:20 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"8-4540819-4561064 NNNN CT(0 0 0) RT(1508865159152 101011) q(0 0 0 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"customer_token\": \"cst_FgUpL5jS_E-HCnR79cUZfQ\",\n    \"location_id\": \"loc_192642\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Delete Successful.\"\n    }\n}"}],"_postman_id":"8b83cd7b-e352-48ea-8079-e438f8f826ad"}],"id":"5ee822ad-8119-48b6-9f16-7a823db1ff76","description":"<p>The <code>customers</code> object represents a customer's information and enables the merchant to create, maintain, and retrieve customer data that can be tokenized (stored as a Wallet) for a more efficient checkout process. The <code>customer</code> object includes the <code>address</code> and <code>paymethod</code> sub-objects. For more information about tokens, click <a href=\"https://developers.forte.net/tokens/\">here</a>.</p>\n<p><strong>NOTE:</strong> A customer token (Wallet) can be empty or can hold address / payment tokens.</p>\n<h2 id=\"customers-object\">Customers Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n<th>Req</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>organization_id</code></td>\n<td>The identification number of the associated organization. For example, <code>org_5551236</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>location_id</code></td>\n<td>The identification number of the associated location. For example, <code>loc_1234568</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>customer_token</code></td>\n<td>A unique string used to represent a customer. For example, <code>cst_SoGUG6mcLUS1nVzYBIbk3g</code>. [max length = 26]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>customer_id</code></td>\n<td>A merchant-defined string used to identify the customer. [max length = 15]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>default_paymethod_token</code></td>\n<td>The customer's default paymethod token. The system returns this token when creating a customer with a paymethod. [max length = 26]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>default_billing_address_token</code></td>\n<td>A unique string used to represent the customer's default billing address. The system returns this token when creating a customer with a billing address. [max length = 26]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>default_shipping_address_token</code></td>\n<td>A unique string used to represent a customer's default shipping address. This system returns this token when creating a customer with a shipping address. [max length = 26]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>Use one of the following values:  <br />  <br />  <br />- <code>active</code>  <br />- <code>suspended</code></td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>first_name</code></td>\n<td>The first name of the customer. <strong>NOTE:</strong> To ensure the customer name properly displays for token transactions, include the <code>addresses.first_name</code> and <code>addresses.last_name</code> parameters in addition to the <code>first_name</code> and <code>last_name</code> parameters. [max length = 50]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>last_name</code></td>\n<td>The last name of the customer. <strong>NOTE:</strong> To ensure the customer name properly displays for token transactions, include the <code>addresses.first_name</code> and <code>addresses.last_name</code> parameters in addition to the <code>first_name</code> and <code>last_name</code> parameters. [max length = 50]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>company_name</code></td>\n<td>The company name of the customer. [max length = 50]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>display_name</code></td>\n<td>Displays the <code>first_name</code> + <code>last_name</code> parameters if the <code>company_name</code> parameter is null. [max length = 100]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>created_date</code></td>\n<td>The date and time when the customer record was created. This parameter is return only.</td>\n<td>datetime</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>updated_date</code></td>\n<td>The date and time when the customer record was updated. This parameter is return only.</td>\n<td>datetime</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>deleted_date</code></td>\n<td>The date and time when the customer record was deleted. This parameter is return only.</td>\n<td>datetime</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>paymethod</code></td>\n<td>The Paymethod Object</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>paymethod.organization_id</code></td>\n<td>The identification number of the associated organization. For example, <code>org_5551236</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>paymethod.location_id</code></td>\n<td>The identification number of the associated location. For example, <code>loc_1234568</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>paymethod.customer_token</code></td>\n<td>A unique string used to represent a customer. For example, <code>cst_SoGUG6mcLUS1nVzYBIbk3g</code>. <strong>NOTE</strong>: When a merchant passes a customer token with a transaction, Forte ignores any other customer data in favor of the default data stored with the token. [max length = 26]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>paymethod.paymethod_token</code></td>\n<td>A unique string used to represent a payment method. For example,<code>mth_1578436587</code>. [max length = 26]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>paymethod.label</code></td>\n<td>A friendly, customer-defined name for the payment method. For example, \"Moms Credit Card,\" \"Work Credit Card,\" \"Visa - 1234,\" etc. [max length = 50]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>paymethod.card</code></td>\n<td>The Card Object</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>paymethod.card.card_type</code></td>\n<td>The type of credit card [max length = 6]. Options for this field include the following:  <br />  <br />  <br />- <code>visa</code>  <br />- <code>mast</code>  <br />- <code>amex</code>  <br />- <code>disc</code>  <br />- <code>dine</code>  <br />- <code>jcb</code></td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>paymethod.card.name_on_card</code></td>\n<td>The name printed on the on the credit card [max length = 50]. This field is required when creating a new record or creating a permanent token from a one-time token.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>paymethod.card.account_number</code></td>\n<td>The card number. This field is required when creating a new record and can only contain digits. [max length = 16]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>paymethod.card.expire_month</code></td>\n<td>The expiration month. This field is required when creating a new record and must be a valid future date [max length = 2].</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>paymethod.card.expire_year</code></td>\n<td>The expiration year. This field is required when creating a new record and must be a valid future date. [max length = 4]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>paymethod.card.card_verification_value</code></td>\n<td>The card verification number. Forte does not store this field with the paymethod token, but echoes it back. [max length = 4]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>paymethod.card.procurement_card</code></td>\n<td>Indicates whether or not this is a procurement card transaction. Accepted values are either <code>true</code> or <code>false</code>. For procurement card transactions, merchants must pass the <code>customer_accounting_code</code> field in the <code>card</code> object and the <code>sales_tax_amount</code> field in the <code>transaction</code> object.</td>\n<td>bool</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>paymethod.card.customer_accounting_code</code></td>\n<td>Lists the procurement card accounting code. Forte does not save this information if the merchant is creating a paymethod. [max length = 17]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>paymethod.card.one_time_token</code></td>\n<td>A single use token generated by Forte.js (e.g., <code>ott_g7vnjqikszabzynu6eowbq</code>). [max length = 26]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>paymethod.echeck</code></td>\n<td>The eCheck Object</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>paymethod.echeck.account_holder</code></td>\n<td>The name of the account owner. This field is required when creating or updating a new record. [max length = 50]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>paymethod.echeck.account_number</code></td>\n<td>The DDA or eCheck account number. This field is required when creating or updating a new record and can only contain digits. [max length = 17]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>paymethod.echeck.routing_number</code></td>\n<td>The transit routing number. This field supports both U.S. and Canadian routing numbers. <strong>NOTE</strong>: A Canadian routing number displayed on a check needs to be reformatted differently for electronic payments. If a check displays a routing number as BBBBB-AAA (where AAA indicates the Financial Institution and BBBBB is the branch), then the routing number must be changed to 0AAABBBBB to process the payment electronically. For example, if a check from an account issued by the Bank of Montreal showed the routing number 00011-001, then that number would need to be reformatted to 000100011 for the payment to be electronically processed. Click here for a directory of Canadian financial institutions. This field is required when creating or updating a new record and can only contain digits. [max length = 9]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>paymethod.echeck.account_type</code></td>\n<td>Use one of the following values for this parameter:  <br />  <br />  <br />- <code>checking</code>  <br />- <code>savings</code></td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>paymethod.echeck.sec_code</code></td>\n<td>Use one of the following values for this standard-entry class code: <code>ARC</code>, <code>CCD</code>, <code>CIE</code>, <code>CTX</code>, <code>POP</code>, <code>POS</code>, <code>PPD</code>, <code>RCK</code>, <code>TEL</code>, <code>WEB</code>.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>paymethod.notes</code></td>\n<td>A short description of the paymethod. [max length = 50]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>paymethod.vendor</code></td>\n<td>The <code>vendor</code> Object</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>Paymethod.vendor.vendor_type</code></td>\n<td>The supported vendor types include the following:  <br />  <br />PayPal</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>Paymethod.vendor.vendor_billing_agreement_token</code></td>\n<td>The ID of PayPal billing agreement token</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>Paymethod.vendor.vendor_billing_agreement_id</code></td>\n<td>The ID of PayPal billing agreement</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>addresses</code></td>\n<td>An array of Address Objects.</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>addresses.address_token</code></td>\n<td>A unique string used to represent an address. For example, <code>add_tq0hemmmtf-zsxgq689rew</code>. [max length = 26]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>addresses.customer_token</code></td>\n<td>A unique string used to represent a customer. For example, <code>cst_SoGUG6mcLUS1nVzYBIbk3g</code>. [max length = 26]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>addresses.organization_id</code></td>\n<td>The identification number of the associated organization. For example, <code>org_5551236</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>addresses.location_id</code></td>\n<td>The identification number of the associated location. For example, <code>loc_1234568</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>addresses.first_name</code></td>\n<td>The first name of the user associated with this billing or shipping address [max length = 25]. <strong>NOTE</strong>: The <code>first_name</code> and <code>last_name</code> parameters are required for billing addresses when creating transactions without tokens. For token transactions, add these parameters to dispay the customer name with the transaction.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>addresses.last_name</code></td>\n<td>The last name of the user associated with this billing or shipping address [max length = 25]. <strong>NOTE</strong>: The <code>first_name</code> and <code>last_name</code> parameters are required for billing addresses when creating transactions without tokens. For token transactions, add these parameters to dispay the customer name with the transaction.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>addresses.company_name</code></td>\n<td>The name of the company associated with this billing or shipping address [max length = 20]. <strong>NOTE</strong>: The <code>company_name</code> parameter is required for billing addresses when creating transactions without tokens.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>addresses.phone</code></td>\n<td>The phone number associated with this billing or shipping address. This field supports both U.S. and Canadian phone numbers. [max length = 15]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>addresses.email</code></td>\n<td>The email address associated with this billing or shipping address [max length = 50]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>addresses.label</code></td>\n<td>A label that succinctly identifies the address. For example, \"Work\" or \"Home.\" [max length = 50]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>addresses.address_type</code></td>\n<td>The type of address. Use one of the following values:  <br />  <br />  <br />- <code>default_billing</code> - The default billing address  <br />- <code>default_shipping</code> - The default shipping address  <br />- <code>none</code> - The address is not a default address  <br />- <code>both</code> - The address is both a default shipping address and a default billing address</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>addresses.shipping_address_type</code></td>\n<td>Indicates whether the address is a <code>residential</code> or <code>commercial</code> address.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>addresses.physical_address</code></td>\n<td>The Physical Address Object.</td>\n<td>object</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>addresses.physical_address.street_line1</code></td>\n<td>The first line of the street address [max length = 35]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>addresses.physical_address.street_line2</code></td>\n<td>The second line of the street address [max length = 35]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>addresses.physical_address.locality</code></td>\n<td>Locality or city/town/village [max length = 25]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>addresses.physical_address.region</code></td>\n<td>Region or state/province. This field supports both U.S. and Canadian regions. [max length = 2]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>addresses.physical_address.postal_code</code></td>\n<td>Postal Code [max length = 15]. This field supports both U.S. and Canadian postal codes.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"c2414f25-6c2e-4d1f-954f-e222e5b7278f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"618ed747-eb76-414a-86be-60ec72332be0","type":"text/javascript","exec":[""]}}],"_postman_id":"5ee822ad-8119-48b6-9f16-7a823db1ff76"},{"name":"Disputes","item":[{"name":"All Disputes for an Organization","id":"87433a8a-fb27-4699-be1a-33ef6746681b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/disputes/","description":"<p>This URI returns all the dispute records associated with an organization. To narrow your search data using specific criteria, use the following filter parameters. <strong>NOTE</strong>: Dispute calls cannot be tested in Sandbox.</p>\n<ul><li><p>`dispute_number`</p></li><li><p>`location_id`</p></li><li><p>`start_due_date` / `end_due_date`</p></li><li><p>`start_last_update_date` / `end_last_update_date`</p></li><li><p>`start_received_date` / `end_received_date`</p></li><li><p>`status`</p></li><li><p>`amount`</p></li><li><p>`card_type`</p></li><li><p>`action_code`</p></li><li><p>`name_on_card`</p></li><li><p>`last_4_account_number`</p></li></ul>\n\n<p><strong>NOTES:</strong> The following filter parameters support the listed values:</p>\n<ul><li><p>card_type<br /></p><ul><li><p>disc</p></li><li><p>mast</p></li><li><p>visa</p></li></ul></li><li><p>action_code<br /></p><ul><li><p>CACP</p></li><p></p><li><p>CBRV</p></li><li><p>CDNL</p></li><li><p>CHGM</p></li><li><p>COLL</p></li><li><p>DRFT</p></li><li><p>MREV</p></li><li><p>MDNL</p></li><li><p>IREP</p></li><li><p>MACP</p></li><li><p>PADM</p></li><li><p>PARE</p></li><li><p>PCCR</p></li><li><p>PCHG</p></li><li><p>PCMP</p></li><li><p>PICR</p></li><li><p>PIDB</p></li><li><p>PMCR</p></li><li><p>PMDB</p></li><li><p>RTLV</p></li></ul></li><li><p>status<br /></p><ul><li><p>accepted</p></li><li><p>deleted</p></li><li><p>documents_needed</p></li><li><p>expired</p></li><li><p>lost</p></li><li><p>pending</p></li><li><p>recalled</p></li><li><p>reviewing</p></li><li><p>won</p></li></ul></li></ul>\n\n<p>Please note that sending a request at the partner (org) level may result in a large data set and may cause timeout errors depending on the request. We recommend sending your GET request at the Merchant (Organization) level.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","disputes",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"136254db-d7cf-4e2a-9262-1fcd6b81a7d8","name":"All Disputes for an Organization","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organizationID}}/disputes/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Dec 2018 17:07:48 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"63829","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 4,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_300005\",\n        \"resource_specific\": {\n            \"start_received_date\": \"2018-09-13T09:07:47.9332124-07:00\",\n            \"end_received_date\": \"2018-12-12T09:07:47.9332124-08:00\"\n        }\n    },\n    \"results\": [\n        {\n            \"dispute_id\": \"dsp_f606a032-91b0-4b07-902e-3e23a0e30c91\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"transaction_id\": \"trn_05e5ed61-b7c6-48a8-a383-184db63336a3\",\n            \"dispute_number\": \"8050207938\",\n            \"status\": \"documents_needed\",\n            \"dispute_amount\": 23.98,\n            \"original_amount\": 23.98,\n            \"adjustment_type\": \"DRFT\",\n            \"received_date\": \"2018-12-10T14:30:49.837\",\n            \"due_date\": \"2018-12-30T14:30:49.837\",\n            \"draft_action_code_date\": \"2018-12-10T00:00:00\",\n            \"last_update_date\": \"2018-12-10T14:30:49.84\",\n            \"comment_from_issuer\": \"Expired card\",\n            \"reason\": {\n                \"code\": \"D4535\",\n                \"title\": \"Expired Card\",\n                \"description\": \"The credit card was expired but it was charged anyway.\",\n                \"info_required\": \"Copy of receipt showing the card was not expired at the time of sale\"\n            },\n            \"card\": {\n                \"name_on_card\": \"Dave McFly\",\n                \"last_4_account_number\": \"1117\",\n                \"masked_account_number\": \"****1117\",\n                \"card_type\": \"disc\"\n            },\n            \"links\": {\n                \"documents\": \"https://api.forte.net/v3/disputes/dsp_f606a032-91b0-4b07-902e-3e23a0e30c91/documents\",\n                \"transactions\": \"https://api.forte.net/v3/disputes/dsp_f606a032-91b0-4b07-902e-3e23a0e30c91/transactions\",\n                \"self\": \"https://api.forte.net/v3/disputes/dsp_f606a032-91b0-4b07-902e-3e23a0e30c91\"\n            }\n        },\n        {\n            \"dispute_id\": \"dsp_9517a1eb-f4e8-422f-b9d6-82965838578f\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"transaction_id\": \"trn_7f328415-d0bf-469c-a0aa-33e696f22fc1\",\n            \"dispute_number\": \"8050207937\",\n            \"status\": \"won\",\n            \"dispute_amount\": 20.45,\n            \"original_amount\": 20.45,\n            \"action_code\": \"CHGM\",\n            \"adjustment_type\": \"CHBK\",\n            \"received_date\": \"2018-12-10T06:54:11.577\",\n            \"due_date\": \"2018-12-30T06:54:02.533\",\n            \"last_update_date\": \"2018-12-10T06:54:11.577\",\n            \"comment_from_issuer\": \"\",\n            \"reason\": {\n                \"code\": \"V1204\",\n                \"title\": \"Incorrect Account Number\",\n                \"description\": \"The incorrect information was entered at the time of processing.\",\n                \"info_required\": \"Provide proof that the correct information was entered by supplying the supporting documentation.  Such as the receipt/invoice/bill.\"\n            },\n            \"card\": {\n                \"name_on_card\": \"Linda McFly\",\n                \"last_4_account_number\": \"0006\",\n                \"masked_account_number\": \"****0006\",\n                \"card_type\": \"visa\"\n            },\n            \"links\": {\n                \"documents\": \"https://api.forte.net/v3/disputes/dsp_9517a1eb-f4e8-422f-b9d6-82965838578f/documents\",\n                \"transactions\": \"https://api.forte.net/v3/disputes/dsp_9517a1eb-f4e8-422f-b9d6-82965838578f/transactions\",\n                \"self\": \"https://api.forte.net/v3/disputes/dsp_9517a1eb-f4e8-422f-b9d6-82965838578f\"\n            }\n        },\n                {\n            \"dispute_id\": \"dsp_cc25c499-9c9d-4d4f-aec8-1f726c3032ac\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"transaction_id\": \"trn_01f66595-8b44-476d-a341-66bae93b3553\",\n            \"dispute_number\": \"8050207935\",\n            \"status\": \"expired\",\n            \"dispute_amount\": 26.37,\n            \"original_amount\": 26.37,\n            \"adjustment_type\": \"DRFT\",\n            \"received_date\": \"2018-11-08T06:43:20.79\",\n            \"due_date\": \"2018-12-30T06:43:20.79\",\n            \"draft_action_code_date\": \"2018-12-10T00:00:00\",\n            \"last_update_date\": \"2018-12-10T06:43:21.023\",\n            \"comment_from_issuer\": \"\",\n            \"reason\": {\n                \"code\": \"M4837\",\n                \"title\": \"Fraudulent Transaction—No Cardholder Authorization\",\n                \"description\": \"The card was key entered or swiped and the customer is claiming fraud.\",\n                \"info_required\": \"Supply the receipt showing the billing address and CVV code matched and proof of delivery, if merchandise was shipped, email correspondeces, or proof that the cardholder participated\"\n            },\n            \"card\": {\n                \"name_on_card\": \"Sam Baines\",\n                \"last_4_account_number\": \"4444\",\n                \"masked_account_number\": \"****4444\",\n                \"card_type\": \"mast\"\n            },\n            \"links\": {\n                \"documents\": \"https://api.forte.net/v3/disputes/dsp_cc25c499-9c9d-4d4f-aec8-1f726c3032ac/documents\",\n                \"transactions\": \"https://api.forte.net/v3/disputes/dsp_cc25c499-9c9d-4d4f-aec8-1f726c3032ac/transactions\",\n                \"self\": \"https://api.forte.net/v3/disputes/dsp_cc25c499-9c9d-4d4f-aec8-1f726c3032ac\"\n            }\n        },\n        {\n            \"dispute_id\": \"dsp_1d6a66cd-6bdf-4250-9e2f-78ec25c7c29a\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"transaction_id\": \"trn_f07a148b-c66f-4699-b556-355c9a005e18\",\n            \"dispute_number\": \"8050207931\",\n            \"status\": \"reviewing\",\n            \"dispute_amount\": 17.87,\n            \"original_amount\": 17.87,\n            \"action_code\": \"CHGM\",\n            \"adjustment_type\": \"CHBK\",\n            \"received_date\": \"2018-12-06T14:30:40.78\",\n            \"due_date\": \"2018-12-26T14:30:31.793\",\n            \"last_update_date\": \"2018-12-07T12:28:27.45\",\n            \"last_funding_date\": \"2018-12-06T15:59:57.33\",\n            \"comment_from_issuer\": \"\",\n            \"reason\": {\n                \"code\": \"M4808\",\n                \"title\": \"Requested/Required Authorization Not Obtained\",\n                \"description\": \"The auth code used on the charge was not valid or it was expired.\",\n                \"info_required\": \"Supply proof that valid authorization was obtained, such as the receipt copy with the valid authorization code.\"\n            },\n            \"card\": {\n                \"name_on_card\": \"Stella Baines\",\n                \"last_4_account_number\": \"4444\",\n                \"masked_account_number\": \"****4444\",\n                \"card_type\": \"mast\"\n            },\n            \"links\": {\n                \"documents\": \"https://api.forte.net/v3/disputes/dsp_1d6a66cd-6bdf-4250-9e2f-78ec25c7c29a/documents\",\n                \"transactions\": \"https://api.forte.net/v3/disputes/dsp_1d6a66cd-6bdf-4250-9e2f-78ec25c7c29a/transactions\",\n                \"self\": \"https://api.forte.net/v3/disputes/dsp_1d6a66cd-6bdf-4250-9e2f-78ec25c7c29a\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/disputes/\",\n        \"next\": \"https://api.forte.net/v3/disputes/?page_index=1\"\n    }\n}"}],"_postman_id":"87433a8a-fb27-4699-be1a-33ef6746681b"},{"name":"All Disputes with Filter","id":"e6349d2f-4c3c-4237-87c8-50c5a2c95f98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/disputes?filter=start_received_date+eq+'2018-12-07'+and+end_received_date+eq+'2018-12-12'","description":"<p>This URI returns all the dispute records associated with an organization. To narrow your search data using specific criteria, use the following filter parameters. <strong>NOTE</strong>: Dispute calls cannot be tested in Sandbox.</p>\n<ul><li><p>last_4_account_number</p></li><li><p>card_type</p></li><li><p>name_on_card</p></li><li><p>start_last_update_date / end_last_update_date</p></li><li><p>start_due_date / end_due_date</p></li><li><p>start_received_date / end_received_date</p></li><li><p>action_code</p></li><li><p>dispute_amount</p></li><li><p>status</p></li><li><p>dispute_number</p></li><li><p>transaction_id</p></li><li><p>location_id</p></li><li><p>organization_id</p></li></ul>\n\n<p><strong>NOTES</strong>: The following filter parameters support the listed values:</p>\n<ul><li><p>card_type</p><ul><li><p>amex</p></li><li><p>disc</p></li><li><p>jcb</p></li><li><p>mast</p></li><li><p>visa</p></li></ul></li><li><p>action_code<br /></p><ul><li><p>CACP</p></li><li><p>CBRV</p></li><li><p>CDNL</p></li><li><p>CHGM</p></li><li><p>COLL</p></li><li><p>DRFT</p></li><li><p>MREV</p></li><li><p>MDNL</p></li><li><p>IREP</p></li><li><p>MACP</p></li><li><p>PADM</p></li><li><p>PARE</p></li><li><p>PCCR</p></li><li><p>PCHG</p></li><li><p>PCMP</p></li><li><p>PICR</p></li><li><p>PIDB</p></li><li><p>PMCR</p></li><li><p>PMDB</p></li><li><p>RTLV</p></li></ul></li><li><p>status</p><ul><li><p>accepted</p></li><li><p>deleted</p></li><li><p>documents_needed</p></li><li><p>expired</p></li><li><p>lost</p></li><li><p>pending</p></li><li><p>recalled</p></li><li><p>reviewing</p></li><li><p>won</p></li></ul></li></ul>\n\n<p><strong>Note:</strong> Please note that sending a request at the partner (org) level may result in a large data set and may cause timeout errors depending on the request. We recommend sending your GET request at the Merchant (Organization) level.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","disputes"],"host":["{{baseURI}}"],"query":[{"key":"filter","value":"start_received_date+eq+'2018-12-07'+and+end_received_date+eq+'2018-12-12'"}],"variable":[]}},"response":[{"id":"56135ab4-a3a9-48f9-b5de-3ecc9728f19d","name":"All Disputes with Filter","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":{"raw":"{{baseURI}}/organizations/org_300005/disputes?filter=start_received_date+eq+'2018-12-07'+and+end_received_date+eq+'2018-12-12'\n","host":["{{baseURI}}"],"path":["organizations","org_300005","disputes"],"query":[{"key":"filter","value":"start_received_date+eq+'2018-12-07'+and+end_received_date+eq+'2018-12-12'\n"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Dec 2018 17:44:21 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"8124","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 6,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_300005\",\n        \"resource_specific\": {\n            \"start_received_date\": \"2018-12-07T00:00:00\",\n            \"end_received_date\": \"2018-12-12T00:00:00\"\n        }\n    },\n    \"results\": [\n        {\n            \"dispute_id\": \"dsp_f606a032-91b0-4b07-902e-3e23a0e30c91\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"transaction_id\": \"trn_05e5ed61-b7c6-48a8-a383-184db63336a3\",\n            \"dispute_number\": \"8050207938\",\n            \"status\": \"documents_needed\",\n            \"dispute_amount\": 23.98,\n            \"original_amount\": 23.98,\n            \"adjustment_type\": \"DRFT\",\n            \"received_date\": \"2018-12-10T14:30:49.837\",\n            \"due_date\": \"2018-12-30T14:30:49.837\",\n            \"draft_action_code_date\": \"2018-12-10T00:00:00\",\n            \"last_update_date\": \"2018-12-10T14:30:49.84\",\n            \"comment_from_issuer\": \"\",\n            \"reason\": {\n                \"code\": \"D4535\",\n                \"title\": \"Expired Card\",\n                \"description\": \"The credit card was expired but it was charged anyway.\",\n                \"info_required\": \"Copy of receipt showing the card was not expired at the time of sale\"\n            },\n            \"card\": {\n                \"name_on_card\": \"Stella Baines\",\n                \"last_4_account_number\": \"1117\",\n                \"masked_account_number\": \"****1117\",\n                \"card_type\": \"disc\"\n            },\n            \"links\": {\n                \"documents\": \"https://api.forte.net/v3/disputes/dsp_f606a032-91b0-4b07-902e-3e23a0e30c91/documents\",\n                \"transactions\": \"https://api.forte.net/v3/disputes/dsp_f606a032-91b0-4b07-902e-3e23a0e30c91/transactions\",\n                \"self\": \"https://api.forte.net/v3/disputes/dsp_f606a032-91b0-4b07-902e-3e23a0e30c91\"\n            }\n        },\n        {\n            \"dispute_id\": \"dsp_9517a1eb-f4e8-422f-b9d6-82965838578f\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"transaction_id\": \"trn_7f328415-d0bf-469c-a0aa-33e696f22fc1\",\n            \"dispute_number\": \"8050207937\",\n            \"status\": \"won\",\n            \"dispute_amount\": 20.45,\n            \"original_amount\": 20.45,\n            \"action_code\": \"CHGM\",\n            \"adjustment_type\": \"CHBK\",\n            \"received_date\": \"2018-12-10T06:54:11.577\",\n            \"due_date\": \"2018-12-30T06:54:02.533\",\n            \"last_update_date\": \"2018-12-10T06:54:11.577\",\n            \"comment_from_issuer\": \"\",\n            \"reason\": {\n                \"code\": \"V1204\",\n                \"title\": \"Incorrect Account Number\",\n                \"description\": \"The incorrect information was entered at the time of processing.\",\n                \"info_required\": \"Provide proof that the correct information was entered by supplying the supporting documentation.  Such as the receipt/invoice/bill.\"\n            },\n            \"card\": {\n                \"name_on_card\": \"Griff Tannen\",\n                \"last_4_account_number\": \"0006\",\n                \"masked_account_number\": \"****0006\",\n                \"card_type\": \"visa\"\n            },\n            \"links\": {\n                \"documents\": \"https://api.forte.net/v3/disputes/dsp_9517a1eb-f4e8-422f-b9d6-82965838578f/documents\",\n                \"transactions\": \"https://api.forte.net/v3/disputes/dsp_9517a1eb-f4e8-422f-b9d6-82965838578f/transactions\",\n                \"self\": \"https://api.forte.net/v3/disputes/dsp_9517a1eb-f4e8-422f-b9d6-82965838578f\"\n            }\n        },\n        {\n            \"dispute_id\": \"dsp_287276a4-4d00-4ca8-a63f-43d18dcc620e\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"transaction_id\": \"trn_5641cf14-bdd3-4b33-8104-6fa9c53a10af\",\n            \"dispute_number\": \"8050207936\",\n            \"status\": \"won\",\n            \"dispute_amount\": 29.03,\n            \"original_amount\": 29.03,\n            \"action_code\": \"CHGM\",\n            \"adjustment_type\": \"CHBK\",\n            \"received_date\": \"2018-12-10T06:52:22.687\",\n            \"due_date\": \"2018-12-30T06:52:12.663\",\n            \"last_update_date\": \"2018-12-10T06:52:22.687\",\n            \"comment_from_issuer\": \"\",\n            \"reason\": {\n                \"code\": \"D4535\",\n                \"title\": \"Expired Card\",\n                \"description\": \"The credit card was expired but it was charged anyway.\",\n                \"info_required\": \"Copy of receipt showing the card was not expired at the time of sale\"\n            },\n            \"card\": {\n                \"name_on_card\": \"Linda McFly\",\n                \"last_4_account_number\": \"1117\",\n                \"masked_account_number\": \"****1117\",\n                \"card_type\": \"disc\"\n            },\n            \"links\": {\n                \"documents\": \"https://api.forte.net/v3/disputes/dsp_287276a4-4d00-4ca8-a63f-43d18dcc620e/documents\",\n                \"transactions\": \"https://api.forte.net/v3/disputes/dsp_287276a4-4d00-4ca8-a63f-43d18dcc620e/transactions\",\n                \"self\": \"https://api.forte.net/v3/disputes/dsp_287276a4-4d00-4ca8-a63f-43d18dcc620e\"\n            }\n        },\n        {\n            \"dispute_id\": \"dsp_f8f4d686-6f9c-4949-83df-5568a22ae32b\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"transaction_id\": \"trn_e740d5bc-3fde-48fb-9dbb-c2196509f4a3\",\n            \"dispute_number\": \"8050207934\",\n            \"dispute_amount\": 14.62,\n            \"original_amount\": 14.62,\n            \"action_code\": \"CHGM\",\n            \"adjustment_type\": \"ARBT\",\n            \"received_date\": \"2018-12-10T06:32:55.553\",\n            \"due_date\": \"2018-12-30T06:30:09.24\",\n            \"last_update_date\": \"2018-12-10T06:32:55.553\",\n            \"last_funding_date\": \"2018-12-10T06:32:43.83\",\n            \"comment_from_issuer\": \"\",\n            \"reason\": {\n                \"code\": \"D4535\",\n                \"title\": \"Expired Card\",\n                \"description\": \"The credit card was expired but it was charged anyway.\",\n                \"info_required\": \"Copy of receipt showing the card was not expired at the time of sale\"\n            },\n            \"card\": {\n                \"name_on_card\": \"Bill McFly\",\n                \"last_4_account_number\": \"1117\",\n                \"masked_account_number\": \"****1117\",\n                \"card_type\": \"disc\"\n            },\n            \"links\": {\n                \"documents\": \"https://api.forte.net/v3/disputes/dsp_f8f4d686-6f9c-4949-83df-5568a22ae32b/documents\",\n                \"transactions\": \"https://api.forte.net/v3/disputes/dsp_f8f4d686-6f9c-4949-83df-5568a22ae32b/transactions\",\n                \"self\": \"https://api.forte.net/v3/disputes/dsp_f8f4d686-6f9c-4949-83df-5568a22ae32b\"\n            }\n        },\n        {\n            \"dispute_id\": \"dsp_dc2dbbe8-7bcf-4f2d-97c1-54059ee3e568\",\n            \"organization_id\": \"org_351836\",\n            \"location_id\": \"loc_208354\",\n            \"transaction_id\": \"trn_b6e77d69-a7d2-4f8b-9b82-3a2a9ddbc298\",\n            \"dispute_number\": \"8050207933\",\n            \"dispute_amount\": 25.61,\n            \"original_amount\": 25.61,\n            \"action_code\": \"CHGM\",\n            \"adjustment_type\": \"ARBT\",\n            \"received_date\": \"2018-12-07T14:08:15.11\",\n            \"due_date\": \"2018-12-27T14:05:26.95\",\n            \"last_update_date\": \"2018-12-07T14:08:15.113\",\n            \"last_funding_date\": \"2018-12-07T14:08:14.437\",\n            \"comment_from_issuer\": \"\",\n            \"reason\": {\n                \"code\": \"V1003\",\n                \"title\": \"Other Fraud-Card Present Environment\",\n                \"description\": \"The cardholder claims this is an unauthorized transaction.\",\n                \"info_required\": \"Please provide proof the cardholder participated in the transaction in question. Possible proof could include: AVS match of M, X or Y, billing/shipping match, proof of delivery, emails with the cardholder regarding the transaction, cardholder signature on the pickup form, details of cardholder identification, IP address and/or email address of purchaser, description of goods/services sold, proof that website was accessed for services after transaction date, proof goods were downloaded, proof cardholder accessed the merchant site, evidence that previous transactions were not disputed, signed order form, evidence that transaction was completed by cardholder's family or household, proof account was created for transaction, etc.\"\n            },\n            \"card\": {\n                \"name_on_card\": \"Jennifer McFly\",\n                \"last_4_account_number\": \"0006\",\n                \"masked_account_number\": \"****0006\",\n                \"card_type\": \"visa\"\n            },\n            \"links\": {\n                \"documents\": \"https://api.forte.net/v3/disputes/dsp_dc2dbbe8-7bcf-4f2d-97c1-54059ee3e568/documents\",\n                \"transactions\": \"https://api.forte.net/v3/disputes/dsp_dc2dbbe8-7bcf-4f2d-97c1-54059ee3e568/transactions\",\n                \"self\": \"https://api.forte.net/v3/disputes/dsp_dc2dbbe8-7bcf-4f2d-97c1-54059ee3e568\"\n            }\n        },\n        {\n            \"dispute_id\": \"dsp_979861f1-315a-4b32-926a-eb4bcfd1f9c5\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"transaction_id\": \"trn_66dd3d7f-d4b1-4862-bf8b-b7dd0df8f92c\",\n            \"dispute_number\": \"8050207932\",\n            \"status\": \"documents_needed\",\n            \"dispute_amount\": 17.49,\n            \"original_amount\": 17.49,\n            \"action_code\": \"CRMR\",\n            \"adjustment_type\": \"ARBT\",\n            \"received_date\": \"2018-12-07T14:02:52.443\",\n            \"due_date\": \"2018-12-27T14:00:05.157\",\n            \"last_update_date\": \"2018-12-07T14:02:52.447\",\n            \"comment_from_issuer\": \"\",\n            \"reason\": {\n                \"code\": \"D4535\",\n                \"title\": \"Expired Card\",\n                \"description\": \"The credit card was expired but it was charged anyway.\",\n                \"info_required\": \"Copy of receipt showing the card was not expired at the time of sale\"\n            },\n            \"card\": {\n                \"name_on_card\": \"Martin McFlyr\",\n                \"last_4_account_number\": \"1117\",\n                \"masked_account_number\": \"****1117\",\n                \"card_type\": \"disc\"\n            },\n            \"links\": {\n                \"documents\": \"https://api.forte.net/v3/disputes/dsp_979861f1-315a-4b32-926a-eb4bcfd1f9c5/documents\",\n                \"transactions\": \"https://api.forte.net/v3/disputes/dsp_979861f1-315a-4b32-926a-eb4bcfd1f9c5/transactions\",\n                \"self\": \"https://api.forte.net/v3/disputes/dsp_979861f1-315a-4b32-926a-eb4bcfd1f9c5\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/disputes/?filter=start_received_date+eq+%272018-12-07%27+and+end_received_date+eq+%272018-12-12%27\"\n    }\n}"}],"_postman_id":"e6349d2f-4c3c-4237-87c8-50c5a2c95f98"},{"name":"Disputes by ID","id":"6e779451-9041-4d57-a4c2-584797c666da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/disputes/dsp_{{disputeID}}","description":"<p>This URI returns all the details of a specific dispute using the <code>dispute_id</code> in the route. <strong>NOTE</strong>: Dispute calls cannot be tested in Sandbox.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","disputes","dsp_{{disputeID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"3a0dd191-b339-428d-a1f5-7092ae92b3d2","name":"Disputes by ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organizationID}}/disputes/dsp_{{disputeID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 12 Dec 2018 17:58:42 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"1236","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"dispute_id\": \"dsp_f606a032-91b0-4b07-902e-3e23a0e30c91\",\n    \"organization_id\": \"org_300005\",\n    \"location_id\": \"loc_115161\",\n    \"transaction_id\": \"trn_05e5ed61-b7c6-48a8-a383-184db63336a3\",\n    \"dispute_number\": \"8050207938\",\n    \"status\": \"documents_needed\",\n    \"dispute_amount\": 23.98,\n    \"original_amount\": 23.98,\n    \"adjustment_type\": \"DRFT\",\n    \"received_date\": \"2018-12-10T14:30:49.837\",\n    \"due_date\": \"2018-12-30T14:30:49.837\",\n    \"draft_action_code_date\": \"2018-12-10T00:00:00\",\n    \"last_update_date\": \"2018-12-10T14:30:49.84\",\n    \"comment_from_issuer\": \"\",\n    \"reason\": {\n        \"code\": \"D4535\",\n        \"title\": \"Expired Card\",\n        \"description\": \"The credit card was expired but it was charged anyway.\",\n        \"info_required\": \"Copy of receipt showing the card was not expired at the time of sale\"\n    },\n    \"card\": {\n        \"name_on_card\": \"George McFly\",\n        \"last_4_account_number\": \"1117\",\n        \"masked_account_number\": \"****1117\",\n        \"card_type\": \"disc\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"documents\": \"https://api.forte.net/v3/disputes/dsp_f606a032-91b0-4b07-902e-3e23a0e30c91/documents\",\n        \"transactions\": \"https://api.forte.net/v3/disputes/dsp_f606a032-91b0-4b07-902e-3e23a0e30c91/transactions\",\n        \"self\": \"https://api.forte.net/v3/disputes/dsp_f606a032-91b0-4b07-902e-3e23a0e30c91\"\n    }\n}"}],"_postman_id":"6e779451-9041-4d57-a4c2-584797c666da"}],"id":"a1e83cf6-869f-4095-a847-fd706f896b45","description":"<p>The <code>disputes</code> object represents transactions that were disputed by the credit card account holder. Dispute records are automatically submitted to Forte by the processor. Merchants can view these records and upload supporting documentation using the <code>documents</code> object.</p>\n<h2 id=\"disputes-object\">Disputes Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n<th>Req</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>dispute_id</code></td>\n<td>A unique string defined by Forte that represents a dispute. For example, <code>dsp_31wef05ABpV2eZvKYlo54</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>transaction_id</code></td>\n<td>A 36-character string that uniquely identifies the original transaction associated with this dispute.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>dispute_number</code></td>\n<td>A unique, processor-defined number that identifies the dispute record.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>organization_id</code></td>\n<td>The identification number of the associated organization. For example, <code>org_5551236</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>location_id</code></td>\n<td>The identification number of the associated location. For example, <code>loc_1234568</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>The current status of the dispute. Supported values include the following: <ul><li> <code>documents_needed</code> - The merchant needs to provide documents to Forte.</li><li> <code>exception</code> - The dispute was created with a reason code that is unfamiliar to Dex or the dispute's reason code triggers a credit funding adjustment as the first funding adjustment in the dispute record.</li><li> <code>expired</code> - A dispute has stayed in DRAFT status for 31 days. User actions are disabled, but funding adjustments may still occur.</li><li> <code>lost</code> - The dispute was decided in favor of the cardholder.</li><li> <code>pending</code> - Forte has submitted the required documents to the processor.</li><li> <code>reviewing</code> - The required documents have been received by Forte and are under review.</li><li><code>won</code> - The dispute was decided in favor of the merchant.</li><li> <code>recalled</code> - A condition has caused the dispute to disable all automated funding. Forte must now manually work the dispute.</li><li><code>accepted</code> - The merchant has accepted the dispute and funds will be returned to the cardholder.</li><li> <code>fulfilled</code> - Indicates a dispute that was created as an Inquiry record type and remains an Inquiry for 31 consecutive days even after the merchant uploads supporting documentation.</li></ul></td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>dispute_amount</code></td>\n<td>The amount the cardholder is disputing. This amount must match the value of the original_amount parameter.</td>\n<td>decimal</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>original_amount</code></td>\n<td>The original amount of the transaction.</td>\n<td>decimal</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>action_code</code></td>\n<td>A code that indicates what actions to take in resolving the dispute. Supported values include the following: <ul><li> <code>CACP</code> - Accept of Collection</li><li> <code>CBRV</code> - Create Outgoing Representment</li><li> <code>CDNL</code> - Denial of Collection</li><li> <code>CHGM</code> - Charge Merchant</li><li> <code>COLL</code> - Collection Letter Ordered</li><li> <code>CRMR</code> - Credit Merchant </li><li> <code>IACF</code> - Incoming Compliance </li><li> <code>IACP</code> - Issuer Accept </li><li> <code>IARB</code> - Incoming Arbitration </li><li> <code>IDCL</code> - Issuer Declines</li><li> <code>IFAV</code> - Cased Decided in Issuer Favor (merchant liable) </li><li> <code>IPAB</code> - Incoming Pre-Arbitration </li><li> <code>IREP</code> - Create Outgoing Representment</li><li> <code>MACP</code> - Merchant Accept</li><li> <code>MDCL</code> - Merchant Declines</li><li> <code>MDNL</code> - Merchant Denial</li><li> <code>MFAV</code> - Case Decided in Merchant's Favor (merchant not liable) </li><li> <code>MREV</code> - Merchant Reversal of Chargeback</li><li> <code>OARB</code> - Outgoing Arbitration </li><li> <code>OPAR</code> - Outgoing Pre-Arbitration</li><li> <code>OPARB</code> - Outgoing Pre-Arbitration </li><li> <code>OREV</code> - Operation Reversal of Chargeback</li><li> <code>PADM</code> - Pre-Arbitration/Pre-Compliance Debit Merchant</li><li> <code>PARB</code> - Incoming Visa Pre-Arbitration Request</li><li> <code>PARE</code> - Pre-Arbitration/Pre-Compliance Response</li><li> <code>PCCR</code> - Arbitration</li><li> <code>PCHG</code> - Pending Charge Off</li><li> <code>PCMP</code> - Pre-Compliance Prenote</li><li> <code>PICR</code> - Arbitration</li><li> <code>PIDB</code> - Arbitration</li><li> <code>PMCR</code> - Arbitration/Pre-Compliance Credit Merchant</li><li> <code>PMDB</code> - Arbitration/Pre-Compliance Credit Merchant</li><li> <code>RREQ</code> - Incoming Retrieval Request </li><li> <code>RRSP</code> - Retrieval Request Response </li><li> <code>VDNL</code> - Vantiv Denies (The documentation the merchant provided is not enough to use for rebuttal)</li></ul></td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>adjustment_type</code></td>\n<td>A code indicating the type of adjustment to be made for this dispute. Supported values include the following: <ul><li> <code>DRFT</code> - Credit Card Draft Retrieval</li><li> <code>PNOT</code> - Chargeback/Pre-Compliance Prenotification</li><li> <code>CHBK</code> - Chargeback Action Item</li></ul></td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>received_date</code></td>\n<td>The date and time that Forte received the dispute record from the processor.</td>\n<td>datetime</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>due_date</code></td>\n<td>The date and time the resolution to the dispute is due. This date varies depending on whether or not the merchant is classified as a government or non-government merchant.</td>\n<td>datetime</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>last_update_date</code></td>\n<td>The date and time when the dispute was last updated.</td>\n<td>datetime</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>last_funding_date</code></td>\n<td>The date and time when the dispute was last funded.</td>\n<td>datetime</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>comment_from_issuer</code></td>\n<td>Comments provided to the processor by the card issuer.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>reason</code></td>\n<td>The Reason Object.</td>\n<td>object</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>reason.code</code></td>\n<td>A code that represents the reason for the dispute. This code varies between issuers; however, MasterCard reason codes are prefaced with an <code>M</code> (e.g.,<code>M9999</code>), VISA reason codes are prefaced with a <code>V</code> (e.g., <code>V9999</code>), and Discover reason codes are prefaced with a <code>D</code> (e.g., <code>D9999</code>)</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>reason.title</code></td>\n<td>The name of the dispute reason.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>reason.description</code></td>\n<td>A brief description of the dispute reason.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>reason.info_required</code></td>\n<td>A comment about the dispute by a member of Forte's Risk Department.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>card</code></td>\n<td>The Card Object</td>\n<td>object</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>card.card_type</code></td>\n<td>The type of credit card [max length = 6]. Options for this field include the following: <ul><li> <code>visa</code></li><li> <code>mast</code></li><li> <code>disc</code></li></ul></td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>card.name_on_card</code></td>\n<td>The name printed on the credit card [max length = 50].</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>card.last_4_account_number</code></td>\n<td>The last four digits of the redacted account number. [max length = 4]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"f85341cc-a1a3-45eb-b978-bea697ac8eca","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7e85f0dc-dc88-4711-b3f6-f6636fa87fee","type":"text/javascript","exec":[""]}}],"_postman_id":"a1e83cf6-869f-4095-a847-fd706f896b45"},{"name":"Documents","item":[{"name":"Text Document","id":"49c43c7f-6314-4d65-bf13-e4fbc999f28c","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"--5ff9ef78-b4d7-4fb2-b179-1ff0b553b581\r\nContent-Type: application/json; charset=utf-8\r\nContent-Disposition: form-data\r\n\r\n{\"resource\":\"application\",\"resource_id\":\"app_132416\",\"description\":\"This is a test file.\"}\r\n--5ff9ef78-b4d7-4fb2-b179-1ff0b553b581\r\nContent-Type: text/plain\r\nContent-Disposition: form-data; filename=exampleTextFile.txt\r\n\r\n\r\nExample content of text file\r\n\r\n--5ff9ef78-b4d7-4fb2-b179-1ff0b553b581--\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/documents/","description":"<p>To successfully upload a document that supports a merchant application or dispute, your request must include a <code>multipart/form-data</code> content type. A <code>multipart/form-data</code> message contains a series of sections separated by boundary strings. Boundary strings can be any combination of letters or numbers up to 70 characters as long as the string does not appear in the request body of the message. Each instance of a boundary string must be preceded by at least two dashes (<code>--boundarystring</code>), while the last boundary string must be preceded and followed by two dashes (<code>--boundarystring--</code>).\n<br /><br />\nThe section of a multipart/form-data message that contains the upload file must include a <code>Content-Disposition</code> header that indicates whether the file should be displayed as inline or, in our case, as an attachment. You must also add a field name (i.e., <code>file</code>) and a default filename to the attachment by using the <code>name=\"file\"; filename=\"filename.jpg\"</code> directives within the <code>Content-Disposition</code> header. \n<br /><br />\nIn curl, POST requests to upload documents use the <code>-F</code> or <code>-form</code> command as in the following example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-JSON\">curl \n    -H \"Authorization: Basic {encoded APIAccessID:APISecureKey string}\" \n    -H \"X-Forte-Auth-Organization-Id: org_300005\" \n    -F document={\"resource\":\"application\",\"resource_id\":\"app_103448\",\"description\":\"receipt\"};type=application/json \n    -F file:@filename.jpg  \n\"/organizations/org_300005/documents\"\n</code></pre>\n<p>This request would generate a HTTP request to Forte similar to the following:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-HTTP\">POST /api/v3/organizations/org_300005/documents HTTP/1.1\nHost: sandbox.forte.net\nUser-Agent: curl/7.46.0\nAccept: application/json; charset=utf-8\nContent-Type: multipart/mixed; boundary=--abcdefghijklmnopqrstuvwxyz\nContent-Length: 8469\nAuthorization: Basic {encoded APIAccessID:APISecureKey string} \nX-Forte-Auth-Organization-Id: org_300005\n--abcdefghijklmnopqrstuvwxyz\nContent-Disposition:form-data; filename=\"filename.jpg\"\nContent-Type: image/jpeg\n&lt;binary content of filename.jpg&gt;\n--abcdefghijklmnopqrstuvwxyz\nContent-Type: application/json \n{\"resource\":\"application\",\"resource_id\":\"app_103448\",\"description\":\"receipt\"}\n--abcdefghijklmnopqrstuvwxyz--\n</code></pre>\n<br />\nThe following URI uploads the document to the Forte database. Documents must be under 8MB, must not be password protected or encrypted, and must be in one of the following formats: <ul><li>jpeg</li><li>png</li><li>tiff</li><li> txt</li><li>bmp</li><li>pdf</li><li>wav</li><li>mp3</li></ul>","urlObject":{"path":["organizations","org_{{organizationID}}","documents",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"d1145df5-3770-40cc-92d5-9918cf5aa07c","name":"Text Document","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{authorization}}"},{"key":"Accept","value":"application/json"},{"key":"Content-Length","value":"419"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"raw","raw":"--5ff9ef78-b4d7-4fb2-b179-1ff0b553b581\r\nContent-Type: application/json; charset=utf-8\r\nContent-Disposition: form-data\r\n\r\n{\"resource\":\"application\",\"resource_id\":\"app_133181\",\"description\":\"This is a test file.\"}\r\n--5ff9ef78-b4d7-4fb2-b179-1ff0b553b581\r\nContent-Type: text/plain\r\nContent-Disposition: form-data; filename=exampleTextFile.txt\r\n\r\n\r\nExample content of text file\r\n\r\n--5ff9ef78-b4d7-4fb2-b179-1ff0b553b581--\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/documents/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"376","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Tue, 14 Aug 2018 20:51:27 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\"document_id\":\"doc_cddf1aa1-d9a4-4da7-b7e1-66283cb94b7c\",\"resource\":\"application\",\"resource_id\":\"app_133181\",\"type\":\"txt\",\"file\":\"exampleTextFile.txt\",\"description\":\"This is a test file.\",\"size\":32,\"response\":{\"environment\":\"live\",\"response_desc\":\"Create Successful.\"},\"links\":{\"self\":\"https://api.forte.net/v3/documents/doc_cddf1aa1-d9a4-4da7-b7e1-66283cb94b7c\"}}"}],"_postman_id":"49c43c7f-6314-4d65-bf13-e4fbc999f28c"},{"name":"All Documents for an Organization","id":"fa9bae8d-ce86-41cf-8199-16e60bf36bf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/documents?filter=start_received_date+eq+'2015-01-01'+and+end_received_date+eq+'2015-01-31'","description":"<p>This URI returns all documents associated with an organization. To narrow your search data using specific criteria, use the following filter parameters.</p>\n<ul><li><p>start_received_date / end_received_date</p></li><li><p>type</p></li><li><p>resource</p></li></ul>\n\n<p><strong>NOTE</strong>: All date filter parameters are time aware.</p>\n<p>Please note that sending a request at the partner (org) level may result in a large data set and may cause timeout errors depending on the request. We recommend sending your GET request at the Merchant (Organization) level.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","documents"],"host":["{{baseURI}}"],"query":[{"key":"filter","value":"start_received_date+eq+'2015-01-01'+and+end_received_date+eq+'2015-01-31'"}],"variable":[]}},"response":[{"id":"ec3aa1d0-df7a-4151-bafc-9d76b206f622","name":"Find All Documents for an Organization","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{baseURI}}/org_{{organizationID}}/documents?filter=start_received_date+eq+'2015-01-01'+and+end_received_date+eq+'2015-01-31'","host":["{{baseURI}}"],"path":["org_{{organizationID}}","documents"],"query":[{"key":"filter","value":"start_received_date+eq+'2015-01-01'+and+end_received_date+eq+'2015-01-31'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Wed, 25 Oct 2017 19:32:30 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"10-21811483-21811492 NNNN CT(38 78 0) RT(1508959949807 41) q(0 0 1 1) r(3 3) U16","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 2,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_334316\",\n        \"resource_specific\": {\n            \"start_received_date\": \"2015-01-01T00:00:00\",\n            \"end_received_date\": \"2015-01-31T00:00:00\"\n        }\n    },\n    \"results\": [\n        {\n            \"document_id\": \"doc_3131dddgwef0gpV2eYlo5\",\n            \"resource\": \"application\",\n            \"resource_id\": \"app_456789\",\n            \"type\": \"jpeg\",\n            \"description\": \"receipt\",\n            \"size\": 158,\n            \"received_date\": \"2015-01-25\"\n        },\n        {\n            \"document_id\": \"doc_3131dddgweAgpV2eYlo5\",\n            \"resource\": \"dispute\",\n            \"resource_id\": \"dsp_32355435-e4ae-4ff4-a91e-abd8kjjfjffffc\",\n            \"type\": \"jpeg\",\n            \"description\": \"voided check\",\n            \"size\": \"200\",\n            \"received_date\": \"2015-01-31\"\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/documents/?filter=start_received_date+eq+%272015-01-01%27+and+end_received_date+eq+%272015-01-31%27\"\n    }\n}"}],"_postman_id":"fa9bae8d-ce86-41cf-8199-16e60bf36bf6"},{"name":"Documents by ID","id":"ce5821cc-b7ce-4fdf-9c12-4abf9e1eb22f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/documents/doc_{{documentID}}","description":"<p>This URI returns the details of the document record specified in the route by the <code>document_id</code> parameter.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","documents","doc_{{documentID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"6630777b-d61e-432a-ac98-3b5f8132ce04","name":"Find Documents by ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseURI}}/organizations/org_{{organizationID}}/documents/doc_{{documentID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Wed, 25 Oct 2017 19:43:37 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"www-authenticate","value":"Basic realm=\"sandbox.forte.net\"","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"10-21866274-21946699 NNNN CT(36 68 0) RT(1508960218699 398015) q(0 0 1 -1) r(2 2) U16","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"document_id\": \"doc_3131dddgwef0gpV2eYlo5\",\n    \"resource\": \"application\",\n    \"resource_id\": \"app_1568555\",\n    \"type\": \"jpeg\",\n    \"description\": \"voided check\",\n    \"size\": 458,\n    \"received_date\": \"2015-01-15\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/documents/doc_3131dddgwef0gpV2eYlo5\"\n    }\n}"}],"_postman_id":"ce5821cc-b7ce-4fdf-9c12-4abf9e1eb22f"},{"name":"Documents","id":"8a806ef5-2f5e-458b-b4c8-519aa86661dd","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{baseURI}}/organizations/org_{{organizationID}}/documents/doc_{{documentID}}","description":"<p>This URI deletes the document record specified in the route by the <code>document_id</code> parameter.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","documents","doc_{{documentID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"da39cf8d-da60-461a-8db7-a29acff4ae6c","name":"Delete Documents","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.forte.net/v3/organizations/org_{{organizationID}}/documents/doc_{{documentID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-origin","key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"name":"cache-control","key":"cache-control","value":"no-cache","description":"","enabled":true},{"name":"connection","key":"connection","value":"keep-alive","description":"","enabled":true},{"name":"content-length","key":"content-length","value":"138","description":"","enabled":true},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"name":"date","key":"date","value":"Wed, 25 Oct 2017 20:21:37 GMT","description":"","enabled":true},{"name":"expires","key":"expires","value":"-1","description":"","enabled":true},{"name":"pragma","key":"pragma","value":"no-cache","description":"","enabled":true},{"name":"server","key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"name":"www-authenticate","key":"www-authenticate","value":"Basic realm=\"sandbox.forte.net\"","description":"","enabled":true},{"name":"x-aspnet-version","key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"name":"x-cdn","key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"name":"x-iinfo","key":"x-iinfo","value":"4-17944848-17985085 NNNN CT(35 74 0) RT(1508962677899 218741) q(0 0 1 -1) r(2 2) U6","description":"","enabled":true},{"name":"x-powered-by","key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n    \"document_id\": \"doc_3131dddgwef05AgpV2eYlo5\",\r\n    \"response\": {\r\n      \"environment\": \"live\",\r\n      \"response_desc\": \"Delete Successful.\"\r\n   }\r\n}"}],"_postman_id":"8a806ef5-2f5e-458b-b4c8-519aa86661dd"}],"id":"63e557f7-f57f-4337-805f-e211113a5f53","description":"<p>The <code>documents</code> object enables merchants and partners to upload supporting documentation for applications and disputes. Documents must be under 8MB and conform to specific formats. See the <code>documents</code> object for more information.</p>\n<h2 id=\"documents-object\">Documents Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n<th>Req</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>document_id</code></td>\n<td>A unique string used to represent a document. For example, doc_31wef05ABpV2eZvKYlo54.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>resource</code></td>\n<td>The object resource the document pertains to. Supported values include the following: <ul><li> <code>application</code></li><li> <code>dispute</code></li><li><code>bankaccount</code></li></ul></td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>resource_id</code></td>\n<td>The identification number of the associated resource. For example, app_109630, dsp_31wef05ABpV2eZvKYlo54, or bac_XBvmvvUAG0ur5Tl4-5eBnA.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>type</code></td>\n<td>The type of document. Supported values include the following: <ul><li> <code>jpeg</code></li><li> <code>png</code></li><li> <code>tiff</code></li><li> <code>txt</code></li><li> <code>bmp</code></li><li> <code>pdf</code></li><li> <code>wav</code></li><li> <code>mp3</code></li></ul><br /> <strong>NOTE</strong>: Files in <code>wav</code> or <code>mp3</code> format can only be uploaded for echeck Proof of Authorization (POA) disputes.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>A brief description of the document (e.g., receipt or voided check). [max length = 512 characters]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>size</code></td>\n<td>The size of the document in bytes. The maximum file size for a document is 8MB (i.e., 8,000,000 bytes).</td>\n<td>int</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>received_date</code></td>\n<td>The date that Forte received the document.</td>\n<td>date</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>file</code></td>\n<td>The name of the document file you're uploading to Forte.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"dfebd76a-965f-45a9-8690-9ff9675cd7e3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ad6d24cb-0863-456a-8bfd-de847ee06ce5","type":"text/javascript","exec":[""]}}],"_postman_id":"63e557f7-f57f-4337-805f-e211113a5f53"},{"name":"Fundings","item":[{"name":"All Fundings for an Organization","id":"ba1f6060-e9d6-4fc5-8e90-20394c654d36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/fundings/","description":"<p>This URI returns all the funding entries for an organization. To narrow your search data using specific criteria, use the following parameters to filter your results.</p>\n<ul><li><p>start_effective_date / end_effective_date</p></li><li><p>start_net_amount / end_net_amount</p></li><li><p>routing_number</p></li><li><p>bank_information</p></li><li><p>location_id</p></li><li><p>last_4_account_number</p></li><li><p>code</p></li><li><p>status</p></li></ul>\n\n<p><strong>NOTES</strong>:</p>\n<ul><li><p>All date filter parameters are time aware.</p></li><li><p>If both the <code>start_effective_date</code> and <code>end_effective_date</code> filters are not passed in, the query automatically uses a default date range of 90 days. If you do not pass in any date filters, the system automatically uses the current date and the previous 90 days.</p></li><li><p>Multiple filters can be passed to refine the results as required.</p></li></ul>\n\n<p><strong>Note:</strong> Please note that sending a request at the partner (org) level may result in a large data set and may cause timeout errors depending on the request. We recommend sending your GET request at the Merchant (Organization) level.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","fundings",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"fd16fd53-2949-44f5-a3b5-f7b6a5464c78","name":"Find All Fundings for an Organization","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organizationID}}/fundings/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Mon, 23 Oct 2017 16:54:26 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"www-authenticate","value":"Basic realm=\"sandbox.forte.net\"","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"0-39878815-39878822 NNNN CT(34 78 0) RT(1508777666476 46) q(0 0 1 -1) r(2 2) U16","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n  \"number_results\": 3,\n  \"search_criteria\": {\n    \"page_size\": 50,\n    \"page_index\": 0,\n    \"home_organization_id\": \"org_300005\",\n    \"resource_specific\": {\n      \"end_effective_date\": \"2023-05-23T16:11:57.9365914-05:00\",\n      \"start_effective_date\": \"2023-02-22T16:11:57.9365914-06:00\"\n    }\n  },\n  \"results\": [\n    {\n      \"funding_id\": \"fnd_ACH-0309-2F776\",\n      \"organization_id\": \"org_300005\",\n      \"location_id\": \"loc_216006\",\n      \"status\": \"completed\",\n      \"effective_date\": \"2023-03-10T00:00:00\",\n      \"origination_date\": \"2023-03-09T00:00:00\",\n      \"net_amount\": 19.85,\n      \"routing_number\": \"211170101\",\n      \"last_4_account_number\": \"2312\",\n      \"bank_information\": \"WEBSTER BANK, N.A.\",\n      \"funding_source\": {\n        \"code\": \"ACH\",\n        \"description\": \"Net ACH Funding\"\n      },\n      \"entry_description\": \"FUNDING\",\n      \"funding_response_code\": \"S01\",\n      \"reserve_release\": 0.0,\n      \"reserve\": 0.83,\n      \"discount_fee\": 0.0,\n      \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/fundings/fnd_ACH-0309-2F776/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/fundings/fnd_ACH-0309-2F776/settlements\",\n        \"self\": \"https://api.forte.net/v3/fundings/fnd_ACH-0309-2F776/\"\n      }\n    },\n    {\n      \"funding_id\": \"fnd_ACH-0313-C38E5\",\n      \"organization_id\": \"org_300005\",\n      \"location_id\": \"loc_215940\",\n      \"status\": \"completed\",\n      \"effective_date\": \"2023-03-14T00:00:00\",\n      \"origination_date\": \"2023-03-13T00:00:00\",\n      \"net_amount\": -1.0,\n      \"routing_number\": \"211170101\",\n      \"last_4_account_number\": \"2312\",\n      \"bank_information\": \"WEBSTER BANK, N.A.\",\n      \"funding_source\": {\n        \"code\": \"ACH\",\n        \"description\": \"Net ACH Funding\"\n      },\n      \"entry_description\": \"FUNDING\",\n      \"funding_response_code\": \"S01\",\n      \"reserve_release\": 0.0,\n      \"reserve\": 0.0,\n      \"discount_fee\": 0.0,\n      \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/fundings/fnd_ACH-0313-C38E5/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/fundings/fnd_ACH-0313-C38E5/settlements\",\n        \"self\": \"https://api.forte.net/v3/fundings/fnd_ACH-0313-C38E5/\"\n      }\n    },\n    {\n      \"funding_id\": \"fnd_ACH-0313-C38E5\",\n      \"organization_id\": \"org_300005\",\n      \"location_id\": \"loc_216006\",\n      \"status\": \"completed\",\n      \"effective_date\": \"2023-03-14T00:00:00\",\n      \"origination_date\": \"2023-03-13T00:00:00\",\n      \"net_amount\": 4.6,\n      \"routing_number\": \"211170101\",\n      \"last_4_account_number\": \"2312\",\n      \"bank_information\": \"WEBSTER BANK, N.A.\",\n      \"funding_source\": {\n        \"code\": \"ACH\",\n        \"description\": \"Net ACH Funding\"\n      },\n      \"entry_description\": \"FUNDING\",\n      \"funding_response_code\": \"S01\",\n      \"reserve_release\": 0.0,\n      \"reserve\": 0.4,\n      \"discount_fee\": 0.0,\n      \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/fundings/fnd_ACH-0313-C38E5/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/fundings/fnd_ACH-0313-C38E5/settlements\",\n        \"self\": \"https://api.forte.net/v3/fundings/fnd_ACH-0313-C38E5/\"\n      }\n    }  ],\n  \"response\": {\n    \"environment\": \"live\",\n    \"response_desc\": \"Get Successful.\"\n  },\n  \"links\": {\n    \"self\": \"https://api.forte.net/v3/organizations/org_300005/fundings\"\n  }\n}\n"}],"_postman_id":"ba1f6060-e9d6-4fc5-8e90-20394c654d36"},{"name":"All Fundings within a Specific Date Range","id":"05e8ea21-19dc-4726-afef-9bae8ce5a2ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/fundings/?filter=start_effective_date+eq+%272023-03-01T00:00:00%27+and+end_effective_date+eq+%272023-03-15T00:00:00 %27+and+last_4_account_number+eq+2312","description":"<p>This URI returns all the funding entries for an Organization within a specified date range.</p>\n<p><strong>Note:</strong> Please note that sending a request at the partner (org) level may result in a large data set and may cause timeout errors depending on the request. We recommend sending your GET request at the Merchant (Organization) level.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","fundings",""],"host":["{{baseURI}}"],"query":[{"key":"filter","value":"start_effective_date+eq+%272023-03-01T00:00:00%27+and+end_effective_date+eq+%272023-03-15T00:00:00 %27+and+last_4_account_number+eq+2312"}],"variable":[]}},"response":[{"id":"ced6330b-3c6d-4fc1-ab3b-434b966bd2a8","name":"Find All Fundings within a Specific Date Range","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":{"raw":"{{baseURI}}/organizations/org_{{organizationID}}/fundings/?filter=start_effective_date+eq+%272023-03-01T00:00:00%27+and+end_effective_date+eq+%272023-03-15T00:00:00%27+and+last_4_account_number+eq+2312","host":["{{baseURI}}"],"path":["organizations","org_{{organizationID}}","fundings",""],"query":[{"key":"filter","value":"start_effective_date+eq+%272023-03-01T00:00:00%27+and+end_effective_date+eq+%272023-03-15T00:00:00%27+and+last_4_account_number+eq+2312"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":"","enabled":true},{"name":"connection","key":"connection","value":"keep-alive","description":"","enabled":true},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"name":"date","key":"date","value":"Mon, 23 Oct 2017 16:58:29 GMT","description":"","enabled":true},{"name":"expires","key":"expires","value":"-1","description":"","enabled":true},{"name":"pragma","key":"pragma","value":"no-cache","description":"","enabled":true},{"name":"server","key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"name":"transfer-encoding","key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"name":"www-authenticate","key":"www-authenticate","value":"Basic realm=\"sandbox.forte.net\"","description":"","enabled":true},{"name":"x-aspnet-version","key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"name":"x-cdn","key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"name":"x-iinfo","key":"x-iinfo","value":"0-39878815-39918024 NNNN CT(36 34 0) RT(1508777666476 242452) q(0 0 0 -1) r(2 2) U16","description":"","enabled":true},{"name":"x-powered-by","key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n  \"number_results\": 2,\n  \"search_criteria\": {\n    \"page_size\": 50,\n    \"page_index\": 0,\n    \"home_organization_id\": \"org_300005\",\n    \"resource_specific\": {\n      \"end_effective_date\": \"2023-03-15T00:00:00\",\n      \"start_effective_date\": \"2023-03-01T00:00:00\"\n    }\n  },\n  \"results\": [\n    {\n      \"funding_id\": \"fnd_ACH-0309-2F776\",\n      \"organization_id\": \"org_300005\",\n      \"location_id\": \"loc_216006\",\n      \"status\": \"completed\",\n      \"effective_date\": \"2023-03-10T00:00:00\",\n      \"origination_date\": \"2023-03-09T00:00:00\",\n      \"net_amount\": 19.85,\n      \"routing_number\": \"211170101\",\n      \"last_4_account_number\": \"2312\",\n      \"bank_information\": \"WEBSTER BANK, N.A.\",\n      \"funding_source\": {\n        \"code\": \"ACH\",\n        \"description\": \"Net ACH Funding\"\n      },\n      \"entry_description\": \"FUNDING\",\n      \"funding_response_code\": \"S01\",\n      \"reserve_release\": 0.0,\n      \"reserve\": 0.83,\n      \"discount_fee\": 0.0,\n      \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/fundings/fnd_ACH-0309-2F776/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/fundings/fnd_ACH-0309-2F776/settlements\",\n        \"self\": \"https://api.forte.net/v3/fundings/fnd_ACH-0309-2F776/\"\n      }\n    },\n    {\n      \"funding_id\": \"fnd_ACH-0313-C38E5\",\n      \"organization_id\": \"org_300005\",\n      \"location_id\": \"loc_215940\",\n      \"status\": \"completed\",\n      \"effective_date\": \"2023-03-14T00:00:00\",\n      \"origination_date\": \"2023-03-13T00:00:00\",\n      \"net_amount\": -1.0,\n      \"routing_number\": \"211170101\",\n      \"last_4_account_number\": \"2312\",\n      \"bank_information\": \"WEBSTER BANK, N.A.\",\n      \"funding_source\": {\n        \"code\": \"ACH\",\n        \"description\": \"Net ACH Funding\"\n      },\n      \"entry_description\": \"FUNDING\",\n      \"funding_response_code\": \"S01\",\n      \"reserve_release\": 0.0,\n      \"reserve\": 0.0,\n      \"discount_fee\": 0.0,\n      \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/fundings/fnd_ACH-0313-C38E5/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/fundings/fnd_ACH-0313-C38E5/settlements\",\n        \"self\": \"https://api.forte.net/v3/fundings/fnd_ACH-0313-C38E5/\"\n      }\n    }\n  ],\n  \"response\": {\n    \"environment\": \"live\",\n    \"response_desc\": \"Get Successful.\"\n  },\n  \"links\": {\n    \"self\": \"https://api.forte.net/v3/fundings/?filter=start_effective_date+eq+%272023-03-01T00%3a00%3a00%27+and+end_effective_date+eq+%272023-03-15T00%3a00%3a00%22\"\n  }\n}"}],"_postman_id":"05e8ea21-19dc-4726-afef-9bae8ce5a2ce"},{"name":"A Specific Funding Entry","id":"c6f5eeb0-a18c-4c3e-8c24-60201aa662e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/fundings/fnd_{{fundingID}}","description":"<p>This URI returns a specific funding entry based on the <code>funding_id</code> included in the route.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","fundings","fnd_{{fundingID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"ab72f0fa-de17-4786-b31f-c98649cb1c01","name":"Find a Specific Funding Entry","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organizationID}}/fundings/fnd_{{fundingID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Mon, 23 Oct 2017 16:54:49 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"www-authenticate","value":"Basic realm=\"sandbox.forte.net\"","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"0-39878815-39878822 SNNN RT(1508777666476 22208) q(0 0 0 -1) r(2 2) U16","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"funding_id\": \"fnd_CC-0405-1652C\",\n    \"organization_id\": \"org_381450\",\n    \"location_id\": \"loc_242417\",\n    \"status\": \"completed\",\n    \"effective_date\": \"2023-04-06T00:00:00\",\n    \"origination_date\": \"2023-04-05T00:00:00\",\n    \"net_amount\": 10.00,\n    \"routing_number\": \"211170101\",\n    \"last_4_account_number\": \"2312\",\n    \"bank_information\": \"WEBSTER BANK, N.A.\",\n    \"funding_source\": {\n        \"code\": \"CC\",\n        \"description\": \"Payfac Credit Card\"\n    },\n    \"entry_description\": \"FUNDING\",\n    \"funding_response_code\": \"S01\",\n    \"reserve_release\": 0.00,\n    \"reserve\": 0.00,\n    \"discount_fee\": 0.00,\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api-live-testlan.4ta.com/v3/fundings/fnd_CC-0405-1652C/transactions\",\n        \"settlements\": \"https://api-live-testlan.4ta.com/v3/fundings/fnd_CC-0405-1652C/settlements\",\n        \"self\": \"https://api-live-testlan.4ta.com/v3/fundings/fnd_CC-0405-1652C/\"\n    }\n}"}],"_postman_id":"c6f5eeb0-a18c-4c3e-8c24-60201aa662e3"},{"name":"Transaction(s) Related to a Funding Entry","id":"040c52b6-e456-4753-9093-9f388fabda1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/fundings/fnd_{{fundingID}}/transactions","description":"<p>This URI returns all the related transactions associated with a specific funding entry.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","fundings","fnd_{{fundingID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"601a19dc-44d4-4b94-bbbc-9b84248f5c0d","name":"Find the Transaction(s) Related to a Funding Entry","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/fundings/fnd_{{fundingID}}/transactions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Mon, 23 Oct 2017 16:55:03 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"0-39878815-39878822 SNNN RT(1508777666476 36928) q(0 0 0 -1) r(1 1) U16","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 1,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_334316\",\n        \"resource_specific\": {\n            \"funding_id\": \"fnd_D2307112EC\"\n        }\n    },\n    \"results\": [\n        {\n            \"transaction_id\": \"trn_54641352-f279-4f45-981a-7909f03a97eb\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"customer_id\": \"32215\",\n            \"order_number\": \"33302547\",\n            \"reference_id\": \"789654\",\n            \"status\": \"funded\",\n            \"action\": \"sale\",\n            \"authorization_amount\": 0.23,\n            \"authorization_code\": \"86697777\",\n            \"entered_by\": \"\",\n            \"received_date\": \"2015-01-02T04:18:33.967\",\n            \"first_name\": \"Christoper\",\n            \"last_name\": \"Lloyd\",\n            \"company_name\": \"MJF Productions\",\n            \"response\": {\n                \"response_code\": \"A01\"\n            },\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/organizations/org_300005/locations/loc_115161/transactions/trn_54641352-f279-4f45-981a-7909f03a97eb\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/organizations/org_334316/fundings/fnd_D2307112EC/transactions/\"\n    }\n}"}],"_postman_id":"040c52b6-e456-4753-9093-9f388fabda1a"},{"name":"Settlement(s) Related to a Funding Entry","id":"8ec61800-7232-483b-96d3-0889343e1bcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/fundings/fnd_{{fundingID}}/settlements","description":"<p>This URI returns all the related settlement records associated with a specific funding entry.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","fundings","fnd_{{fundingID}}","settlements"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"e59b86a8-f506-4cc2-8284-0fbfd0dff5d9","name":"Find the Settlement(s) Related to a Funding Entry","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/fundings/fnd_{{fundingID}}/settlements"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Mon, 23 Oct 2017 16:49:07 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"9-96773803-96773810 NNNN CT(38 87 0) RT(1508777346539 21) q(0 0 1 0) r(4 4) U16","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 1,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_334316\",\n        \"resource_specific\": {\n            \"funding_id\": \"fnd_D2307112EC\"\n        }\n    },\n    \"results\": [\n        {\n            \"settle_id\": \"stl_54da660a-13be-4f09-ac0e-84685b9a0860\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"customer_token\": \"cst_4554037\",\n            \"transaction_id\": \"trn_48e1759d-e9ed-4eba-8861-c16807a7a510\",\n            \"customer_id\": \"789654\",\n            \"order_number\": \"456987\",\n            \"reference_id\": \"000002\",\n            \"settle_date\": \"2014-01-12T00:00:00\",\n            \"settle_type\": \"withdrawal\",\n            \"settle_response_code\": \"S01\",\n            \"settle_amount\": 5.4,\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/organizations/org_300005/locations/loc_115161/settlements/stl_54da660a-13be-4f09-ac0e-84685b9a0860\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/organizations/org_334316/fundings/fnd_D230711sEC/settlements/\"\n    }\n}"}],"_postman_id":"8ec61800-7232-483b-96d3-0889343e1bcf"}],"id":"93359333-13e1-49f7-8055-8951d8d1e123","description":"<p>The <code>fundings</code> object captures the status of funding entries associated with an organization. <code>GET</code> requests to this endpoint can be filtered by the funding ID, effective date, net amount, routing number, location ID, last four digits of the account number, status and funding source. Merchants can also use this endpoint to find the transactions and settlement records related to this funding entry.</p>\n<h2 id=\"fundings-object\">Fundings Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n<th>Req</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>organization_id</code></td>\n<td>The identification number of the associated organization. For example, <code>org_5551236</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>location_id</code></td>\n<td>The identification number of the associated location. For example, <code>loc_1234568</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>funding_id</code></td>\n<td>A unique string used to represent a funding entry. For example, <code>fnd_ACH-0226-173C5</code>. [max length = 20]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td><br /><br />  <br />  <br />  <br />  <br />The status of the funding entry. The following values are supported for this parameter:  <br />  <br />  <br /><br /><ul><li><p><code>completed</code> - Forte processed the funding entry and added funds to the user's account.</p></li><li><p><code>pending</code> - Forte is processing the funding entry and it will post soon.</p></li><li><p><code>failed</code> - Forte attempted to process the funding entry, but it was rejected.</p></li><li><p><code>not_applicable</code> - The Net Amount is equal to zero and no funds will go into the user's account.</p></li></ul><br /><br />  <br />  <br />  <br />  <br />[max length = 14}  <br />  <br />  <br />  <br /><br /><br /></td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>effective_date</code></td>\n<td>The date and time when the <code>net_amount</code> is credited to the merchant's bank account. [max length = 19]</td>\n<td>datetime</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>origination_date</code></td>\n<td>The date the funds of the transaction go to the originating depository financial institution. [max length = 19]</td>\n<td>datetime</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>net_amount</code></td>\n<td>The amount that is being funded. [max length = 10]</td>\n<td>decimal</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>echeck</code></td>\n<td>The eCheck Object</td>\n<td>object</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>echeck.routing_number</code></td>\n<td>The transit routing number of the funding account. [max length = 9]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>echeck.last_4_account_number</code></td>\n<td>The last four digits of the redacted funding account number. [max length = 4]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>funding_source</code></td>\n<td>The Funding Source Object</td>\n<td>object</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>funding_source.code</code></td>\n<td><br /><br />  <br />  <br />  <br />  <br />The type of funding used in this funding entry. The following values are supported:  <br />  <br />  <br /><br /><ul><li><p><code>GWCC</code></p></li><li><p><code>ACH</code></p></li><li><p><code>ACHD</code></p></li><li><p><code>ACHC</code></p></li><li><p><code>UNFD</code></p></li><li><p><code>UNFC</code></p></li><li><p><code>CC</code></p></li><li><p><code>CCC</code></p></li><li><p><code>CCD</code></p></li><li><p><code>CHBD</code></p></li><li><p><code>CHBC</code></p></li><li><p><code>SFA</code></p></li><li><p><code>SFC</code></p></li><li><p><code>RSRV</code></p></li><li><p><code>RELS</code></p></li></ul><br /><br />  <br />  <br />  <br />  <br />[max length = 4]  <br />  <br />  <br />  <br /><br /><br /></td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>funding_source.description</code></td>\n<td><br /><br />  <br />  <br />  <br />  <br />A short description of the type of funding used in this funding entry. The following values are supported:  <br />  <br />  <br /><br /><ul><li><p><code>GWCC</code> - Gateway Funding</p></li><li><p><code>ACH</code> - Net ACH Funding</p></li><li><p><code>ACHD</code> - ACH Debits</p></li><li><p><code>ACHC</code> - ACH Credits</p></li><li><p><code>UNFD</code> - ACH Debit Returns</p></li><li><p><code>UNFC</code> - ACH Credit Returns</p></li><li><p><code>CC</code> - Payfac Credit Card</p></li><li><p><code>CCC</code> - Payfac CC Credits</p></li><li><p><code>CCD</code> - Payfac CC Debits</p></li><li><p><code>CHBD</code> - Payfac Chargeback Debits</p></li><li><p><code>CHBC</code> - Payfac Charegback Credits</p></li><li><p><code>SFA</code> - Splitfund ACH</p></li><li><p><code>SFC</code> - Splitfund CC</p></li><li><p><code>RSRV</code> - Reserve Debit</p></li><li><p><code>RELS</code> - Reserve Release</p></li></ul><br /><br />  <br />  <br />  <br />  <br />[max length = 25]  <br />  <br />  <br />  <br /><br /><br /></td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>entry_description</code></td>\n<td>Details pertaining to the funding entry that can be overwritten by the merchant after the funds are in the merchant's bank account. [max length = 50]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>funding_response_code</code></td>\n<td>Contains the reason code for why a funding attempt failed. [max length = 50]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>reserve</code></td>\n<td>The part of the funding amount kept on funding hold based on CSG Forte's Risk department's Policy and Procedures. These funds are used to cover returns, past due invoices, fraud transactions, levies from state or federal governments, and other financial obligations of a merchant. Funds may also be held in reserve until 1099 TIN mismatches are resolved.</td>\n<td>decimal</td>\n<td>o</td>\n</tr>\n<tr>\n<td><code>reserve_release</code></td>\n<td>The amount of the reserve released by the CSG Forte Risk department after reviewing the merchant per Risk Department's policy and procedures.</td>\n<td>decimal</td>\n<td>o</td>\n</tr>\n<tr>\n<td><code>discount_fee</code></td>\n<td>The amount (fee) paid by a merchant to the merchant acquirer/bank or other contracted party for services related to the processing of the merchant's card transactions.</td>\n<td>decimal</td>\n<td>o</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"745360f0-5069-45ad-a838-3af89737c2f1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2709dd31-50b6-4e8d-a842-6086d7533299","type":"text/javascript","exec":[""]}}],"_postman_id":"93359333-13e1-49f7-8055-8951d8d1e123"},{"name":"Locations","item":[{"name":"All Locations","id":"17f7ccf7-b3d0-4a89-ab19-f46aed6a7144","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations","description":"<p>This URI returns all the locations that belong to an Organization. To narrow your search data using specific criteria, use the following parameters to filter your results:</p>\n<ul>\n<li> dba_name</li>\n<li> start_created_date / end_created_date</li>\n<li> status</li>\n<li> region</li>\n<li> country</li>\n<li> postal_code</li>\n</ul>","urlObject":{"path":["organizations","org_{{organizationID}}","locations"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"891f7390-5b7e-47c9-be83-7d84c4d757f7","name":"All Locations","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseURI}}/organizations/org_{{organization}}/locations/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"12261","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 16:50:42 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"number_results\": 2,\r\n  \"search_criteria\": {\r\n    \"page_size\": 50,\r\n    \"page_index\": 0,\r\n    \"home_organization_id\": \"org_300005\",\r\n    \"resource_specific\": {\r\n      \"start_created_date\": \"2015-01-01\",\r\n      \"end_created_date\": \"2015-01-31\"\r\n    }\r\n  },\r\n  \"results\": [\r\n    {\r\n      \"location_id\": \"loc_115161\",\r\n      \"dba_name\": \"McFly Customs\",\r\n      \"status\": \"Live\",\r\n      \"street_address1\": \"405 Great Scott! Blvd\",\r\n      \"street_address2\": \"Suite 400\",\r\n      \"locality\": \"Hill Valley\",\r\n      \"region\": \"CA\",\r\n      \"postal_code\": \"90214\",\r\n      \"country\": \"USA\",\r\n      \"created_date\": \"2015-01-08T23:14:43.72\",\r\n      \"business_type\": \"G70600\",\r\n      \"organization_id\": \"org_300005\",\r\n      \"organization_name\": \"Doc Brown International\",\r\n      \"contacts\": [\r\n        {\r\n          \"type\": \"primary\",\r\n          \"full_name\": \"Marty McFly\",\r\n          \"phone\": \"555-867-5309\",\r\n          \"email\": \"m.mcfly@mcflyinc.com\"\r\n        }\r\n      ],\r\n      \"links\": {\r\n        \"self\": \"https://api.forte.net/v3/organizations/org_300005/locations/loc_115161\"\r\n      }\r\n    },\r\n    {\r\n      \"location_id\": \"loc_124001\",\r\n      \"dba_name\": \"George McFly Press\",\r\n      \"status\": \"Live\",\r\n      \"street_address1\": \"501 DeLorean Parkway\",\r\n      \"street_address2\": \"Suite 100-B\",\r\n      \"locality\": \"Hill Valley\",\r\n      \"region\": \"CA\",\r\n      \"postal_code\": \"90214\",\r\n      \"country\": \"USA\",\r\n      \"created_date\": \"2015-01-31T00:00:00\",\r\n      \"business_type\": \"A11800\",\r\n      \"organization_id\": \"org_300005\",\r\n      \"organization_name\": \"Doc Brown International\",\r\n      \"contacts\": [\r\n        {\r\n          \"type\": \"primary\",\r\n          \"full_name\": \"George McFly\",\r\n          \"phone\": \"555-555-5897\",\r\n          \"email\": \"george@GMFPress.com\"\r\n        }\r\n      ],\r\n      \"links\": {\r\n        \"self\": \"https://api.forte.net/v3/organizations/org_300005/locations/loc_124001/\"\r\n      }\r\n    }\r\n  ],\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_desc\": \"Get Successful.\"\r\n  },\r\n  \"links\": {\r\n    \"self\": \"https://api.forte.net/v3/organizations/org_300005/locations?filter=start_created_date+eq+'2015-01-01'+and+end_created_date+eq+'2015-01-31'\"\r\n  }\r\n}"}],"_postman_id":"17f7ccf7-b3d0-4a89-ab19-f46aed6a7144"},{"name":"Location by ID","id":"4d19852a-697b-49fb-a493-8e472d939339","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}","description":"<p>This URI returns detailed location data using the <code>location_id</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"13a3ce62-769a-41f7-9311-19fa7728a4f2","name":"Location by ID","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{Authorization}}"},{"key":"Content-Type","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Oct 2018 21:37:36 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"1402","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"location_id\": \"loc_208855\",\n    \"dba_name\": \"Bad Bougie, Inc.\",\n    \"organization_id\": \"org_351883\",\n    \"organization_name\": \"Bad Bougee Cakes\",\n    \"parent_organization_id\": \"org_234791\",\n    \"parent_organization_name\": \"TEST DEV ISO\",\n    \"status\": \"live\",\n    \"street_address1\": \"12345 Fake Street\",\n    \"locality\": \"Allen\",\n    \"region\": \"TX\",\n    \"postal_code\": \"75013\",\n    \"country\": \"USA\",\n    \"created_date\": \"2018-09-19T09:22:22.143\",\n    \"business_type\": \"E50100\",\n    \"business_description\": \"ACH Debit Products/Services: NA\\\\r\\\\nACH Credit Disburse: NA\\\\r\\\\n\",\n    \"hold_funds\": false,\n    \"currency\": \"USD\",\n    \"contacts\": [\n        {\n            \"contact_type\": \"primary\",\n            \"full_name\": \"Regina George\",\n            \"phone\": \"866-290-5400\",\n            \"email\": \"regina@badandbougie.com\"\n        },\n        {\n            \"contact_type\": \"billing\",\n            \"full_name\": \"Regina George\",\n            \"phone\": \"866-290-5400\",\n            \"email\": \"regina@badandbougie.com\"\n        }\n    ],\n    \"services\": {\n        \"card\": {\n            \"market_type\": \"e_commerce\",\n            \"service_fee_visa_tax_amount\": 3.95,\n            \"card_types\": [\n                \"AMEX\",\n                \"DINE\",\n                \"DISC\",\n                \"JCB\",\n                \"MC\",\n                \"VISA\"\n            ],\n            \"account_updater\": \"disabled\",\n            \"service_enabled\": true\n        },\n        \"echeck\": {\n            \"market_type\": \"e_commerce\",\n            \"hold_days_sales\": 0,\n            \"hold_days_refunds\": 4,\n            \"hold_days_resubmits\": 4,\n            \"entry_class_codes\": [\n                \"ARC\",\n                \"CCD\",\n                \"CIE\",\n                \"POP\",\n                \"POS\",\n                \"PPD\",\n                \"TEL\",\n                \"WEB\"\n            ],\n            \"nacha_id\": \"\",\n            \"service_enabled\": true\n        },\n        \"debit\": {\n            \"service_enabled\": true\n        }\n    },\n    \"bankaccount_credits_token\": \"bac_GH55ZQmcfkaWYHc69OVbAQ\",\n    \"bankaccount_debits_token\": \"bac_sxyAiFdVgky5_redzHY3fg\",\n    \"bankaccount_billing_token\": \"bac_s5-hLStW3kWtlz8CGJS5_Q\",\n    \"bankaccount_ccfee_token\": \"bac_XyVwL7f3iUa5ZxVgicBeQA\",\n    \"bankaccount_ecfee_token\": \"bac_5QsdYSmcxUGKVuCeXMF97Q\",\n    \"terminals\": [\n        {\n            \"serial_number\": \"401-683-887\",\n            \"connection_status\": \"Offline\",\n            \"lock_status\": \"False\",\n            \"device_status\": \"Active\"\n        },\n        {\n            \"serial_number\": \"452-719-010\",\n            \"connection_status\": \"Offline\",\n            \"lock_status\": \"False\",\n            \"device_status\": \"Active\"\n        },\n        {\n            \"serial_number\": \"401-710-450\",\n            \"connection_status\": \"Offline\",\n            \"lock_status\": \"False\",\n            \"device_status\": \"Active\"\n        },\n        {\n            \"serial_number\": \"298-397-387\",\n            \"connection_status\": \"Offline\",\n            \"lock_status\": \"False\",\n            \"device_status\": \"Active\"\n        },\n        {\n            \"serial_number\": \"450-764-994\",\n            \"connection_status\": \"Offline\",\n            \"lock_status\": \"False\",\n            \"device_status\": \"Active\"\n        },\n        {\n            \"serial_number\": \"233-837-300\",\n            \"connection_status\": \"Offline\",\n            \"lock_status\": \"False\",\n            \"device_status\": \"Active\"\n        },\n        {\n            \"serial_number\": \"401-683-403\",\n            \"connection_status\": \"Online\",\n            \"lock_status\": \"False\",\n            \"device_status\": \"Active\"\n        },\n        {\n            \"serial_number\": \"452-794-126\",\n            \"connection_status\": \"Offline\",\n            \"lock_status\": \"False\",\n            \"device_status\": \"Inactive\"\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/locations/loc_208855\"\n    }\n}"}],"_postman_id":"4d19852a-697b-49fb-a493-8e472d939339"},{"name":"Location by ID (Payfac)","id":"98986577-1dda-4b51-8026-4564a346c72e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}","description":"<p><strong>NOTE:</strong> The processing limits that display in the <code>card</code> and <code>echeck</code> sub-objects require Payfac permissions. For more information, contact Forte Technical Support at 888-235-4635 option 3. </p>\n<p>This URI returns detailed location data using the <code>location_id</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"ee1e2116-9c8a-4e6b-a2bd-522add523b56","name":"Location by ID (Payfac)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 14:33:16 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"1819","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"location_id\": \"loc_115161\",\n    \"dba_name\": \"McFly Industries, Inc.\",\n    \"organization_id\": \"org_300005\",\n    \"organization_name\": \"McFly Industries, Inc.\",\n    \"parent_organization_id\": \"org_234791\",\n    \"parent_organization_name\": \"TEST DEV ISO\",\n    \"status\": \"live\",\n    \"street_address1\": \"500 W. BETHANY\",\n    \"locality\": \"ALLEN\",\n    \"region\": \"TX\",\n    \"postal_code\": \"75013\",\n    \"country\": \"USA\",\n    \"created_date\": \"2009-04-09T11:44:27.243\",\n    \"business_type\": \"Other\",\n    \"business_description\": \"Car repair and customs\",\n    \"hold_funds\": true,\n    \"hold_funds_reason\": \"hold for risk review\",\n    \"currency\": \"USD\",\n    \"timezone\": \"ET\",\n    \"contacts\": [\n        {\n            \"contact_type\": \"primary\",\n            \"full_name\": \"Marty McFly\",\n            \"phone\": \"555-555-5555\",\n            \"email\": \"marty@mcflyindustries.com\"\n        },\n        {\n            \"contact_type\": \"billing\",\n            \"full_name\": \"Jennifer McFly\",\n            \"phone\": \"555-555-5576\",\n            \"email\": \"jenn@mcflyindustries.com\"\n        }\n    ],\n    \"services\": {\n        \"card\": {\n            \"market_type\": \"e_commerce\",\n            \"card_types\": [\n                \"AMEX\",\n                \"DINE\",\n                \"DISC\",\n                \"JCB\",\n                \"MC\",\n                \"VISA\"\n            ],\n            \"account_updater\": \"enabled\",\n            \"gateway\": true,\n            \"platform\": \"Test\",\n            \"per_trans_debit\": 500,\n            \"per_trans_credit\": 500,\n            \"daily_debit\": 1000,\n            \"daily_credit\": 1000,\n            \"monthly_debit\": 20000,\n            \"monthly_credit\": 20000\n        },\n        \"echeck\": {\n            \"cut-off-time\": \"01:00:00\",\n            \"market_type\": \"e_commerce\",\n            \"hold_days_sales\": 3,\n            \"hold_days_refunds\": 2,\n            \"entry_class_codes\": [\n                \"ARC\",\n                \"BOC\",\n                \"CCD\",\n                \"CIE\",\n                \"CTX\",\n                \"POP\",\n                \"POS\",\n                \"PPD\",\n                \"RCK\",\n                \"TEL\",\n                \"WEB\"\n            ],\n            \"nacha_id\": \"224\",\n            \"per_trans_debit\": 500,\n            \"per_trans_credit\": 500,\n            \"daily_debit\": 1000,\n            \"daily_credit\": 1000,\n            \"monthly_debit\": 20000,\n            \"monthly_credit\": 20000\n        }\n    },\n    \"bankaccount_credits_token\": \"bac_GKUEMVvSiku6M5WrdpKS9g\",\n    \"bankaccount_debits_token\": \"bac_GKUEMVvSiku6M5WrdpKS9g\",\n    \"bankaccount_billing_token\": \"bac_GKUEMVvSiku6M5WrdpKS9g\",\n    \"bankaccount_ccfee_token\": \"bac_GKUEMVvSiku6M5WrdpKS9g\",\n    \"bankaccount_ecfee_token\": \"bac_GKUEMVvSiku6M5WrdpKS9g\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/locations/loc_115161\"\n    }\n}"}],"_postman_id":"98986577-1dda-4b51-8026-4564a346c72e"},{"name":"Change Processing Limits (Payfac)","id":"89bbe7a3-a2ec-4972-a40e-08fe71e6aacc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n \"services\": {\r\n    \"echeck\": {\r\n        \"daily_debit\" : 1000,\r\n        \"daily_credit\" : 1000,\r\n        \"monthly_debit\" : 50000,\r\n        \"monthly_credit\" : 50000,\r\n        \"per_trans_debit\" : 500.00,\r\n        \"per_trans_credit\" : 500.00\r\n    },\r\n    \"card\": {\r\n        \"daily_debit\" : 10000,\r\n        \"daily_credit\" : 10000,\r\n        \"monthly_debit\" : 100000,\r\n        \"monthly_credit\" : 100000,\r\n        \"per_trans_debit\" : 500.00,\r\n        \"per_trans_credit\" : 500.00\r\n    }\r\n }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}","description":"<p><strong>NOTE:</strong> Only partners with special permissions can change processing limits on their merchant's account. For more information, contact Forte Customer Support at 800-337-3060 option 1.</p>\n<p>This URI enables partners to change the daily processing limits for echeck and credit card transactions for a merchant account.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"2b198272-2568-43f9-9ae3-1829db4740d8","name":"Change Processing Limits","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{Authorization}}"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"raw","raw":"{\r\n \"services\": {\r\n    \"echeck\": {\r\n        \"daily_debit\" : 1000,\r\n        \"daily_credit\" : 1000,\r\n        \"monthly_debit\" : 50000,\r\n        \"monthly_credit\" : 50000,\r\n        \"per_trans_debit\" : 500.00,\r\n        \"per_trans_credit\" : 500.00\r\n    },\r\n    \"card\": {\r\n        \"daily_debit\" : 10000,\r\n        \"daily_credit\" : 10000,\r\n        \"monthly_debit\" : 100000,\r\n        \"monthly_credit\" : 100000,\r\n        \"per_trans_debit\" : 500.00,\r\n        \"per_trans_credit\" : 500.00\r\n    }\r\n }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}/locations/loc_{{locationID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 18 Oct 2018 22:00:23 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"577","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"location_id\": \"loc_208855\",\n    \"hold_funds\": false,\n    \"services\": {\n        \"card\": {\n            \"per_trans_debit\": 500,\n            \"per_trans_credit\": 500,\n            \"daily_debit\": 10000,\n            \"daily_credit\": 10000,\n            \"monthly_debit\": 100000,\n            \"monthly_credit\": 100000\n        },\n        \"echeck\": {\n            \"per_trans_debit\": 500,\n            \"per_trans_credit\": 500,\n            \"daily_debit\": 1000,\n            \"daily_credit\": 1000,\n            \"monthly_debit\": 50000,\n            \"monthly_credit\": 50000\n        }\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/locations/loc_208855\"\n    }\n}"}],"_postman_id":"89bbe7a3-a2ec-4972-a40e-08fe71e6aacc"},{"name":"Update a Location's Address","id":"054b827a-9474-4d8d-97af-487d685863fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"street_address1\": \"1200 Clock Tower Lane\",\r\n    \"street_address2\": \"Suite 500\",\r\n    \"locality\": \"Hill Valley\",\r\n    \"region\": \"CA\",\r\n    \"postal_code\": \"90214\",\r\n    \"country\": \"US\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}","description":"<p>Use this URI to update the following address parameters associated with a location: </p><ul><li><code>street_address1</code></li><li><code>street_address2</code></li><li><code>locality</code></li><li><code>region</code></li><li><code>postal_code</code></li><li><code>country</code></li></ul> \nWhen a location's address is successfully updated, Forte sends an email notification to the location's primary contact informing him/her of the update.<p></p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"ebc1f4b9-bbbe-4a7e-a1ea-686cc78c672e","name":"Update a Location's Address","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":" {{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_300382"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"street_address1\": \"1200 Clock Tower Lane\",\r\n    \"street_address2\": \"Suite 500\",\r\n    \"locality\": \"Hill Valley\",\r\n    \"region\": \"CA\",\r\n    \"postal_code\": \"90214\",\r\n    \"country\": \"US\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Nov 2019 19:37:18 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"324","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"location_id\": \"loc_173185\",\n    \"street_address1\": \"1200 Clock Tower Lane\",\n    \"street_address2\": \"Suite 500\",\n    \"locality\": \"Hill Valley\",\n    \"region\": \"CA\",\n    \"postal_code\": \"90214\",\n    \"country\": \"USA\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/locations/loc_173185\"\n    }\n}"}],"_postman_id":"054b827a-9474-4d8d-97af-487d685863fa"},{"name":"Service Fee for Card with 12-digit BIN","id":"d687406e-14c6-430d-88cf-3c6b9a40b4f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"subtotal_amount\":\"100\",\r\n    \"account_number\":\"403203479661\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/?service_fee=true","description":"<p>This URL with query parameter is used to retrieve the service fee for a location based on the first 12-digit BIN of the card and subtotal_amount.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}",""],"host":["{{baseURI}}"],"query":[{"key":"service_fee","value":"true"}],"variable":[]}},"response":[{"id":"8aeff4c7-f8a9-4f2f-964d-64de8ef1b93c","name":"Service Fee for Card with 12-digit BIN","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":" {{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_300382"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"subtotal_amount\":\"100\",\r\n    \"account_number\":\"403203479661\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/?service_fee=true","host":["{{baseURI}}"],"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}",""],"query":[{"key":"service_fee","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Nov 2019 19:37:18 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"324","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"card_category\": \"Credit\",\n    \"service_fee_amount\": 0.00,\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    }\n}"}],"_postman_id":"d687406e-14c6-430d-88cf-3c6b9a40b4f1"},{"name":"Service Fee for Echeck","id":"0acf03a4-17fa-4412-b91a-57b13c621822","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n     \"subtotal_amount\":\"100\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/?service_fee=true","description":"<p>This URL with query parameter is used to retrieve the service fee for a location based on the subtotal_amount.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}",""],"host":["{{baseURI}}"],"query":[{"key":"service_fee","value":"true"}],"variable":[]}},"response":[{"id":"24989e23-dcaf-4f10-a16e-11ad1ac16926","name":"Service Fee for Echeck","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":" {{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_300382"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"subtotal_amount\":\"100\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/?service_fee=true","host":["{{baseURI}}"],"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}",""],"query":[{"key":"service_fee","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Nov 2019 19:37:18 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"324","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"service_fee_amount\": 4.00\n}"}],"_postman_id":"0acf03a4-17fa-4412-b91a-57b13c621822"}],"id":"c19cefd6-5362-4301-bb86-f60fa790bcd9","description":"<p>The <code>locations</code> object represents a merchant's processing endpoints. This object enables merchants to see address, contact, business, and services data related to their location. The <code>locations</code> object includes the <code>contacts</code>, <code>services</code>, <code>card</code>, and <code>echeck</code> subobjects.</p>\n<h2 id=\"locations-object\">Locations Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n<th>Req</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>location_id</code></td>\n<td>The identification number of the associated location. For example, <code>loc_1234568</code>.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>The status of this location. Supported values include the following:  <br />  <br />- <code>Live</code>  <br />- <code>Pending</code>  <br />- <code>Closing</code>  <br />- <code>On-Hold</code>  <br />- <code>Deleted</code></td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>created_date</code></td>\n<td>The date that Forte created the location</td>\n<td>datetime</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>dba_name</code></td>\n<td>The merchant's Doing Business As (DBA) name.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>street_address1</code></td>\n<td>The first line of the location's street address.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>street_address2</code></td>\n<td>If needed, the second line of the location's street address.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>locality</code></td>\n<td>The city/town/village/locality of the location.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>region</code></td>\n<td>The state or province of the location. This field supports ISO-standard, 2-digit abbreviations for state and province names.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>postal_code</code></td>\n<td>The zip or postal code of the location.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>country</code></td>\n<td>The Alpha-3, ISO-standard country code of the location. For example, <code>USA</code> or <code>CAN</code>.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>business_phone</code></td>\n<td>The business phone number of the location. [max length = 15]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td>The Alpha-3, ISO-standard currency code of the currency the location uses.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>timezone</code></td>\n<td>The timezone of the location. Supported values for this field include the following:  <br />  <br />- <code>PT</code> - Pacific Time  <br />- <code>MT</code> - Mountain Time  <br />- <code>CT</code> - Central Time  <br />- <code>ET</code> - Eastern Time</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>business_type</code></td>\n<td>The location's type of business. See Forte's list of <a href=\"https://developers.forte.net/business-classification-codes/\">Business Classification Codes</a> for more information. [max length = 20]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>organization_id</code></td>\n<td>The identification number of the associated organization. For example, <code>org_5551236</code>.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>organization_name</code></td>\n<td>The name of the associated organization. [max length = 50]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>parent_organization_id</code></td>\n<td>The identification number of the associated parent organization. For example, <code>org_5551236</code>.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>contacts</code></td>\n<td>The <code>contacts</code> object.</td>\n<td>object</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>contacts.full_name</code></td>\n<td>The first and last name of this location's contact.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>contacts.phone</code></td>\n<td>The phone number of this location's contact. [max length = 15]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>contacts.email</code></td>\n<td>The business email address of this location's contact. This email cannot be a generic email address or from a distribution list. The value of this parameter must be in a valid email format (e.g., <code>john.doe@email.com</code>). [max length = 100]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>contacts.type</code></td>\n<td>The type of contact associated with this location. Supported values for this field include the following:  <br />  <br />- <code>primary</code>  <br />- <code>sales</code>  <br />- <code>billing</code>  <br />- <code>support</code>  <br />- <code>technical</code></td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services</code></td>\n<td>The <code>services</code> object</td>\n<td>object</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.echeck</code></td>\n<td>The <code>echeck</code> object</td>\n<td>object</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.echeck.service_fee_percentage</code></td>\n<td>The service fee (i.e., convenience fee) percentage amount for ACH transactions.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.echeck.service_fee_min_amount</code></td>\n<td>The minimum service fee (i.e., convenience fee) amount for ACH transactions.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.echeck.service_fee_amount</code></td>\n<td>The flat service fee (i.e., convenience fee) amount for ACH transactions.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.echeck.service_fee_range</code></td>\n<td>The range of service fee (i.e., convenience fee) amounts for ACH transactions.</td>\n<td>array</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.echeck.service_fee_tiered</code></td>\n<td>The tiered service fee (i.e., convenience fee) amounts for ACH transactions.</td>\n<td>array</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.echeck.service_fee_additional_amount</code></td>\n<td>The additional service fee (i.e., convenience fee) amounts for ACH transactions.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.echeck.hold_days_sales</code></td>\n<td>The number of days ACH funds from sale transactions are held before the receiving bank reconciles and settles the transaction.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.echeck.hold_days_refunds</code></td>\n<td>The number of days ACH funds from refund/credit transactions are held before before the receiving bank reconciles and settles the transaction.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.echeck.hold_days_resubmits</code></td>\n<td>The number of days ACH funds are held before the transaction is resubmitted to/from your customer's account.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.echeck.cut_off_time</code></td>\n<td>The settlement cut-off times configured for this location based on the ACH processor.</td>\n<td>datetime</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.echeck.entry_class_code</code></td>\n<td>The list of standard entry class codes configured for this location. For more information, see <a href=\"https://developers.forte.net/ach-standard-entry-class-codes/\">Using ACH and SEC Return Codes</a>.</td>\n<td>array</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.echeck.nacha_id</code></td>\n<td>The NACHA Co ID or Company ID used to process ACH transactions for this location.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.echeck.service_enabled</code></td>\n<td>Indicates whether the location is enabled to process echeck transactions.  <br />Supported values for this field include the following:  <br />- <code>true</code>  <br />- <code>false</code></td>\n<td>boolean</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card</code></td>\n<td>The <code>card</code> object.</td>\n<td>object</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.cut_off_time</code></td>\n<td>The settlement cut-off times configured for this location based on the credit card processor.</td>\n<td>datetime</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.market_type</code></td>\n<td>The method by which the business captures the majority of its transactions. Supported values for this field include the following:  <br />  <br />- <code>internet</code>  <br />- <code>phone</code>  <br />- <code>mail</code>  <br />- <code>point_of_sale</code></td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.service_fee_percentage</code></td>\n<td>The service fee (i.e., convenience fee) percentage amount for credit card transactions.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.service_fee_min_amount</code></td>\n<td>The minimum service fee (i.e., convenience fee) amount for credit card transactions.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.service_fee_amount</code></td>\n<td>The flat service fee (i.e., convenience fee) amount for credit card transactions.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.service_fee_additional_amount</code></td>\n<td>The additional service fee (i.e., convenience fee) amounts for credit card transactions.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.service_fee_range</code></td>\n<td>The range of service fee (i.e., convenience fee) amounts for credit card transactions.</td>\n<td>array</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.service_fee_tiered</code></td>\n<td>The tiered service fee (i.e., convenience fee) amounts for credit card transactions.</td>\n<td>array</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.service_fee_visa_tax_amount</code></td>\n<td>The flat service fee (i.e., convenience fee) amount used for VISA Debit cards. <strong>NOTE</strong>: <strong>services:card:service_fee_visa_tax_amount</strong> is now a legacy field (the visa tax program has been ended) and should be ignored. Visa debit cards now preceded by debit service fee configuration</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.debit_service_fee_percentage</code></td>\n<td>The service fee (i.e., convenience fee) percentage amount for debit card transactions.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.debit_service_fee_min_amount</code></td>\n<td>The minimun service fee (i.e., convenience fee) amount for debit card transactions.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.debit_service_fee_amount</code></td>\n<td>The flat service fee (i.e., convenience fee) amount for debit card transactions.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.debit_service_fee_additional_amount</code></td>\n<td>The additional service fee (i.e., convenience fee) amounts for debit card transactions.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.debit_service_fee_range</code></td>\n<td>The range of service fee (i.e., convinience fee) amounts for debit card transactions.</td>\n<td>array</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.debit_service_fee_tiered</code></td>\n<td>The tiered service fee (i.e., convenience fee) amounts for debit card transactions.</td>\n<td>array</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.card_types</code></td>\n<td>The list of credit card types accepted by this merchant. Supported values for this field include the following:  <br />  <br />- <code>VISA</code>  <br />- <code>AMEX</code>  <br />- <code>MC</code>  <br />- <code>JCB</code>  <br />- <code>DISC</code></td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.account_updater</code></td>\n<td>A flag indicating whether or not the Account Updater subscription is enabled for this location. Supported values for this field include the following:  <br />  <br />- <code>enabled</code>  <br />- <code>disabled</code></td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.gateway</code></td>\n<td>Indicates whether or not the location is processing credit card transactions using a gateway in which transactions are processed through a different Service Provider. Supported values for this field include the following:  <br />  <br />- <code>true</code>  <br />- <code>false</code></td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.platform</code></td>\n<td>The credit card transaction processor.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.bin</code></td>\n<td>The merchant's Bank Identification Number (BIN) for credit card processing.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.tid</code></td>\n<td>The merchant's Terminal Identification (TID) number for credit card processing.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.card.service_enabled</code></td>\n<td>Indicates whether the location is enabled to process credit card transactions.  <br />Supported values for this field include the following:  <br />- <code>true</code>  <br />- <code>false</code></td>\n<td>boolean</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>services.debit.service_enabled</code></td>\n<td>Indicates whether the location is enabled to proces debit card transactions.  <br />Supported values for this field include the following:  <br />- <code>true</code>  <br />- <code>false</code></td>\n<td>boolean</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>bankaccount_credits_token</code></td>\n<td>The token of the bank account that handles the merchant's credit transactions (e.g., refunds, payroll, chargebacks, reversals, etc.).</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>bankaccount_debits_token</code></td>\n<td>The token of the bank account that handles the merchant's debit transactions (e.g., sales, chargeback wins, etc.).</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>bankaccount_billing_token</code></td>\n<td>The token of the bank account that pays the merchant's billing obligations to Forte or the Reseller.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>bankaccount_ccfee_token</code></td>\n<td>The token of the bank account that collects the convenience fee debits for each of the merchant's credit card sale transactions.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>bankaccount_ecfee_token</code></td>\n<td>The token of the bank account that collects the convenience fee debits for each of the merchant's echeck sale transactions.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>terminals.serial_number</code></td>\n<td>The serial number of a V400c device, enabled in cloud mode for the location.  <br />[max length = 11]</td>\n<td>string</td>\n<td>--</td>\n</tr>\n<tr>\n<td><code>terminals.connection_status</code></td>\n<td>The status of the cloud connection to the terminal.  <br />Supported values for this field include:  <br />- Online  <br />- Offline</td>\n<td>boolean</td>\n<td>--</td>\n</tr>\n<tr>\n<td><code>terminals.lock_status</code></td>\n<td>The lock status shows if a terminal is in use. Supported values for this field include:  <br />- <code>true</code>  <br />- <code>false</code>  <br />NOTE: The terminal is in use when the lock status is “true” and it is available to use when the lock status is “false”.</td>\n<td>boolean</td>\n<td>--</td>\n</tr>\n<tr>\n<td><code>terminals.device_status</code></td>\n<td>The status of the device as set up in Dex-Terminal Management. Supported values for this field include:  <br />- Active  <br />- Inactive</td>\n<td>boolean</td>\n<td>--</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"6aa0b253-d766-405b-83b8-bb14492a2142","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3c27ec35-5404-4f1c-8c53-65d0946a1abd","type":"text/javascript","exec":[""]}}],"_postman_id":"c19cefd6-5362-4301-bb86-f60fa790bcd9"},{"name":"Organizations","item":[{"name":"Find All Organizations","id":"3dfe19e5-abb0-48cb-ab50-94e047fa4031","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseURI}}/organizations","description":"<p>This URI returns all organizations beneath a parent organization (e.g., a partner organization or an enterprise organization). To narrow your search data using specific criteria, use the following parameters to filter your results:</p>\n<ul><li><p>organization_name</p></li><li><p>region</p></li><li><p>country</p></li><li><p>status:</p><ul><li><p>active</p></li><li><p>suspended</p></li><li><p>pending</p></li></ul></li><li><p>legal_structure:</p><ul><li><p>limited_liability_corporation</p></li><li><p>publicly_held_corporation</p></li><li><p>sole_proprietorship</p></li><li><p>partnership_general_or_limited</p></li><li><p>c-corporation</p></li><li><p>s-corporation</p></li><li><p>government</p></li><li><p>tax_exempt_or_non_profit_organization</p></li></ul></li></ul>\n\n<p><strong>Note:</strong> Please note that sending a request at the partner (org) level may result in a large data set and may cause timeout errors depending on the request. We recommend sending your GET request at the Merchant (Organization) level.</p>\n","urlObject":{"path":["organizations"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"aa6b9078-93c0-4171-abd2-7fd28cd2aa93","name":"Find All Organizations","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}","type":"text"}],"url":"{{baseURI}}/organizations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 03 Nov 2020 19:48:12 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"3447","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 2,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"resource_specific\": {}\n    },\n    \"results\": [\n        {\n            \"organization_id\": \"org_344174\",\n            \"parent_organization_id\": \"org_235433\",\n            \"status\": \"active\",\n            \"organization_name\": \"Hill Valley County Treasurer\",\n            \"legal_name\": \"Hill Valley County Treasurer\",\n            \"organization_type\": \"merchant\",\n            \"last_4_tax_id\": \"6423\",\n            \"language\": \"en\",\n            \"currency\": \"usd\",\n            \"physical_address\": {\n                \"street_line1\": \"111 East Main Street\",\n                \"locality\": \"Hill Valley\",\n                \"region\": \"CA\",\n                \"postal_code\": \"90214\",\n                \"country\": \"USA\"\n            },\n            \"contact\": [],\n            \"links\": {\n                \"fundings\": \"https://api.forte.net/v3/organizations/org_344174/fundings\",\n                \"disputes\": \"https://api.forte.net/v3/organizations/org_344174/disputes\",\n                \"documents\": \"https://api.forte.net/v3/organizations/org_344174/documents\",\n                \"bankaccounts\": \"https://api.forte.net/v3/organizations/org_344174/bankaccounts\",\n                \"locations\": \"https://api.forte.net/v3/organizations/org_344174/locations\",\n                \"customers\": \"https://api.forte.net/v3/organizations/org_344174/customers\",\n                \"addresses\": \"https://api.forte.net/v3/organizations/org_344174/addresses\",\n                \"paymethods\": \"https://api.forte.net/v3/organizations/org_344174/paymethods\",\n                \"transactions\": \"https://api.forte.net/v3/organizations/org_344174/transactions\",\n                \"settlements\": \"https://api.forte.net/v3/organizations/org_344174/settlements\",\n                \"scheduleitems\": \"https://api.forte.net/v3/organizations/org_344174/scheduleitems\",\n                \"applications\": \"https://api.forte.net/v3/organizations/org_344174/applications\",\n                \"self\": \"https://api.forte.net/v3/organizations/org_344174/\"\n            }\n        },\n        {\n            \"organization_id\": \"org_300005\",\n            \"parent_organization_id\": \"org_234791\",\n            \"status\": \"active\",\n            \"organization_name\": \"Hill Valley County Waste Management\",\n            \"legal_name\": \"Hill Valley County Waste Management\",\n            \"legal_structure\": \"government\",\n            \"organization_type\": \"merchant\",\n            \"last_4_tax_id\": \"3122\",\n            \"language\": \"en\",\n            \"currency\": \"usd\",\n            \"physical_address\": {\n                \"street_line1\": \"1435 Clock Tower Rd\",\n                \"locality\": \"Hill Valley\",\n                \"region\": \"CA\",\n                \"postal_code\": \"90214\",\n                \"country\": \"USA\"\n            },\n            \"contact\": [\n                {\n                    \"contact_type\": \"primary\",\n                    \"full_name\": \"Marty McFly\",\n                    \"phone\": \"(555) 555-5555\",\n                    \"email\": \"marty.mcfly@hvcwm.com\"\n                }\n            ],\n            \"links\": {\n                \"fundings\": \"https://api.forte.net/v3/organizations/org_300005/fundings\",\n                \"disputes\": \"https://api.forte.net/v3/organizations/org_300005/disputes\",\n                \"documents\": \"https://api.forte.net/v3/organizations/org_300005/documents\",\n                \"bankaccounts\": \"https://api.forte.net/v3/organizations/org_300005/bankaccounts\",\n                \"locations\": \"https://api.forte.net/v3/organizations/org_300005/locations\",\n                \"customers\": \"https://api.forte.net/v3/organizations/org_300005/customers\",\n                \"addresses\": \"https://api.forte.net/v3/organizations/org_300005/addresses\",\n                \"paymethods\": \"https://api.forte.net/v3/organizations/org_300005/paymethods\",\n                \"transactions\": \"https://api.forte.net/v3/organizations/org_300005/transactions\",\n                \"settlements\": \"https://api.forte.net/v3/organizations/org_300005/settlements\",\n                \"scheduleitems\": \"https://api.forte.net/v3/organizations/org_300005/scheduleitems\",\n                \"applications\": \"https://api.forte.net/v3/organizations/org_300005/applications\",\n                \"self\": \"https://api.forte.net/v3/organizations/org_300005/\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/organizations/\"\n    }\n}"}],"_postman_id":"3dfe19e5-abb0-48cb-ab50-94e047fa4031"},{"name":"Find an Organization by ID","id":"e6bbabff-716a-49b9-81f5-9be7aeb674c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseURI}}/organizations/org_{{organizationID}}","description":"<p>This endpoint returns all the information for a specific organization based on the <code>organization_id</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"c2852136-7e78-4634-80c9-b6c607fa2467","name":"Find an Organization by ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}","type":"text"}],"url":"{{baseURI}}/organizations/org_{{organizationID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 03 Nov 2020 20:02:53 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"1728","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"organization_id\": \"org_300005\",\n    \"parent_organization_id\": \"org_234791\",\n    \"status\": \"active\",\n    \"organization_name\": \"Hill Valley County Waste Management\",\n    \"legal_name\": \"Hill Valley County Waste Management\",\n    \"legal_structure\": \"government\",\n    \"organization_type\": \"merchant\",\n    \"last_4_tax_id\": \"3122\",\n    \"language\": \"en\",\n    \"currency\": \"usd\",\n    \"physical_address\": {\n        \"street_line1\": \"1435 Clock Tower Rd\",\n        \"locality\": \"Hill Valley\",\n        \"region\": \"CA\",\n        \"postal_code\": \"90214\",\n        \"country\": \"USA\"\n    },\n    \"contact\": [\n        {\n            \"contact_type\": \"primary\",\n            \"full_name\": \"Marty McFly\",\n            \"phone\": \"(555) 555-5555\",\n            \"email\": \"marty.mcfly@hvcwm.com\"\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n                \"fundings\": \"https://api.forte.net/v3/organizations/org_300005/fundings\",\n                \"disputes\": \"https://api.forte.net/v3/organizations/org_300005/disputes\",\n                \"documents\": \"https://api.forte.net/v3/organizations/org_300005/documents\",\n                \"bankaccounts\": \"https://api.forte.net/v3/organizations/org_300005/bankaccounts\",\n                \"locations\": \"https://api.forte.net/v3/organizations/org_300005/locations\",\n                \"customers\": \"https://api.forte.net/v3/organizations/org_300005/customers\",\n                \"addresses\": \"https://api.forte.net/v3/organizations/org_300005/addresses\",\n                \"paymethods\": \"https://api.forte.net/v3/organizations/org_300005/paymethods\",\n                \"transactions\": \"https://api.forte.net/v3/organizations/org_300005/transactions\",\n                \"settlements\": \"https://api.forte.net/v3/organizations/org_300005/settlements\",\n                \"scheduleitems\": \"https://api.forte.net/v3/organizations/org_300005/scheduleitems\",\n                \"applications\": \"https://api.forte.net/v3/organizations/org_300005/applications\",\n                \"self\": \"https://api.forte.net/v3/organizations/org_300005/\"\n    }\n}"}],"_postman_id":"e6bbabff-716a-49b9-81f5-9be7aeb674c4"}],"id":"6d78c098-256d-49e0-a38c-cdce64124bd3","description":"<p>The <code>organizations</code> object represents a a legal entity that can own multiple sub-organizations (for Forte Partners) or multiple locations (for Forte Merchants) as well as the customers, payment methods, and transactions that belong to those locations.</p>\n<p><strong>NOTE</strong>: All the parameters of the <code>organizations</code> object are return only.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n<th>Req</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>organization_id</code></td>\n<td>The identification number of the organization. For example, <code>org_1234568</code>.</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td><code>parent_organization_id</code></td>\n<td>The identification number of the merchant's parent organization.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>legal_name</code></td>\n<td>The legal name of the business. The value of this parameter must match the name associated with the merchant's Tax ID Number. [max length = 50].</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>organization_name</code></td>\n<td>The Doing-Business-As (DBA) name of the organization. For example, <code>Bob Smith Enterprises</code>.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>The status of this organization. Supported values include the following: <ul><li> <code>active</code></li><li> <code>suspended</code></li><li> <code>pending</code></li></ul></td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>organization_type</code></td>\n<td>The type of organization. Supported values include the following: <ul><li> <code>merchant</code></li><li> <code>partner</code></li><li> <code>enterprise</code></li></ul></td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>last_4_tax_id</code></td>\n<td>The last four digits of the Tax ID associated with this organization.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>language</code></td>\n<td>The language associated with the organization. Currently, the only supported language is English (<code>en</code>).</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td>The preferred currency of the organization. Currently, the only supported currency option is <code>USD</code>.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>physical_address</code></td>\n<td>The <code>physical_address</code> object.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>physical_address.street_address1</code></td>\n<td>The first line of the organization's street address.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>physical_address.street_address2</code></td>\n<td>If needed, the second line of the organization's street address.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>physical_address.locality</code></td>\n<td>The city/town/village/locality of the organization.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>physical_address.region</code></td>\n<td>The state or province of the organization. This field supports ISO-standard, 2-digit abbreviations for state and province names.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>physical_address.postal_code</code></td>\n<td>The zip or postal code of the organization.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>physical_address.country</code></td>\n<td>The Alpha-3, ISO-standard country code of the organization. For example, <code>USA</code> or <code>CAN</code>.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>created_date</code></td>\n<td>The date and time when this organization was created</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>legal_structure</code></td>\n<td>The legal business struture of this organization. Supported values for this field include the following: <ul><li> <code>limited_liability_corporation</code></li><li> <code>publicly_held_corporation</code></li><li> <code>sole_proprietorship</code></li><li> <code>partnership_general_or_limited</code></li><li> <code>c-corporation</code></li><li> <code>s-corporation</code></li><li> <code>government</code></li><li> <code>tax_exempt_or_non_profit_organization</code></li></ul></td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>contact</code></td>\n<td>The <code>contacts</code> object.</td>\n<td>object</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>contact.contact_type</code></td>\n<td>The type of contact associated with this organization. Only the primary contact displays for \"GET All Organizations\" requests. SUpported values for this field include the following: <ul><li> <code>primary</code></li><li> <code>sales</code></li><li> <code>billing</code></li><li> <code>support</code></li><li> <code>technical</code></li></ul></td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>contact.full_name</code></td>\n<td>The first and last name of the contact associated with this orgniaztion.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>contact.phone</code></td>\n<td>The phone number of this organization's contact. [max length = 15]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>contact.email</code></td>\n<td>The business email address of this organization's contact. This email cannot be a generic email address or from a distribution list. The value of this parameter must be in a valid email format (e.g., <code>john.doe@email.com</code>). [max length = 100]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"fc58aa53-b9b2-4210-97c8-3d985dd74568","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8db5c3b4-faf5-40bf-99a4-4dbfa9b62b9e","type":"text/javascript","exec":[""]}}],"_postman_id":"6d78c098-256d-49e0-a38c-cdce64124bd3"},{"name":"Paymethods","item":[{"name":"Customer Credit Card Paymethod","id":"5ff4f93e-b897-4fce-8822-344375d00c1f","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"notes\":\"Brwn Work Card\",\r\n       \"card\": {\r\n          \"name_on_card\":\"Emmett Brown\",\r\n          \"card_type\":\"visa\",\r\n          \"account_number\":\"4111111111111111\",\r\n          \"expire_month\":12,\r\n          \"expire_year\":2030,\r\n          \"card_verification_value\": \"123\"\r\n       }   \r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/paymethods","description":"<p>This URI creates a new paymethod for the customer and returns a <code>paymethod_token</code>. Use this URI when creating permanent paymethod tokens from one-time tokens created in <a href=\"https://developers.forte.net/forte-js/\">Forte.js</a>.</p>\n<p><strong>NOTE</strong>: You can also create a new paymethod for an existing customer by including the <code>customer_token</code> in the body of the request to the <code>/organizations/org_{{organization}}/locations/loc_{{location}}/paymethods</code> URI.</p>\n<p>To associate an existing <code>billing_address_token</code> to a paymethod, include it in the body of the request.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}","paymethods"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"78d252db-5dbe-44fd-bc6c-6193f0bfe786","name":"Customer Credit Card Paymethod","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"notes\":\"Brwn Work Card\",\r\n       \"billing_address_token\": \"add_wMjZV_6U4kCLXyWgtKshJA\",\r\n       \"card\": {\r\n          \"name_on_card\":\"Emmett Brown\",\r\n          \"card_type\":\"visa\",\r\n          \"account_number\":\"4111111111111111\",\r\n          \"expire_month\":12,\r\n          \"expire_year\":2030,\r\n          \"card_verification_value\": \"123\"\r\n       }   \r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/paymethods"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"close","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data.","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Wed, 30 May 2018 16:13:52 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server","enabled":true},{"key":"Set-Cookie","value":"incap_ses_516_636562=a; Max-Age=0; path=/; expires=Sun, 27 May 2018 10:06:08 GMT; Domain=.forte.net","description":"an HTTP cookie","enabled":true},{"key":"Set-Cookie","value":"incap_ses_515_636562=a; Max-Age=0; path=/; expires=Sun, 27 May 2018 10:06:08 GMT; Domain=.forte.net","description":"an HTTP cookie","enabled":true},{"key":"Set-Cookie","value":"incap_ses_618_621087=a; Max-Age=0; path=/; expires=Sun, 27 May 2018 10:06:08 GMT; Domain=.forte.net","description":"an HTTP cookie","enabled":true},{"key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity.","enabled":true},{"key":"WWW-Authenticate","value":"Basic realm=\"sandbox.forte.net\"","description":"Indicates the authentication scheme that should be used to access the requested entity.","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header","enabled":true},{"key":"X-CDN","value":"Incapsula","description":"Custom header","enabled":true},{"key":"X-Iinfo","value":"10-9512452-9512455 NNNN CT(36 32 0) RT(1527696831279 35) q(0 0 0 -1) r(2 2) U6","description":"Custom header","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","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)","enabled":true}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"zc1JQDv3SsqdxPTgM0OnpjEoKFoAAAAAQUIPAAAAAAC5r9SJNQaR/XxRjTJMvNk3","key":"visid_incap_621087"},{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"LagOT3H0bz16V2j2cEK08gAAAADFN8p3Q2kgpDNG5tb93/yr","key":"nlbi_621087"},{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"Gu1jkb4nQBeXljXOnARN0tqXMVoAAAAAQUIPAAAAAACR/yf5rDPX4eBxRqMSjpKM","key":"visid_incap_636562"},{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"yvInRueGznR+OOop4JROuQAAAAC5mRw739i8vVmsTGP0K9Lb","key":"nlbi_636562"},{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"zALsc3pl21br5wIoLqufAU7JDlsAAAAAbYXKCtVXEbg+Z/SbE9TRZQ==","key":"incap_ses_117_636562"},{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"8l/FCPAg8BaYsQcoLqufAafMDlsAAAAACfhpdM32VzanCATchqlwIg==","key":"incap_ses_117_621087"}],"responseTime":null,"body":"{\n    \"paymethod_token\": \"mth_Qh6W5lDWsUOx1hXNPl5iFw\",\n    \"location_id\": \"loc_192642\",\n    \"customer_token\": \"cst_lyv-2BilTkWpIgK1TMKvoA\",\n    \"billing_address_token\": \"add_wMjZV_6U4kCLXyWgtKshJA\",\n    \"notes\": \"Brwn Work Card\",\n    \"card\": {\n        \"name_on_card\": \"Emmett Brown\",\n        \"masked_account_number\": \"************1111\",\n        \"card_type\": \"visa\",\n        \"expire_month\": \"12\",\n        \"expire_year\": \"2030\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/organizations/org_334316/locations/loc_192642/customers/cst_lyv-2BilTkWpIgK1TMKvoA/paymethods/mth_Qh6W5lDWsUOx1hXNPl5iFw\"\n    }\n}"}],"_postman_id":"5ff4f93e-b897-4fce-8822-344375d00c1f"},{"name":"Customer ECheck Paymethod","id":"f5726468-1994-4bf2-887f-bb3d406ec961","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"notes\":\"Brwn echeck\",\r\n       \"echeck\": {\r\n          \"account_holder\": \"Emmett Brown\",\r\n          \"account_number\":\"1111111111111\",\r\n          \"routing_number\":\"021000021\",\r\n          \"account_type\":\"checking\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/paymethods","description":"<p>This URI creates a new paymethod for the customer and returns a <code>paymethod_token</code>. Use this URI when creating permanent paymethod tokens from one-time tokens created in <a href=\"https://developers.forte.net/forte-js/\">Forte.js</a>.</p>\n<p><strong>NOTE</strong>: You can also create a new paymethod for an existing customer by including the <code>customer_token</code> in the body of the request to the <code>/organizations/org_{{organization}}/locations/loc_{{location}}/paymethods</code> URI.</p>\n<p>To associate an existing <code>billing_address_token</code> to a paymethod, include it in the body of the request.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}","paymethods"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"394b28c2-761a-4401-acab-cbf3ccbf96c8","name":"Create a Customer eCheck Paymethod","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"notes\":\"Brwn echeck\",\r\n       \"billing_address_token\": \"add_wMjZV_6U4kCLXyWgtKshJA\",\r\n       \"echeck\": {\r\n          \"account_holder\": \"Emmett Brown\",\r\n          \"account_number\":\"1111111111111\",\r\n          \"routing_number\":\"021000021\",\r\n          \"account_type\":\"checking\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{location}}/customers/cst_{{customertoken}}/paymethods"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 19:56:08 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"9-6656212-6656222 NNNN CT(39 75 0) RT(1508874968366 37) q(0 0 1 -1) r(1 1) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"paymethod_token\": \"mth_jv3rMPuyI06BdZJQ-X4Vjw\",\n    \"location_id\": \"loc_192642\",\n    \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n    \"billing_address_token\": \"add_wMjZV_6U4kCLXyWgtKshJA\",\n    \"notes\": \"Brwn echeck\",\n    \"echeck\": {\n        \"account_holder\": \"Emmett Brown\",\n        \"masked_account_number\": \"****1111\",\n        \"last_4_account_number\": \"1111\",\n        \"routing_number\": \"021000021\",\n        \"account_type\": \"checking\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_jv3rMPuyI06BdZJQ-X4Vjw/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_jv3rMPuyI06BdZJQ-X4Vjw/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_jv3rMPuyI06BdZJQ-X4Vjw/schedules\",\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_jv3rMPuyI06BdZJQ-X4Vjw\"\n    }\n}"}],"_postman_id":"f5726468-1994-4bf2-887f-bb3d406ec961"},{"name":"Customer PayPal Paymethod","id":"c10d82c2-2fe5-4413-a1fb-727b05e736a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"notes\":\"Brwn Work Card\",\r\n       \"vendor\": {\r\n        \"vendor_type\": \"paypal\",\r\n        \"vendor_billing_agreement_token\": \"BA-6RR2783828950364P\"\r\n    }\r\n  \r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/paymethods","description":"<p>This URI creates a new paymethod for the customer and returns a PayPal <code>paymethod_token</code><strong>NOTE</strong>: You can also create a new paymethod for an existing customer by including the <code>customer_token</code> in the body of the request to the /organizations/org_{{organization}}/locations/loc_{{location}}/paymethods<br />URI.</p>\n<p>To associate an existing <code>billing_address_token</code> to a paymethod, include it in the<br />body of the request.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}","paymethods"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"06e64fad-1fbf-4d5d-b998-340ee29b2eea","name":"Create a Customer PayPal Paymethod","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{Authorization}}"},{"key":"X-Forte-Auth_Organization_Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n       \"notes\":\"Brwn Work Card\",\r\n       \"vendor\": {\r\n        \"vendor_type\": \"paypal\",\r\n        \"vendor_billing_agreement_token\": \"BA-6RR2783828950364P\"\r\n    }\r\n  \r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/paymethods"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"paymethod_token\": \"mth_EgWjFN9w40KIYAAMRmHMRw\",\n    \"location_id\": \"loc_192642\",\n    \"customer_token\": \"cst_qC15ATBekUeB2-966LQz5w\",\n    \"notes\": \"Brwn Work Card\",\n    \"vendor\": {\n        \"vendor_type\": \"paypal\",\n        \"vendor_billing_agreement_token\": \"BA-6RR2783828950364P\",\n        \"vendor_billing_agreement_id\": \"B-7H989178H5887753B\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_EgWjFN9w40KIYAAMRmHMRw/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_EgWjFN9w40KIYAAMRmHMRw/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_EgWjFN9w40KIYAAMRmHMRw/schedules\",\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_EgWjFN9w40KIYAAMRmHMRw/\"\n    }\n}"}],"_postman_id":"c10d82c2-2fe5-4413-a1fb-727b05e736a4"},{"name":"Paymethod to a Locationless Customer","id":"4a9cc5f9-215c-4643-9998-65a7510e4197","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"notes\": \"IVR\",\r\n  \"organization_id\": \"org_334277\",\r\n  \"card\": {\r\n    \"name_on_card\": \"Marty McFly\",\r\n    \"card_type\": \"VISA\",\r\n    \"account_number\": \"4111111111111111\",\r\n    \"expire_month\": \"10\",\r\n    \"expire_year\": \"2030\"\r\n  }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/customers/cst_{{customertoken}}/paymethods","description":"<p>Use this call to associate a paymethod to a locationless customer (see the <a href=\"https://restdocs.forte.net/?version=latest#5c1592d5-a0e3-46af-9a65-f43603ad93ac\">POST Locationless Customer</a> call).</p>\n","urlObject":{"path":["customers","cst_{{customertoken}}","paymethods"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"42422a3f-1971-4e8b-95b0-8903e3f136e2","name":"Paymethod to a Locationless Customer","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"raw","raw":"{\r\n  \"notes\": \"ivr created\",\r\n  \"organization_id\": \"org_334277\",\r\n  \"card\": {\r\n    \"name_on_card\": \"Account Holder\",\r\n    \"card_type\": \"VISA\",\r\n    \"account_number\": \"4111111111111111\",\r\n    \"expire_month\": \"10\",\r\n    \"expire_year\": \"2030\"\r\n  }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/customers/cst_Df6Z-tEecUagECg-Mxo_QA/paymethods"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 09 Jan 2020 19:54:31 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"778","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"paymethod_token\": \"mth_6tPlMDB9zESgoDzU13OByw\",\n    \"organization_id\": \"org_334277\",\n    \"customer_token\": \"cst_Df6Z-tEecUagECg-Mxo_QA\",\n    \"notes\": \"ivr created\",\n    \"card\": {\n        \"name_on_card\": \"Marty McFly\",\n        \"last_4_account_number\": \"1111\",\n        \"masked_account_number\": \"****1111\",\n        \"expire_month\": 10,\n        \"expire_year\": 2030,\n        \"card_type\": \"visa\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_6tPlMDB9zESgoDzU13OByw/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_6tPlMDB9zESgoDzU13OByw/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_6tPlMDB9zESgoDzU13OByw/schedules\",\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_6tPlMDB9zESgoDzU13OByw\"\n    }\n}"}],"_postman_id":"4a9cc5f9-215c-4643-9998-65a7510e4197"},{"name":"Clientless Credit Card Paymethod","id":"beac3fa0-c2ab-4573-b329-497b2770527f","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{  \r\n       \"label\": \"Visa - 1234\",\r\n       \"notes\": \"Brown Work CC\",\r\n       \"card\": {\r\n          \"account_number\": \"4488563295465231\",\r\n          \"expire_month\": 12,\r\n          \"expire_year\": 2030,\r\n          \"card_verification_value\": \"645\",\r\n          \"card_type\": \"visa\",\r\n          \"name_on_card\": \"Dr. Emmett Brown\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods","description":"<p>This URI creates a clientless credit card payment method  and returns a <code>paymethod_token</code> (i.e., a payment method that is not associated with a customer). To associate this payment method with an existing customer, include that customer's <code>customer_token</code> in the body of the request or include the <code>customer_token</code> value in the route (e.g., <code>/organizations/org_{{organization}}/locations/loc_{{location}}/customers/cst_{{customer_token}}/paymethods</code>).</p>\n<p>To associate an existing <code>billing_address_token</code> to the paymethod, include it in the body of the request.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","paymethods"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"32fc43a5-1778-481c-a089-a95383384dd9","name":"Create a Clientless Credit Card Paymethod","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{  \r\n       \"label\": \"Visa - 1234\",\r\n       \"notes\": \"Brown Work CC\",\r\n       \"billing_address_token\": \"add_4RP1CuGMtUukoWHX5NNhjQ\",\r\n       \"card\": {\r\n          \"account_number\": \"4488563295465231\",\r\n          \"expire_month\": 12,\r\n          \"expire_year\": 2030,\r\n          \"card_verification_value\": \"645\",\r\n          \"card_type\": \"visa\",\r\n          \"name_on_card\": \"Dr. Emmett Brown\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 20:15:41 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"3-5424435-5424445 NNNN CT(34 74 0) RT(1508876141526 42) q(0 0 1 0) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"paymethod_token\": \"mth_0B1UVBJ54kShFuvx_gbdDQ\",\n    \"location_id\": \"loc_192642\",\n    \"label\": \"Visa - 1234\",\n    \"notes\": \"Brown Work CC\",\n    \"billing_address_token\": \"add_4RP1CuGMtUukoWHX5NNhjQ\",\n    \"card\": {\n        \"name_on_card\": \"Dr. Emmett Brown\",\n        \"last_4_account_number\": \"5231\",\n        \"masked_account_number\": \"****5231\",\n        \"expire_month\": 12,\n        \"expire_year\": 2030,\n        \"card_type\": \"visa\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_0B1UVBJ54kShFuvx_gbdDQ/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_0B1UVBJ54kShFuvx_gbdDQ/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_0B1UVBJ54kShFuvx_gbdDQ/schedules\",\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_0B1UVBJ54kShFuvx_gbdDQ\"\n    }\n}"}],"_postman_id":"beac3fa0-c2ab-4573-b329-497b2770527f"},{"name":"Clientless eCheck Paymethod","id":"bf9a0bf6-0ca9-40e5-9d04-017cd2617538","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"label\": \"Brown Work- 1111\",\r\n       \"notes\": \"Brown Work Checking\",\r\n       \"echeck\": {\r\n          \"account_holder\": \"Marty McFly\",\r\n          \"account_number\": \"1111111111111\",          \r\n          \"routing_number\": \"021000021\",\r\n          \"item_description\": \"1001\",\r\n          \"account_type\": \"checking\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods","description":"<p>This URI creates a clientless echeck payment method and returns a <code>paymethod_token</code> (i.e., a payment method that is not associated with a customer). To associate this payment method with an existing customer, include that customer's <code>customer_token</code> in the body of the request or include the <code>customer_token</code> value in the route (e.g., <code>/organizations/org_{{organization}}/locations/loc_{{location}}/customers/cst_{{customer_token}}/paymethods</code>).</p>\n<p>To associate an existing <code>billing_address_token</code> to a paymethod, include it in the body of the request.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","paymethods"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"39f2991e-015e-4e8c-a59f-1798320a4d91","name":"Create a Clientless eCheck Paymethod","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"label\": \"Brown Work- 1111\",\r\n       \"notes\": \"Brown Work Checking\",\r\n       \"billing_address_token\": \"add_1I3zkd5MfkCwa7ckluiu1A\",\r\n       \"echeck\": {\r\n          \"account_holder\": \"Marty McFly\",\r\n          \"account_number\": \"1111111111111\",          \r\n          \"routing_number\": \"021000021\",\r\n          \"item_description\": \"1001\",\r\n          \"account_type\": \"checking\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 21:10:04 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"4-6585779-6627169 SNNN RT(1508879143471 261157) q(0 0 0 -1) r(1 1) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"paymethod_token\": \"mth_Qm5oCy077UeP_KUjm8R1JQ\",\n    \"location_id\": \"loc_192642\",\n    \"label\": \"Brown Work- 1111\",\n    \"notes\": \"Brown Work Checking\",\n    \"billing_address_token\": \"add_1I3zkd5MfkCwa7ckluiu1A\",\n    \"echeck\": {\n        \"account_holder\": \"Marty McFly\",\n        \"masked_account_number\": \"****1111\",\n        \"last_4_account_number\": \"1111\",\n        \"routing_number\": \"021000021\",\n        \"account_type\": \"checking\",\n        \"item_description\": \"1001\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_Qm5oCy077UeP_KUjm8R1JQ/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_Qm5oCy077UeP_KUjm8R1JQ/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_Qm5oCy077UeP_KUjm8R1JQ/schedules\",\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_Qm5oCy077UeP_KUjm8R1JQ\"\n    }\n}"}],"_postman_id":"bf9a0bf6-0ca9-40e5-9d04-017cd2617538"},{"name":"Clientless PayPal Paymethod","id":"efe21a97-68cc-43e7-a22f-3b59103a8b74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{ \r\n       \"label\": \"Brown Work- 1111\", \r\n       \"notes\": \"Brown Work Checking\", \r\n       \"vendor\": { \r\n          \"vendor_type\": \"paypal\", \r\n          \"vendor_billing_agreement_token\": \"BA-4A647113CM7972924 \" \r\n       } \r\n} ","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods ","description":"<p>This URI creates a clientless PayPal payment method and returns a <code>paymethod_token</code> (i.e., a payment method that is not associated with a customer). To associate this payment method with an existing customer, include that customer's <code>customer_token</code> in the body of the request or include the <code>customer_token</code> value in the route (e.g., /organizations/org_{{organization}}/locations/loc_{{location}}/customers/cst_{{customer_token}}/paymethods).</p>\n<p>To associate an existing <code>billing_address_token</code> to the paymethod, include it in the body of the request.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","paymethods "],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"b3cef49d-e581-4772-821f-78a190b0bd5c","name":"Clientless PayPal method","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{Authorization}}"},{"key":"X-Forte-Auth_Organization_Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{        \r\n    \"label\": \"Brown Work- 1111\", \r\n       \"notes\": \"Brown Work Checking\", \r\n       \"vendor\": { \r\n          \"vendor_type\": \"paypal\", \r\n          \"vendor_billing_agreement_token\": \"BA-4A647113CM7972924 \" \r\n       } \r\n} ","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"paymethod_token\": \"mth_3KpxBy0mg0u88US41eA-2g\",\n    \"location_id\": \"loc_192642\",\n    \"billing_address_token\": \"add_7kgXR6KzMUCQbLXZKqx88A\",\n    \"label\": \"PayPal - 1234\",\n    \"notes\": \"Brwn Work Card\",\n    \"vendor\": {\n        \"vendor_type\": \"paypal\",\n        \"vendor_billing_agreement_token\": \"BA-6RR2783828950364P\",\n        \"vendor_billing_agreement_id\": \"B-7H989178H5887753B\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_3KpxBy0mg0u88US41eA-2g/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_3KpxBy0mg0u88US41eA-2g/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_3KpxBy0mg0u88US41eA-2g/schedules\",\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_3KpxBy0mg0u88US41eA-2g/\"\n    }\n}\n\n"}],"_postman_id":"efe21a97-68cc-43e7-a22f-3b59103a8b74"},{"name":"Permanent Paymethod Token from a One-Time Token (Credit Card)","id":"6915b7c4-c92e-4f58-8a69-812147519bc9","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"label\": \"Brown VISA\",\r\n   \"notes\": \"Brown Work Card\",\r\n   \"card\": {\r\n     \"one_time_token\": \"ott_ki99oclmr8c0gduavrcjww\",\r\n     \"name_on_card\":\"Marty McFly\"\r\n   }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/paymethods","description":"<p>Use this URI to create a permanent token from the one-time token you created in <a href=\"https://developers.forte.net/forte-js/\">Forte.js</a>. You can also create a permanent token from a one-time token by including the existing customer's <code>customer_token</code> in the body of the request to the <code>/organizations/org_{{organization}}/locations/loc{{location}}/paymethods</code> URL.</p>\n<p><strong>NOTE</strong>: At this time, one-time tokens cannot be used to create organization-level paymethod <a href=\"https://developers.forte.net/tokens/\">tokens</a>.</p>\n<p>To associate an existing <code>billing_address_token</code> to a paymethod, include it in the body of the request.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}","paymethods"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"f0930876-721f-4115-8f36-90e5065dca69","name":"Create a Permanent Paymethod Token from a One-Time Token (Credit Card)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"label\": \"Brown VISA\",\r\n   \"notes\": \"Brown Work Card\",\r\n   \"billing_address_token\": \"add_1I3zkd5MfkCwa7ckluiu1A\",\r\n   \"card\": {\r\n     \"one_time_token\": \"ott_ki99oclmr8c0gduavrcjww\",\r\n     \"name_on_card\":\"Marty McFly\"\r\n   }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/paymethods"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 20:20:48 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"9-6946348-6946359 NNNN CT(32 41 0) RT(1508876448403 48) q(0 0 1 -1) r(3 3) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"location_id\": \"loc_192642\",\n    \"paymethod_token\": \"mth_ZK01TBclw0mTgMdrmSevdg\",\n    \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n    \"billing_address_token\": \"add_1I3zkd5MfkCwa7ckluiu1A\",\n    \"label\": \"Brown VISA\",\n    \"notes\": \"Brown Work Card\",\n    \"card\": {\n        \"one_time_token\": \"ott_ki99oclmr8c0gduavrcjww\",\n        \"name_on_card\": \"Marty McFly\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_ZK01TBclw0mTgMdrmSevdg/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_ZK01TBclw0mTgMdrmSevdg/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_ZK01TBclw0mTgMdrmSevdg/schedules\",\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_ZK01TBclw0mTgMdrmSevdg\"\n    }\n}"}],"_postman_id":"6915b7c4-c92e-4f58-8a69-812147519bc9"},{"name":"Permanent Paymethod Token from a One-Time Token (eCheck)","id":"b72f8439-28a0-41aa-93cc-693a892bee6b","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"notes\": \"McFly_Checking\",\r\n       \"echeck\": {\r\n          \"one_time_token\": \"ott_ki99oclmr8c0gduavrcjww\",\r\n          \"account_holder\":\"Marty McFly\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/paymethods","description":"<p>Use this URI to create a permanent token from the one-time token you created in <a href=\"https://developers.forte.net/forte-js/\">Forte.js</a>. You can also create a permanent token from a one-time token by including the existing customer's <code>customer_token</code> in the body of the request to the <code>/organizations/org_{{organization}}/locations/loc{{location}}/paymethods</code> URL.</p>\n<p><strong>NOTE</strong>: At this time, one-time tokens cannot be used to create organization-level paymethod <a href=\"https://developers.forte.net/tokens/\">tokens</a>.</p>\n<p>To associate an existing <code>billing_address_token</code> to a paymethod, include it in the body of the request.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}","paymethods"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"d50ca362-6f65-4f5c-b983-958d2179fa5e","name":"Create a Permanent Paymethod Token from a One-Time Token (eCheck)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"notes\": \"McFly_Checking\",\r\n       \"billing_address_token\": \"add_1I3zkd5MfkCwa7ckluiu1A\",\r\n       \"echeck\": {\r\n          \"one_time_token\": \"ott_ki99oclmr8c0gduavrcjww\",\r\n          \"account_holder\":\"Marty McFly\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/paymethods"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 20:27:00 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"9-7022079-7022090 NNNN CT(35 71 0) RT(1508876820084 41) q(0 0 1 -1) r(5 5) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"location_id\": \"loc_192642\",\n    \"paymethod_token\": \"mth_ZK01TBclw0mTgMdrmSevdg\",\n    \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n    \"billing_address_token\": \"add_1I3zkd5MfkCwa7ckluiu1A\",\n    \"notes\": \"McFly_Checking\",\n    \"echeck\": {\n        \"one_time_token\": \"ott_ki99oclmr8c0gduavrcjww\",\n        \"account_holder\": \"Marty McFly\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_ZK01TBclw0mTgMdrmSevdg/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_ZK01TBclw0mTgMdrmSevdg/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_ZK01TBclw0mTgMdrmSevdg/schedules\",\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_ZK01TBclw0mTgMdrmSevdg\"\n    }\n}"}],"_postman_id":"b72f8439-28a0-41aa-93cc-693a892bee6b"},{"name":"Customer's Paymethods","id":"545b4ef1-88a3-4468-8704-a46d3a0461ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/paymethods","description":"<p>This URI returns all paymethods associated with the specified <code>customer_token</code>.</p>\n","urlObject":{"path":["organizations","org_{{organization}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}","paymethods"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"91805c87-c1dc-46c7-b7a0-9d8f38537598","name":"Customer's Paymethods","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/paymethods"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"349","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 16:34:45 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"number_results\": 2,\r\n  \"search_criteria\": {\r\n    \"page_size\": 50,\r\n    \"page_index\": 0,\r\n    \"home_organization_id\": \"org_300005\",\r\n    \"resource_specific\": {\r\n      \"location_id\": \"loc_115161\",\r\n      \"customer_token\": \"cst_1ddMytA0SsKzSwuxT8UExg\"\r\n    }\r\n  },\r\n  \"results\": [\r\n    {\r\n      \"paymethod_token\": \"mth_NUXS_glgR4-wV1tZr9bh6w\",\r\n      \"organization_id\": \"org_300005\",\r\n      \"location_id\": \"loc_115161\",\r\n      \"customer_token\": \"cst_1ddMytA0SsKzSwuxT8UExg\",\r\n      \"billing_address_token\": \"add_EuBdXShz_U-WabGPTTIvaQ\",\r\n      \"label\": \"Visa Credit Card - 1111\",\r\n      \"card\": {\r\n        \"name_on_card\": \"c\",\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"expire_month\": 12,\r\n        \"expire_year\": 2020,\r\n        \"procurement_card\": false,\r\n        \"card_type\": \"visa\"\r\n      },\r\n      \"is_default\":\"false\",\r\n      \"links\": {\r\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_NUXS_glgR4-wV1tZr9bh6w/transactions\",\r\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_NUXS_glgR4-wV1tZr9bh6w/settlements\",\r\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_NUXS_glgR4-wV1tZr9bh6w/schedules\",\r\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_NUXS_glgR4-wV1tZr9bh6w\"\r\n      }\r\n    },\r\n    {\r\n      \"paymethod_token\": \"mth_kZ4yliRgdUW4BGveSpbxKg\",\r\n      \"organization_id\": \"org_300005\",\r\n      \"location_id\": \"loc_115161\",\r\n      \"customer_token\": \"cst_1ddMytA0SsKzSwuxT8UExg\",\r\n      \"billing_address_token\": \"add_EuBdXShz_U-WabGPTTIvaQ\",\r\n      \"label\": \"Work MAST - 3232\",\r\n      \"card\": {\r\n        \"name_on_card\": \"wrer ere\",\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"expire_month\": 5,\r\n        \"expire_year\": 2020,\r\n        \"procurement_card\": false,\r\n        \"card_type\": \"visa\",\r\n        \"suppress_account_updater\": false\r\n      },\r\n      \"is_default\": \"true\",\r\n      \"links\": {\r\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_kZ4yliRgdUW4BGveSpbxKg/transactions\",\r\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_kZ4yliRgdUW4BGveSpbxKg/settlements\",\r\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_kZ4yliRgdUW4BGveSpbxKg/schedules\",\r\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_kZ4yliRgdUW4BGveSpbxKg\"\r\n      }\r\n    }\r\n  ],\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_desc\": \"Get Successful.\"\r\n  },\r\n  \"links\": {\r\n    \"self\": \"https://api.forte.net/v3/paymethods/\"\r\n  }\r\n}"}],"_postman_id":"545b4ef1-88a3-4468-8704-a46d3a0461ff"},{"name":"Paymethod by ID","id":"d6b87caf-7da0-4785-9f25-4cb139dfed8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}","description":"<p>Returns the payment method details associated with a <code>paymethod_token</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","paymethods","mth_{{paymethodtoken}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"acbdac76-886f-4719-90a5-41e439412688","name":"Paymethod by ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{location}}/paymethods/mth_{{paymethodtoken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"138","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 16:39:37 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true},{"key":"WWW-Authenticate","value":"Basic realm=\"api-live-testlan.4ta.com\"","description":"Indicates the authentication scheme that should be used to access the requested entity.","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\r\n  \"organization_id\": \"org_334316\",\r\n  \"location_id\": \"loc_192642\",\r\n  \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n  \"billing_address_token\": \"add_EuBdXShz_U-WabGPTTIvaQ\",\r\n  \"customer_id\": \"\",\r\n  \"label\": \"Brown Work- 1111\",\r\n  \"notes\": \"Brown Work Checking\",\r\n  \"echeck\": {\r\n    \"account_holder\": \"Jennifer McFly\",\r\n    \"masked_account_number\": \"****1111\",\r\n    \"last_4_account_number\": \"1111\",\r\n    \"routing_number\": \"021000021\",\r\n    \"account_type\": \"checking\"\r\n  },\r\n  \"is_default\": \"true\",\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_desc\": \"Get Successful.\"\r\n  },\r\n  \"links\": {\r\n    \"transactions\": \"https://api.forte.net/v3/paymethods/mth_3urq2yQexUmRWD3v8SOqlg/transactions\",\r\n    \"settlements\": \"https://api.forte.net/v3/paymethods/mth_3urq2yQexUmRWD3v8SOqlg/settlements\",\r\n    \"schedules\": \"https://api.forte.net/v3/paymethods/mth_3urq2yQexUmRWD3v8SOqlg/schedules\",\r\n    \"self\": \"https://api.forte.net/v3/paymethods/mth_3urq2yQexUmRWD3v8SOqlg\"\r\n  }\r\n}"}],"_postman_id":"d6b87caf-7da0-4785-9f25-4cb139dfed8b"},{"name":"All Paymethods for a Location","id":"4df1a8a4-5462-4b1e-ab41-2bd176b88637","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods","description":"<p>This URI returns all the payment methods owned by a Location. To narrow your search data using specific criteria, use the following parameters to filter your results:</p>\n<ul>\n<li> customer_token</li>\n<li> customer_id</li>\n<li> start_au_updated_date / end_au_updated_date</li>\n<li> paymethod_type</li>\n</ul>\n\n\n<p><strong>NOTES</strong>: </p>\n<ul>\n<li>All date filter parameters are time aware.</li>\n<li>As a best practice, Forte recommends running your Account Updater report on the first day of the month for the previous month's data. This method provides the most accurate Account Updater data to match to merchant invoice items.</li>\n</ul>","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","paymethods"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"b412dd51-7983-4a65-a2ab-8159def027c0","name":"All Paymethods for a Location","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"32604","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 16:45:02 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"number_results\": 2,\r\n  \"search_criteria\": {\r\n    \"page_size\": 50,\r\n    \"page_index\": 0,\r\n    \"home_organization_id\": \"org_334316\",\r\n    \"resource_specific\": {\r\n      \"location_id\": \"loc_192642\"\r\n    }\r\n  },\r\n  \"results\": [\r\n    {\r\n      \"paymethod_token\": \"mth_e8Hp-JIYbU6zbnZVf2MsQA\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_UwNHSfqc60SMRC2mDJ5OWw\",\r\n      \"billing_address_token\": \"add_1I3zkd5MfkCwa7ckluiu1A\",\r\n      \"customer_id\": \"\",\r\n      \"label\": \"Visa - 1243\",\r\n      \"notes\": \"Business CC\",\r\n      \"card\": {\r\n        \"name_on_card\": \"Emmett L. Brown\",\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"expire_month\": 10,\r\n        \"expire_year\": 2020,\r\n        \"procurement_card\": false,\r\n        \"card_type\": \"visa\",\r\n        \"suppress_account_updater\": false,\r\n        \"au_code\": \"\"\r\n      },\r\n      \"is_default\": \"true\",\r\n      \"links\": {\r\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_e8Hp-JIYbU6zbnZVf2MsQA/transactions\",\r\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_e8Hp-JIYbU6zbnZVf2MsQA/settlements\",\r\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_e8Hp-JIYbU6zbnZVf2MsQA/schedules\",\r\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_e8Hp-JIYbU6zbnZVf2MsQA\"\r\n      }\r\n    },\r\n    {\r\n      \"paymethod_token\": \"mth_MrWFy6yZyEe3_6_mb_dkSA\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"billing_address_token\": \"add_kVu82mnKcUumx0qoWsBZzw\",\r\n      \"label\": \"Visa Credit Card - 1111\",\r\n      \"notes\": \"Brwn Work Card\",\r\n      \"card\": {\r\n        \"name_on_card\": \"Emmett Brown\",\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"expire_month\": 12,\r\n        \"expire_year\": 2020,\r\n        \"procurement_card\": false,\r\n        \"card_type\": \"visa\",\r\n        \"suppress_account_updater\": false,\r\n        \"au_code\": \"\"\r\n      },\r\n      \"is_default\": \"false\",\r\n      \"links\": {\r\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_MrWFy6yZyEe3_6_mb_dkSA/transactions\",\r\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_MrWFy6yZyEe3_6_mb_dkSA/settlements\",\r\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_MrWFy6yZyEe3_6_mb_dkSA/schedules\",\r\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_MrWFy6yZyEe3_6_mb_dkSA\"\r\n      }\r\n    }\r\n  ],\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_desc\": \"Get Successful.\"\r\n  },\r\n  \"links\": {\r\n    \"self\": \"https://api.forte.net/v3/paymethods/\",\r\n    \"next\": \"https://api.forte.net/v3/paymethods/?page_index=1\"\r\n  }\r\n}"}],"_postman_id":"4df1a8a4-5462-4b1e-ab41-2bd176b88637"},{"name":"All Paymethods for an Organization","id":"d7a7089b-32e2-42ee-8247-b5214f1f4c72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/paymethods","description":"<p>This URI returns all the payment methods owned by an Organization. <a href=\"https://www.forte.net/account-updater\">Account Updater</a> customers use this URI to view the payment tokens that were updated in the prior months using the following filter parameters:</p>\n<ul><li><p>start_au_updated_date</p></li><li><p>end_au_updated_date</p></li></ul>\n\n<p>These filters ensure that Forte only returns card payment token results within the specified date range. <strong>NOTE</strong>: Account Updater services cannot be tested in Sandbox.</p>\n<p>To narrow your search data using specific criteria, use the following parameters to filter your results.</p>\n<ul><li><p>location_id</p></li><li><p>customer_token</p></li><li><p>customer_id</p></li><li><p>start_au_updated_date / end_au_updated_date</p></li><li><p>paymethod_type</p></li></ul>\n\n<p><strong>NOTE</strong>: All date filter parameters are time aware.</p>\n<p>Please note that sending a request at the partner (org) level may result in a large data set and may cause timeout errors depending on the request. We recommend sending your GET request at the Merchant (Organization) level.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","paymethods"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"4ba4c382-2b07-444a-bae6-9b8843c156d7","name":"All Paymethods for an Organization","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organizationID}}/paymethods"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-encoding","value":"gzip","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 05 Dec 2017 21:51:22 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"8-251492797-251528118 NNNN CT(34 35 0) RT(1512510504036 177861) q(0 0 1 -1) r(8 9) U16","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 3,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_334316\",\n        \"resource_specific\": {}\n    },\n    \"results\": [\n        {\n            \"paymethod_token\": \"mth_e8Hp-JIYbU6zbnZVf2MsQA\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"customer_token\": \"cst_UwNHSfqc60SMRC2mDJ5OWw\",\n            \"billing_address_token\":\"add_kVu82mnKcUumx0qoWsBZzw\",\n            \"label\": \"Visa - 1243\",\n            \"notes\": \"Business CC\",\n            \"card\": {\n                \"name_on_card\": \"Emmett L. Brown\",\n                \"last_4_account_number\": \"1111\",\n                \"masked_account_number\": \"****1111\",\n                \"expire_month\": 10,\n                \"expire_year\": 2020,\n                \"procurement_card\": false,\n                \"card_type\": \"visa\",\n                \"suppress_account_updater\": false,\n                \"au_code\": \"\"\n            },\n            \"is_default\": \"false\",\n            \"links\": {\n                \"transactions\": \"https://api.forte.net/v3/paymethods/mth_e8Hp-JIYbU6zbnZVf2MsQA/transactions\",\n                \"settlements\": \"https://api.forte.net/v3/paymethods/mth_e8Hp-JIYbU6zbnZVf2MsQA/settlements\",\n                \"schedules\": \"https://api.forte.net/v3/paymethods/mth_e8Hp-JIYbU6zbnZVf2MsQA/schedules\",\n                \"self\": \"https://api.forte.net/v3/paymethods/mth_e8Hp-JIYbU6zbnZVf2MsQA\"\n            }\n        },\n        {\n            \"paymethod_token\": \"mth_MrWFy6yZyEe3_6_mb_dkSA\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"customer_token\": \"cst_3Y26tnxue02gQ05yqB23Tg\",\n            \"billing_address_token\": \"add_y5FzM2p000KOerg-vmLSfQ\",\n            \"label\": \"Visa Credit Card - 1111\",\n            \"notes\": \"Brwn Work Card\",\n            \"card\": {\n                \"name_on_card\": \"Emmett Brown\",\n                \"last_4_account_number\": \"1111\",\n                \"masked_account_number\": \"****1111\",\n                \"expire_month\": 12,\n                \"expire_year\": 2020,\n                \"procurement_card\": false,\n                \"card_type\": \"visa\",\n                \"suppress_account_updater\": false,\n                \"au_code\": \"\"\n            },\n            \"is_default\": \"true\",\n            \"links\": {\n                \"transactions\": \"https://api.forte.net/v3/paymethods/mth_MrWFy6yZyEe3_6_mb_dkSA/transactions\",\n                \"settlements\": \"https://api.forte.net/v3/paymethods/mth_MrWFy6yZyEe3_6_mb_dkSA/settlements\",\n                \"schedules\": \"https://api.forte.net/v3/paymethods/mth_MrWFy6yZyEe3_6_mb_dkSA/schedules\",\n                \"self\": \"https://api.forte.net/v3/paymethods/mth_MrWFy6yZyEe3_6_mb_dkSA\"\n            }\n        },\n        {\n            \"paymethod_token\": \"mth_ih6dAnE_GE28mKDBzfJ3aQ\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"customer_token\": \"cst_RFn5JuDGzkiQyE4Y4e8kpg\",\n            \"billing_address_token\":\"add_Xt9w6MAWs06Oa3nO16HlkQ\",\n            \"label\": \"Visa - 1243\",\n            \"notes\": \"Personal CC\",\n            \"card\": {\n                \"name_on_card\": \"Emmett L. Brown\",\n                \"last_4_account_number\": \"1111\",\n                \"masked_account_number\": \"****1111\",\n                \"expire_month\": 10,\n                \"expire_year\": 2020,\n                \"procurement_card\": false,\n                \"card_type\": \"visa\",\n                \"suppress_account_updater\": false,\n                \"au_code\": \"\"\n            },\n            \"is_default\": \"false\",\n            \"links\": {\n                \"transactions\": \"https://api.forte.net/v3/paymethods/mth_ih6dAnE_GE28mKDBzfJ3aQ/transactions\",\n                \"settlements\": \"https://api.forte.net/v3/paymethods/mth_ih6dAnE_GE28mKDBzfJ3aQ/settlements\",\n                \"schedules\": \"https://api.forte.net/v3/paymethods/mth_ih6dAnE_GE28mKDBzfJ3aQ/schedules\",\n                \"self\": \"https://api.forte.net/v3/paymethods/mth_ih6dAnE_GE28mKDBzfJ3aQ\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/paymethods/\",\n        \"next\": \"https://api.forte.net/v3/paymethods/?page_index=1\"\n    }\n}"}],"_postman_id":"d7a7089b-32e2-42ee-8247-b5214f1f4c72"},{"name":"Account Updater Token Updates","id":"47dd0e48-986f-4d6c-840e-f9b88fbd2c3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/paymethods/?filter=start_au_updated_date+eq+'2020-01-08'+and+end_au_updated_date+eq+'2020-12-08'","description":"<p><a href=\"https://www.forte.net/account-updater\">Account Updater</a> customers use this URI with the <code>start_au_updated_date</code> and <code>end_au_updated_date</code> filters to view the payment tokens that were updated in the prior months.</p>\n<p><strong>NOTES</strong>:</p>\n<ul><li><p>Account Updater services cannot be tested in Sandbox.</p></li><li><p>As a best practice, Forte recommends running your Account Updater report on the first day of the month for the previous month's data. This method provides the most accurate Account Updater data to match to merchant invoice items.</p></li></ul>\n\n<p>Please note that sending a request at the partner (org) level may result in a large data set and may cause timeout errors depending on the request. We recommend sending your GET request at the Merchant (Organization) level.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","paymethods",""],"host":["{{baseURI}}"],"query":[{"key":"filter","value":"start_au_updated_date+eq+'2020-01-08'+and+end_au_updated_date+eq+'2020-12-08'"}],"variable":[]}},"response":[{"id":"61ba01c5-8a91-4b40-b8a4-703b8422c9f8","name":"Account Updater Token Updates","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseURI}}/organizations/org_{{organizationID}}/paymethods/?filter=start_au_updated_date+eq+'2020-01-08'+and+end_au_updated_date+eq+'2020-12-08'","host":["{{baseURI}}"],"path":["organizations","org_{{organizationID}}","paymethods",""],"query":[{"key":"filter","value":"start_au_updated_date+eq+'2020-01-08'+and+end_au_updated_date+eq+'2020-12-08'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 04 Nov 2020 17:31:39 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"2308","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 2,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_300005\",\n        \"resource_specific\": {\n            \"start_au_updated_date\": \"2020-01-08T00:00:00\",\n            \"end_au_updated_date\": \"2020-12-08T00:00:00\"\n        }\n    },\n    \"results\": [\n        {\n            \"paymethod_token\": \"mth_Mgy5x_oEz0uktUxoY9mXtw\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"customer_token\": \"cst_jLPyxklP_keHBuV4PJ2IOg\",\n            \"billing_address_token\": \"add_WwdMKhR-aUe3MpRjqmbDfA\",\n            \"label\": \"VISA Credit Card - 1111\",\n            \"card\": {\n                \"name_on_card\": \"Marty McFly\",\n                \"last_4_account_number\": \"1111\",\n                \"masked_account_number\": \"****1111\",\n                \"expire_month\": 6,\n                \"expire_year\": 2022,\n                \"procurement_card\": false,\n                \"card_type\": \"visa\",\n                \"suppress_account_updater\": false,\n                \"au_updated_date\": \"2020-06-01T13:17:26.217\"\n            },\n            \"is_default\": true,\n            \"links\": {\n                \"transactions\": \"https://api.forte.net/v3/paymethods/mth_Mgy5x_oEz0uktUxoY9mXtw/transactions\",\n                \"settlements\": \"https://api.forte.net/v3/paymethods/mth_Mgy5x_oEz0uktUxoY9mXtw/settlements\",\n                \"schedules\": \"https://api.forte.net/v3/paymethods/mth_Mgy5x_oEz0uktUxoY9mXtw/schedules\",\n                \"self\": \"https://api.forte.net/v3/paymethods/mth_Mgy5x_oEz0uktUxoY9mXtw/\"\n            }\n        },\n        {\n            \"paymethod_token\": \"mth_Mgy5x_oEz0uktUxoY9mXtw\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"customer_token\": \"cst_jLPyxklP_keHBuV4PJ2IOg\",\n            \"billing_address_token\": \"add_WwdMKhR-aUe3MpRjqmbDfA\",\n            \"label\": \"VISA Credit Card - 1111\",\n            \"card\": {\n                \"name_on_card\": \"Biff Tannen\",\n                \"last_4_account_number\": \"1111\",\n                \"masked_account_number\": \"****1111\",\n                \"expire_month\": 6,\n                \"expire_year\": 2022,\n                \"procurement_card\": false,\n                \"card_type\": \"visa\",\n                \"suppress_account_updater\": false,\n                \"au_updated_date\": \"2020-06-01T13:17:26.217\"\n            },\n            \"is_default\": true,\n            \"links\": {\n                \"transactions\": \"https://api.forte.net/v3/paymethods/mth_Mgy5x_oEz0uktUxoY9mXtw/transactions\",\n                \"settlements\": \"https://api.forte.net/v3/paymethods/mth_Mgy5x_oEz0uktUxoY9mXtw/settlements\",\n                \"schedules\": \"https://api.forte.net/v3/paymethods/mth_Mgy5x_oEz0uktUxoY9mXtw/schedules\",\n                \"self\": \"https://api.forte.net/v3/paymethods/mth_Mgy5x_oEz0uktUxoY9mXtw/\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/paymethods/?filter=start_au_updated_date+eq+%272020-01-08%27+and+end_au_updated_date+eq+%272020-12-08%27\"\n    }\n}"}],"_postman_id":"47dd0e48-986f-4d6c-840e-f9b88fbd2c3f"},{"name":"Service Fee by Paymethod Token","id":"6f83a5fd-89bf-45c2-9790-6ca7179998ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"F{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}/?service_fee=true&subtotal_amount=10","description":"<p>This URL along with query parameter is used to retrieve the service fee for a card or echeck paymethod token for a location based on the subtotal_amount.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","paymethods","mth_{{paymethodtoken}}",""],"host":["F{{baseURI}}"],"query":[{"key":"service_fee","value":"true"},{"key":"subtotal_amount","value":"10"}],"variable":[]}},"response":[{"id":"1de47e3e-3762-4a52-892c-9dd15ede0dab","name":"Service Fee by Card Paymethod Token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"F{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}/?service_fee=true&subtotal_amount=10","host":["F{{baseURI}}"],"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","paymethods","mth_{{paymethodtoken}}",""],"query":[{"key":"service_fee","value":"true"},{"key":"subtotal_amount","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 04 Nov 2020 17:31:39 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"2308","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"paymethod_token\": \"mth_AwY3k86XFUW-cj3aTxoipA\",\n    \"organization_id\": \"org_300005\",\n    \"location_id\": \"loc_124125\",\n    \"customer_token\": \"cst_uRitGzTE1kKUvykGrx40lg\",\n    \"billing_address_token\": \"add_o2bzf-_6_U6MBBrwKCf3Wg\",\n    \"label\": \"Visa - 1243\",\n    \"notes\": \"Business CC\",\n    \"card\": {\n        \"name_on_card\": \"Emmett L. Brown\",\n        \"last_4_account_number\": \"1111\",\n        \"masked_account_number\": \"****1111\",\n        \"expire_month\": 10,\n        \"expire_year\": 2030,\n        \"procurement_card\": false,\n        \"card_type\": \"visa\",\n        \"card_category\": \"Credit\",\n        \"suppress_account_updater\": false\n    },\n    \"is_default\": true,\n    \"service_fee_amount\": 0.00,\n    \"response\": {\n        \"environment\": \"sandbox\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_AwY3k86XFUW-cj3aTxoipA/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_AwY3k86XFUW-cj3aTxoipA/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_AwY3k86XFUW-cj3aTxoipA/schedules\",\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_AwY3k86XFUW-cj3aTxoipA/\"\n    }\n}"},{"id":"c111173f-4a77-474d-addb-3ba8331c6875","name":"Service Fee by Echeck Paymethod Token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"F{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}/?service_fee=true&subtotal_amount=10","host":["F{{baseURI}}"],"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","paymethods","mth_{{paymethodtoken}}",""],"query":[{"key":"service_fee","value":"true"},{"key":"subtotal_amount","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 04 Nov 2020 17:31:39 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"2308","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n  \"paymethod_token\": \"mth_3AFKrkX4I0-JFvJEmxFegg\",\n  \"organization_id\": \"org_300005\",\n  \"location_id\": \"loc_192642\",\n  \"notes\": \"Brwn Work Card\",\n      \"echeck\": {\n        \"account_holder\": \"Emmett Brown\",\n        \"masked_account_number\": \"****1111\",\n        \"last_4_account_number\": \"1111\",\n        \"routing_number\": \"021000021\",\n        \"account_type\": \"checking\"  \n    },\n    \"service_fee_amount\": 4.00,\n    \"is_default\": false,\n   \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_3AFKrkX4I0-JFvJEmxFegg/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_3AFKrkX4I0-JFvJEmxFegg/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_3AFKrkX4I0-JFvJEmxFegg/schedules\",\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_3AFKrkX4I0-JFvJEmxFegg/\"\n    }\n}"}],"_postman_id":"6f83a5fd-89bf-45c2-9790-6ca7179998ba"},{"name":"Update the Customer Token Associated with the Paymethod","id":"32811ffe-175d-400d-901f-5b57e3b91877","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\"customer_token\":\"cst_r0RxeHj4U0e2wpfOA09B_g\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/v3/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}","description":"<p>This URI updates the specified payment method (via the <code>paymethod_token</code> parameter) and assigns it to the <code>customer_token</code> specified in the request payload.</p>\n","urlObject":{"path":["v3","organizations","org_{{organizationID}}","locations","loc_{{locationID}}","paymethods","mth_{{paymethodtoken}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"86cdbb0b-7ee8-4378-a491-ba881acaf331","name":"Update the Customer Token Associated with the Paymethod","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"customer_token\":\"cst_r0RxeHj4U0e2wpfOA09B_g\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 13 May 2019 16:20:11 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"589","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"paymethod_token\": \"mth_Ud3X0JOC4ka5694qH15QDw\",\n    \"location_id\": \"loc_115161\",\n    \"customer_token\": \"cst_r0RxeHj4U0e2wpfOA09B_g\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_Ud3X0JOC4ka5694qH15QDw/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_Ud3X0JOC4ka5694qH15QDw/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_Ud3X0JOC4ka5694qH15QDw/schedules\",\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_Ud3X0JOC4ka5694qH15QDw\"\n    }\n}"}],"_postman_id":"32811ffe-175d-400d-901f-5b57e3b91877"},{"name":"Update an eCheck Paymethod","id":"e73cda13-d6ba-48d8-a76e-394f7a91f381","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n       \"label\": \"Brown Work- 1111\",\r\n       \"notes\": \"Brown Work Checking\",\r\n       \"echeck\": {\r\n          \"account_holder\": \"Jennifer McFly\",\r\n          \"routing_number\": \"021000021\",\r\n          \"item_description\": \"1001\",\r\n          \"account_type\": \"checking\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}","description":"<p>This URI updates the payment method specified in the route via the <code>paymethod_token</code> parameter. <strong>NOTE</strong>: You cannot update the <code>account_number</code> parameter when updating an echeck payment method.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","paymethods","mth_{{paymethodtoken}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"f02b006f-4122-40a0-a099-9bf3c3ff326e","name":"Update an ECheck Paymethod","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"label\": \"Brown Work- 1111\",\r\n       \"notes\": \"Brown Work Checking\",\r\n       \"echeck\": {\r\n          \"account_holder\": \"Jennifer McFly\",\r\n          \"routing_number\": \"021000021\",\r\n          \"item_description\": \"1001\",\r\n          \"account_type\": \"checking\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"717","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 20:54:31 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"1-4710706-4795537 NNNN CT(0 0 0) RT(1508877901085 570051) q(0 0 0 -1) r(1 1) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n    \"location_id\": \"loc_192642\",\n    \"label\": \"Brown Work- 1111\",\n    \"notes\": \"Brown Work Checking\",\n    \"echeck\": {\n        \"account_holder\": \"Jennifer McFly\",\n        \"routing_number\": \"021000021\",\n        \"account_type\": \"checking\",\n        \"item_description\": \"1001\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_3urq2yQexUmRWD3v8SOqlg/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_3urq2yQexUmRWD3v8SOqlg/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_3urq2yQexUmRWD3v8SOqlg/schedules\",\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_3urq2yQexUmRWD3v8SOqlg\"\n    }\n}"}],"_postman_id":"e73cda13-d6ba-48d8-a76e-394f7a91f381"},{"name":"Update Billing Address Associated with a Paymethod","id":"262cebfd-fcff-4710-b81d-8c8a6af5dacb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n\"billing_address_token\":\"add_xzDoohIiK0uj5wjPairb-g\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth__{{paymethodtoken}}","description":"<p>This URI updates the <code>billing_address_token</code> associated with the payment method. The billing address you associate to a payment method must belong to the same organization referenced in the route.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","paymethods","mth__{{paymethodtoken}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"069f51c9-d2da-40f4-b4d1-a6d56c5b8ff6","name":"Update Billing Address Associated with a Paymethod","originalRequest":{"method":"PUT","header":[{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"billing_address_token\":\"add_xzDoohIiK0uj5wjPairb-g\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth__{{paymethodtoken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 31 Jan 2019 21:28:45 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"596","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"paymethod_token\": \"mth__NnbdJW_AEeAR5giSA5zzg\",\n    \"location_id\": \"loc_115161\",\n    \"billing_address_token\": \"add_xzDoohIiK0uj5wjPairb-g\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth__NnbdJW_AEeAR5giSA5zzg/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth__NnbdJW_AEeAR5giSA5zzg/settlements\",\n        \"schedules\": \"https://api.forte.netv3/paymethods/mth__NnbdJW_AEeAR5giSA5zzg/schedules\",\n        \"self\": \"https://api.forte.net/v3/paymethods/mth__NnbdJW_AEeAR5giSA5zzg\"\n    }\n}"}],"_postman_id":"262cebfd-fcff-4710-b81d-8c8a6af5dacb"},{"name":"Update a Clientless Credit Card Paymethod","id":"3c2b7efb-aae4-4ff1-a0c3-c781bc1a7a78","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n       \"card\": {\r\n          \"expire_month\": 04,\r\n          \"expire_year\": 2020,\r\n          \"card_verification_value\": \"123\"\r\n       }\r\n} ","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}","description":"<p>This URI updates the payment method specified in the route via the <code>paymethod_token</code> parameter. <strong>NOTE</strong>: You cannot update the <code>account_number</code> or the <code>card_verification_value</code> parameters when updating a credit card payment method.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","paymethods","mth_{{paymethodtoken}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"35adab8d-9ef2-4950-90f1-c196e8fe2884","name":"Update a Clientless Credit Card Paymethod","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"card\": {\r\n          \"expire_month\": 04,\r\n          \"expire_year\": 2020,\r\n          \"card_verification_value\": \"123\"\r\n       }\r\n} ","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"579","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 21:09:29 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"4-6585779-6627169 NNNN CT(39 45 0) RT(1508879143471 226054) q(0 0 1 -1) r(1 1) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"paymethod_token\": \"mth_z4stz8S8302JEaMo-lJosw\",\n    \"location_id\": \"loc_192642\",\n    \"card\": {\n        \"expire_month\": 4,\n        \"expire_year\": 2020\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_z4stz8S8302JEaMo-lJosw/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_z4stz8S8302JEaMo-lJosw/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_z4stz8S8302JEaMo-lJosw/schedules\",\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_z4stz8S8302JEaMo-lJosw\"\n    }\n}"}],"_postman_id":"3c2b7efb-aae4-4ff1-a0c3-c781bc1a7a78"},{"name":"Update a Clientless eCheck Paymethod","id":"69aa7c7b-c47c-4dd4-b911-8f4377c97e51","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n       \"card\": {\r\n          \"expire_month\": 04,\r\n          \"expire_year\": 2020,\r\n          \"card_verification_value\": \"123\"\r\n       }\r\n} ","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}","description":"<p>This URI updates the payment method specified in the route via the <code>paymethod_token</code> parameter. <strong>NOTE</strong>: You cannot update the <code>account_number</code> parameter when updating an echeck payment method.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","paymethods","mth_{{paymethodtoken}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"e9f9fcd7-31f1-4746-9055-6ad8a5921c43","name":"Update a Clientless eCheck Paymethod","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"card\": {\r\n          \"expire_month\": 04,\r\n          \"expire_year\": 2020,\r\n          \"card_verification_value\": \"123\"\r\n       }\r\n} ","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"716","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 21:00:33 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"1-4710706-4848294 NNNN CT(38 33 0) RT(1508877901085 931812) q(0 0 1 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"paymethod_token\": \"mth_N7rT7FHun0Wd2r1aOujKKg\",\n    \"location_id\": \"loc_192642\",\n    \"label\": \"Brown Work- 1111\",\n    \"notes\": \"Brown Work Checking\",\n    \"echeck\": {\n        \"account_holder\": \"Jennifer McFly\",\n        \"routing_number\": \"021000021\",\n        \"account_type\": \"savings\",\n        \"item_description\": \"8008\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api.forte.net/v3/paymethods/mth_N7rT7FHun0Wd2r1aOujKKg/transactions\",\n        \"settlements\": \"https://api.forte.net/v3/paymethods/mth_N7rT7FHun0Wd2r1aOujKKg/settlements\",\n        \"schedules\": \"https://api.forte.net/v3/paymethods/mth_N7rT7FHun0Wd2r1aOujKKg/schedules\",\n        \"self\": \"https://api.forte.net/v3/paymethods/mth_N7rT7FHun0Wd2r1aOujKKg\"\n    }\n}"}],"_postman_id":"69aa7c7b-c47c-4dd4-b911-8f4377c97e51"},{"name":"Exclude a Paymethod from Account Updater Run","id":"b128ac22-c062-43da-9b02-c8d769684513","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n       \"card\": {\r\n          \"suppress_account_updater\": \"true\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}","description":"<p>This URI excludes a credit card token from the monthly Account Updater run when passed with the <code>\"suppress_account_updater\"=\"true\"</code> parameter in the body of the request. <strong>NOTE</strong>: <a href=\"https://www.forte.net/account-updater\">Account Updater</a> functionality cannot be tested in Sandbox. </p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","paymethods","mth_{{paymethodtoken}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"4acab127-2ea7-4781-bc79-cec872800019","name":"Exclude a Paymethod from Account Updater Run","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"card\": {\r\n          \"suppress_account_updater\": \"true\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"575","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 21:05:43 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"4-6585779-6585786 NNNN CT(43 94 0) RT(1508879143471 41) q(0 0 1 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\n    \"location_id\": \"loc_192642\",\n    \"card\": {\n        \"suppress_account_updater\": true\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"transactions\": \"https://api.forte.net/API/v3/paymethods/mth_cp459q53Q0W5wJdMG35f1w/transactions\",\n        \"settlements\": \"https://api.forte.net/API/v3/paymethods/mth_cp459q53Q0W5wJdMG35f1w/settlements\",\n        \"schedules\": \"https://api.forte.net/API/v3/paymethods/mth_cp459q53Q0W5wJdMG35f1w/schedules\",\n        \"self\": \"https://api.forte.net/API/v3/paymethods/mth_cp459q53Q0W5wJdMG35f1w\"\n    }\n}"}],"_postman_id":"b128ac22-c062-43da-9b02-c8d769684513"},{"name":"Paymethod","id":"d05cc423-2bf1-4bb3-923f-7ee0d126c9c5","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}","description":"<p>This URI deletes the payment method specified in the route via the <code>paymethod_token</code> parameter. <strong>NOTE</strong>: A payment method cannot be deleted if it is tied to a schedule in the <code>active</code> status.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","paymethods","mth_{{paymethodtoken}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"d3a37a1c-ccf0-4144-9eed-9ed068f04382","name":"Delete a Paymethod","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"149","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Tue, 24 Oct 2017 21:08:37 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"4-6585779-6613719 SNNN RT(1508879143471 173306) q(0 0 0 -1) r(1 1) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"paymethod_token\": \"mth_P3a5yUYcZ0uKhUAZHS8K8g\",\n    \"location_id\": \"loc_192642\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Delete Successful.\"\n    }\n}"}],"_postman_id":"d05cc423-2bf1-4bb3-923f-7ee0d126c9c5"}],"id":"1569f4dd-e5bd-4a38-b996-da6263b4613c","description":"<p>The <code>paymethods</code> object represents a customer's form of payment and includes the <code>card</code> and <code>echeck</code> sub-objects. This object enables the merchant to tokenize the customer's payment information within Forte's secure data vault. These paymethod tokens can be used to streamline the checkout process for repeat customers or to handle recurring payments without the need to store a customer's sensitive payment information on the merchant's servers. The paymethod object supports both Canadian and U.S.-based credit cards and echecks. For more information on how to correctly format Canadian routing numbers see the <code>echeck.routing_number</code> parameter. For more information about tokens, click <a href=\"https://developers.forte.net/tokens/\">here</a>.</p>\n<h2 id=\"paymethods-object\">Paymethods Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n<th>Req</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>organization_id</code></td>\n<td>The identification number of the associated organization. For example, <code>org_5551236</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>location_id</code></td>\n<td>The identification number of the associated location. For example, <code>loc_1234568</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>customer_token</code></td>\n<td>A unique string used to represent a customer. For example, <code>cst_SoGUG6mcLUS1nVzYBIbk3g</code>. [max length = 26]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>paymethod_token</code></td>\n<td>A unique string used to represent a payment method. For example, <code>mth_1578436587</code>. [max length = 26]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>label</code></td>\n<td>A friendly, customer-defined name for the payment method. For example, \"Moms Credit Card,\" \"Work Credit Card,\" \"Visa - 1234,\" etc. [max length = 50]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>customer_id</code></td>\n<td>A merchant-defined string used to identify the customer. [max length = 15]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>is_default</code></td>\n<td>Indicates whether or not a payment method is the Default Payment Method for a customer. This parameter only displays for GET requests.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>billing_address_token</code></td>\n<td>A unique string used to represent the billing address associated with this payment method. For example, <code>add_tq0hemmmtf-zsxgq689rew</code>.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>notes</code></td>\n<td>A short description of the paymethod. [max length = 50]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card</code></td>\n<td>The Card Object</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.card_type</code></td>\n<td>The type of credit card [max length = 6]. Options for this field include the following:  <br />  <br />  <br />  <br />  <br />- <code>visa</code>  <br />- <code>mast</code>  <br />- <code>amex</code>  <br />- <code>disc</code>  <br />- <code>dine</code>  <br />- <code>jcb</code></td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>card.name_on_card</code></td>\n<td>The name printed on the on the credit card [max length = 50]. This field is required when creating a new record or creating a permanent token from a one-time token.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>card.last_4_account_number</code></td>\n<td>The last four digits of the redacted account number. This field is return only. [max length = 4]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>card.account_number</code></td>\n<td>The card number. This field is required when creating a new record and can only contain digits. Forte echoes this parameter in the <code>card.masked_account_number</code> response parameter. [max length = 16]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.expire_month</code></td>\n<td>The expiration month. This field is required when creating a new record and must be a valid future date. [max length = 2]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.expire_year</code></td>\n<td>The expiration year. This field is required when creating a new record and must be a valid future date. [max length = 4]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.card_verification_value</code></td>\n<td>The card verification number. Forte does not store this field with the paymethod token, but echoes it back. [max length = 4]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.procurement_card</code></td>\n<td>Indicates whether or not this is a procurement card transaction. Accepted values are either <code>true</code> or <code>false</code>. For procurement card transactions, merchants must pass the <code>customer_accounting_code</code> field in the <code>card</code> object and the <code>sales_tax_amount</code> field in the <code>transaction</code> object.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.one_time_token</code></td>\n<td>A single use token generated by Forte.js (e.g., <code>ott_g7vnjqikszabzynu6eowbq</code>). [max length = 26]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.customer_accounting_code</code></td>\n<td>Lists the procurement card accounting code. Forte does not save this information if the merchant is creating a paymethod. [max length = 17]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.au_code</code></td>\n<td>Indicates the type of changes Account Updater found for the card associated with that payment token. This parameter supports the following values:  <br />  <br />  <br />  <br />  <br />- <code>new</code> - New Account Number  <br />- <code>closed</code> - Account Closed  <br />- <code>expiry</code> - Expiration Date Updated  <br />- <code>updated</code> - Card Information Updated by Issuer  <br />  <br />  <br />  <br />  <br />  <br />  <br />  <br />This parameter is return only for <code>GET</code> requests. For more information about <a href=\"https://fortepayments.freshdesk.com/support/solutions/articles/11000066861-using-account-updater\">Account Updater</a>, contact Customer Service.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.suppress_account_updater</code></td>\n<td>A Boolean flag indicating whether or not Forte should run monthly <a href=\"https://fortepayments.freshdesk.com/support/solutions/articles/11000066861-using-account-updater\">Account Updater</a> services on the paymethod token associated to this credit card. Account Updater subscription required. The following values are supported:  <br />  <br />  <br />  <br />  <br />- <code>true</code> - This paymethod token will not be included in the monthly Account Updater services.  <br />- <code>false</code> - This paymethod token will be included in the monthly Account Updater services. This is the default value.</td>\n<td>bool</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.au_updated_date</code></td>\n<td>The date and timestamp when the token was last updated by Forte's Account Updater services. This parameter is return only for <code>GET</code> requests.</td>\n<td>datetime</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.au_description</code></td>\n<td>A concise description of what update was performed on the credit card associated with the payment token. The following options are supported:  <br />  <br />  <br />  <br />  <br />- <code>\"New account number\"</code>  <br />- <code>\"Account closed\"</code>  <br />- <code>\"Expiration date updated\"</code>  <br />- <code>\"Card information updated by issuer\"</code>  <br />  <br />  <br />  <br />  <br />  <br />  <br />  <br />This parameter is return only for <code>GET</code> requests.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>echeck</code></td>\n<td>The eCheck Object</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>echeck.account_holder</code></td>\n<td>The name of the account owner. This field is required when creating or updating a new record. [max length = 50]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>echeck.last_4_account_number</code></td>\n<td>The last four digits of the redacted account number. This field is return only. [max length = 4]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>echeck.account_number</code></td>\n<td>The DDA or eCheck account number. This field is required when creating or updating a new record and can only contain digits. Forte echoes this parameter in the <code>echeck.masked_account_number</code> response parameter. [max length = 17]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>echeck.routing_number</code></td>\n<td>The transit routing number. This field supports both U.S. and Canadian routing numbers. <strong>NOTE</strong>: A Canadian routing number displayed on a check needs to be reformatted differently for electronic payments. If a check displays a routing number as BBBBB-AAA (where AAA indicates the Financial Institution and BBBBB is the branch), then the routing number must be changed to 0AAABBBBB to process the payment electronically. For example, if a check from an account issued by the Bank of Montreal showed the routing number 00011-001, then that number would need to be reformatted to 000100011 for the payment to be electronically processed. Click here for a directory of Canadian financial institutions. This field is required when creating or updating a new record and can only contain digits. [max length = 9]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>echeck.account_type</code></td>\n<td>Use one of the following values for this parameter:  <br />  <br />  <br />  <br />  <br />- <code>Checking</code>  <br />- <code>Savings</code></td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>echeck.sec_code</code></td>\n<td>Use one of the following values for this standard-entry class code: <code>ARC</code>, <code>CCD</code>, <code>CIE</code>, <code>CTX</code>, <code>POP</code>, <code>POS</code>, <code>PPD</code>, <code>RCK</code>, <code>TEL</code>, <code>WEB</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>echeck.one_time_token</code></td>\n<td>A single use token generated by Forte.js (e.g., <code>ott_g7vnjqikszabzynu6eowbq</code>). [max length = 26]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>vendor</code></td>\n<td>The vendor Object</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>vendor.vendor_type</code></td>\n<td>The supported vendor types include the following:  <br />  <br />PayPal</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>vendor.vendor_billing_agreement_token</code></td>\n<td>The ID of PayPal billing agreement token.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>vendor.vendor_billing_agreement_id</code></td>\n<td>The ID of PayPal billing agreement</td>\n<td>string</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"25ffdf14-1c48-4437-a329-9183583b9b73","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cacb7371-0fb0-4e6e-8f73-28d7c89e3af6","type":"text/javascript","exec":[""]}}],"_postman_id":"1569f4dd-e5bd-4a38-b996-da6263b4613c"},{"name":"Scheduleitems","item":[{"name":"Scheduleitems","id":"ffa9f63f-1d84-4390-b8a8-9ecd5d4f56c3","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"schedule_id\": \"sch_ce7b86ea-7510-444e-bd46-431c8d175b7e\",\r\n       \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n       \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n       \"schedule_item_amount\": 100.00,\r\n       \"schedule_item_status\": \"scheduled\",\r\n       \"schedule_item_date\": \"12/21/2030\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules/sch_{{scheduleID}}/scheduleitems/","description":"<p>This URI creates a new scheduleitem and returns a unique <code>schedule_item_id</code>. If the <code>schedule_item_date</code> or <code>schedule_item_amount</code> fields are not passed, the system automatically calculates these values based on the last scheduleitem and the schedule definition records. The value of the <code>schedule_item_date</code> field must be a future date. <strong>NOTE</strong>: Scheduleitems cannot be created for non-active or continuous schedules.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","schedules","sch_{{scheduleID}}","scheduleitems",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"d3eabb57-8c80-4898-841e-a4febead01f2","name":"Create Scheduleitems","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"schedule_id\": \"sch_ce7b86ea-7510-444e-bd46-431c8d175b7e\",\r\n       \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n       \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n       \"schedule_item_amount\": 100.00,\r\n       \"schedule_item_status\": \"scheduled\",\r\n       \"schedule_item_date\": \"12/21/2030\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules/sch_{{scheduleID}}/scheduleitems/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 16:48:21 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"4-50415110-50457878 NNNN CT(143 67 0) RT(1508517867264 233523) q(0 0 2 -1) r(4 4) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"schedule_item_id\": \"sci_b89bebb8-b124-4616-9e25-ce89671d3248\",\n    \"location_id\": \"loc_192642\",\n    \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n    \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\n    \"schedule_id\": \"sch_ce7b86ea-7510-444e-bd46-431c8d175b7e\",\n    \"schedule_item_amount\": 100,\n    \"schedule_item_status\": \"scheduled\",\n    \"schedule_item_date\": \"2030-12-21T00:00:00\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/scheduleitems/sci_b89bebb8-b124-4616-9e25-ce89671d3248\"\n    }\n}"}],"_postman_id":"ffa9f63f-1d84-4390-b8a8-9ecd5d4f56c3"},{"name":"All Scheduleitems for an Organization","id":"49d9bd2a-38a4-471e-864f-fc3cf5a26d3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/scheduleitems/","description":"<p>This URI returns all scheduleitems for an Organization. To narrow your search data using specific criteria, use the following parameters to filter your results:</p>\n<ul><li><p>location_id</p></li><li><p>customer_token</p></li><li><p>paymethod_token</p></li><li><p>schedule_id</p></li><li><p>schedule_item_amount</p></li><li><p>schedule_item_status</p></li><li><p>start_schedule_item_date / end_schedule_item_date</p></li><li><p>start_schedule_item_processed_date / end_schedule_item_processed_date</p></li><li><p>start_schedule_item_created_date / end_schedule_item_created_date</p></li></ul>\n\n<p><strong>Note:</strong> Please note that sending a request at the partner (org) level may result in a large data set and may cause timeout errors depending on the request. We recommend sending your GET request at the Merchant (Organization) level.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","scheduleitems",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"10f4317f-872a-45f2-bca8-251226e4998d","name":"Finds all Scheduleitems for an Organization","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/scheduleitems/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 16:30:23 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"4-50268422-50268425 NNNN CT(37 72 0) RT(1508517023360 49) q(0 0 1 -1) r(2 2) U16","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 10,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_334316\",\n        \"resource_specific\": {}\n    },\n    \"results\": [\n        {\n            \"schedule_item_id\": \"sci_f7c0a527-075c-4311-9b9e-63f6380256d4\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2016-12-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:27.88\",\n            \"schedule_item_description\": \"Item 1 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_f7c0a527-075c-4311-9b9e-63f6380256d4\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_2b1f0ca8-2c7a-4c96-8b88-5bb9100f1d03\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-01-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:27.937\",\n            \"schedule_item_description\": \"Item 2 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_2b1f0ca8-2c7a-4c96-8b88-5bb9100f1d03\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_e5e51c9d-f0ee-43b4-9d7c-b9352a199b90\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-02-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:27.96\",\n            \"schedule_item_description\": \"Item 3 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_e5e51c9d-f0ee-43b4-9d7c-b9352a199b90\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_fb791dad-bf14-4f6c-8fe2-8578aebfb02f\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-03-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:27.973\",\n            \"schedule_item_description\": \"Item 4 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_fb791dad-bf14-4f6c-8fe2-8578aebfb02f\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_b15ea3e7-036c-4c7f-85ea-8784b1d6007e\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-04-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:27.99\",\n            \"schedule_item_description\": \"Item 5 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_b15ea3e7-036c-4c7f-85ea-8784b1d6007e\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_de8c07fc-ce3b-4962-8dc3-411dda568d3a\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-05-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:28.003\",\n            \"schedule_item_description\": \"Item 6 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_de8c07fc-ce3b-4962-8dc3-411dda568d3a\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_80805b6c-4615-4be3-9b6b-8af5b7ae1102\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-06-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:28.003\",\n            \"schedule_item_description\": \"Item 7 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_80805b6c-4615-4be3-9b6b-8af5b7ae1102\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_0fea5186-0f3e-433b-8220-5eb90dbff1a0\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-07-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:28.007\",\n            \"schedule_item_description\": \"Item 8 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_0fea5186-0f3e-433b-8220-5eb90dbff1a0\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_8e4f165d-9d61-4293-8b34-2898e9b7b0b9\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-08-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:28.007\",\n            \"schedule_item_description\": \"Item 9 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_8e4f165d-9d61-4293-8b34-2898e9b7b0b9\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_d731aa5d-650c-4ec0-b0ae-38efbd64e182\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-09-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:28.01\",\n            \"schedule_item_description\": \"Item 10 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_d731aa5d-650c-4ec0-b0ae-38efbd64e182\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/scheduleitems/\",\n        \"next\": \"https://api.forte.net/v3/scheduleitems/?page_index=1\"\n    }\n}"}],"_postman_id":"49d9bd2a-38a4-471e-864f-fc3cf5a26d3b"},{"name":"All Scheduleitems for a Location","id":"2126bed7-052a-4996-a3bf-d5c8e59397f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/scheduleitems/","description":"<p>This URI returns all scheduleitems for a Location. To narrow your search data using specific criteria, use the following parameters to filter your results:</p>\n<ul>\n<li> customer_token</li>\n<li> paymethod_token</li>\n<li> schedule_id</li>\n<li> schedule_item_amount</li>\n<li> schedule_item_status</li>\n<li> start_schedule_item_date / end_schedule_item_date</li>\n<li> start_schedule_item_processed_date / end_schedule_item_processed_date</li>\n<li> start_schedule_item_created_date / end_schedule_item_created_date</li>\n</ul>","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","scheduleitems",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"5ad23b5b-8a06-4f45-af0a-8a21c5ff68a5","name":"Finds all Scheduleitems for a Location","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/scheduleitems/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 16:44:27 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"4-50415110-50415124 NNNN CT(32 71 0) RT(1508517867264 62) q(0 0 1 -1) r(2 2) U16","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 10,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_334316\",\n        \"resource_specific\": {\n            \"location_id\": \"loc_192642\"\n        }\n    },\n    \"results\": [\n        {\n            \"schedule_item_id\": \"sci_f7c0a527-075c-4311-9b9e-63f6380256d4\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2016-12-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:27.88\",\n            \"schedule_item_description\": \"Item 1 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_f7c0a527-075c-4311-9b9e-63f6380256d4\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_2b1f0ca8-2c7a-4c96-8b88-5bb9100f1d03\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-01-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:27.937\",\n            \"schedule_item_description\": \"Item 2 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_2b1f0ca8-2c7a-4c96-8b88-5bb9100f1d03\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_e5e51c9d-f0ee-43b4-9d7c-b9352a199b90\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-02-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:27.96\",\n            \"schedule_item_description\": \"Item 3 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_e5e51c9d-f0ee-43b4-9d7c-b9352a199b90\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_fb791dad-bf14-4f6c-8fe2-8578aebfb02f\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-03-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:27.973\",\n            \"schedule_item_description\": \"Item 4 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_fb791dad-bf14-4f6c-8fe2-8578aebfb02f\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_b15ea3e7-036c-4c7f-85ea-8784b1d6007e\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-04-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:27.99\",\n            \"schedule_item_description\": \"Item 5 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_b15ea3e7-036c-4c7f-85ea-8784b1d6007e\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_de8c07fc-ce3b-4962-8dc3-411dda568d3a\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-05-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:28.003\",\n            \"schedule_item_description\": \"Item 6 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_de8c07fc-ce3b-4962-8dc3-411dda568d3a\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_80805b6c-4615-4be3-9b6b-8af5b7ae1102\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-06-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:28.003\",\n            \"schedule_item_description\": \"Item 7 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_80805b6c-4615-4be3-9b6b-8af5b7ae1102\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_0fea5186-0f3e-433b-8220-5eb90dbff1a0\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-07-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:28.007\",\n            \"schedule_item_description\": \"Item 8 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_0fea5186-0f3e-433b-8220-5eb90dbff1a0\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_8e4f165d-9d61-4293-8b34-2898e9b7b0b9\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-08-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:28.007\",\n            \"schedule_item_description\": \"Item 9 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_8e4f165d-9d61-4293-8b34-2898e9b7b0b9\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_d731aa5d-650c-4ec0-b0ae-38efbd64e182\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-09-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:28.01\",\n            \"schedule_item_description\": \"Item 10 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_d731aa5d-650c-4ec0-b0ae-38efbd64e182\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/scheduleitems/\",\n        \"next\": \"https://api.forte.net/v3/scheduleitems/?page_index=1\"\n    }\n}"}],"_postman_id":"2126bed7-052a-4996-a3bf-d5c8e59397f8"},{"name":"All Future Scheduleitems for a Customer Token","id":"2421ac5c-11e3-4c7c-b26b-88cad5b324fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/scheduleitems?filter=schedule_item_status+eq+'scheduled'","description":"<p>This URI returns all future scheduleitems for a \nparticular customer using the <code>customer_token</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}","scheduleitems"],"host":["{{baseURI}}"],"query":[{"key":"filter","value":"schedule_item_status+eq+'scheduled'"}],"variable":[]}},"response":[{"id":"d3f8994a-d692-4b82-a0b1-468af4d66ff6","name":"All Future Scheduleitems for a Customer Token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/scheduleitems?filter=schedule_item_status+eq+'scheduled'","host":["{{baseURI}}"],"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}","scheduleitems"],"query":[{"key":"filter","value":"schedule_item_status+eq+'scheduled'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"close","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"1775","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Mon, 09 Apr 2018 21:27:35 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 2,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_300005\",\n        \"resource_specific\": {\n            \"location_id\": \"loc_124125\",\n            \"customer_token\": \"cst_4cchlZjaK02XFlTEIIScYA\",\n            \"schedule_item_status\": \"scheduled\"\n        }\n    },\n    \"results\": [\n        {\n            \"schedule_item_id\": \"sci_fd527b6b-fa1e-41d9-ab2e-6aa5fd0f56f8\",\n            \"organization_id\": \"org_300005\",\n            \"customer_token\": \"cst_4cchlZjaK02XFlTEIIScYA\",\n            \"paymethod_token\": \"mth_xEtTVUgRiEyFonyM0xtrxA\",\n            \"schedule_id\": \"sch_a3db1463-af7d-4b84-93f3-a48d7cc4c96f\",\n            \"schedule_item_amount\": 5,\n            \"schedule_item_service_fee_amount\": 2,\n            \"schedule_item_tax_amount\": 1,\n            \"schedule_item_authorization_amount\": 7,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2018-04-09T05:00:00\",\n            \"schedule_item_created_date\": \"2018-03-26T13:41:26.38\",\n            \"schedule_item_description\": \"Item 2 of 3\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_fd527b6b-fa1e-41d9-ab2e-6aa5fd0f56f8\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_b62006e5-0b7e-47bb-8e30-e703eda91526\",\n            \"organization_id\": \"org_300005\",\n            \"customer_token\": \"cst_4cchlZjaK02XFlTEIIScYA\",\n            \"paymethod_token\": \"mth_xEtTVUgRiEyFonyM0xtrxA\",\n            \"schedule_id\": \"sch_a3db1463-af7d-4b84-93f3-a48d7cc4c96f\",\n            \"schedule_item_amount\": 5,\n            \"schedule_item_service_fee_amount\": 2,\n            \"schedule_item_tax_amount\": 1,\n            \"schedule_item_authorization_amount\": 7,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2018-04-23T05:00:00\",\n            \"schedule_item_created_date\": \"2018-03-26T13:41:26.39\",\n            \"schedule_item_description\": \"Item 3 of 3\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_b62006e5-0b7e-47bb-8e30-e703eda91526\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/scheduleitems/?filter=schedule_item_status+eq+%27scheduled%27\"\n    }\n}"}],"_postman_id":"2421ac5c-11e3-4c7c-b26b-88cad5b324fb"},{"name":"All Future Scheduleitems for a Paymethod Token","id":"8eaad009-2182-40f9-935f-73c2c20564fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}/scheduleitems?filter=schedule_item_status+eq+'scheduled'","description":"<p>This URI returns all future scheduleitems for a \nparticular paymethod using the <code>paymethod_token</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","paymethods","mth_{{paymethodtoken}}","scheduleitems"],"host":["{{baseURI}}"],"query":[{"key":"filter","value":"schedule_item_status+eq+'scheduled'"}],"variable":[]}},"response":[{"id":"537d5585-c731-4c61-883b-ab3593cf0035","name":"Finds all Scheduleitems for a Paymethod Token","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/paymethods/mth_{{paymethodtoken}}/scheduleitems?filter=schedule_item_status+eq+'scheduled'","host":["{{baseURI}}"],"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","paymethods","mth_{{paymethodtoken}}","scheduleitems"],"query":[{"key":"filter","value":"schedule_item_status+eq+'scheduled'"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 16:36:56 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"4-50268422-50337173 NNNN CT(0 0 0) RT(1508517023360 393308) q(0 0 0 -1) r(1 1) U16","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 18,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_334316\",\n        \"resource_specific\": {\n            \"location_id\": \"loc_192642\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\"\n        }\n    },\n    \"results\": [\n        {\n            \"schedule_item_id\": \"sci_f7c0a527-075c-4311-9b9e-63f6380256d4\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2016-12-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:27.88\",\n            \"schedule_item_description\": \"Item 1 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_f7c0a527-075c-4311-9b9e-63f6380256d4\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_2b1f0ca8-2c7a-4c96-8b88-5bb9100f1d03\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-01-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:27.937\",\n            \"schedule_item_description\": \"Item 2 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_2b1f0ca8-2c7a-4c96-8b88-5bb9100f1d03\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_e5e51c9d-f0ee-43b4-9d7c-b9352a199b90\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-02-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:27.96\",\n            \"schedule_item_description\": \"Item 3 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_e5e51c9d-f0ee-43b4-9d7c-b9352a199b90\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_fb791dad-bf14-4f6c-8fe2-8578aebfb02f\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-03-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:27.973\",\n            \"schedule_item_description\": \"Item 4 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_fb791dad-bf14-4f6c-8fe2-8578aebfb02f\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_b15ea3e7-036c-4c7f-85ea-8784b1d6007e\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-04-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:27.99\",\n            \"schedule_item_description\": \"Item 5 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_b15ea3e7-036c-4c7f-85ea-8784b1d6007e\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_de8c07fc-ce3b-4962-8dc3-411dda568d3a\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-05-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:28.003\",\n            \"schedule_item_description\": \"Item 6 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_de8c07fc-ce3b-4962-8dc3-411dda568d3a\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_80805b6c-4615-4be3-9b6b-8af5b7ae1102\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-06-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:28.003\",\n            \"schedule_item_description\": \"Item 7 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_80805b6c-4615-4be3-9b6b-8af5b7ae1102\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_0fea5186-0f3e-433b-8220-5eb90dbff1a0\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-07-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:28.007\",\n            \"schedule_item_description\": \"Item 8 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_0fea5186-0f3e-433b-8220-5eb90dbff1a0\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_8e4f165d-9d61-4293-8b34-2898e9b7b0b9\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-08-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:28.007\",\n            \"schedule_item_description\": \"Item 9 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_8e4f165d-9d61-4293-8b34-2898e9b7b0b9\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_d731aa5d-650c-4ec0-b0ae-38efbd64e182\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-09-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:28.01\",\n            \"schedule_item_description\": \"Item 10 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_d731aa5d-650c-4ec0-b0ae-38efbd64e182\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_ae98158b-2c74-4552-aca9-643c61e8f00d\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-10-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:28.01\",\n            \"schedule_item_description\": \"Item 11 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_ae98158b-2c74-4552-aca9-643c61e8f00d\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_1af98a71-cf95-4658-ab68-cd994400130a\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 25,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-11-11T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-11T12:44:28.013\",\n            \"schedule_item_description\": \"Item 12 of 12\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_1af98a71-cf95-4658-ab68-cd994400130a\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_441fa0ae-b5ab-46b6-abd4-01cd9db68e5e\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 100,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2016-12-21T08:00:00\",\n            \"schedule_item_created_date\": \"2016-10-21T13:10:26.003\",\n            \"schedule_item_description\": \"\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_441fa0ae-b5ab-46b6-abd4-01cd9db68e5e\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_4d6c562a-54a4-446e-abc6-97daaeb159c0\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 100,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2016-12-21T08:00:00\",\n            \"schedule_item_created_date\": \"2016-11-28T12:44:32.013\",\n            \"schedule_item_description\": \"\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_4d6c562a-54a4-446e-abc6-97daaeb159c0\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_b3d46bab-966f-4729-b37e-666b557f4347\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 100,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2016-12-21T08:00:00\",\n            \"schedule_item_created_date\": \"2016-11-28T13:57:30.127\",\n            \"schedule_item_description\": \"\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_b3d46bab-966f-4729-b37e-666b557f4347\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_2bb8953c-9564-49f9-a357-63699b31c237\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 100,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2016-12-21T08:00:00\",\n            \"schedule_item_created_date\": \"2016-12-14T23:33:36.197\",\n            \"schedule_item_description\": \"\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_2bb8953c-9564-49f9-a357-63699b31c237\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_03c0a9be-fa93-478c-afa6-ee73fe9ed7a0\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 100,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-12-21T08:00:00\",\n            \"schedule_item_created_date\": \"2017-01-06T09:45:09.463\",\n            \"schedule_item_description\": \"\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_03c0a9be-fa93-478c-afa6-ee73fe9ed7a0\"\n            }\n        },\n        {\n            \"schedule_item_id\": \"sci_19ccd5d1-f3b4-4888-b183-c62543653d21\",\n            \"organization_id\": \"org_334316\",\n            \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n            \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n            \"schedule_id\": \"sch_efb0d951-3f54-40b2-8ad8-febca0131562\",\n            \"schedule_item_amount\": 100,\n            \"schedule_item_status\": \"scheduled\",\n            \"schedule_item_date\": \"2017-12-21T08:00:00\",\n            \"schedule_item_created_date\": \"2017-01-06T10:25:54.51\",\n            \"schedule_item_description\": \"\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/scheduleitems/sci_19ccd5d1-f3b4-4888-b183-c62543653d21\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/scheduleitems/\"\n    }\n}"}],"_postman_id":"8eaad009-2182-40f9-935f-73c2c20564fc"},{"name":"A Specific Scheduleitem","id":"8c8569e5-d169-4558-a2e6-f0a914694aa6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/scheduleitems/sci_{{scheduleitemID}}","description":"<p>This URI returns a specific scheduleitem using the <code>schedule_id</code> parameter.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","scheduleitems","sci_{{scheduleitemID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"e83c83c9-6d6d-4c01-af0c-4349f2292f70","name":"Find a Specific Scheduleitem","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.forte.net/v3/organizations/org_{{organizationID}}/scheduleitems/sci_{{scheduleitemID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 16:33:36 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"4-50268422-50302263 NNNN CT(58 49 0) RT(1508517023360 192388) q(0 0 1 -1) r(3 3) U16","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"schedule_item_id\": \"sci_ef428d98-aaa5-42af-b63e-3ccdad88805b\",\n    \"organization_id\": \"org_334316\",\n    \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n    \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\n    \"schedule_id\": \"sch_857eed95-b661-468c-8037-1cb63a13f23a\",\n    \"schedule_item_amount\": 25,\n    \"schedule_item_service_fee_amount\": 0,\n    \"schedule_item_authorization_amount\": 25,\n    \"schedule_item_status\": \"scheduled\",\n    \"schedule_item_date\": \"2017-07-11T08:00:00\",\n    \"schedule_item_created_date\": \"2016-11-02T13:19:59.907\",\n    \"schedule_item_description\": \"Item 8 of 12\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/scheduleitems/sci_ef428d98-aaa5-42af-b63e-3ccdad88805b\"\n    }\n}"}],"_postman_id":"8c8569e5-d169-4558-a2e6-f0a914694aa6"},{"name":"Update a Scheduleitem","id":"42565b02-2379-40c7-8bbc-9c7c0e5c27a7","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n       \"schedule_item_amount\": 200.00\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/scheduleitems/sci_{{scheduleitemID}}","description":"<p>This URI updates the specified scheduleitem. Only scheduleitems with a future date value in the <code>schedule_item_date</code> field and a status of <code>scheduled</code> or <code>suspended</code> in the <code>schedule_item_status</code> field can be updated. If the status of a scheduleitem in a continuous schedule is changed to <code>suspended</code>, the status of the schedule definition will also be <code>suspended</code>. <strong>NOTE</strong>: Updates to the <code>schedule_item_created_date</code> and <code>schedule_item_processed_date</code> are not allowed.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","scheduleitems","sci_{{scheduleitemID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"339829e4-08bd-4bec-9fa7-83ba7cd6bbd9","name":"Update a Scheduleitem","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"schedule_item_amount\": 200.00\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/scheduleitems/sci_{{scheduleitemID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"301","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 16:50:17 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"4-50415110-50477732 NNNN CT(53 73 0) RT(1508517867264 349250) q(0 0 1 -1) r(3 3) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"schedule_item_id\": \"sci_0d2d949e-b3a9-4e6d-a9c9-db358ae49cfa\",\n    \"location_id\": \"loc_192642\",\n    \"schedule_item_amount\": 200,\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/scheduleitems/sci_0d2d949e-b3a9-4e6d-a9c9-db358ae49cfa\"\n    }\n}"}],"_postman_id":"42565b02-2379-40c7-8bbc-9c7c0e5c27a7"},{"name":"Scheduleitem","id":"b181cebe-163d-4976-a485-5c76110f58f3","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}//scheduleitems/sci_{{scheduleitemID}}","description":"<p>This URI deletes the specified scheduleitem. Deleting a scheduleitem will not delete the schedule definition.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","","scheduleitems","sci_{{scheduleitemID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"b4b390a8-c16a-4e44-b9fd-24e85d1a1091","name":"Delete a Scheduleitem","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}//scheduleitems/sci_{{scheduleitemID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"164","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 16:52:22 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"4-50415110-50499293 NNNN CT(32 33 0) RT(1508517867264 474988) q(0 0 1 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"schedule_item_id\": \"sci_99529f2d-ffde-457c-b8a2-9cdc9a786d9d\",\n    \"location_id\": \"loc_192642\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Delete Successful.\"\n    }\n}"}],"_postman_id":"b181cebe-163d-4976-a485-5c76110f58f3"}],"id":"1d30f8de-68bf-4af6-bf90-dc45c17c1dab","description":"<p>The <code>scheduleitems</code> object captures the planned individual transactions that make up a schedule. This object enables merchants to create and make one-time adjustments to a scheduled transaction such as the amount or status of the transaction.</p>\n<h2 id=\"scheduleitems-object\">Scheduleitems Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n<th>Req</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>organization_id</code></td>\n<td>The identification number of the associated organization. For example, <code>org_5551236</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>location_id</code></td>\n<td>The identification number of the associated location. For example, <code>loc_1234568</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>schedule_item_id</code></td>\n<td>A unique string used to represent a schedule item. For example, <code>sci_2e5770ae-c120-414f-ae8c-d065753567e7</code>. [max length = 40]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>customer_token</code></td>\n<td>A unique string used to represent a customer. For example, <code>cst_SoGUG6mcLUS1nVzYBIbk3g</code>. [max length = 26]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>paymethod_token</code></td>\n<td>A unique string used to represent a payment method. For example, <code>mth_1578436587</code>. [max length = 26]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>transaction_id</code></td>\n<td>A unique string used to represent a completed schedule item. For example, <code>trn_55c98c85-d3e8-4230-85e9-21d7d522eec0</code>. [max length = 36]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>schedule_id</code></td>\n<td>A unique string used to represent a schedule. For example, <code>sch_2e5770ae-c120-414f-ae8c-d065753567e7</code>. [max length = 40]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>schedule_item_amount</code></td>\n<td>Indicates the amount of the scheduled item. For service fee transactions, use this parameter as the base amount for calculating a service fee. [max length = 6]</td>\n<td>decimal</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>schedule_item_service_fee_amount</code></td>\n<td>The amount of the service fee (i.e., convenience fee).</td>\n<td>decimal</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>schedule_item_authorization_amount</code></td>\n<td>Indicates the amount of the scheduled item. For service fee transactions, this parameter is the resulting sum of the <code>schedule_item_amount</code> and the <code>schedule_item_service_fee_amount</code> values.</td>\n<td>decimal</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>schedule_item_status</code></td>\n<td>Indicates the status of the scheduled item. The supported values for this field include the following: <ul><li> <code>scheduled</code> - The item is scheduled</li><li> <code>completed</code> - The item is completed</li><li> <code>suspended</code> - The item is suspended</li><li> <code>processing</code> - The item is processing</li><li> <code>failed</code> - The item has failed</li></ul></td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>schedule_item_date</code></td>\n<td>Indicates the date of the scheduled item. For <code>POST</code>s, the value of this field must be greater than today's date. [max length = 10]</td>\n<td>datetime</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>schedule_item_processed_date</code></td>\n<td>Indicates the date when the scheduled item will be processed. This parameter is return only.</td>\n<td>datetime</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>schedule_item_created_date</code></td>\n<td>Indicates the date when the merchant created the scheduled item. This parameter is return only.</td>\n<td>datetime</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>schedule_item_description</code></td>\n<td>A brief description of the scheduled item being processed. [max length = 50]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1d30f8de-68bf-4af6-bf90-dc45c17c1dab"},{"name":"Schedules","item":[{"name":"Schedule for a Specific Customer","id":"bafa80d0-520b-4278-85d5-c9f0aad7031b","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"action\": \"sale\",\r\n       \"schedule_amount\": 25.00,\r\n       \"schedule_quantity\": 0,\r\n       \"schedule_frequency\": \"monthly\",\r\n       \"schedule_start_date\": \"12/11/2030\",\r\n       \"paymethod_token\":\"mth_cp459q53Q0W5wJdMG35f1w\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/schedules","description":"<p>Creates a new schedule and returns a new unique <code>schedule_id</code> for the customer. <strong>NOTE</strong>: The <code>paymethod_token</code> parameter must be specified in the request.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}","schedules"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"9632038a-a549-453f-b7eb-db99f72737ff","name":"Create a  Schedule for a Specific Customer","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"action\": \"sale\",\r\n       \"schedule_amount\": 25.00,\r\n       \"schedule_quantity\": 0,\r\n       \"schedule_frequency\": \"monthly\",\r\n       \"schedule_start_date\": \"12/11/2030\",\r\n       \"paymethod_token\":\"mth_cp459q53Q0W5wJdMG35f1w\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/schedules"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 16:17:10 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"5-55152640-55197757 NNNN CT(39 359 0) RT(1508515980518 249511) q(0 0 4 -1) r(5 5) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"schedule_id\": \"sch_db092a0b-5b73-4373-ab88-4445d1164c6e\",\n    \"location_id\": \"loc_192642\",\n    \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n    \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\n    \"action\": \"sale\",\n    \"schedule_quantity\": 0,\n    \"schedule_frequency\": \"monthly\",\n    \"schedule_amount\": 25,\n    \"schedule_start_date\": \"2030-12-11T00:00:00\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_db092a0b-5b73-4373-ab88-4445d1164c6e/scheduleitems\",\n        \"self\": \"https://api.forte.net/v3/schedules/sch_db092a0b-5b73-4373-ab88-4445d1164c6e\"\n    }\n}"}],"_postman_id":"bafa80d0-520b-4278-85d5-c9f0aad7031b"},{"name":"12-Month Schedule","id":"3f29435b-1a60-442e-ba9a-1ba1dc425607","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"customer_token\":\"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n       \"paymethod_token\":\"mth_cp459q53Q0W5wJdMG35f1w\",\r\n       \"action\": \"sale\",\r\n       \"schedule_quantity\": \"12\",\r\n       \"schedule_frequency\": \"monthly\",\r\n       \"schedule_amount\": 25.00,\r\n       \"schedule_start_date\": \"12/11/2030\",\r\n       \"reference_id\":\"INV-123\",\r\n       \"order_number\":\"98762222\",\r\n       \"item_description\":\"Car Payment\",\r\n       \"xdata\": {\r\n          \"xdata_1\": \"inv-321\",\r\n          \"xdata_2\": \"Southern Branch\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules","description":"<p>Creates a new schedule and returns a new unique <code>schedule_id</code>. <strong>NOTE</strong>: Both the <code>customer_token</code> and the <code>paymethod_token</code> parameters must be specified in the body of the request.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","schedules"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"156855c2-0f33-405a-81b4-bb9d79a3bcdc","name":"Create a 12-Month Schedule","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"customer_token\":\"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n       \"paymethod_token\":\"mth_cp459q53Q0W5wJdMG35f1w\",\r\n       \"action\": \"sale\",\r\n       \"schedule_quantity\": \"12\",\r\n       \"schedule_frequency\": \"monthly\",\r\n       \"schedule_amount\": 25.00,\r\n       \"schedule_start_date\": \"12/11/2030\",\r\n       \"reference_id\":\"INV-123\",\r\n       \"order_number\":\"98762222\",\r\n       \"item_description\":\"Car Payment\",\r\n       \"xdata\": {\r\n          \"xdata_1\": \"inv-321\",\r\n          \"xdata_2\": \"Southern Branch\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 16:10:17 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"4-50054265-50054268 NNNN CT(33 79 0) RT(1508515816438 35) q(0 0 1 -1) r(4 4) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"schedule_id\": \"sch_1030151f-e1d6-4959-b46c-86403fc1268d\",\n    \"location_id\": \"loc_192642\",\n    \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n    \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\n    \"action\": \"sale\",\n    \"schedule_quantity\": 12,\n    \"schedule_frequency\": \"monthly\",\n    \"schedule_amount\": 25,\n    \"schedule_start_date\": \"2030-12-11T00:00:00\",\n    \"item_description\": \"Car Payment\",\n    \"reference_id\": \"INV-123\",\n    \"order_number\": \"98762222\",\n    \"xdata\": {\n        \"xdata_1\": \"inv-321\",\n        \"xdata_2\": \"Southern Branch\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_1030151f-e1d6-4959-b46c-86403fc1268d/scheduleitems\",\n        \"self\": \"https://api.forte.net/v3/schedules/sch_1030151f-e1d6-4959-b46c-86403fc1268d\"\n    }\n}"}],"_postman_id":"3f29435b-1a60-442e-ba9a-1ba1dc425607"},{"name":"Weekly Schedule","id":"dd291b13-c021-4983-8266-5efa7deb5bb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\"action\":\"sale\",\r\n\"customer_token\":\"cst_-XqiJZuQ6EmV41auwt_gyQ\",\r\n\"paymethod_token\":\"mth_Dvphvlf4RUyJsvz9sXlVWQ\",\r\n\"schedule_start_date\":\"2030-08-31T00:00:00\",\r\n\"schedule_amount\":50.00,\r\n\"schedule_frequency\":\"weekly\",\r\n\"schedule_quantity\":10,\r\n\"echeck\"{\r\n   \"sec_code\":\"ppd\",\r\n},\r\n\"schedule_service_fee_amount\":\"4.00\",\r\n\"schedule_authorization_amount\":\"54.00\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules","description":"<p>Creates a new schedule and returns a new unique <code>schedule_id</code>. <strong>NOTE</strong>: Both the <code>customer_token</code> and the <code>paymethod_token</code> parameters must be specified in the body of the request.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","schedules"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"253f43de-27ab-495a-a3c9-125f824bef89","name":"Weekly Schedule","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n\"action\":\"sale\",\r\n\"customer_token\":\"cst_-XqiJZuQ6EmV41auwt_gyQ\",\r\n\"paymethod_token\":\"mth_Dvphvlf4RUyJsvz9sXlVWQ\",\r\n\"schedule_start_date\":\"2030-08-31T00:00:00\",\r\n\"schedule_amount\":50.00,\r\n\"schedule_frequency\":\"weekly\",\r\n\"schedule_quantity\":10,\r\n\"echeck\"{\r\n   \"sec_code\":\"ppd\",\r\n},\r\n\"schedule_service_fee_amount\":\"4.00\",\r\n\"schedule_authorization_amount\":\"54.00\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 25 Aug 2020 04:56:02 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"730","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"schedule_id\": \"sch_3e9c3c0c-9d1e-4fb4-bf94-a46aedb428a1\",\n    \"location_id\": \"loc_115161\",\n    \"customer_token\": \"cst_-XqiJZuQ6EmV41auwt_gyQ\",\n    \"paymethod_token\": \"mth_Dvphvlf4RUyJsvz9sXlVWQ\",\n    \"action\": \"sale\",\n    \"schedule_quantity\": 10,\n    \"schedule_frequency\": \"weekly\",\n    \"schedule_amount\": 50,\n    \"schedule_service_fee_amount\": 4,\n    \"schedule_authorization_amount\": 54,\n    \"schedule_start_date\": \"2030-08-31T00:00:00\",\n    \"echeck\": {\n        \"sec_code\": \"ppd\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_3e9c3c0c-9d1e-4fb4-bf94-a46aedb428a1/scheduleitems\",\n        \"self\": \"https://api.forte.net/v3/schedules/sch_3e9c3c0c-9d1e-4fb4-bf94-a46aedb428a1/\"\n    }\n}"}],"_postman_id":"dd291b13-c021-4983-8266-5efa7deb5bb5"},{"name":"One-Time Future Schedule","id":"a24f7358-eff6-4728-bf03-7fcbac402370","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n       \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n       \"action\": \"sale\",\r\n       \"schedule_frequency\": \"one_time_future\",\r\n       \"schedule_amount\": 25.00,\r\n       \"schedule_start_date\": \"12/11/2030\",\r\n       \"reference_id\":\"INV-123\",\r\n       \"order_number\":\"98762222\",\r\n       \"item_description\":\"DeLorean Payment\",\r\n       \"xdata\": {\r\n          \"xdata_1\": \"inv-321\",\r\n          \"xdata_2\": \"Southern Branch\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules","description":"<p>Creates a new schedule and returns a new unique <code>schedule_id</code>. <strong>NOTE</strong>: Both the <code>customer_token</code> and the <code>paymethod_token</code> parameters must be specified in the body of the request.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","schedules"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"d99365a7-3a95-4dcf-a0ef-937c8ed85836","name":"Create a One-Time Future Schedule","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n       \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n       \"action\": \"sale\",\r\n       \"schedule_frequency\": \"one_time_future\",\r\n       \"schedule_amount\": 25.00,\r\n       \"schedule_start_date\": \"12/11/2030\",\r\n       \"reference_id\":\"INV-123\",\r\n       \"order_number\":\"98762222\",\r\n       \"item_description\":\"DeLorean Payment\",\r\n       \"xdata\": {\r\n          \"xdata_1\": \"inv-321\",\r\n          \"xdata_2\": \"Southern Branch\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 16:10:53 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"4-50054265-50054268 SNNN RT(1508515816438 36805) q(0 0 0 -1) r(4 4) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"schedule_id\": \"sch_1321a0e7-4dc4-4d0d-beae-9d595fe4d79f\",\n    \"location_id\": \"loc_192642\",\n    \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n    \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\n    \"action\": \"sale\",\n    \"schedule_quantity\": 1,\n    \"schedule_frequency\": \"one_time_future\",\n    \"schedule_amount\": 25,\n    \"schedule_start_date\": \"2030-12-11T00:00:00\",\n    \"item_description\": \"DeLorean Payment\",\n    \"reference_id\": \"INV-123\",\n    \"order_number\": \"98762222\",\n    \"xdata\": {\n        \"xdata_1\": \"inv-321\",\n        \"xdata_2\": \"Southern Branch\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_1321a0e7-4dc4-4d0d-beae-9d595fe4d79f/scheduleitems\",\n        \"self\": \"https://api.forte.net/v3/schedules/sch_1321a0e7-4dc4-4d0d-beae-9d595fe4d79f\"\n    }\n}"}],"_postman_id":"a24f7358-eff6-4728-bf03-7fcbac402370"},{"name":"Continuous Schedule","id":"21407068-6f7c-4834-aac7-4651d082cacf","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"action\": \"sale\",\r\n       \"schedule_amount\": 25.00,\r\n       \"schedule_quantity\": 0,\r\n       \"schedule_frequency\": \"monthly\",\r\n       \"schedule_start_date\": \"12/11/2030\",\r\n       \"paymethod_token\":\"mth_cp459q53Q0W5wJdMG35f1w\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules","description":"<p>Creates a new schedule and returns a new unique <code>schedule_id</code>. <strong>NOTE</strong>: Both the <code>customer_token</code> and <code>paymethod_token</code> parameters must be specified in the request.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","schedules"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"123b6dbb-78b2-445a-8a1a-96599a7213aa","name":"Create a  Continuous Schedule","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"action\": \"sale\",\r\n       \"schedule_amount\": 25.00,\r\n       \"schedule_quantity\": 0,\r\n       \"schedule_frequency\": \"monthly\",\r\n       \"schedule_start_date\": \"12/11/2030\",\r\n       \"paymethod_token\":\"mth_cp459q53Q0W5wJdMG35f1w\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 16:14:43 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"5-55152640-55171537 NNNN CT(34 44 0) RT(1508515980518 102506) q(0 0 1 -1) r(1 1) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"schedule_id\": \"sch_a8df462d-b282-467c-8d4e-a18b96a9e1e6\",\n    \"location_id\": \"loc_192642\",\n    \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n    \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\n    \"action\": \"sale\",\n    \"schedule_quantity\": 0,\n    \"schedule_frequency\": \"monthly\",\n    \"schedule_amount\": 25,\n    \"schedule_start_date\": \"2030-12-11T00:00:00\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_a8df462d-b282-467c-8d4e-a18b96a9e1e6/scheduleitems\",\n        \"self\": \"https://api.forte.net/v3/schedules/sch_a8df462d-b282-467c-8d4e-a18b96a9e1e6\"\n    }\n}"}],"_postman_id":"21407068-6f7c-4834-aac7-4651d082cacf"},{"name":"All Schedules for a Location","id":"ad0d133e-b168-4018-bc8b-ef215278d83f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules","description":"<p>This URI returns all schedules created for a location. To narrow your search data using specific criteria, use the following parameters to filter your results:</p>\n<ul>\n<li> schedule_id</li>\n<li> customer_token</li>\n<li> paymethod_token</li>\n<li> action</li>\n<li> schedule_quantity</li>\n<li> schedule_frequency</li>\n<li> schedule_status</li>\n<li> schedule_amount</li>\n<li> start_schedule_created_date / end_schedule_created_date</li>\n<li> start_schedule_start_date / end_schedule_start_date</li>\n</ul>","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","schedules"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"80fe25f6-192b-4b5a-9c28-918b0ebcbeba","name":"All Schedules for a Location","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{location}}/schedules"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"52165","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 16:12:41 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"number_results\": 8,\r\n  \"search_criteria\": {\r\n    \"page_size\": 50,\r\n    \"page_index\": 0,\r\n    \"home_organization_id\": \"org_334316\",\r\n    \"resource_specific\": {\r\n      \"location_id\": \"loc_192642\"\r\n    }\r\n  },\r\n  \"results\": [\r\n    {\r\n      \"schedule_id\": \"sch_81f2bff7-11e2-4cd8-b451-07c317edbd7b\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 12,\r\n      \"schedule_frequency\": \"monthly\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2017-09-08T09:07:19.52\",\r\n      \"schedule_start_date\": \"2018-12-11T08:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"item_description\": \"Car Payment\",\r\n      \"reference_id\": \"INV-123\",\r\n      \"order_number\": \"98762222\",\r\n      \"schedule_summary\": {\r\n        \"schedule_next_amount\": 25,\r\n        \"schedule_next_date\": \"2018-12-11T08:00:00\",\r\n        \"schedule_last_amount\": 25,\r\n        \"schedule_last_date\": \"2019-11-11T08:00:00\",\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 300,\r\n        \"schedule_remaining_quantity\": 12,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"xdata\": {\r\n        \"xdata_1\": \"inv-321\",\r\n        \"xdata_2\": \"Southern Branch\"\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_81f2bff7-11e2-4cd8-b451-07c317edbd7b/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_81f2bff7-11e2-4cd8-b451-07c317edbd7b\"\r\n      }\r\n    },\r\n    {\r\n      \"schedule_id\": \"sch_319a6b29-3afe-46d3-b540-08e64f2bbebf\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 1,\r\n      \"schedule_frequency\": \"one_time_future\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2017-09-08T09:08:38.76\",\r\n      \"schedule_start_date\": \"2018-12-11T08:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"item_description\": \"DeLorean Paymen\",\r\n      \"reference_id\": \"INV-123\",\r\n      \"order_number\": \"98762222\",\r\n      \"schedule_summary\": {\r\n        \"schedule_next_amount\": 25,\r\n        \"schedule_next_date\": \"2018-12-11T08:00:00\",\r\n        \"schedule_last_amount\": 25,\r\n        \"schedule_last_date\": \"2018-12-11T08:00:00\",\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 25,\r\n        \"schedule_remaining_quantity\": 1,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"xdata\": {\r\n        \"xdata_1\": \"inv-321\",\r\n        \"xdata_2\": \"Southern Branch\"\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_319a6b29-3afe-46d3-b540-08e64f2bbebf/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_319a6b29-3afe-46d3-b540-08e64f2bbebf\"\r\n      }\r\n    },\r\n    {\r\n      \"schedule_id\": \"sch_dfac49a5-dbee-4c47-9a9c-0ce3d253b260\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 1,\r\n      \"schedule_frequency\": \"one_time_future\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2017-09-08T09:07:52.343\",\r\n      \"schedule_start_date\": \"2018-12-11T08:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"item_description\": \"DeLorean Paymen\",\r\n      \"reference_id\": \"INV-123\",\r\n      \"order_number\": \"98762222\",\r\n      \"schedule_summary\": {\r\n        \"schedule_next_amount\": 25,\r\n        \"schedule_next_date\": \"2018-12-11T08:00:00\",\r\n        \"schedule_last_amount\": 25,\r\n        \"schedule_last_date\": \"2018-12-11T08:00:00\",\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 25,\r\n        \"schedule_remaining_quantity\": 1,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"xdata\": {\r\n        \"xdata_1\": \"inv-321\",\r\n        \"xdata_2\": \"Southern Branch\"\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_dfac49a5-dbee-4c47-9a9c-0ce3d253b260/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_dfac49a5-dbee-4c47-9a9c-0ce3d253b260\"\r\n      }\r\n    },\r\n    {\r\n      \"schedule_id\": \"sch_857eed95-b661-468c-8037-1cb63a13f23a\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 12,\r\n      \"schedule_frequency\": \"monthly\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2016-11-02T13:19:59.783\",\r\n      \"schedule_start_date\": \"2016-12-11T08:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"item_description\": \"Car Payment\",\r\n      \"reference_id\": \"INV-123\",\r\n      \"order_number\": \"98762222\",\r\n      \"schedule_summary\": {\r\n        \"schedule_next_amount\": 25,\r\n        \"schedule_next_date\": \"2016-12-11T08:00:00\",\r\n        \"schedule_last_amount\": 100,\r\n        \"schedule_last_date\": \"2018-12-21T08:00:00\",\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 400,\r\n        \"schedule_remaining_quantity\": 13,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"xdata\": {\r\n        \"xdata_1\": \"inv-321\",\r\n        \"xdata_2\": \"Southern Branch\"\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_857eed95-b661-468c-8037-1cb63a13f23a/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_857eed95-b661-468c-8037-1cb63a13f23a\"\r\n      }\r\n    },\r\n    {\r\n      \"schedule_id\": \"sch_17490fc3-927f-4ed3-9981-2f6d309a7758\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 0,\r\n      \"schedule_frequency\": \"monthly\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2017-02-02T09:29:17.94\",\r\n      \"schedule_start_date\": \"2017-02-02T08:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"schedule_summary\": {\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 25,\r\n        \"schedule_remaining_quantity\": 1,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_17490fc3-927f-4ed3-9981-2f6d309a7758/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_17490fc3-927f-4ed3-9981-2f6d309a7758\"\r\n      }\r\n    },\r\n    {\r\n      \"schedule_id\": \"sch_b171d771-d055-433e-b402-3e6146d781e5\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 0,\r\n      \"schedule_frequency\": \"monthly\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2017-08-08T18:54:09.15\",\r\n      \"schedule_start_date\": \"2017-08-11T07:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"schedule_summary\": {\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 25,\r\n        \"schedule_remaining_quantity\": 1,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_b171d771-d055-433e-b402-3e6146d781e5/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_b171d771-d055-433e-b402-3e6146d781e5\"\r\n      }\r\n    },\r\n    {\r\n      \"schedule_id\": \"sch_ce7b86ea-7510-444e-bd46-431c8d175b7e\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 12,\r\n      \"schedule_frequency\": \"monthly\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2017-09-08T09:04:15.227\",\r\n      \"schedule_start_date\": \"2018-12-11T08:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"item_description\": \"Car Payment\",\r\n      \"reference_id\": \"INV-123\",\r\n      \"order_number\": \"98762222\",\r\n      \"schedule_summary\": {\r\n        \"schedule_next_amount\": 25,\r\n        \"schedule_next_date\": \"2018-12-11T08:00:00\",\r\n        \"schedule_last_amount\": 25,\r\n        \"schedule_last_date\": \"2019-11-11T08:00:00\",\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 400,\r\n        \"schedule_remaining_quantity\": 13,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"xdata\": {\r\n        \"xdata_1\": \"inv-321\",\r\n        \"xdata_2\": \"Southern Branch\"\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_ce7b86ea-7510-444e-bd46-431c8d175b7e/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_ce7b86ea-7510-444e-bd46-431c8d175b7e\"\r\n      }\r\n    },\r\n    {\r\n      \"schedule_id\": \"sch_8fcd5fc7-d674-4f33-b490-4d01e92c96bb\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 12,\r\n      \"schedule_frequency\": \"monthly\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2017-09-08T08:58:54.97\",\r\n      \"schedule_start_date\": \"2018-01-01T08:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"item_description\": \"Car Payment\",\r\n      \"reference_id\": \"INV-123\",\r\n      \"order_number\": \"98762222\",\r\n      \"schedule_summary\": {\r\n        \"schedule_next_amount\": 25,\r\n        \"schedule_next_date\": \"2018-01-01T08:00:00\",\r\n        \"schedule_last_amount\": 25,\r\n        \"schedule_last_date\": \"2018-12-01T08:00:00\",\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 300,\r\n        \"schedule_remaining_quantity\": 12,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"xdata\": {\r\n        \"xdata_1\": \"inv-321\",\r\n        \"xdata_2\": \"Southern Branch\"\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_8fcd5fc7-d674-4f33-b490-4d01e92c96bb/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_8fcd5fc7-d674-4f33-b490-4d01e92c96bb\"\r\n      }\r\n    }\r\n  ],\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_desc\": \"Get Successful.\"\r\n  },\r\n  \"links\": {\r\n    \"self\": \"https://api.forte.net/v3/schedules/\"\r\n  }\r\n}"}],"_postman_id":"ad0d133e-b168-4018-bc8b-ef215278d83f"},{"name":"All Schedules for a Customer","id":"40b89bd3-e9cd-4451-8923-f49fe01d0f9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/schedules","description":"<p>This URI returns all schedules associated with a particular <code>customer_token</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}","schedules"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"e9d44fbd-d710-401f-b8cd-e997b5867519","name":"All Schedules for a Customer","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{location}}/customers/cst_{{customer_token}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"348","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 16:19:56 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"number_results\": 10,\r\n  \"search_criteria\": {\r\n    \"page_size\": 50,\r\n    \"page_index\": 0,\r\n    \"home_organization_id\": \"org_334316\",\r\n    \"resource_specific\": {\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\"\r\n    }\r\n  },\r\n  \"results\": [\r\n    {\r\n      \"schedule_id\": \"sch_81f2bff7-11e2-4cd8-b451-07c317edbd7b\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 12,\r\n      \"schedule_frequency\": \"monthly\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2017-09-08T09:07:19.52\",\r\n      \"schedule_start_date\": \"2018-12-11T08:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"item_description\": \"Car Payment\",\r\n      \"reference_id\": \"INV-123\",\r\n      \"order_number\": \"98762222\",\r\n      \"schedule_summary\": {\r\n        \"schedule_next_amount\": 25,\r\n        \"schedule_next_date\": \"2018-12-11T08:00:00\",\r\n        \"schedule_last_amount\": 25,\r\n        \"schedule_last_date\": \"2019-11-11T08:00:00\",\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 300,\r\n        \"schedule_remaining_quantity\": 12,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"xdata\": {\r\n        \"xdata_1\": \"inv-321\",\r\n        \"xdata_2\": \"Southern Branch\"\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_81f2bff7-11e2-4cd8-b451-07c317edbd7b/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_81f2bff7-11e2-4cd8-b451-07c317edbd7b\"\r\n      }\r\n    },\r\n    {\r\n      \"schedule_id\": \"sch_319a6b29-3afe-46d3-b540-08e64f2bbebf\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 1,\r\n      \"schedule_frequency\": \"one_time_future\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2017-09-08T09:08:38.76\",\r\n      \"schedule_start_date\": \"2018-12-11T08:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"item_description\": \"DeLorean Paymen\",\r\n      \"reference_id\": \"INV-123\",\r\n      \"order_number\": \"98762222\",\r\n      \"schedule_summary\": {\r\n        \"schedule_next_amount\": 25,\r\n        \"schedule_next_date\": \"2018-12-11T08:00:00\",\r\n        \"schedule_last_amount\": 25,\r\n        \"schedule_last_date\": \"2018-12-11T08:00:00\",\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 25,\r\n        \"schedule_remaining_quantity\": 1,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"xdata\": {\r\n        \"xdata_1\": \"inv-321\",\r\n        \"xdata_2\": \"Southern Branch\"\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_319a6b29-3afe-46d3-b540-08e64f2bbebf/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_319a6b29-3afe-46d3-b540-08e64f2bbebf\"\r\n      }\r\n    },\r\n    {\r\n      \"schedule_id\": \"sch_dfac49a5-dbee-4c47-9a9c-0ce3d253b260\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 1,\r\n      \"schedule_frequency\": \"one_time_future\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2017-09-08T09:07:52.343\",\r\n      \"schedule_start_date\": \"2018-12-11T08:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"item_description\": \"DeLorean Paymen\",\r\n      \"reference_id\": \"INV-123\",\r\n      \"order_number\": \"98762222\",\r\n      \"schedule_summary\": {\r\n        \"schedule_next_amount\": 25,\r\n        \"schedule_next_date\": \"2018-12-11T08:00:00\",\r\n        \"schedule_last_amount\": 25,\r\n        \"schedule_last_date\": \"2018-12-11T08:00:00\",\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 25,\r\n        \"schedule_remaining_quantity\": 1,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"xdata\": {\r\n        \"xdata_1\": \"inv-321\",\r\n        \"xdata_2\": \"Southern Branch\"\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_dfac49a5-dbee-4c47-9a9c-0ce3d253b260/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_dfac49a5-dbee-4c47-9a9c-0ce3d253b260\"\r\n      }\r\n    },\r\n    {\r\n      \"schedule_id\": \"sch_857eed95-b661-468c-8037-1cb63a13f23a\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 12,\r\n      \"schedule_frequency\": \"monthly\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2016-11-02T13:19:59.783\",\r\n      \"schedule_start_date\": \"2016-12-11T08:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"item_description\": \"Car Payment\",\r\n      \"reference_id\": \"INV-123\",\r\n      \"order_number\": \"98762222\",\r\n      \"schedule_summary\": {\r\n        \"schedule_next_amount\": 25,\r\n        \"schedule_next_date\": \"2016-12-11T08:00:00\",\r\n        \"schedule_last_amount\": 100,\r\n        \"schedule_last_date\": \"2018-12-21T08:00:00\",\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 400,\r\n        \"schedule_remaining_quantity\": 13,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"xdata\": {\r\n        \"xdata_1\": \"inv-321\",\r\n        \"xdata_2\": \"Southern Branch\"\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_857eed95-b661-468c-8037-1cb63a13f23a/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_857eed95-b661-468c-8037-1cb63a13f23a\"\r\n      }\r\n    },\r\n    {\r\n      \"schedule_id\": \"sch_17490fc3-927f-4ed3-9981-2f6d309a7758\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 0,\r\n      \"schedule_frequency\": \"monthly\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2017-02-02T09:29:17.94\",\r\n      \"schedule_start_date\": \"2017-02-02T08:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"schedule_summary\": {\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 25,\r\n        \"schedule_remaining_quantity\": 1,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_17490fc3-927f-4ed3-9981-2f6d309a7758/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_17490fc3-927f-4ed3-9981-2f6d309a7758\"\r\n      }\r\n    },\r\n    {\r\n      \"schedule_id\": \"sch_b171d771-d055-433e-b402-3e6146d781e5\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 0,\r\n      \"schedule_frequency\": \"monthly\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2017-08-08T18:54:09.15\",\r\n      \"schedule_start_date\": \"2017-08-11T07:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"schedule_summary\": {\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 25,\r\n        \"schedule_remaining_quantity\": 1,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_b171d771-d055-433e-b402-3e6146d781e5/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_b171d771-d055-433e-b402-3e6146d781e5\"\r\n      }\r\n    },\r\n    {\r\n      \"schedule_id\": \"sch_ce7b86ea-7510-444e-bd46-431c8d175b7e\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 12,\r\n      \"schedule_frequency\": \"monthly\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2017-09-08T09:04:15.227\",\r\n      \"schedule_start_date\": \"2018-12-11T08:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"item_description\": \"Car Payment\",\r\n      \"reference_id\": \"INV-123\",\r\n      \"order_number\": \"98762222\",\r\n      \"schedule_summary\": {\r\n        \"schedule_next_amount\": 25,\r\n        \"schedule_next_date\": \"2018-12-11T08:00:00\",\r\n        \"schedule_last_amount\": 25,\r\n        \"schedule_last_date\": \"2019-11-11T08:00:00\",\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 400,\r\n        \"schedule_remaining_quantity\": 13,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"xdata\": {\r\n        \"xdata_1\": \"inv-321\",\r\n        \"xdata_2\": \"Southern Branch\"\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_ce7b86ea-7510-444e-bd46-431c8d175b7e/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_ce7b86ea-7510-444e-bd46-431c8d175b7e\"\r\n      }\r\n    },\r\n    {\r\n      \"schedule_id\": \"sch_8fcd5fc7-d674-4f33-b490-4d01e92c96bb\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 12,\r\n      \"schedule_frequency\": \"monthly\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2017-09-08T08:58:54.97\",\r\n      \"schedule_start_date\": \"2018-01-01T08:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"item_description\": \"Car Payment\",\r\n      \"reference_id\": \"INV-123\",\r\n      \"order_number\": \"98762222\",\r\n      \"schedule_summary\": {\r\n        \"schedule_next_amount\": 25,\r\n        \"schedule_next_date\": \"2018-01-01T08:00:00\",\r\n        \"schedule_last_amount\": 25,\r\n        \"schedule_last_date\": \"2018-12-01T08:00:00\",\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 300,\r\n        \"schedule_remaining_quantity\": 12,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"xdata\": {\r\n        \"xdata_1\": \"inv-321\",\r\n        \"xdata_2\": \"Southern Branch\"\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_8fcd5fc7-d674-4f33-b490-4d01e92c96bb/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_8fcd5fc7-d674-4f33-b490-4d01e92c96bb\"\r\n      }\r\n    },\r\n    {\r\n      \"schedule_id\": \"sch_9a74e2a8-a182-40ef-89c1-4e38b9667206\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 0,\r\n      \"schedule_frequency\": \"monthly\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2016-11-03T06:38:50.857\",\r\n      \"schedule_start_date\": \"2016-12-11T08:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"schedule_summary\": {\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 25,\r\n        \"schedule_remaining_quantity\": 1,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_9a74e2a8-a182-40ef-89c1-4e38b9667206/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_9a74e2a8-a182-40ef-89c1-4e38b9667206\"\r\n      }\r\n    },\r\n    {\r\n      \"schedule_id\": \"sch_2ed98062-18c0-4d1b-9f84-4f25f07b498c\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n      \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n      \"action\": \"sale\",\r\n      \"schedule_quantity\": 0,\r\n      \"schedule_frequency\": \"monthly\",\r\n      \"schedule_amount\": 25,\r\n      \"schedule_created_date\": \"2016-11-17T12:00:29.913\",\r\n      \"schedule_start_date\": \"2016-12-11T08:00:00\",\r\n      \"schedule_status\": \"active\",\r\n      \"schedule_summary\": {\r\n        \"schedule_successful_amount\": 0,\r\n        \"schedule_successful_authorization_amount\": 0,\r\n        \"schedule_successful_quantity\": 0,\r\n        \"schedule_failed_amount\": 0,\r\n        \"schedule_failed_quantity\": 0,\r\n        \"schedule_remaining_amount\": 25,\r\n        \"schedule_remaining_quantity\": 1,\r\n        \"schedule_suspended_amount\": 0,\r\n        \"schedule_suspended_quantity\": 0\r\n      },\r\n      \"links\": {\r\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_2ed98062-18c0-4d1b-9f84-4f25f07b498c/scheduleitems\",\r\n        \"self\": \"https://api.forte.net/v3/schedules/sch_2ed98062-18c0-4d1b-9f84-4f25f07b498c\"\r\n      }\r\n    }\r\n  ],\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_desc\": \"Get Successful.\"\r\n  },\r\n  \"links\": {\r\n    \"self\": \"https://api.forte.net/v3/schedules/\"\r\n  }\r\n}"}],"_postman_id":"40b89bd3-e9cd-4451-8923-f49fe01d0f9c"},{"name":"A Specific Schedule","id":"8abaffb6-4d51-40b6-98d7-2465c56f11a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules/sch_{{scheduleID}}","description":"<p>This URI returns a deleted schedule based on the <code>schedule_id</code> parameter and the <code>schedule_status=deleted</code> filter. The schedule detailed data that Forte returns includes schedule summary data that can be used to quickly find useful information about that schedule.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","schedules","sch_{{scheduleID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"74ad5535-a922-4cd5-8c32-e2c3b2cc0a9a","name":"A Specific Schedule","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{location}}/schedules/sch_{{scheduleID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"71","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 16:25:11 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"schedule_id\": \"sch_81f2bff7-11e2-4cd8-b451-07c317edbd7b\",\r\n  \"location_id\": \"loc_192642\",\r\n  \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n  \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\r\n  \"action\": \"sale\",\r\n  \"schedule_quantity\": 12,\r\n  \"schedule_frequency\": \"monthly\",\r\n  \"schedule_amount\": 25,\r\n  \"schedule_service_fee_amount\": 0,\r\n  \"schedule_authorization_amount\": 25,\r\n  \"schedule_created_date\": \"2017-09-08T09:07:19.52\",\r\n  \"schedule_start_date\": \"2018-12-11T08:00:00\",\r\n  \"schedule_status\": \"active\",\r\n  \"item_description\": \"Car Payment\",\r\n  \"reference_id\": \"INV-123\",\r\n  \"order_number\": \"98762222\",\r\n  \"schedule_summary\": {\r\n    \"schedule_next_amount\": 25,\r\n    \"schedule_next_authorization_amount\": 25,\r\n    \"schedule_next_date\": \"2018-12-11T08:00:00\",\r\n    \"schedule_last_amount\": 25,\r\n    \"schedule_last_authorization_amount\": 25,\r\n    \"schedule_last_date\": \"2019-11-11T08:00:00\",\r\n    \"schedule_successful_amount\": 0,\r\n    \"schedule_successful_authorization_amount\": 0,\r\n    \"schedule_successful_quantity\": 0,\r\n    \"schedule_failed_amount\": 0,\r\n    \"schedule_failed_authorization_amount\": 0,\r\n    \"schedule_failed_quantity\": 0,\r\n    \"schedule_remaining_amount\": 300,\r\n    \"schedule_remaining_authorization_amount\": 300,\r\n    \"schedule_remaining_quantity\": 12,\r\n    \"schedule_suspended_amount\": 0,\r\n    \"schedule_suspended_authorization_amount\": 0,\r\n    \"schedule_suspended_quantity\": 0\r\n  },\r\n  \"xdata\": {\r\n    \"xdata_1\": \"inv-321\",\r\n    \"xdata_2\": \"Southern Branch\"\r\n  },\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_desc\": \"Get Successful.\"\r\n  },\r\n  \"links\": {\r\n    \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_81f2bff7-11e2-4cd8-b451-07c317edbd7b/scheduleitems\",\r\n    \"self\": \"https://api.forte.net/v3/schedules/sch_81f2bff7-11e2-4cd8-b451-07c317edbd7b\"\r\n  }\r\n}"}],"_postman_id":"8abaffb6-4d51-40b6-98d7-2465c56f11a6"},{"name":"A Deleted Schedule","id":"1758faa9-bdf0-4de0-8077-4de60d0bc44b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules/sch_{{scheduleID}}/?filter=schedule_status+eq+deleted","description":"<p>This URI returns a deleted schedule based on the <code>schedule_id</code> parameter and the <code>schedule_status=deleted</code> filter. The schedule detailed data that Forte returns includes schedule summary data that can be used to quickly find useful information about that schedule.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","schedules","sch_{{scheduleID}}",""],"host":["{{baseURI}}"],"query":[{"key":"filter","value":"schedule_status+eq+deleted"}],"variable":[]}},"response":[{"id":"9e18080e-92b7-4ec1-af25-282a7bb0c6ec","name":"A Deleted Schedule","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":{"raw":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{location}}/schedules/sch_{{scheduleID}}/?filter=schedule_status+eq+deleted","host":["{{baseURI}}"],"path":["organizations","org_{{organization}}","locations","loc_{{location}}","schedules","sch_{{scheduleID}}",""],"query":[{"key":"filter","value":"schedule_status+eq+deleted"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"71","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 16:25:11 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n\"schedule_id\": \"sch_1611b4f8-527d-4bed-a4ff-f862e8ee1967\",\r\n\"location_id\": \"loc_115161\",\r\n\"customer_token\": \"cst_dNqILAxf7UaB5L3STrzkDw\",\r\n\"paymethod_token\": \"mth_d5vwLQlxbkSkaMRfNZJGWA\",\r\n\"action\": \"sale\",\r\n\"schedule_quantity\": 0,\r\n\"schedule_frequency\": \"weekly\",\r\n\"schedule_amount\": 1.38,\r\n\"schedule_service_fee_amount\": 0.0,\r\n\"schedule_authorization_amount\": 1.38,\r\n\"schedule_created_date\": \"2020-04-20T13:43:46.22\",\r\n\"schedule_start_date\": \"2020-04-20T20:43:30.817\",\r\n\"schedule_status\": \"deleted\",\r\n\"sec_code\": \"ppd\",\r\n\"schedule_summary\": {\r\n\"schedule_successful_amount\": 0.0,\r\n\"schedule_successful_authorization_amount\": 0.0,\r\n\"schedule_successful_quantity\": 0,\r\n\"schedule_failed_amount\": 0.0,\r\n\"schedule_failed_authorization_amount\": 0.0,\r\n\"schedule_failed_quantity\": 0,\r\n\"schedule_remaining_amount\": 0.0,\r\n\"schedule_remaining_authorization_amount\": 0.0,\r\n\"schedule_remaining_quantity\": 0,\r\n\"schedule_suspended_amount\": 0.0,\r\n\"schedule_suspended_authorization_amount\": 0.0,\r\n\"schedule_suspended_quantity\": 0\r\n},\r\n\"xdata\": {\r\n\"xdata_1\": \"data1\",\r\n\"xdata_2\": \"data2\",\r\n\"xdata_3\": \"data3\",\r\n\"xdata_4\": \"data4\"\r\n},\r\n\"response\": {\r\n\"environment\": \"live\",\r\n\"response_desc\": \"Get Successful.\"\r\n},\r\n\"links\": {\r\n\"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_1611b4f8-527d-4bed-a4ff-f862e8ee1967/scheduleitems\",\r\n\"self\": \"https://api.forte.net/v3/schedules/sch_1611b4f8-527d-4bed-a4ff-f862e8ee1967/\"\r\n}\r\n}"}],"_postman_id":"1758faa9-bdf0-4de0-8077-4de60d0bc44b"},{"name":"Update a Schedule's Status","id":"c0b474ca-bf70-45ec-a3d4-c63986a441a1","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n       \"schedule_status\": \"suspended\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules/sch_{{scheduleID}}","description":"<p>Updates the status of the schedule definition. When you reactivate a suspended schedule, its scheduleitems dated at least one day in the future are automatically reactivated as well.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","schedules","sch_{{scheduleID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"6850c6d7-a661-46b4-904c-4bd3edcbf9c7","name":"Update a Schedule's Status","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"schedule_status\": \"suspended\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules/sch_{{scheduleID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"408","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 16:21:58 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"1-32932009-32932021 NNNN CT(38 68 0) RT(1508516517582 47) q(0 0 1 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"schedule_id\": \"sch_e2a47594-51fe-4ea1-b137-345cf9cca87b\",\n    \"location_id\": \"loc_192642\",\n    \"schedule_status\": \"suspended\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_e2a47594-51fe-4ea1-b137-345cf9cca87b/scheduleitems\",\n        \"self\": \"https://api.forte.net/v3/schedules/sch_e2a47594-51fe-4ea1-b137-345cf9cca87b\"\n    }\n}"}],"_postman_id":"c0b474ca-bf70-45ec-a3d4-c63986a441a1"},{"name":"Update a Schedule's Paymethod Token","id":"5b29cec0-4c9c-4fb6-9423-c5bab023488a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n       \"paymethod_token\":\"mth_3urq2yQexUmRWD3v8SOqlg\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules/sch_{{scheduleID}}","description":"<p>Updates the paymethod token of the schedule definition.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","schedules","sch_{{scheduleID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"d70d20c0-278f-4bc3-b0a4-1ed439a60f83","name":"Update a Schedule's Paymethod Token","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"paymethod_token\":\"mth_3urq2yQexUmRWD3v8SOqlg\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules/sch_{{scheduleID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"425","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 16:23:08 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"1-32932009-32941661 NNNN CT(40 34 0) RT(1508516517582 68893) q(0 0 1 -1) r(14 14) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"schedule_id\": \"sch_e2a47594-51fe-4ea1-b137-345cf9cca87b\",\n    \"location_id\": \"loc_192642\",\n    \"paymethod_token\": \"mth_3urq2yQexUmRWD3v8SOqlg\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"scheduleitems\": \"https://api.forte.net/v3/schedules/sch_e2a47594-51fe-4ea1-b137-345cf9cca87b/scheduleitems\",\n        \"self\": \"https://api.forte.net/v3/schedules/sch_e2a47594-51fe-4ea1-b137-345cf9cca87b\"\n    }\n}"}],"_postman_id":"5b29cec0-4c9c-4fb6-9423-c5bab023488a"},{"name":"Schedule","id":"1a61635d-33cf-4e87-abd2-648fb53f87d1","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules/sch_{{scheduleID}}","description":"<p>This URI deletes the schedule associated with the provided <code>schedule_id</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","schedules","sch_{{scheduleID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"32580507-44ec-4f05-b421-52acbc9c04e7","name":"Delete a Schedule","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/schedules/sch_{{scheduleID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"159","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Mon, 04 Dec 2017 22:01:34 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"4-209212175-209212187 SNNN RT(1512424850839 43292) q(0 0 0 -1) r(1 1) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"schedule_id\": \"sch_84037b43-844b-4110-a5ba-5d5a547a4e60\",\n    \"location_id\": \"loc_192642\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Delete Successful.\"\n    }\n}"}],"_postman_id":"1a61635d-33cf-4e87-abd2-648fb53f87d1"}],"id":"1a531581-36a0-41bc-8fa5-c227110b0c1e","description":"<p>The <code>schedules</code> object captures scheduled transactions for a merchant's organization or location and includes the <code>summary</code> sub-object. Merchants can specify a particular quantity of scheduled transactions or can set up continuous transactions that will occur until the schedule is suspended or deleted. <em><strong>Subscription billing</strong></em> enables merchants to bill customers automatically on a fixed schedule for a specific product or service. Scheduled transactions can only be created with <code>customer_token</code> and <code>paymethod_token</code> parameters.</p>\n<h2 id=\"schedules-object\">Schedules Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n<th>Req</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>organization_id</code></td>\n<td>The identification number of the associated organization. For example, <code>org_5551236</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>location_id</code></td>\n<td>The identification number of the associated location. For example, <code>loc_1234568</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>schedule_id</code></td>\n<td>A unique string used to represent a schedule. For example, <code>sch_2e5770ae-c120-414f-ae8c-d065753567e7</code>. [max length = 40]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>customer_token</code></td>\n<td>A unique string used to represent a customer. For example, <code>cst_SoGUG6mcLUS1nVzYBIbk3g</code>. [max length = 26]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>paymethod_token</code></td>\n<td>A unique string used to represent a payment method. For example, <code>mth_1578436587</code>. [max length = 26]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>action</code></td>\n<td>The supported transaction types include the following values:  <br />  <br /><br />- <code>sale</code> - Creates an ad-hoc or token transaction that will settle at the end of the day<br />- <code>credit</code> - Used to send funds back to the account/card holder rather than collecting funds from an account/card holder.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>schedule_quantity</code></td>\n<td>Indicates the quantity of transactions to perform. For continuous schedules, set the value of this field to <code>0</code>. [max length = 6]</td>\n<td>integer</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>schedule_frequency</code></td>\n<td>Indicates the frequency of the scheduled transactions. The supported values for this field include the following:  <br />  <br /><br />- <code>one_time_future</code><br />- <code>weekly</code><br />- <code>bi_weekly</code><br />- <code>monthly</code><br />- <code>bi_monthly</code><br />- <code>semi_monthly</code><br />- <code>quarterly</code><br />- <code>semi_annually</code><br />- <code>annually</code></td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>schedule_amount</code></td>\n<td>Indicates the amount of each recurring transaction plus any sales taxes, shipping fees, tips or other extraneous amounts. For service fee transactions, use this parameter as the base amount for calculating a service fee. The value of this parameter depends on the value in the <code>schedule_frequency</code> parameter. [max length = 6]</td>\n<td>decimal</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>schedule_service_fee_amount</code></td>\n<td>The amount of the service fee (i.e., convenience fee).</td>\n<td>decimal</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>schedule_authorization_amount</code></td>\n<td>Indicates the amount of the recurring payment. For service fee transactions, this parameter is the resulting sum of the <code>schedule_amount</code> and the <code>schedule_service_fee_amount</code> values.</td>\n<td>decimal</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>schedule_start_date</code></td>\n<td>Indicates the start day of the next recurring transaction in MM/DD/YYYY format. This date can be today's date or greater. <strong>NOTE</strong>: If the merchant does not specify this value, the system defaults to today's date. [max length = 10]</td>\n<td>datetime</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>schedule_created_date</code></td>\n<td>The date the schedule was created. This parameter is return only.</td>\n<td>datetime</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>customer_acct_code</code></td>\n<td>The customer accounting code. This field only applies to credit card transactions. [max length = 17]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>schedule_status</code></td>\n<td>The current status of the schedule. The supported values for this field include the following:  <br />  <br /><br />- <code>active</code> - The schedule is active.<br />- <code>suspended</code> - The schedule is suspended.<br />- <code>completed</code> - The schedule is completed</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>item_description</code></td>\n<td>The check number or other description of the item to be processed. [max length = 50]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>reference_id</code></td>\n<td>A merchant-defined string that identifies the transaction. [max length = 50]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>order_number</code></td>\n<td>A merchant-assigned ID code that is returned with the transaction response. [max length = 26]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>customer_id</code></td>\n<td>A merchant-defined string created at the customer level to identify the customer. [max length = 15]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>echeck</code></td>\n<td>The eCheck Object</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>echeck.sec_code</code></td>\n<td>The <a href=\"https://developers.forte.net/ach-standard-entry-class-codes/\">ACH Standard Entry Class Codes</a> code for the transaction. This field is required for echeck transactions. Additionally, the available options for this field depend on your merchant configuration [max length = 3]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>summary</code></td>\n<td>The Summary Object</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>summary.schedule_next_amount</code></td>\n<td>The amount of the next scheduled transaction that will be processed. This parameter is return only.</td>\n<td>decimal</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>summary.schedule_next_date</code></td>\n<td>The next date when a scheduled transaction will be processed. This parameter is return only.</td>\n<td>datetime</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>summary.schedule_last_amount</code></td>\n<td>The authorization amount for the last scheduled transaction that Forte processed. This parameter is return only.</td>\n<td>decimal</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>summary.schedule_last_date</code></td>\n<td>The date and timestamp when Forte processed the last scheduled transaction. This parameter is return only.</td>\n<td>datetime</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>summary.schedule_successful_amount</code></td>\n<td>The total amount of the successful transactions for this schedule. This parameter is return only.</td>\n<td>decimal</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>summary.schedule_successful_authorization_amount</code></td>\n<td>The authorization amount of the last scheduled transaction that Forte successfully processed. This parameter is return only.</td>\n<td>decimal</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>summary.schedule_successful_quantity</code></td>\n<td>The total number of successful transactions for this schedule. This parameter is return only.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>summary.schedule_failed_amount</code></td>\n<td>The total amount of failed transactions for this schedule. This parameter is return only.</td>\n<td>decimal</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>summary.schedule_failed_quantity</code></td>\n<td>The total number of failed transactions for this schedule. This parameter is return only.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>summary.scheduled_remaining_amount</code></td>\n<td>The total amount of the remaining transactions for this schedule. This parameter is return only.</td>\n<td>decimal</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>summary.scheduled_remaining_quantity</code></td>\n<td>The total number of the remaining transactions for this schedule. This parameter is return only.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>summary.scheduled_suspended_amount</code></td>\n<td>The total amount of the suspended transactions for this schedule. This parameter is return only.</td>\n<td>decimal</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>summary.scheduled_suspended_quantity</code></td>\n<td>The total number of suspended transactions for this schedule. This parameter is return only.</td>\n<td>integer</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>xdata</code></td>\n<td>The Xdata Object</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>xdata.xdata_1-9</code></td>\n<td>Up to nine fields (1-9) of extra data that can be associated with a schedule or transaction. Each <code>xdata_#</code> field can contain up to 255 characters.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"acb3fbf2-cda8-4c64-a43c-96dce522ef56","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dfb14e90-751c-44b4-9818-aff05a15e97c","type":"text/javascript","exec":[""]}}],"_postman_id":"1a531581-36a0-41bc-8fa5-c227110b0c1e"},{"name":"Settlements","item":[{"name":"Simulate Settlements (Sandbox ONLY)","id":"6689ff5e-f9fa-410c-a2eb-a5ca07e71c5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"transaction_date\": \"11/20/2025\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/settlements/","description":"<p>Sandbox transactions do not automatically settle in sandbox environment. This URL simulates transaction settlements for a specific date only in the sandbox environment.</p>\n<p>How it works – For the “transaction_date” specified in the request:</p>\n<ul>\n<li><p>All the card transactions are updated to “Settled” status.</p>\n</li>\n<li><p>All the echeck transactions with whole dollar amount, except for $20 and $30 is updated to “funded” status, with response_code: S01</p>\n</li>\n<li><p>All the echeck transactions with NOT whole dollar amount, is updated to “Reject” status, with response_code: Rxx, where “xx” would be the decimal value of the amount.</p>\n<ul>\n<li>Example, if the transaction amount on the echeck transaction was $10.02, it will update “status” as “Reject” and “response_code” as “R02”.</li>\n</ul>\n</li>\n<li><p>eCheck transactions with dollar amount of $20, is updated to “Settled”, with response_code: S02</p>\n</li>\n<li><p>eCheck transactions with dollar amount of $30, is updated to “Settled”, with response_code: S03</p>\n</li>\n</ul>\n<p><strong>NOTE</strong>:</p>\n<ul>\n<li>Merchants are expected to perform GET on the Settlements endpoint to see the settled transactions.</li>\n</ul>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","settlements",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"14dc0005-4f16-438f-ba4a-0cb2ede26823","name":"Simulate Settlements (Sandbox ONLY)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"transaction_date\": \"11/20/2025\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/settlements/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"Result\": \"Updated 24 Number of records\"\n}"}],"_postman_id":"6689ff5e-f9fa-410c-a2eb-a5ca07e71c5e"},{"name":"All Settlements from a Location","id":"678e7641-1e72-4255-9215-6e46f81b6ffe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/settlements/","description":"<p>This URI returns all the transaction settlements for a Location. To narrow your search data using specific criteria, use the following parameters to filter your results: </p>\n<ul>\n<li> customer_token</li>\n<li> transaction_id</li>\n<li> customer_id</li>\n<li> order_number</li>\n<li> reference_id</li>\n<li> start_settle_date / end_settle_date</li>\n<li> settle_response_code</li>\n<li> method</li>\n</ul>\n\n<p><strong>NOTES</strong>: </p><ul><li>All date filter parameters are time aware.</li><li> If the <code>start_settle_date</code> and <code>end_settle_date</code> filters are not passed in via the body of the requst, the query automatically uses a default date range of 90 days. If you do not pass in any date filters, the system automatically uses the current date and the previous 90 days.</li></ul><p></p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","settlements",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"3828920a-0889-457a-a46e-e70feb1b94f0","name":"All Settlements of a Location","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/settlements/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-encoding","value":"gzip","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Mon, 04 Dec 2017 22:16:01 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"10-282049648-282063276 NNNN CT(33 44 0) RT(1512425701235 60075) q(0 0 0 -1) r(1 1) U16","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 13,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_334316\",\n        \"resource_specific\": {\n            \"location_id\": \"loc_192642\",\n            \"start_settle_date\": \"2016-10-01T00:00:00\",\n            \"end_settle_date\": \"2016-10-31T00:00:00\"\n        }\n    },\n    \"results\": [\n        {\n            \"settle_id\": \"stl_f90ce5f6-3990-4384-bfd5-13dbc63dc895\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_05169f58-241f-45b0-a335-3569d4a4e13e\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 102.45,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3//settlements/stl_f90ce5f6-3990-4384-bfd5-13dbc63dc895\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_a2c3dcf6-0c0f-4bfc-9bdf-266ce0e475e6\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_0da1b367-b2fc-4a8d-bf0c-6e17f9cfcade\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T08:55:22.333\",\n            \"settle_type\": \"reject\",\n            \"settle_response_code\": \"R49\",\n            \"settle_amount\": 0,\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_a2c3dcf6-0c0f-4bfc-9bdf-266ce0e475e6\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_45a168b1-2c14-4250-85b5-2bb306956489\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_0ebbc660-80a2-4a20-a610-11e2f205f742\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"withdrawal\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": -1,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_45a168b1-2c14-4250-85b5-2bb306956489\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_0e48f734-630e-4738-a990-2f1ba62d4614\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_eb64304c-6fbe-43db-9316-fdff1ef1a16a\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 45698.45,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_0e48f734-630e-4738-a990-2f1ba62d4614\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_dc1aad35-409c-416d-b267-31be430d2401\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_dc0a2890-688f-4dc7-872b-820f23835dbd\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 1500.45,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_dc1aad35-409c-416d-b267-31be430d2401\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_db452945-8866-40d5-8625-4d67fe7c0f2f\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_8d888da5-67b1-42ee-a211-3111fe916718\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 1103.45,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_db452945-8866-40d5-8625-4d67fe7c0f2f\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_051849e9-d104-4fd7-a5b6-61f5c4183d65\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_173d67bb-0b30-47de-a82c-d8bb4429f84e\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T08:54:40.443\",\n            \"settle_type\": \"reject\",\n            \"settle_response_code\": \"R52\",\n            \"settle_amount\": 0,\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_051849e9-d104-4fd7-a5b6-61f5c4183d65\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_d66ca0ff-8ba3-48d8-9f20-8a4db3b74236\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_77aada8a-b324-4e1b-bdcf-2c3c4f8110ac\",\n            \"customer_id\": \"customer ID\",\n            \"order_number\": \"2925432\",\n            \"reference_id\": \"inv-232\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 1,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_d66ca0ff-8ba3-48d8-9f20-8a4db3b74236\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_515761cb-7a78-4de3-aadb-9038a570cf57\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_e3beac6d-c421-430c-9ce8-96873d938c9b\",\n            \"customer_id\": \"customer ID\",\n            \"order_number\": \"2925432\",\n            \"reference_id\": \"inv-232\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T09:20:11.947\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"S01\",\n            \"settle_amount\": 1,\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_515761cb-7a78-4de3-aadb-9038a570cf57\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_17024769-b2a8-4e5e-9000-b27ff90e5518\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_a514ebde-cf90-4152-b67c-083ec78823a8\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T09:44:06.9\",\n            \"settle_response_code\": \"A01\",\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_17024769-b2a8-4e5e-9000-b27ff90e5518\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_edce2138-ce1f-4c12-828c-d603fb8bcfde\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_69106bd2-ed33-45c2-9bfc-7f3b57b50dfe\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T08:53:57.643\",\n            \"settle_type\": \"reject\",\n            \"settle_response_code\": \"R52\",\n            \"settle_amount\": 0,\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_edce2138-ce1f-4c12-828c-d603fb8bcfde\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_60e00b41-7dce-41f3-bc25-e9857cb5295d\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_67de8503-6723-44d4-ac05-72607dca3d67\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T08:54:46.893\",\n            \"settle_type\": \"reject\",\n            \"settle_response_code\": \"R52\",\n            \"settle_amount\": 0,\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_60e00b41-7dce-41f3-bc25-e9857cb5295d\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_42ccb5cb-0c0b-466a-ae04-fcb76803f03a\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_69009c9f-2fb4-4634-ad43-fd5acde6010c\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 102.45,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_42ccb5cb-0c0b-466a-ae04-fcb76803f03a\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/settlements/?filter=start_settle_date+eq+%272016-10-01%27+AND+end_settle_date+eq+%272016-10-31%27\"\n    }\n}"}],"_postman_id":"678e7641-1e72-4255-9215-6e46f81b6ffe"},{"name":"Settlements from a Specific Data Range","id":"970092cd-5cb8-411c-9b14-9bd7f65111c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/settlements/?filter=start_settle_date+eq+%272016-10-01%27+AND+end_settle_date+eq+%272016-10-31%27","description":"<p>This URI returns all the transaction settlements for a Location within a specific date range.</p>\n<p><strong>Note:</strong> Please note that sending a request at the partner (org) level may result in a large data set and may cause timeout errors depending on the request. We recommend sending your GET request at the Merchant (Organization) level.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","settlements",""],"host":["{{baseURI}}"],"query":[{"key":"filter","value":"start_settle_date+eq+%272016-10-01%27+AND+end_settle_date+eq+%272016-10-31%27"}],"variable":[]}},"response":[{"id":"54a27ac4-28e2-46fa-b30c-4585d55650c1","name":"Find Settlements from a Specific Data Range","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/settlements/?filter=start_settle_date+eq+%272016-10-01%27+AND+end_settle_date+eq+%272016-10-31%27","host":["{{baseURI}}"],"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","settlements",""],"query":[{"key":"filter","value":"start_settle_date+eq+%272016-10-01%27+AND+end_settle_date+eq+%272016-10-31%27"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Mon, 23 Oct 2017 15:56:41 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"8-88496946-88496950 NNNN CT(48 39 0) RT(1508774201101 26) q(0 0 1 -1) r(2 2) U16","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 13,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_334316\",\n        \"resource_specific\": {\n            \"location_id\": \"loc_192642\",\n            \"start_settle_date\": \"2016-10-01T00:00:00\",\n            \"end_settle_date\": \"2016-10-31T00:00:00\"\n        }\n    },\n    \"results\": [\n        {\n            \"settle_id\": \"stl_f90ce5f6-3990-4384-bfd5-13dbc63dc895\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_05169f58-241f-45b0-a335-3569d4a4e13e\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 102.45,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_f90ce5f6-3990-4384-bfd5-13dbc63dc895\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_a2c3dcf6-0c0f-4bfc-9bdf-266ce0e475e6\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_0da1b367-b2fc-4a8d-bf0c-6e17f9cfcade\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T08:55:22.333\",\n            \"settle_type\": \"reject\",\n            \"settle_response_code\": \"R49\",\n            \"settle_amount\": 0,\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_a2c3dcf6-0c0f-4bfc-9bdf-266ce0e475e6\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_45a168b1-2c14-4250-85b5-2bb306956489\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_0ebbc660-80a2-4a20-a610-11e2f205f742\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"withdrawal\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": -1,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_45a168b1-2c14-4250-85b5-2bb306956489\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_0e48f734-630e-4738-a990-2f1ba62d4614\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_eb64304c-6fbe-43db-9316-fdff1ef1a16a\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 45698.45,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_0e48f734-630e-4738-a990-2f1ba62d4614\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_dc1aad35-409c-416d-b267-31be430d2401\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_dc0a2890-688f-4dc7-872b-820f23835dbd\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 1500.45,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_dc1aad35-409c-416d-b267-31be430d2401\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_db452945-8866-40d5-8625-4d67fe7c0f2f\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_8d888da5-67b1-42ee-a211-3111fe916718\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 1103.45,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_db452945-8866-40d5-8625-4d67fe7c0f2f\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_051849e9-d104-4fd7-a5b6-61f5c4183d65\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_173d67bb-0b30-47de-a82c-d8bb4429f84e\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T08:54:40.443\",\n            \"settle_type\": \"reject\",\n            \"settle_response_code\": \"R52\",\n            \"settle_amount\": 0,\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_051849e9-d104-4fd7-a5b6-61f5c4183d65\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_d66ca0ff-8ba3-48d8-9f20-8a4db3b74236\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_77aada8a-b324-4e1b-bdcf-2c3c4f8110ac\",\n            \"customer_id\": \"customer ID\",\n            \"order_number\": \"2925432\",\n            \"reference_id\": \"inv-232\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 1,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_d66ca0ff-8ba3-48d8-9f20-8a4db3b74236\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_515761cb-7a78-4de3-aadb-9038a570cf57\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_e3beac6d-c421-430c-9ce8-96873d938c9b\",\n            \"customer_id\": \"customer ID\",\n            \"order_number\": \"2925432\",\n            \"reference_id\": \"inv-232\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T09:20:11.947\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"S01\",\n            \"settle_amount\": 1,\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_515761cb-7a78-4de3-aadb-9038a570cf57\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_17024769-b2a8-4e5e-9000-b27ff90e5518\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_a514ebde-cf90-4152-b67c-083ec78823a8\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T09:44:06.9\",\n            \"settle_response_code\": \"A01\",\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_17024769-b2a8-4e5e-9000-b27ff90e5518\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_edce2138-ce1f-4c12-828c-d603fb8bcfde\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_69106bd2-ed33-45c2-9bfc-7f3b57b50dfe\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T08:53:57.643\",\n            \"settle_type\": \"reject\",\n            \"settle_response_code\": \"R52\",\n            \"settle_amount\": 0,\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_edce2138-ce1f-4c12-828c-d603fb8bcfde\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_60e00b41-7dce-41f3-bc25-e9857cb5295d\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_67de8503-6723-44d4-ac05-72607dca3d67\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T08:54:46.893\",\n            \"settle_type\": \"reject\",\n            \"settle_response_code\": \"R52\",\n            \"settle_amount\": 0,\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_60e00b41-7dce-41f3-bc25-e9857cb5295d\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_42ccb5cb-0c0b-466a-ae04-fcb76803f03a\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_69009c9f-2fb4-4634-ad43-fd5acde6010c\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 102.45,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_42ccb5cb-0c0b-466a-ae04-fcb76803f03a\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/settlements/?filter=start_settle_date+eq+%272016-10-01%27+AND+end_settle_date+eq+%272016-10-31%27\"\n    }\n}"}],"_postman_id":"970092cd-5cb8-411c-9b14-9bd7f65111c9"},{"name":"Settlements by Transaction ID","id":"1880dd2e-9309-41e4-bd22-1ff0bd8e702e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/trn_{{transactionID}}/settlements/","description":"<p>This URI returns all the settlement data for a specific transaction. <strong>NOTE</strong>: Most transactions only have one settlement, but due to disputes and returns, some transactions may have multiple settlements.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions","trn_{{transactionID}}","settlements",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"f274f68b-b104-4fda-a474-14ab91138672","name":"Settlements by Transaction ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/{{transactionID}}/settlements/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"close","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data.","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Wed, 30 May 2018 19:42:54 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server","enabled":true},{"key":"Set-Cookie","value":"incap_ses_516_636562=a; Max-Age=0; path=/; expires=Sun, 27 May 2018 10:06:08 GMT; Domain=.forte.net","description":"an HTTP cookie","enabled":true},{"key":"Set-Cookie","value":"incap_ses_515_636562=a; Max-Age=0; path=/; expires=Sun, 27 May 2018 10:06:08 GMT; Domain=.forte.net","description":"an HTTP cookie","enabled":true},{"key":"Set-Cookie","value":"incap_ses_618_621087=a; Max-Age=0; path=/; expires=Sun, 27 May 2018 10:06:08 GMT; Domain=.forte.net","description":"an HTTP cookie","enabled":true},{"key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity.","enabled":true},{"key":"WWW-Authenticate","value":"Basic realm=\"sandbox.forte.net\"","description":"Indicates the authentication scheme that should be used to access the requested entity.","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header","enabled":true},{"key":"X-CDN","value":"Incapsula","description":"Custom header","enabled":true},{"key":"X-Iinfo","value":"5-21504188-21504190 NNNN CT(32 33 0) RT(1527709373590 31) q(0 0 0 -1) r(3 3) U16","description":"Custom header","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","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)","enabled":true}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"zc1JQDv3SsqdxPTgM0OnpjEoKFoAAAAAQUIPAAAAAAC5r9SJNQaR/XxRjTJMvNk3","key":"visid_incap_621087"},{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"LagOT3H0bz16V2j2cEK08gAAAADFN8p3Q2kgpDNG5tb93/yr","key":"nlbi_621087"},{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"Gu1jkb4nQBeXljXOnARN0tqXMVoAAAAAQUIPAAAAAACR/yf5rDPX4eBxRqMSjpKM","key":"visid_incap_636562"},{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"yvInRueGznR+OOop4JROuQAAAAC5mRw739i8vVmsTGP0K9Lb","key":"nlbi_636562"},{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"zALsc3pl21br5wIoLqufAU7JDlsAAAAAbYXKCtVXEbg+Z/SbE9TRZQ==","key":"incap_ses_117_636562"},{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"VgEzSxEduWSe/UQoLqufAaX+DlsAAAAAZCBOziWp9wJxoatZSG0XaQ==","key":"incap_ses_117_621087"}],"responseTime":null,"body":"{\r\n      \"settle_id\": \"stl_42ccb5cb-0c0b-466a-ae04-fcb76803f03a\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"transaction_id\": \"trn_69009c9f-2fb4-4634-ad43-fd5acde6010c\",\r\n      \"settle_batch_id\": \"123123123\",\r\n      \"settle_date\": \"2016-10-11T22:00:00\",\r\n      \"settle_type\": \"deposit\",\r\n      \"settle_response_code\": \"A01\",\r\n      \"settle_amount\": 102.45,\r\n      \"method\": \"cc\",\r\n      \"links\": {\r\n        \"self\": \"https://api.forte.net/v3/settlements/stl_42ccb5cb-0c0b-466a-ae04-fcb76803f03a\"\r\n      },\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_desc\": \"Get Successful.\"\r\n  }\r\n}"}],"_postman_id":"1880dd2e-9309-41e4-bd22-1ff0bd8e702e"},{"name":"All Settlements from an Organization","id":"3a96657e-b98a-4377-b5e7-ea75ef75942e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/settlements/","description":"<p>This URI returns all the transaction settlements for an Organization. To narrow your search data using specific criteria, use the following parameters to filter your results:</p>\n<ul><li><p>location_id</p></li><li><p>customer_token</p></li><li><p>transaction_id</p></li><li><p>customer_id</p></li><li><p>order_number</p></li><li><p>reference_id</p></li><li><p>start_settle_date / end_settle_date</p></li><li><p>settle_response_code</p></li><li><p>method</p></li></ul>\n\n<p><strong>NOTES</strong>:</p>\n<ul><li><p>All date filter parameters are time aware.</p></li><li><p>If the <code>start_settle_date</code> and <code>end_settle_date</code> filters are not passed in via the body of the requst, the query automatically uses a default date range of 90 days. If you do not pass in any date filters, the system automatically uses the current date and the previous 90 days.</p></li></ul>\n\n<p>Please note that sending a request at the partner (org) level may result in a large data set and may cause timeout errors depending on the request. We recommend sending your GET request at the Merchant (Organization) level.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","settlements",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"2ac1d252-f510-4657-8bf7-11e8d0ded827","name":"All Settlements from an Organization","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/settlements/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 13,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_334316\",\n        \"resource_specific\": {\n            \"start_settle_date\": \"2016-10-01T00:00:00\",\n            \"end_settle_date\": \"2016-10-31T00:00:00\"\n        }\n    },\n    \"results\": [\n        {\n            \"settle_id\": \"stl_f90ce5f6-3990-4384-bfd5-13dbc63dc895\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_05169f58-241f-45b0-a335-3569d4a4e13e\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 102.45,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_f90ce5f6-3990-4384-bfd5-13dbc63dc895\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_a2c3dcf6-0c0f-4bfc-9bdf-266ce0e475e6\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_0da1b367-b2fc-4a8d-bf0c-6e17f9cfcade\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T08:55:22.333\",\n            \"settle_type\": \"reject\",\n            \"settle_response_code\": \"R49\",\n            \"settle_amount\": 0,\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_a2c3dcf6-0c0f-4bfc-9bdf-266ce0e475e6\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_45a168b1-2c14-4250-85b5-2bb306956489\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_0ebbc660-80a2-4a20-a610-11e2f205f742\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"withdrawal\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": -1,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_45a168b1-2c14-4250-85b5-2bb306956489\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_0e48f734-630e-4738-a990-2f1ba62d4614\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_eb64304c-6fbe-43db-9316-fdff1ef1a16a\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 45698.45,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_0e48f734-630e-4738-a990-2f1ba62d4614\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_dc1aad35-409c-416d-b267-31be430d2401\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_dc0a2890-688f-4dc7-872b-820f23835dbd\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 1500.45,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_dc1aad35-409c-416d-b267-31be430d2401\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_db452945-8866-40d5-8625-4d67fe7c0f2f\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_8d888da5-67b1-42ee-a211-3111fe916718\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 1103.45,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_db452945-8866-40d5-8625-4d67fe7c0f2f\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_051849e9-d104-4fd7-a5b6-61f5c4183d65\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_173d67bb-0b30-47de-a82c-d8bb4429f84e\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T08:54:40.443\",\n            \"settle_type\": \"reject\",\n            \"settle_response_code\": \"R52\",\n            \"settle_amount\": 0,\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_051849e9-d104-4fd7-a5b6-61f5c4183d65\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_d66ca0ff-8ba3-48d8-9f20-8a4db3b74236\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_77aada8a-b324-4e1b-bdcf-2c3c4f8110ac\",\n            \"customer_id\": \"customer ID\",\n            \"order_number\": \"2925432\",\n            \"reference_id\": \"inv-232\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 1,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_d66ca0ff-8ba3-48d8-9f20-8a4db3b74236\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_515761cb-7a78-4de3-aadb-9038a570cf57\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_e3beac6d-c421-430c-9ce8-96873d938c9b\",\n            \"customer_id\": \"customer ID\",\n            \"order_number\": \"2925432\",\n            \"reference_id\": \"inv-232\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T09:20:11.947\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"S01\",\n            \"settle_amount\": 1,\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_515761cb-7a78-4de3-aadb-9038a570cf57\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_17024769-b2a8-4e5e-9000-b27ff90e5518\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_a514ebde-cf90-4152-b67c-083ec78823a8\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T09:44:06.9\",\n            \"settle_response_code\": \"A01\",\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_17024769-b2a8-4e5e-9000-b27ff90e5518\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_edce2138-ce1f-4c12-828c-d603fb8bcfde\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_69106bd2-ed33-45c2-9bfc-7f3b57b50dfe\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T08:53:57.643\",\n            \"settle_type\": \"reject\",\n            \"settle_response_code\": \"R52\",\n            \"settle_amount\": 0,\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_edce2138-ce1f-4c12-828c-d603fb8bcfde\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_60e00b41-7dce-41f3-bc25-e9857cb5295d\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_67de8503-6723-44d4-ac05-72607dca3d67\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-17T08:54:46.893\",\n            \"settle_type\": \"reject\",\n            \"settle_response_code\": \"R52\",\n            \"settle_amount\": 0,\n            \"method\": \"echeck\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_60e00b41-7dce-41f3-bc25-e9857cb5295d\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_42ccb5cb-0c0b-466a-ae04-fcb76803f03a\",\n            \"organization_id\": \"org_334316\",\n            \"location_id\": \"loc_192642\",\n            \"transaction_id\": \"trn_69009c9f-2fb4-4634-ad43-fd5acde6010c\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2016-10-11T22:00:00\",\n            \"settle_type\": \"deposit\",\n            \"settle_response_code\": \"A01\",\n            \"settle_amount\": 102.45,\n            \"method\": \"cc\",\n            \"links\": {\n                \"self\": \"https://api.forte.net/v3/settlements/stl_42ccb5cb-0c0b-466a-ae04-fcb76803f03a\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/settlements/?filter=start_settle_date+eq+%272016-10-01%27+AND+end_settle_date+eq+%272016-10-31%27\"\n    }\n}"}],"_postman_id":"3a96657e-b98a-4377-b5e7-ea75ef75942e"},{"name":"All eCheck Returned Settlements","id":"915ccc0a-408f-4ad8-b819-b91a0d6f8d7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/settlements/?returns&filter=start_settlement_date+eq+’2026-01-10-0’1+AND+end_settlement_date+eq+‘2026-01-15","description":"<p>This URL returns all returned eCheck settlements for a specific location within a defined date range, including additional fields from the Transactions object. The results are filtered using the “returns” query parameter.</p>\n<p><strong>NOTE:</strong></p>\n<ul>\n<li><p>If the \"start_settle_date\" and \"end_settle_date\" filters are not passed in via the body of the request, the query automatically uses a default date range of 90 days.</p>\n</li>\n<li><p>If you do not pass in any date filters, the system automatically uses the current date and the previous 90 days.</p>\n</li>\n</ul>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","settlements",""],"host":["{{baseURI}}"],"query":[{"key":"returns","value":null},{"key":"filter","value":"start_settlement_date+eq+’2026-01-10-0’1+AND+end_settlement_date+eq+‘2026-01-15"}],"variable":[]}},"response":[{"id":"e49bcaab-6eed-496b-aac8-add044cddadd","name":"eCheck Returned Settlements","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.forte.net/v3/organizations/org_1567890/locations/loc_3546906/settlements/?returns&filter=start_settle_date+eq+'2026-01-10'+AND+end_settle_date+eq+'2026-01-15' ","protocol":"https","host":["api","forte","net"],"path":["v3","organizations","org_1567890","locations","loc_3546906","settlements",""],"query":[{"key":"returns","value":null},{"key":"filter","value":"start_settle_date+eq+'2026-01-10'+AND+end_settle_date+eq+'2026-01-15' "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 3,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_300382\",\n        \"resource_specific\": {\n            \"location_id\": \"loc_173185\",\n            \"start_settle_date\": \"2026-03-01T00:00:00\",\n            \"end_settle_date\": \"2026-04-04T00:00:00\"\n        }\n    },\n    \"results\": [\n        {\n            \"settle_id\": \"stl_84f74ccd-2807-4ca9-9d80-c0896288a7c6\",\n            \"location_id\": \"loc_173185\",\n            \"transaction_id\": \"trn_7b1922ca14-61dc-45f9-8d37-5de14d570af8\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2026-04-02T07:34:08.55\",\n            \"settle_type\": \"reject\",\n            \"settle_response_code\": \"R09\",\n            \"settle_amount\": 0.00,\n            \"method\": \"echeck\",\n            \"response\": {\n                \"response_type\": \"A\",\n                \"response_code\": \"A01\",\n                \"response_desc\": \"APPROVED\"\n            },\n            \"links\": {\n                \"self\": \"https://sandbox.forte.net/api/v3/settlements/stl_84f74ccd-2807-4ca9-9d80-c0896288a7c6\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_961e52d7-c443-4c63-88a3-f134c8c9529e\",\n            \"location_id\": \"loc_173185\",\n            \"transaction_id\": \"trn_fd5722933d-9b64-4e96-a9b0-896a5c1ca7fc\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2026-04-02T07:36:28.107\",\n            \"settle_type\": \"reject\",\n            \"settle_response_code\": \"R56\",\n            \"settle_amount\": 0.00,\n            \"method\": \"echeck\",\n            \"response\": {\n                \"response_type\": \"A\",\n                \"response_code\": \"A01\",\n                \"response_desc\": \"APPROVED\"\n            },\n            \"links\": {\n                \"self\": \"https://sandbox.forte.net/api/v3/settlements/stl_961e52d7-c443-4c63-88a3-f134c8c9529e\"\n            }\n        },\n        {\n            \"settle_id\": \"stl_b6afd344-c456-401e-93c5-a82831e96525\",\n            \"location_id\": \"loc_173185\",\n            \"transaction_id\": \"trn_b9e256d42e-d1a1-417b-8f7c-2b01f2f639b3\",\n            \"settle_batch_id\": \"123123123\",\n            \"settle_date\": \"2026-04-02T07:36:36.66\",\n            \"settle_type\": \"reject\",\n            \"settle_response_code\": \"R23\",\n            \"settle_amount\": 0.00,\n            \"method\": \"echeck\",\n            \"response\": {\n                \"response_type\": \"A\",\n                \"response_code\": \"A01\",\n                \"response_desc\": \"APPROVED\"\n            },\n            \"links\": {\n                \"self\": \"https://sandbox.forte.net/api/v3/settlements/stl_b6afd344-c456-401e-93c5-a82831e96525\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"sandbox\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/api/v3/settlements/?returns=&filter=start_settle_date+eq+%272026-03-01%27+AND+end_settle_date+eq+%272026-04-04%27\"\n    }\n}"}],"_postman_id":"915ccc0a-408f-4ad8-b819-b91a0d6f8d7e"}],"id":"0c44c046-a0dd-4474-915c-2e09c3611291","description":"<p>The <code>settlements</code> object captures the status of transaction(s) associated with a merchant location. <code>GET</code> requests to this endpoint can be filtered according to settlement date, response, and method.</p>\n<h2 id=\"settlements-object\">Settlements Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n<th>Req</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>organization_id</code></td>\n<td>The identification number of the associated organization. For example, <code>org_5551236</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>location_id</code></td>\n<td>The identification number of the associated location. For example, <code>loc_1234568</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>funding_id</code></td>\n<td>A unique string used to represent a funding entry. For example, <code>fnd_ACH-0226-173C5</code>. [max length = 20]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>customer_token</code></td>\n<td>A unique string used to represent a customer. For example, <code>cst_SoGUG6mcLUS1nVzYBIbk3g</code>. [max length = 26]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>customer_id</code></td>\n<td>A merchant-defined string created at the customer level to identify the customer. [max length = 15]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>order_number</code></td>\n<td>A merchant-defined string. [max length = 50]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>reference_id</code></td>\n<td>A merchant-defined string that identifies the transaction. [max length = 50]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>settle_id</code></td>\n<td>The settlement ID of the settled transaction (e.g., <code>stl_51cf4633-1767-484f-8784-be76a4076791</code>). [max length = 40]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>transaction_id</code></td>\n<td>A 36-character code that uniquely identifies the transaction.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>settle_batch_id</code></td>\n<td>The ID of the credit card settlement batch, which the merchant can use to reconcile credit card bank deposits. This parameter is view-only and only for credit card transactions.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>settle_date</code></td>\n<td>The date when the transaction was settled. This parameter is return only.</td>\n<td>datetime</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>settle_type</code></td>\n<td>The type of settlement. Supported settlement types include the following values. For echeck transactions:  <br />  <br />  <br />- <code>deposit</code> - A deposit to the merchant's bank account or a payment received  <br />- <code>reject</code> - An ACH return such as Non-Sufficient Funds or Account Closed. There is no corresponding funding on the merchant's bank account.  <br />- <code>withdrawal</code> - A withdrawal from the merchant's bank account such as a credit transaction or a transaction that was funded and then unfunded (such as an R10 return).  <br />  <br />  <br />  <br />For credit card transactions:  <br />  <br />  <br />- <code>deposit</code> - A deposit to the merchant's bank account or a payment received  <br />- <code>withdrawal</code> - A withdrawal from the merchant's bank account such as a credit transaction or a transaction that was funded and then unfunded, e.g., a credit card chargeback  <br />  <br />  <br />  <br />This parameter is return only.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>settle_response_code</code></td>\n<td>See the <a href=\"https://developers.forte.net/transaction-codes/\">Response Codes</a> table for more information. This parameter is return only. <strong>NOTE</strong>: Credit card transactions that do not return a settle response can be considered settled.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>settle_amount</code></td>\n<td>The amount the transaction settled for. This parameter is return only.</td>\n<td>decimal</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>method</code></td>\n<td>The payment method. This parameter is return only. The supported payment methods include the following values:  <br />  <br />  <br />- <code>echeck</code>  <br />- <code>cc</code></td>\n<td>string</td>\n<td>—</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"12bdac1e-929d-4546-b53b-95f024f1f732","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f6b5b52d-5211-4b4d-9e26-01a4527d970e","type":"text/javascript","exec":[""]}}],"_postman_id":"0c44c046-a0dd-4474-915c-2e09c3611291"},{"name":"Transactions","item":[{"name":"Transaction (Credit Card)","id":"31643fe1-7ade-4613-8743-c2c78392e963","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\": 102.45,\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  },\r\n  \"card\":{\r\n     \"card_type\": \"visa\",\r\n     \"name_on_card\": \"Jennifer McFly\",\r\n     \"account_number\": \"4111111111111111\",\r\n     \"expire_month\": \"12\",\r\n     \"expire_year\": \"2030\",\r\n     \"card_verification_value\":\"123\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>Accepted card types (debit and credit) include Visa, MasterCard, Amex, Discover, Diners and JCB.</p>\n<p>This URI can perform the following tasks while returning a new <code>transaction_id</code>:</p>\n<ul><li><p>Create an ad-hoc transaction. Note: If the intent is to authorize and immediately capture the transaction, it is recommended that a sale transaction is sent.</p></li><li><p>Create a transaction based on the customer token using the default billing address</p></li><li><p>Create a transaction based on the customer and paymethod tokens using the customer default billing address</p></li><li><p>Create a transaction based on the paymethod token, which requires the address in the request message</p></li><li><p>Reverse a sale transaction and create a credit transaction, which requires the <code>transaction_id</code> and <code>authorization_code</code> of the original transaction</p></li></ul>","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"acaa954f-d3fd-44b2-b57f-0f320a0ccfdf","name":"Create a Transaction (Credit Card)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\": 102.45,\r\n    \"subtotal_amount\": 99.95,\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  },\r\n  \"card\":{\r\n     \"card_type\": \"visa\",\r\n     \"name_on_card\": \"Jennifer McFly\",\r\n     \"account_number\": \"4111111111111111\",\r\n     \"expire_month\": \"12\",\r\n     \"expire_year\": \"2030\",\r\n     \"card_verification_value\":\"123\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-encoding","value":"gzip","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Mon, 04 Dec 2017 19:46:25 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"2-131583173-131583178 SNNN RT(1512416771484 13905) q(0 0 0 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_9eab1d30-5326-4d15-b500-5d04c1e74839\",\n    \"location_id\": \"loc_192642\",\n    \"action\": \"sale\",\n    \"authorization_amount\": 102.45,\n    \"entered_by\": \"4fefaf5f77d944ce10bdd3d88f7a2da9\",\n    \"billing_address\": {\n        \"first_name\": \"Jennifer\",\n        \"last_name\": \"McFly\"\n    },\n    \"card\": {\n        \"name_on_card\": \"Jennifer McFly\",\n        \"last_4_account_number\": \"1111\",\n        \"masked_account_number\": \"****1111\",\n        \"expire_month\": 12,\n        \"expire_year\": 2030,\n        \"card_type\": \"visa\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"TEST APPROVAL\",\n        \"authorization_code\": \"123456\",\n        \"avs_result\": \"Y\",\n        \"cvv_result\": \"M\"\n    }\n}"}],"_postman_id":"31643fe1-7ade-4613-8743-c2c78392e963"},{"name":"Initial Sale Transaction (Digital Wallets)","id":"0474bf0d-595b-4707-8e5f-d65e2a7217eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"action\": \"sale\",\r\n    \"authorization_amount\": 5.00,\r\n    \"service_fee_amount\": 3.00,\r\n    \"billing_address\": {\r\n        \"first_name\": \"Jennifer\",\r\n        \"last_name\": \"McFly\"\r\n    },\r\n    \"card\": {\r\n        \"name_on_card\": \"Jennifer McFly\",\r\n        \"account_number\": \"4111111111111111\",\r\n        \"card_type\": \"visa\",\r\n        \"expire_month\": \"12\",\r\n        \"expire_year\": \"2030\",\r\n        \"wallet_type\": \"ApplePay\",\r\n        \"wallet_source\": \"Web\",\r\n        \"wallet_cryptogram\": \"1K4ortp4uVams7mfCPohYcF\"\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p><strong>Note</strong>: Sending digital wallet transactions to Forte requires enablement at the merchant (location) level, and compliance with a set of<br />prerequisites defined for each wallet. Currently this feature is certified for Apple Pay ™ , Google Pay ™ in merchants processing credit card payments with Fiserv and Vantiv, please check additional requirements <a href=\"https://developers.forte.net/digital-wallet-payment/\">here</a>.</p>\n<p>For the Initial sale transaction, the following additional parameters from the wallet's decrypted payload should be sent to the transaction endpoint:</p>\n<ul>\n<li><p>card.account_number = DPAN</p>\n</li>\n<li><p>card.card_type</p>\n</li>\n<li><p>card.expire_year</p>\n</li>\n<li><p>card.expire_month</p>\n</li>\n<li><p>card.wallet_cryptogram</p>\n</li>\n<li><p>card.wallet_type</p>\n</li>\n<li><p>card.wallet_source</p>\n</li>\n<li><p>transaction.cof_transaction_type = 1</p>\n</li>\n</ul>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"aec7c96e-6d36-4575-8c5c-6d27a76a53ef","name":"Initial Sale Transaction","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"action\": \"sale\",\r\n    \"authorization_amount\": 5.00,\r\n    \"service_fee_amount\": 3.00,\r\n    \"billing_address\": {\r\n        \"first_name\": \"Jennifer\",\r\n        \"last_name\": \"McFly\"\r\n    },\r\n    \"card\": {\r\n        \"name_on_card\": \"Jennifer McFly\",\r\n        \"account_number\": \"4111111111111111\",\r\n        \"card_type\": \"visa\",\r\n        \"expire_month\": \"12\",\r\n        \"expire_year\": \"2030\",\r\n        \"wallet_type\": \"ApplePay\",\r\n        \"wallet_source\": \"Web\",\r\n        \"wallet_cryptogram\": \"1K4ortp4uVams7mfCPohYcF\"\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-encoding","value":"gzip","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Mon, 04 Dec 2017 19:46:25 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"2-131583173-131583178 SNNN RT(1512416771484 13905) q(0 0 0 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_6fcaa151-57ad-4fc6-95fd-63e01d6b25b3\",\n    \"location_id\": \"loc_124125\",\n    \"action\": \"sale\",\n    \"authorization_amount\": 5.00,\n    \"service_fee_amount\": 3.00,\n    \"subtotal_amount\": 2.00,\n    \"authorization_code\": \"0IN552\",\n    \"entered_by\": \"3c28bbf362bf661820ea102642c7a9d6\",\n    \"billing_address\": {\n        \"first_name\": \"Jennifer\",\n        \"last_name\": \"McFly\"\n    },\n    \"card\": {\n        \"name_on_card\": \"Jennifer McFly\",\n        \"last_4_account_number\": \"1111\",\n        \"masked_account_number\": \"****1111\",\n        \"expire_month\": 12,\n        \"expire_year\": 2030,\n        \"card_type\": \"visa\",\n        \"wallet_type\": \"ApplePay\"\n    },\n    \"response\": {\n        \"environment\": \"sandbox\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"TEST APPROVAL\",\n        \"authorization_code\": \"0IN552\",\n        \"avs_result\": \"Y\",\n        \"cvv_result\": \"M\"\n    },\n    \"links\": {\n        \"disputes\": \"https://sandbox.forte.net/v3/transactions/trn_6fcaa151-57ad-4fc6-95fd-63e01d6b25b3/disputes\",\n        \"settlements\": \"https://sandbox.forte.net/v3/transactions/trn_6fcaa151-57ad-4fc6-95fd-63e01d6b25b3/settlements\",\n        \"self\": \"https://sandbox.forte.net/v3/transactions/trn_6fcaa151-57ad-4fc6-95fd-63e01d6b25b3/\"\n    }\n}\n"}],"_postman_id":"0474bf0d-595b-4707-8e5f-d65e2a7217eb"},{"name":"Transaction (PayPal)","id":"ae00b78b-3999-4aea-8db6-a8baca8a78bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"action\": \"sale\",\r\n    \"customer_id\": \"Customer1\",\r\n    \"reference_id\": \"ref_id\",\r\n    \"vendor\": {\r\n        \"vendor_type\": \"paypal\",\r\n        \"vendor_order_number\": \"8XJ96991U0723350T\"\r\n    },\r\n    \"billing_address\": {\r\n        \"first_name\": \"Jennifer\",\r\n        \"last_name\": \"McFly\",\r\n        \"phone\": \"888-888-8888\",\r\n        \"email\": \"account_holder@PayPal.com\",\r\n        \"physical_address\": {\r\n            \"street_line1\": \"BA Line 1\",\r\n            \"locality\": \"Allen\",\r\n            \"region\": \"TX\",\r\n            \"postal_code\": \"560013\",\r\n            \"country\": \"US\"\r\n        }\r\n    },\r\n    \"shipping_address\": {\r\n        \"first_name\": \"Jennifer\",\r\n        \"last_name\": \"McFly\",\r\n        \"physical_address\": {\r\n            \"street_line1\": \"SA Line 1\",\r\n            \"locality\": \"Allen\",\r\n            \"region\": \"TX\",\r\n            \"postal_code\": \"560013\",\r\n            \"country\": \"US\"\r\n        }\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>PayPal, a globally recognized online payment system, allows users to make financial transactions digitally.</p>\n<p>This URI captures PayPal transaction using <code>vendor</code> subject which includes <code>vendor_order_number</code>, <code>vendor_type=paypal</code> parameters and returning a new <code>transaction_id.</code></p>\n<ul>\n<li><p>Ensure billing information and shipping Information passed in the request must match the billing information associated with PayPal account ,which can be retrieved using a <a href=\"https://restdocs.forte.net/#3d6f2c95-9f01-4aac-ac38-19791b93fcef\">GET Order by ID.</a></p>\n</li>\n<li><p>Ensure order_number parameter sent in the request must match the order_number passed in the request when creating the PayPal order.</p>\n</li>\n<li><p>The save_token parameter is not supported for PayPal sale Transactions.<a href=\"https://restdocs.forte.net/#3d6f2c95-9f01-4aac-ac38-19791b93fcef\"><br /><br /></a></p>\n</li>\n</ul>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"2957847d-8c01-4598-8889-630335e4bedb","name":"POST Transaction(PayPal)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"X-Forte-Auth_Organization_Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"action\": \"sale\",\r\n    \"customer_id\": \"Customer1\",\r\n    \"reference_id\": \"ref_id\",\r\n    \"vendor\": {\r\n        \"vendor_type\": \"paypal\",\r\n        \"vendor_order_number\": \"8XJ96991U0723350T\"\r\n    },\r\n    \"billing_address\": {\r\n        \"first_name\": \"Jennifer\",\r\n        \"last_name\": \"McFly\",\r\n        \"phone\": \"888-888-8888\",\r\n        \"email\": \"account_holder@PayPal.com\",\r\n        \"physical_address\": {\r\n            \"street_line1\": \"BA Line 1\",\r\n            \"locality\": \"Allen\",\r\n            \"region\": \"TX\",\r\n            \"postal_code\": \"560013\",\r\n            \"country\": \"US\"\r\n        }\r\n    },\r\n    \"shipping_address\": {\r\n        \"first_name\": \"Jennifer\",\r\n        \"last_name\": \"McFly\",\r\n        \"physical_address\": {\r\n            \"street_line1\": \"SA Line 1\",\r\n            \"locality\": \"Allen\",\r\n            \"region\": \"TX\",\r\n            \"postal_code\": \"560013\",\r\n            \"country\": \"US\"\r\n        }\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_313e16ba-1f59-49a3-a6fd-5bd22bec1b36\",\n    \"location_id\": \"loc_192642\",\n    \"customer_id\": \"Customer1\",\n    \"reference_id\": \"ref_id\",\n    \"action\": \"sale\",\n    \"authorization_amount\": 102.45,\n    \"authorization_code\": \"90713197\",\n    \"entered_by\": \"af4160261691a85917ea2491fe440633\",\n    \"billing_address\": {\n        \"first_name\": \"Jennifer\",\n        \"last_name\": \"McFly\",\n        \"phone\": \"888-888-8888\",\n        \"email\": \"account_holder@PayPal.com\",\n        \"physical_address\": {\n            \"street_line1\": \"BA Line 1\",\n            \"locality\": \"Allen\",\n            \"region\": \"TX\",\n            \"postal_code\": \"560013\",\n            \"country\": \"US\"\n        }\n    },\n    \"shipping_address\": {\n        \"company_name\": \"Jennifer McFly\",\n        \"physical_address\": {\n            \"street_line1\": \"SA Line 1\",\n            \"locality\": \"Allen\",\n            \"region\": \"TX\",\n            \"postal_code\": \"560013\",\n            \"country\": \"US\"\n        }\n    },\n    \"vendor\": {\n        \"vendor_type\": \"paypal\",\n        \"vendor_order_number\": \"8XJ96991U0723350T\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"APPROVED\",\n        \"authorization_code\": \"90713197\"\n    },\n    \"links\": {\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_313e16ba-1f59-49a3-a6fd-5bd22bec1b36/disputes\",\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_313e16ba-1f59-49a3-a6fd-5bd22bec1b36/settlements\",\n        \"self\": \"https://api.forte.net/v3/transactions/trn_313e16ba-1f59-49a3-a6fd-5bd22bec1b36/\"\n    }\n}\n"}],"_postman_id":"ae00b78b-3999-4aea-8db6-a8baca8a78bb"},{"name":"Subsequent Transaction with DPAN (Digital Wallets)","id":"ce29927a-bfc7-4c2d-8f19-df02a74fa331","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\":5.00,\r\n    \"service_fee_amount\":3.00,\r\n    \"billing_address\":{\r\n        \"first_name\":\"Jennifer\",\r\n        \"last_name\":\"McFly\"\r\n        },\r\n        \"card\":{\r\n            \"name_on_card\":\"Jennifer McFly\",\r\n            \"account_number\": \"4111111111111111\",\r\n            \"card_type\":\"visa\",\r\n            \"expire_month\":\"12\",\r\n            \"expire_year\":\"2030\",\r\n            \"wallet_type\":\"ApplePay\",\r\n            \"wallet_source\":\"Web\"\r\n        },\r\n            \"cof_transaction_type\": \"0\",\r\n            \"cof_initial_transaction_id\": \"123123123123\"\r\n    }\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>To send subsequent sale transactions after an initial transaction was authorized using DPAN you will need to submit <code>transaction.cof_initial_transaction_id</code> as received in the initial transaction response.</p>\n<ul>\n<li><code>card.account_number = DPAN</code></li>\n<li><code>card.card_type</code></li>\n<li><code>card.expire_year</code></li>\n<li><code>card.expire_month</code></li>\n<li><code>card.wallet_type</code></li>\n<li><code>card.wallet_source</code></li>\n<li><code>transaction.cof_transaction_type = 0 (recurring)</code></li>\n<li><code>transaction.cof_initial_transaction_id</code></li>\n</ul>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"21e6f7a4-76e6-4552-9475-755843b43806","name":"Subsequent Transaction with DPAN","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\":5.00,\r\n    \"service_fee_amount\":3.00,\r\n    \"billing_address\":{\r\n        \"first_name\":\"Jennifer\",\r\n        \"last_name\":\"McFly\"\r\n        },\r\n        \"card\":{\r\n            \"name_on_card\":\"Jennifer McFly\",\r\n            \"account_number\": \"4111111111111111\",\r\n            \"card_type\":\"visa\",\r\n            \"expire_month\":\"12\",\r\n            \"expire_year\":\"2030\",\r\n            \"wallet_type\":\"ApplePay\",\r\n            \"wallet_source\":\"Web\"\r\n        },\r\n            \"cof_transaction_type\": \"0\",\r\n            \"cof_initial_transaction_id\": \"123123123123\"\r\n    }\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-encoding","value":"gzip","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Mon, 04 Dec 2017 19:46:25 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"2-131583173-131583178 SNNN RT(1512416771484 13905) q(0 0 0 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_47e31e47-0112-40a0-bea7-9c18ec1fe502\",\n    \"location_id\": \"loc_124125\",\n    \"action\": \"sale\",\n    \"authorization_amount\": 5.00,\n    \"service_fee_amount\": 3.00,\n    \"subtotal_amount\": 2.00,\n    \"authorization_code\": \"9TD084\",\n    \"entered_by\": \"3c28bbf362bf661820ea102642c7a9d6\",\n    \"billing_address\": {\n        \"first_name\": \"Jennifer\",\n        \"last_name\": \"McFly\"\n    },\n    \"card\": {\n        \"name_on_card\": \"Jennifer McFly\",\n        \"last_4_account_number\": \"1111\",\n        \"masked_account_number\": \"****1111\",\n        \"expire_month\": 12,\n        \"expire_year\": 2030,\n        \"card_type\": \"visa\",\n        \"wallet_type\": \"ApplePay\"\n    },\n    \"cof_transaction_type\": \"0\",\n    \"cof_initial_transaction_id\": \"123123123123\",\n    \"response\": {\n        \"environment\": \"sandbox\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"TEST APPROVAL\",\n        \"authorization_code\": \"9TD084\",\n        \"avs_result\": \"Y\",\n        \"cvv_result\": \"M\"\n    },\n    \"links\": {\n        \"disputes\": \"https://sandbox.forte.net/v3/transactions/trn_47e31e47-0112-40a0-bea7-9c18ec1fe502/disputes\",\n        \"settlements\": \"https://sandbox.forte.net/v3/transactions/trn_47e31e47-0112-40a0-bea7-9c18ec1fe502/settlements\",\n        \"self\": \"https://sandbox.forte.net/v3/transactions/trn_47e31e47-0112-40a0-bea7-9c18ec1fe502/\"\n    }\n}\n"}],"_postman_id":"ce29927a-bfc7-4c2d-8f19-df02a74fa331"},{"name":"Subsequent Transaction with Token (Digital Wallets)","id":"d8f5bda8-0588-445e-a6e1-974875a466fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"action\": \"sale\",\r\n    \"authorization_amount\": 5.00,\r\n    \"service_fee_amount\": 3.00,\r\n    \"paymethod_token\": \"mth_R2R5wyAiQJmp06xbB24KQA\",\r\n    \"card\": {\r\n        \"wallet_source\": \"web\"\r\n    },\r\n    \"billing_address\": {\r\n        \"first_name\": \"Jennifer\",\r\n        \"last_name\": \"McFly\"\r\n    },\r\n    \"cof_transaction_type\": \"0\",\r\n    \"cof_initial_transaction_id\": \"295070186326529\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>To send subsequent sale transactions after an initial transaction was authorized using Payment Method Tokens you will need to submit <code>transaction.paymethod_token</code>, indicate that this is a subsequent transaction sending <code>transaction.cof_transaction_type: 0</code> and specifying <code>card.wallet_source</code> (optional).</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"7cb06c99-ea16-44ac-a83c-bb6c862730fa","name":"Subsequent Transaction with Token","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"action\": \"sale\",\r\n    \"authorization_amount\": 5.00,\r\n    \"service_fee_amount\": 3.00,\r\n    \"paymethod_token\": \"mth_R2R5wyAiQJmp06xbB24KQA\",\r\n    \"card\": {\r\n        \"wallet_source\": \"web\"\r\n    },\r\n    \"billing_address\": {\r\n        \"first_name\": \"Jennifer\",\r\n        \"last_name\": \"McFly\"\r\n    },\r\n    \"cof_transaction_type\": \"0\",\r\n    \"cof_initial_transaction_id\": \"295070186326529\"\r\n}\r\n\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-encoding","value":"gzip","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Mon, 04 Dec 2017 19:46:25 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"2-131583173-131583178 SNNN RT(1512416771484 13905) q(0 0 0 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_46fe0a79-c022-4f27-8ec1-27193649a572\",\n    \"location_id\": \"loc_124125\",\n    \"paymethod_token\": \"mth_R2R5wyAiQJmp06xbB24KQA\",\n    \"action\": \"sale\",\n    \"authorization_amount\": 5.00,\n    \"service_fee_amount\": 3.00,\n    \"subtotal_amount\": 2.00,\n    \"authorization_code\": \"7KP191\",\n    \"entered_by\": \"3c28bbf362bf661820ea102642c7a9d6\",\n    \"billing_address\": {\n        \"first_name\": \"Jennifer\",\n        \"last_name\": \"McFly\"\n    },\n    \"cof_transaction_type\": \"0\",\n    \"cof_initial_transaction_id\": \"295070186326529\",\n    \"response\": {\n        \"environment\": \"sandbox\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"TEST APPROVAL\",\n        \"authorization_code\": \"7KP191\",\n        \"avs_result\": \"Y\",\n        \"cvv_result\": \"M\",\n        \"paymethod_token\": \"mth_R2R5wyAiQJmp06xbB24KQA\"\n    },\n    \"links\": {\n        \"disputes\": \"https://sandbox.forte.net/v3/transactions/trn_46fe0a79-c022-4f27-8ec1-27193649a572/disputes\",\n        \"settlements\": \"https://sandbox.forte.net/v3/transactions/trn_46fe0a79-c022-4f27-8ec1-27193649a572/settlements\",\n        \"self\": \"https://sandbox.forte.net/v3/transactions/trn_46fe0a79-c022-4f27-8ec1-27193649a572/\"\n    }\n}\n"}],"_postman_id":"d8f5bda8-0588-445e-a6e1-974875a466fa"},{"name":"Transaction with Credit Card Token","id":"c0f21e62-6fc4-4678-99ee-795436ac4742","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\": 102.45,\r\n   \t\"paymethod_token\": \"mth_jmBCI5cDV0CuyFb7NWzrAg\",\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>This URI creates sale transactions using an existing <code>paymethod_token</code>. A <a href=\"https://www.forte.net/devdocs/reference/tokens.htm\">token</a> is a random string of alpha-numeric characters that represent a payment method, which Forte stores in an encrypted database. Along with encryption, tokenization is used in the payments industry to protect sensitive data.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"a0014049-f574-4810-8eca-4db21c323a93","name":"Transaction with Credit Card Token","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\": 102.45,\r\n   \t\"paymethod_token\": \"mth_jmBCI5cDV0CuyFb7NWzrAg\",\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 22:18:22 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"453","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_d61b923a-9de2-433f-9a48-8e13f1acd17b\",\n    \"location_id\": \"loc_124125\",\n    \"paymethod_token\": \"mth_jmBCI5cDV0CuyFb7NWzrAg\",\n    \"action\": \"sale\",\n    \"authorization_amount\": 102.45,\n    \"entered_by\": \"9b26093587d09d0f1a847083b2e605c1\",\n    \"billing_address\": {\n        \"first_name\": \"Jennifer\",\n        \"last_name\": \"McFly\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"TEST APPROVAL\",\n        \"authorization_code\": \"123456\",\n        \"avs_result\": \"Y\",\n        \"cvv_result\": \"M\",\n        \"paymethod_token\": \"mth_jmBCI5cDV0CuyFb7NWzrAg\"\n    }\n}"}],"_postman_id":"c0f21e62-6fc4-4678-99ee-795436ac4742"},{"name":"Transaction with eCheck Token","id":"44334c0d-7e8d-4996-ab97-7f22b6e8d911","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\": 102.45,\r\n    \"paymethod_token\": \"mth_jmBCI5cDV0CuyFb7NWzrAg\",\r\n    \"echeck\":{\r\n       \"sec_code\":\"PPD\"\r\n    },\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>This URI creates sale transactions using an existing <code>paymethod_token</code>. A <a href=\"https://www.forte.net/devdocs/reference/tokens.htm\">token</a> is a random string of alpha-numeric characters that represent a payment method, which Forte stores in an encrypted database. Along with encryption, tokenization is used in the payments industry to protect sensitive data.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"ca590802-fbca-481c-a195-2b53360c9384","name":"Transaction with eCheck Token","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\": 102.45,\r\n    \"paymethod_token\": \"mth_jmBCI5cDV0CuyFb7NWzrAg\",\r\n    \"echeck\":{\r\n       \"sec_code\":\"PPD\"\r\n    },\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Jan 2020 22:18:22 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"453","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_d61b923a-9de2-433f-9a48-8e13f1acd17b\",\n    \"location_id\": \"loc_124125\",\n    \"paymethod_token\": \"mth_jmBCI5cDV0CuyFb7NWzrAg\",\n    \"action\": \"sale\",\n    \"authorization_amount\": 102.45,\n    \"entered_by\": \"9b26093587d09d0f1a847083b2e605c1\",\n    \"echeck\": {\n        \"sec_code\": \"PPD\",\n        \"issuer_bank\": \"JPMORGAN CHASE BANK, NA\"\n        },\n    \"billing_address\": {\n        \"first_name\": \"Jennifer\",\n        \"last_name\": \"McFly\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"TEST APPROVAL\",\n        \"authorization_code\": \"123456\",\n        \"paymethod_token\": \"mth_jmBCI5cDV0CuyFb7NWzrAg\"\n    }\n}"}],"_postman_id":"44334c0d-7e8d-4996-ab97-7f22b6e8d911"},{"name":"Transaction with PayPal Token","id":"dab3d214-d0c6-4192-ae5b-b3ed34796722","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"action\": \"sale\",\r\n    \"authorization_amount\": 107.45,\r\n    \"paymethod_token\": \"mth_3KpxBy0mg0u88US41eA-2g\",\r\n    \"vendor\": {\r\n        \"vendor_type\": \"paypal\",\r\n        \"vendor_billing_agreement_id\": \"B-7H989178H5887753B\"\r\n    }\r\n}\r\n\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>This URI creates sale transactions using an existing <code>paymethod_token</code>. A <a href=\"https://www.forte.net/devdocs/reference/tokens.htm\">token </a> is a random string of alpha-numeric characters that represent a payment method, which CSG Forte stores in an encrypted database. Along with encryption, tokenization is used in the payments industry to protect sensitive data.</p>\n<p><strong>Note</strong>: Ensure to include <code>vendor</code> sub-object when creating transaction with PayPal tokens.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"5c467175-120e-4a5f-8590-0b875c5cdcaa","name":"POST Transaction with PayPal Token","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{Authorization}}"},{"key":"X-Forte-Auth_Organization_Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{ \r\n    \"action\": \"sale\", \r\n    \"authorization_amount\": 107.45, \r\n    \"paymethod_token\": \"mth_quRYuVQcQrmbFfSfl0oTlw\" \r\n} ","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_2857fda7-2c53-4151-b257-39834f342094\",\n    \"location_id\": \"loc_192642\",\n    \"paymethod_token\": \"mth_3KpxBy0mg0u88US41eA-2g\",\n    \"action\": \"sale\",\n    \"authorization_amount\": 107.45,\n    \"authorization_code\": \"88033476\",\n    \"entered_by\": \"af4160261691a85917ea2491fe440633\",\n    \"vendor\": {\n        \"vendor_type\": \"paypal\",\n        \"vendor_billing_agreement_id\": \"B-7H989178H5887753B\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"APPROVED\",\n        \"authorization_code\": \"88033476\",\n        \"paymethod_token\": \"mth_3KpxBy0mg0u88US41eA-2g\"\n    },\n    \"links\": {\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_2857fda7-2c53-4151-b257-39834f342094/disputes\",\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_2857fda7-2c53-4151-b257-39834f342094/settlements\",\n        \"self\": \"https://api.forte.net/v3/transactions/trn_2857fda7-2c53-4151-b257-39834f342094/\"\n    }\n}\n"}],"_postman_id":"dab3d214-d0c6-4192-ae5b-b3ed34796722"},{"name":"Swiped Credit Card Transaction","id":"bb31a74f-4a26-46e1-8e84-00760856d5f4","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\": 102.45,\r\n    \"subtotal_amount\": 99.95,\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  },\r\n  \"card\":{\r\n       \"card_reader\": \"30050202\",       \r\n       \"card_data\":\"0~IPAD100KB|24~98CE04601007130D|1~11|2~87687687687876876876|4~|5~516F2DCD1EB18A99E775E36457E3454AA4C1448635D9067F3151A112D49A6F02F9CAC15F2B608D2E915EBA99846E81AC763AE89D29437B31|6~%B4445220002000007^TESTCARD/TEST^17120000011111000?|7~;4445220002000007=17120000000000000000?|8~|9~00000000|10~000001|11~9500020000C8892001C7|12~00002200|\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>Swiped card transactions require the <code>card_reader</code> and <code>card_data</code> parameters. For more information, see the Transactions Object.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"2665d52e-022b-42cc-b6f0-3cced4539c77","name":"Create a Swiped Credit Card Transaction","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\": 102.45,\r\n    \"subtotal_amount\": 99.95,\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  },\r\n  \"card\":{\r\n       \"card_reader\": \"30050202\",       \r\n       \"card_data\":\"0~IPAD100KB|24~98CE04601007130D|1~11|2~87687687687876876876|4~|5~516F2DCD1EB18A99E775E36457E3454AA4C1448635D9067F3151A112D49A6F02F9CAC15F2B608D2E915EBA99846E81AC763AE89D29437B31|6~%B4445220002000007^TESTCARD/TEST^17120000011111000?|7~;4445220002000007=17120000000000000000?|8~|9~00000000|10~000001|11~9500020000C8892001C7|12~00002200|\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Thu, 19 Oct 2017 21:42:35 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"5-46249637-46249642 SNNN RT(1508449329886 24780) q(0 0 0 0) r(5 5) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_574611cf-4db8-4b64-9eb3-a5347190030e\",\n    \"location_id\": \"loc_192642\",\n    \"action\": \"sale\",\n    \"authorization_amount\": 102.45,\n    \"entered_by\": \"4fefaf5f77d944ce10bdd3d88f7a2da9\",\n    \"billing_address\": {\n        \"first_name\": \"Jennifer\",\n        \"last_name\": \"McFly\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"TEST APPROVAL\",\n        \"authorization_code\": \"123456\",\n        \"avs_result\": \"Y\",\n        \"cvv_result\": \"M\"\n    }\n}"}],"_postman_id":"bb31a74f-4a26-46e1-8e84-00760856d5f4"},{"name":"Paymethod Token from a Swiped Transaction","id":"c8f4bcf3-8fd9-48c7-a4a8-fb53f7033542","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"authorize\",\r\n    \"authorization_amount\": 0.01,\r\n    \"save_token\": \"paymethod\",\r\n    \"card\":{\r\n       \"card_reader\": \"30050202\",       \r\n       \"card_data\":\"0~IPAD100KB|24~98CE04601007130D|1~11|2~87687687687876876876|4~|5~516F2DCD1EB18A99E775E36457E3454AA4C1448635D9067F3151A112D49A6F02F9CAC15F2B608D2E915EBA99846E81AC763AE89D29437B31|6~%B4445220002000007^TESTCARD/TEST^17120000011111000?|7~;4445220002000007=17120000000000000000?|8~|9~00000000|10~000001|11~9500020000C8892001C7|12~00002200|\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>Including the <code>save_token</code> parameter in the body of your request creates customer and/or paymethod tokens from the card's swipe data. The <code>save_token</code> parameter supports the following values: </p><ul><li> <code>customer</code> - Creates both a customer and paymethod tokens</li><li> <code>paymethod</code> - Creates a clientless paymethod token (i.e., a paymethod token that is not associated to a customer token).</li></ul> If you wish to create tokens from swipe data without creating a transaction, include the <code>\"action\": \"authorize\"</code> and <code>\"authorization_amount\": 0.01</code> parameters in the body of your request.<p></p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"562ba777-02a7-4e22-bc19-746aae3364f4","name":"Create a Paymethod Token from a Swiped Transaction","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"authorize\",\r\n    \"authorization_amount\": 0.01,\r\n    \"save_token\": \"paymethod\",\r\n    \"card\":{\r\n       \"card_reader\": \"30050202\",       \r\n       \"card_data\":\"0~IPAD100KB|24~98CE04601007130D|1~11|2~87687687687876876876|4~|5~516F2DCD1EB18A99E775E36457E3454AA4C1448635D9067F3151A112D49A6F02F9CAC15F2B608D2E915EBA99846E81AC763AE89D29437B31|6~%B4445220002000007^TESTCARD/TEST^17120000011111000?|7~;4445220002000007=17120000000000000000?|8~|9~00000000|10~000001|11~9500020000C8892001C7|12~00002200|\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Thu, 19 Oct 2017 21:44:35 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"5-46249637-46274438 NNNN CT(36 38 0) RT(1508449329886 144945) q(0 0 1 -1) r(5 5) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_169ca0c9-e444-49af-9d9f-c694d6c7f49e\",\n    \"location_id\": \"loc_192642\",\n    \"paymethod_token\": \"mth_ObBhkYDlRMGGl4Xl-wzDTg\",\n    \"action\": \"authorize\",\n    \"authorization_amount\": 0.01,\n    \"entered_by\": \"4fefaf5f77d944ce10bdd3d88f7a2da9\",\n    \"save_token\": \"paymethod\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"TEST APPROVAL\",\n        \"authorization_code\": \"123456\",\n        \"avs_result\": \"Y\",\n        \"cvv_result\": \"M\",\n        \"paymethod_token\": \"mth_ObBhkYDlRMGGl4Xl-wzDTg\"\n    }\n}"}],"_postman_id":"c8f4bcf3-8fd9-48c7-a4a8-fb53f7033542"},{"name":"EMV Transaction (eDynamo)","event":[{"listen":"test","script":{"id":"3db790f0-74a4-4d9d-aed1-33dec6279918","exec":["{\r","    \"transaction_id\": \"trn_c4425400-6ce2-415e-8b60-b740a2006c5a\",\r","    \"location_id\": \"loc_124125\",\r","    \"action\": \"sale\",\r","    \"authorization_amount\": 10.10,\r","    \"authorization_code\": \"08347A\",\r","    \"entered_by\": \"a30b90079d76d13c8f7dc390ba917b8b\",\r","    \"billing_address\": {\r","        \"first_name\": \"Jennifer\",\r","        \"last_name\": \"McFly\",\r","        \"phone\": \"444-444-4444\",\r","        \"physical_address\": {\r","            \"street_line1\": \"8003 Clock Tower Ln\",\r","            \"street_line2\": \"Suite 200\",\r","            \"locality\": \"Hill Valley\",\r","            \"region\": \"CA\",\r","            \"postal_code\": \"46203\"\r","        }\r","    },\r","    \"card\": {\r","        \"name_on_card\": \"Jennifer McFly\",\r","        \"last_4_account_number\": \"1003\",\r","        \"masked_account_number\": \"****1003\",\r","        \"expire_month\": 12,\r","        \"expire_year\": 2024,\r","        \"card_type\": \"mast\",\r","        \"first_6_account_number\": \"541333\",\r","        \"card_reader\": \"21079913\"\r","    },\r","    \"response\": {\r","        \"environment\": \"live\",\r","        \"response_type\": \"A\",\r","        \"response_code\": \"A01\",\r","        \"response_desc\": \"APPROVED\",\r","        \"authorization_code\": \"08358C\",\r","        \"avs_result\": \"N\",\r","        \"cvv_result\": \"P\",\r","        \"emv_receipt_data\": \"application_label:MASTERCARD|entry_mode:CHIP|CVM:1E0400|AID:A0000000052110|TVR:8000008000|IAD:0110A00001220000000000000000000000EE|TSI:5701|ARC:\"\r","    },\r","    \"links\": {\r","        \"disputes\": \"https://api.forte.net/v3/transactions/trn_c4425400-6ce2-415e-8b60-b740a2006c5a/disputes\",\r","        \"settlements\": \"https://api.forte.net/v3/transactions/trn_4c4425400-6ce2-415e-8b60-b740a2006c5a/settlements\",\r","        \"self\": \"https://api.forte.net/v3/transactions/trn_c4425400-6ce2-415e-8b60-b740a2006c5a/\"\r","    }\r","}"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"aed0d65b-dc8c-4368-a728-ed4c96b3d3a6","exec":["curl --location -g '{{baseURI}}/organizations/org_{{organizaztionID}}/locations/loc_{{locationID}}/transactions/' \\\r","--header 'Authorization:  {{Authorization}}' \\\r","--header 'Accept: application/json' \\\r","--header 'X-Forte-Auth-Organization-Id: org_{{AuthOrganizationID}}' \\\r","--header 'Content-Type: application/json' \\\r","--data '{\r","   \"action\": \"sale\",\r","    \"authorization_amount\": \"250.33\",\r","    \"billing_address\":{\r","     \"first_name\": \"Jennifer\",\r","     \"last_name\": \"McFly\",\r","     \"phone\": \"444-444-4444\",\r","     \"physical_address\": {\r","       \"street_line1\": \"8003 Clock Tower Ln\",\r","       \"street_line2\": \"Suite 200\",\r","       \"locality\": \"Hill Valley\",\r","       \"region\": \"CA\",\r","       \"postal_code\": \"46203\"\r","      }\r","  },\r","  \"card\":{\r","     \"card_reader\": \"21079802\",\r","     \"card_emv_data\":\"9011880B43A7710002B0|963A2FBE21EB8FDDB43CEEFBA158720272930EE43574E88906D6E05222C46DEB1675DA87496C8B1FE6A126F2D3DD1BC4036534DFBE7720E6B0AE80C08C06D5F00573591DD926627718B38F96037C26635AE8D7CFBC4552DAB59B0D26362EA4B31D328BC2EDA3C2807474CB79436116D5A21FADA42EAF0971B6BA73B46C965C73203D56DEB927AE9E09D32A64DBC5B6D17486D97892F0C2BC2C5F7105AFAB46257183BFFBA9E6D4EAA03BAC5F300F61ACA3F315A7ED15B90D79D8D09F92F21634CD8577E46F77730433D73946E1393320CEE7AD523B4C2A102DD0936E37875374BFFA835FDF03A955FEB3C913774B16419FACC10E6E032A2CC46E9103DC70ED655D38989ED6FA3DB5B202AFCFC1D1CAA825BC8E0DCE06CDC4E4FC5584B04D3F210A695626A3E779E5230708BE3280F379570B7EC3215EE4319D2308A0718C5F4F4DFB28924C8B123C\"\r","  }\r","}'"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"5caa818d-c94d-4348-9db1-6bd4c19c020b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"action\": \"sale\",\r\n    \"authorization_amount\": \"250.33\",\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\",\r\n     \"phone\": \"444-444-4444\",\r\n     \"physical_address\": {\r\n       \"street_line1\": \"8003 Clock Tower Ln\",\r\n       \"street_line2\": \"Suite 200\",\r\n       \"locality\": \"Hill Valley\",\r\n       \"region\": \"CA\",\r\n       \"postal_code\": \"46203\"\r\n      }\r\n  },\r\n  \"card\":{\r\n     \"card_reader\": \"21079802\",\r\n     \"card_emv_data\":\"9011880B43A7710002B0|963A2FBE21EB8FDDB43CEEFBA158720272930EE43574E88906D6E05222C46DEB1675DA87496C8B1FE6A126F2D3DD1BC4036534DFBE7720E6B0AE80C08C06D5F00573591DD926627718B38F96037C26635AE8D7CFBC4552DAB59B0D26362EA4B31D328BC2EDA3C2807474CB79436116D5A21FADA42EAF0971B6BA73B46C965C73203D56DEB927AE9E09D32A64DBC5B6D17486D97892F0C2BC2C5F7105AFAB46257183BFFBA9E6D4EAA03BAC5F300F61ACA3F315A7ED15B90D79D8D09F92F21634CD8577E46F77730433D73946E1393320CEE7AD523B4C2A102DD0936E37875374BFFA835FDF03A955FEB3C913774B16419FACC10E6E032A2CC46E9103DC70ED655D38989ED6FA3DB5B202AFCFC1D1CAA825BC8E0DCE06CDC4E4FC5584B04D3F210A695626A3E779E5230708BE3280F379570B7EC3215EE4319D2308A0718C5F4F4DFB28924C8B123C\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/","description":"<p>Use this endpoint with the following parameters to submit EMV transactions using your eDynamo device:</p>\n<ul><li> `card.card_reader = 21079802`</li>\n<li> `card.card_emv_data`</li></ul>","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"b32fff2d-b8ec-4cff-a313-887a275609da","name":"EMV Transaction","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":" {{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n   \"action\": \"sale\",\r\n    \"authorization_amount\": \"250.33\",\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\",\r\n     \"phone\": \"444-444-4444\",\r\n     \"physical_address\": {\r\n       \"street_line1\": \"8003 Clock Tower Ln\",\r\n       \"street_line2\": \"Suite 200\",\r\n       \"locality\": \"Hill Valley\",\r\n       \"region\": \"CA\",\r\n       \"postal_code\": \"46203\"\r\n      }\r\n  },\r\n  \"card\":{\r\n     \"card_reader\": \"21079802\",\r\n     \"card_emv_data\":\"9011880B43A7710002B0|963A2FBE21EB8FDDB43CEEFBA158720272930EE43574E88906D6E05222C46DEB1675DA87496C8B1FE6A126F2D3DD1BC4036534DFBE7720E6B0AE80C08C06D5F00573591DD926627718B38F96037C26635AE8D7CFBC4552DAB59B0D26362EA4B31D328BC2EDA3C2807474CB79436116D5A21FADA42EAF0971B6BA73B46C965C73203D56DEB927AE9E09D32A64DBC5B6D17486D97892F0C2BC2C5F7105AFAB46257183BFFBA9E6D4EAA03BAC5F300F61ACA3F315A7ED15B90D79D8D09F92F21634CD8577E46F77730433D73946E1393320CEE7AD523B4C2A102DD0936E37875374BFFA835FDF03A955FEB3C913774B16419FACC10E6E032A2CC46E9103DC70ED655D38989ED6FA3DB5B202AFCFC1D1CAA825BC8E0DCE06CDC4E4FC5584B04D3F210A695626A3E779E5230708BE3280F379570B7EC3215EE4319D2308A0718C5F4F4DFB28924C8B123C\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizaztionID}}/locations/loc_{{locationID}}/transactions/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Nov 2019 20:06:21 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"431","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_c4425400-6ce2-415e-8b60-b740a2006c5a\",\n    \"location_id\": \"loc_124125\",\n    \"action\": \"sale\",\n    \"authorization_amount\": 10.10,\n    \"authorization_code\": \"08347A\",\n    \"entered_by\": \"a30b90079d76d13c8f7dc390ba917b8b\",\n    \"billing_address\": {\n        \"first_name\": \"Jennifer\",\n        \"last_name\": \"McFly\",\n        \"phone\": \"444-444-4444\",\n        \"physical_address\": {\n            \"street_line1\": \"8003 Clock Tower Ln\",\n            \"street_line2\": \"Suite 200\",\n            \"locality\": \"Hill Valley\",\n            \"region\": \"CA\",\n            \"postal_code\": \"46203\"\n        }\n    },\n    \"card\": {\n        \"name_on_card\": \"Jennifer McFly\",\n        \"last_4_account_number\": \"1003\",\n        \"masked_account_number\": \"****1003\",\n        \"expire_month\": 12,\n        \"expire_year\": 2024,\n        \"card_type\": \"mast\",\n        \"first_6_account_number\": \"541333\",\n        \"card_reader\": \"21079913\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"APPROVED\",\n        \"authorization_code\": \"08358C\",\n        \"avs_result\": \"N\",\n        \"cvv_result\": \"P\",\n        \"emv_receipt_data\": \"application_label:MASTERCARD|entry_mode:CHIP|CVM:1E0400|AID:A0000000052110|TVR:8000008000|IAD:0110A00001220000000000000000000000EE|TSI:5701|ARC:\"\n    },\n    \"links\": {\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_c4425400-6ce2-415e-8b60-b740a2006c5a/disputes\",\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_4c4425400-6ce2-415e-8b60-b740a2006c5a/settlements\",\n        \"self\": \"https://api.forte.net/v3/transactions/trn_c4425400-6ce2-415e-8b60-b740a2006c5a/\"\n    }\n}"}],"_postman_id":"5caa818d-c94d-4348-9db1-6bd4c19c020b"},{"name":"EMV Transaction (DynaFlex II Go)","event":[{"listen":"test","script":{"id":"5a76b8de-9cfd-4cb5-b7ac-3371ae56f1ae","exec":[""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"7526bc65-faba-4d02-a95c-5a04c982e333","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"df07daff-0d53-42ba-a60c-80df1dc237a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"action\": \"sale\",\r\n    \"authorization_amount\": \"5.00\",\r\n    \"service_fee_amount\": \"0.25\",\r\n    \"billing_address\": {\r\n        \"first_name\": \"Jennifer\",\r\n        \"last_name\": \"McFly\",\r\n        \"phone\": \"444-444-4444\",\r\n        \"physical_address\": {\r\n            \"street_line1\": \"8003 Clock Tower Ln\",\r\n            \"street_line2\": \"Suite 200\",\r\n            \"locality\": \"Hill Valley\",\r\n            \"region\": \"CA\",\r\n            \"postal_code\": \"46203\"\r\n        }\r\n    },\r\n   \"card\": {\r\n        \"card_reader\": \"dynaflex2go\",\r\n        \"card_emv_data\": \"{\\\"DeviceID\\\":\\\"[USBDynaFlex]B54E7W23\\\",\\\"TransactionOutput\\\":{\\\"TransactionType\\\":1,\\\"TransactionStatus\\\":0,\\\"OperationStatus\\\":0,\\\"DataType\\\":2,\\\"ApplicationIdentifier\\\":\\\"A0000000031010\\\",\\\"CardBrand\\\":\\\"Visa\\\",\\\"ARQCData\\\":\\\"0188F9820184DFDF540A9070050B54E7A500006ADFDF550182DFDF250742353445374135FA8201627082015E82021800DFDF530100DFDF4D223B343736313733303030303030303032393D3030303030303030303030303030303FDFDF520105F8820126DFDF59820108DDEDCAC94F314B2DF4F51ED4C7A3041F36C46DB29AEECCB36897A5D614D4FE6409FAA5AD3639FF29F6412C92CD25172E9CCD52C8606CE1BE34991435FB729F5781F3D71C6E1879E2AE5D421C6D04BC1A7A26865CFEFE69BC559C24BA398B3D091B32167CF67635AFF3E03D39F3E6F8B8A2BA47BB9A5F5ED3EC796346884B83A8D06CEB5D80C43283CBDDA49CE1995B07059C4838F30B0D369111A11C8F98E94BCED466A26565C7A07E52057F4F8306D40BE5F172C8BCC4A7302AB04FF31D64233068FC04245A83EA5935B7AD06C6C903F75810E276E9C4F926AB3F81F29BC1558D891958881ACCBCAC94EB4AEC15533C3A2BE01B42C52CCF23B3364004F7123DCCDB75A45CEDCAD5DFDF560A9070050B54E7A500006ADFDF570180DFDF5801000000000000001F0C1A64\\\",\\\"BatchData\\\":\\\"0226F9820222DFDF540A9070050B54E7A500006ADFDF550182DFDF250742353445374135FA820200F08201FCF182000ADFDF1A0101DFDF1B0100F882016EDFDF59820150466ED8E0E40EC68A4B86AF096A38EBD70C12D7D4909FEBFE12DFE640973EE0546460415DAF6DDDA2C32685769701B8A3FBC794716A8446790A32A2651EE51B59DEDF276EEF5DD06A1A42D54E033BB3B552BF48E8DB9C3B7E2ACAED9089EC30FE7445D8C9E61DED790A78CD69244585B357F4E581DD8091BCB212F71F7D19C288786737EB81B75F9CB681AFB2BF3CAA470181B7E5CCAD5C21E8EA2F355025BAF8B8694DC639E6115F1B649C7AAF4066E0DC9BED1F47231D9AFD2D68C412E5E3086DCECEF2D6A949699ABB58B95141C524383B5047E2EF700E5A37018F90C70BB191E912921726AD2442F4F481151A498D92AD14A5AC81CF13B07903765834A5D2E901D5E6218DBF1F2D5228CB16DE4F9D0B73B8C55D44E68304AFBC92A8520479E4CFE7A34F7C3CEFB808C1FA2CB305C5DE59932CF6CDEC2501EBE5AB7FBCA8C6D9D5838DF781C5C49A67F51E413C4BD8DFDF560A9070050B54E7A500006ADFDF570180DFDF580101F78200789C01005F25030907015F24032412315F2A0208405F3401015F5701009F02060000000001009F03060000000000009F0607A00000000310109F1C0830303030303030309F34031E03009F390105DFDF400101DFDF4D223B343736313733303030303030303032393D3030303030303030303030303030303F16714C41\\\",\\\"RawARQCData\\\":\\\"AYj5ggGE399UCpBwBQtU56UAAGrf31UBgt/fJQdCNTRFN0E1+oIBYnCCAV6CAhgA399TAQDf300iOzQ3NjE3MzAwMDAwMDAwMjk9MDAwMDAwMDAwMDAwMDAwP9/fUgEF+IIBJt/fWYIBCN3tyslPMUst9PUe1MejBB82xG2ymu7Ms2iXpdYU1P5kCfqlrTY5/yn2QSySzSUXLpzNUshgbOG+NJkUNftyn1eB89ccbhh54q5dQhxtBLwaeiaGXP7+abxVnCS6OYs9CRsyFnz2djWv8+A9OfPm+Liiuke7ml9e0+x5Y0aIS4Oo0GzrXYDEMoPL3aSc4ZlbBwWcSDjzCw02kRGhHI+Y6UvO1GaiZWXHoH5SBX9PgwbUC+Xxcsi8xKcwKrBP8x1kIzBo/AQkWoPqWTW3rQbGyQP3WBDidunE+SarP4Hym8FVjYkZWIgazLyslOtK7BVTPDor4BtCxSzPI7M2QAT3Ej3M23WkXO3K1d/fVgqQcAULVOelAABq399XAYDf31gBAAAAAAAAAB8MGmQ=\\\",\\\"RawBatchData\\\":\\\"Aib5ggIi399UCpBwBQtU56UAAGrf31UBgt/fJQdCNTRFN0E1+oICAPCCAfzxggAK398aAQHf3xsBAPiCAW7f31mCAVBGbtjg5A7GikuGrwlqOOvXDBLX1JCf6/4S3+ZAlz7gVGRgQV2vbd2iwyaFdpcBuKP7x5RxaoRGeQoyomUe5RtZ3t8nbu9d0GoaQtVOAzuztVK/SOjbnDt+KsrtkInsMP50RdjJ5h3teQp4zWkkRYWzV/Tlgd2AkbyyEvcffRnCiHhnN+uBt1+ctoGvsr88qkcBgbflzK1cIejqLzVQJbr4uGlNxjnmEV8bZJx6r0Bm4Nyb7R9HIx2a/S1oxBLl4whtzs7y1qlJaZq7WLlRQcUkODtQR+LvcA5aNwGPkMcLsZHpEpIXJq0kQvT0gRUaSY2SrRSlrIHPE7B5A3ZYNKXS6QHV5iGNvx8tUijLFt5PnQtzuMVdROaDBK+8kqhSBHnkz+ejT3w877gIwfosswXF3lmTLPbN7CUB6+Wrf7yoxtnVg433gcXEmmf1HkE8S9jf31YKkHAFC1TnpQAAat/fVwGA399YAQH3ggB4nAEAXyUDCQcBXyQDJBIxXyoCCEBfNAEBX1cBAJ8CBgAAAAABAJ8DBgAAAAAAAJ8GB6AAAAADEBCfHAgwMDAwMDAwMJ80Ax4DAJ85AQXf30ABAd/fTSI7NDc2MTczMDAwMDAwMDAyOT0wMDAwMDAwMDAwMDAwMDA/FnFMQQ==\\\",\\\"KSN\\\":\\\"9070050B54E7A500006A\\\",\\\"DeviceSerialNumber\\\":\\\"42353445374135\\\",\\\"EncryptionType\\\":\\\"80\\\",\\\"NumberOfPaddedBytes\\\":0,\\\"NumberOfPaddedBytesForBatch\\\":1,\\\"EMVSREDData\\\":\\\"DDEDCAC94F314B2DF4F51ED4C7A3041F36C46DB29AEECCB36897A5D614D4FE6409FAA5AD3639FF29F6412C92CD25172E9CCD52C8606CE1BE34991435FB729F5781F3D71C6E1879E2AE5D421C6D04BC1A7A26865CFEFE69BC559C24BA398B3D091B32167CF67635AFF3E03D39F3E6F8B8A2BA47BB9A5F5ED3EC796346884B83A8D06CEB5D80C43283CBDDA49CE1995B07059C4838F30B0D369111A11C8F98E94BCED466A26565C7A07E52057F4F8306D40BE5F172C8BCC4A7302AB04FF31D64233068FC04245A83EA5935B7AD06C6C903F75810E276E9C4F926AB3F81F29BC1558D891958881ACCBCAC94EB4AEC15533C3A2BE01B42C52CCF23B3364004F7123DCCDB75A45CEDCAD5\\\",\\\"EMVSREDDataForBatch\\\":\\\"466ED8E0E40EC68A4B86AF096A38EBD70C12D7D4909FEBFE12DFE640973EE0546460415DAF6DDDA2C32685769701B8A3FBC794716A8446790A32A2651EE51B59DEDF276EEF5DD06A1A42D54E033BB3B552BF48E8DB9C3B7E2ACAED9089EC30FE7445D8C9E61DED790A78CD69244585B357F4E581DD8091BCB212F71F7D19C288786737EB81B75F9CB681AFB2BF3CAA470181B7E5CCAD5C21E8EA2F355025BAF8B8694DC639E6115F1B649C7AAF4066E0DC9BED1F47231D9AFD2D68C412E5E3086DCECEF2D6A949699ABB58B95141C524383B5047E2EF700E5A37018F90C70BB191E912921726AD2442F4F481151A498D92AD14A5AC81CF13B07903765834A5D2E901D5E6218DBF1F2D5228CB16DE4F9D0B73B8C55D44E68304AFBC92A8520479E4CFE7A34F7C3CEFB808C1FA2CB305C5DE59932CF6CDEC2501EBE5AB7FBCA8C6D9D5838DF781C5C49A67F51E413C4BD8\\\",\\\"MerchantData\\\":\\\"9C01005F25030907015F24032412315F2A0208405F3401015F5701009F02060000000001009F03060000000000009F0607A00000000310109F1C0830303030303030309F34031E03009F390105DFDF400101DFDF4D223B343736313733303030303030303032393D3030303030303030303030303030303F\\\",\\\"FallbackIndicator\\\":\\\"00\\\",\\\"MaskedICCTrack2\\\":\\\"3B343736313733303030303030303032393D3030303030303030303030303030303F\\\",\\\"CardType\\\":\\\"05\\\",\\\"ApprovalStatus\\\":0},\\\"ResultStatus\\\":true,\\\"ResultMessage\\\":\\\"Batchdatareceived\\\"}\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/","description":"<p>Use this endpoint with the following parameters to submit EMV transactions using your <a href=\"https://developers.forte.net/dynaflex2go/\">DynaFlex II Go</a> device:</p>\n<ul><li><div>`card.card_reader = dynaflex2go`</div></li><li><div>`card.card_emv_data`</div></li></ul>","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"ed54decb-6452-41ef-b640-08c1ac05e063","name":"EMV Transaction (DynaFlex II Go)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":" {{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"action\": \"sale\",\r\n    \"authorization_amount\": \"5.00\",\r\n    \"service_fee_amount\": \"0.25\",\r\n    \"billing_address\": {\r\n        \"first_name\": \"Jennifer\",\r\n        \"last_name\": \"McFly\",\r\n        \"phone\": \"444-444-4444\",\r\n        \"physical_address\": {\r\n            \"street_line1\": \"8003 Clock Tower Ln\",\r\n            \"street_line2\": \"Suite 200\",\r\n            \"locality\": \"Hill Valley\",\r\n            \"region\": \"CA\",\r\n            \"postal_code\": \"46203\"\r\n        }\r\n    },\r\n   \"card\": {\r\n        \"card_reader\": \"dynaflex2go\",\r\n        \"card_emv_data\": \"{\\\"DeviceID\\\":\\\"[USBDynaFlex]B54E7W23\\\",\\\"TransactionOutput\\\":{\\\"TransactionType\\\":1,\\\"TransactionStatus\\\":0,\\\"OperationStatus\\\":0,\\\"DataType\\\":2,\\\"ApplicationIdentifier\\\":\\\"A0000000031010\\\",\\\"CardBrand\\\":\\\"Visa\\\",\\\"ARQCData\\\":\\\"0188F9820184DFDF540A9070050B54E7A500006ADFDF550182DFDF250742353445374135FA8201627082015E82021800DFDF530100DFDF4D223B343736313733303030303030303032393D3030303030303030303030303030303FDFDF520105F8820126DFDF59820108DDEDCAC94F314B2DF4F51ED4C7A3041F36C46DB29AEECCB36897A5D614D4FE6409FAA5AD3639FF29F6412C92CD25172E9CCD52C8606CE1BE34991435FB729F5781F3D71C6E1879E2AE5D421C6D04BC1A7A26865CFEFE69BC559C24BA398B3D091B32167CF67635AFF3E03D39F3E6F8B8A2BA47BB9A5F5ED3EC796346884B83A8D06CEB5D80C43283CBDDA49CE1995B07059C4838F30B0D369111A11C8F98E94BCED466A26565C7A07E52057F4F8306D40BE5F172C8BCC4A7302AB04FF31D64233068FC04245A83EA5935B7AD06C6C903F75810E276E9C4F926AB3F81F29BC1558D891958881ACCBCAC94EB4AEC15533C3A2BE01B42C52CCF23B3364004F7123DCCDB75A45CEDCAD5DFDF560A9070050B54E7A500006ADFDF570180DFDF5801000000000000001F0C1A64\\\",\\\"BatchData\\\":\\\"0226F9820222DFDF540A9070050B54E7A500006ADFDF550182DFDF250742353445374135FA820200F08201FCF182000ADFDF1A0101DFDF1B0100F882016EDFDF59820150466ED8E0E40EC68A4B86AF096A38EBD70C12D7D4909FEBFE12DFE640973EE0546460415DAF6DDDA2C32685769701B8A3FBC794716A8446790A32A2651EE51B59DEDF276EEF5DD06A1A42D54E033BB3B552BF48E8DB9C3B7E2ACAED9089EC30FE7445D8C9E61DED790A78CD69244585B357F4E581DD8091BCB212F71F7D19C288786737EB81B75F9CB681AFB2BF3CAA470181B7E5CCAD5C21E8EA2F355025BAF8B8694DC639E6115F1B649C7AAF4066E0DC9BED1F47231D9AFD2D68C412E5E3086DCECEF2D6A949699ABB58B95141C524383B5047E2EF700E5A37018F90C70BB191E912921726AD2442F4F481151A498D92AD14A5AC81CF13B07903765834A5D2E901D5E6218DBF1F2D5228CB16DE4F9D0B73B8C55D44E68304AFBC92A8520479E4CFE7A34F7C3CEFB808C1FA2CB305C5DE59932CF6CDEC2501EBE5AB7FBCA8C6D9D5838DF781C5C49A67F51E413C4BD8DFDF560A9070050B54E7A500006ADFDF570180DFDF580101F78200789C01005F25030907015F24032412315F2A0208405F3401015F5701009F02060000000001009F03060000000000009F0607A00000000310109F1C0830303030303030309F34031E03009F390105DFDF400101DFDF4D223B343736313733303030303030303032393D3030303030303030303030303030303F16714C41\\\",\\\"RawARQCData\\\":\\\"AYj5ggGE399UCpBwBQtU56UAAGrf31UBgt/fJQdCNTRFN0E1+oIBYnCCAV6CAhgA399TAQDf300iOzQ3NjE3MzAwMDAwMDAwMjk9MDAwMDAwMDAwMDAwMDAwP9/fUgEF+IIBJt/fWYIBCN3tyslPMUst9PUe1MejBB82xG2ymu7Ms2iXpdYU1P5kCfqlrTY5/yn2QSySzSUXLpzNUshgbOG+NJkUNftyn1eB89ccbhh54q5dQhxtBLwaeiaGXP7+abxVnCS6OYs9CRsyFnz2djWv8+A9OfPm+Liiuke7ml9e0+x5Y0aIS4Oo0GzrXYDEMoPL3aSc4ZlbBwWcSDjzCw02kRGhHI+Y6UvO1GaiZWXHoH5SBX9PgwbUC+Xxcsi8xKcwKrBP8x1kIzBo/AQkWoPqWTW3rQbGyQP3WBDidunE+SarP4Hym8FVjYkZWIgazLyslOtK7BVTPDor4BtCxSzPI7M2QAT3Ej3M23WkXO3K1d/fVgqQcAULVOelAABq399XAYDf31gBAAAAAAAAAB8MGmQ=\\\",\\\"RawBatchData\\\":\\\"Aib5ggIi399UCpBwBQtU56UAAGrf31UBgt/fJQdCNTRFN0E1+oICAPCCAfzxggAK398aAQHf3xsBAPiCAW7f31mCAVBGbtjg5A7GikuGrwlqOOvXDBLX1JCf6/4S3+ZAlz7gVGRgQV2vbd2iwyaFdpcBuKP7x5RxaoRGeQoyomUe5RtZ3t8nbu9d0GoaQtVOAzuztVK/SOjbnDt+KsrtkInsMP50RdjJ5h3teQp4zWkkRYWzV/Tlgd2AkbyyEvcffRnCiHhnN+uBt1+ctoGvsr88qkcBgbflzK1cIejqLzVQJbr4uGlNxjnmEV8bZJx6r0Bm4Nyb7R9HIx2a/S1oxBLl4whtzs7y1qlJaZq7WLlRQcUkODtQR+LvcA5aNwGPkMcLsZHpEpIXJq0kQvT0gRUaSY2SrRSlrIHPE7B5A3ZYNKXS6QHV5iGNvx8tUijLFt5PnQtzuMVdROaDBK+8kqhSBHnkz+ejT3w877gIwfosswXF3lmTLPbN7CUB6+Wrf7yoxtnVg433gcXEmmf1HkE8S9jf31YKkHAFC1TnpQAAat/fVwGA399YAQH3ggB4nAEAXyUDCQcBXyQDJBIxXyoCCEBfNAEBX1cBAJ8CBgAAAAABAJ8DBgAAAAAAAJ8GB6AAAAADEBCfHAgwMDAwMDAwMJ80Ax4DAJ85AQXf30ABAd/fTSI7NDc2MTczMDAwMDAwMDAyOT0wMDAwMDAwMDAwMDAwMDA/FnFMQQ==\\\",\\\"KSN\\\":\\\"9070050B54E7A500006A\\\",\\\"DeviceSerialNumber\\\":\\\"42353445374135\\\",\\\"EncryptionType\\\":\\\"80\\\",\\\"NumberOfPaddedBytes\\\":0,\\\"NumberOfPaddedBytesForBatch\\\":1,\\\"EMVSREDData\\\":\\\"DDEDCAC94F314B2DF4F51ED4C7A3041F36C46DB29AEECCB36897A5D614D4FE6409FAA5AD3639FF29F6412C92CD25172E9CCD52C8606CE1BE34991435FB729F5781F3D71C6E1879E2AE5D421C6D04BC1A7A26865CFEFE69BC559C24BA398B3D091B32167CF67635AFF3E03D39F3E6F8B8A2BA47BB9A5F5ED3EC796346884B83A8D06CEB5D80C43283CBDDA49CE1995B07059C4838F30B0D369111A11C8F98E94BCED466A26565C7A07E52057F4F8306D40BE5F172C8BCC4A7302AB04FF31D64233068FC04245A83EA5935B7AD06C6C903F75810E276E9C4F926AB3F81F29BC1558D891958881ACCBCAC94EB4AEC15533C3A2BE01B42C52CCF23B3364004F7123DCCDB75A45CEDCAD5\\\",\\\"EMVSREDDataForBatch\\\":\\\"466ED8E0E40EC68A4B86AF096A38EBD70C12D7D4909FEBFE12DFE640973EE0546460415DAF6DDDA2C32685769701B8A3FBC794716A8446790A32A2651EE51B59DEDF276EEF5DD06A1A42D54E033BB3B552BF48E8DB9C3B7E2ACAED9089EC30FE7445D8C9E61DED790A78CD69244585B357F4E581DD8091BCB212F71F7D19C288786737EB81B75F9CB681AFB2BF3CAA470181B7E5CCAD5C21E8EA2F355025BAF8B8694DC639E6115F1B649C7AAF4066E0DC9BED1F47231D9AFD2D68C412E5E3086DCECEF2D6A949699ABB58B95141C524383B5047E2EF700E5A37018F90C70BB191E912921726AD2442F4F481151A498D92AD14A5AC81CF13B07903765834A5D2E901D5E6218DBF1F2D5228CB16DE4F9D0B73B8C55D44E68304AFBC92A8520479E4CFE7A34F7C3CEFB808C1FA2CB305C5DE59932CF6CDEC2501EBE5AB7FBCA8C6D9D5838DF781C5C49A67F51E413C4BD8\\\",\\\"MerchantData\\\":\\\"9C01005F25030907015F24032412315F2A0208405F3401015F5701009F02060000000001009F03060000000000009F0607A00000000310109F1C0830303030303030309F34031E03009F390105DFDF400101DFDF4D223B343736313733303030303030303032393D3030303030303030303030303030303F\\\",\\\"FallbackIndicator\\\":\\\"00\\\",\\\"MaskedICCTrack2\\\":\\\"3B343736313733303030303030303032393D3030303030303030303030303030303F\\\",\\\"CardType\\\":\\\"05\\\",\\\"ApprovalStatus\\\":0},\\\"ResultStatus\\\":true,\\\"ResultMessage\\\":\\\"Batchdatareceived\\\"}\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizaztionID}}/locations/loc_{{locationID}}/transactions/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 12 Nov 2019 20:06:21 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"431","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_fa646cd3-0fd0-4729-b250-548c4bbfae2a\",\n    \"location_id\": \"loc_115161\",\n    \"action\": \"sale\",\n    \"authorization_amount\": 5,\n    \"service_fee_amount\": 0.25,\n    \"subtotal_amount\": 4.75,\n    \"authorization_code\": \"MUX361\",\n    \"entered_by\": \"af4160261691a85917ea2491fe440633\",\n    \"billing_address\": {\n        \"first_name\": \"Jennifer\",\n        \"last_name\": \"McFly\",\n        \"phone\": \"444-444-4444\",\n        \"physical_address\": {\n            \"street_line1\": \"8003 Clock Tower Ln\",\n            \"street_line2\": \"Suite 200\",\n            \"locality\": \"Hill Valley\",\n            \"region\": \"CA\",\n            \"postal_code\": \"46203\"\n        }\n    },\n    \"card\": {\n        \"name_on_card\": \"Jennifer McFly\",\n        \"last_4_account_number\": \"0029\",\n        \"masked_account_number\": \"****1003\",\n        \"expire_month\": 12,\n        \"expire_year\": 2024,\n        \"card_type\": \"visa\",\n        \"card_reader\": \"dynaflex2go\",\n        \"first_6_account_number\": \"476173\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"APPROVED\",\n        \"authorization_code\": \"MUX361\",\n        \"avs_result\": \"G\",\n        \"cvv_result\": \" \",\n        \"requested_amount\": \"5.0\",\n        \"emv_receipt_data\": \"application_label:Visa Credit|entry_mode:CHIP|CVM:1E0300|AID:A0000000031010|TVR:8080008000|IAD:06011203A000000F00564953414C335445535443415345|TSI:6800|ARC:\"\n    },\n    \"links\": {\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_fa646cd3-0fd0-4729-b250-548c4bbfae2a/disputes\",\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_fa646cd3-0fd0-4729-b250-548c4bbfae2a/settlements\",\n        \"self\": \"https://api.forte.net/v3/transactions/trn_fa646cd3-0fd0-4729-b250-548c4bbfae2a/\"\n    }\n}"}],"_postman_id":"df07daff-0d53-42ba-a60c-80df1dc237a5"},{"name":"EMV Transaction (V400c)","event":[{"listen":"test","script":{"id":"5a76b8de-9cfd-4cb5-b7ac-3371ae56f1ae","exec":[""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"7526bc65-faba-4d02-a95c-5a04c982e333","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"a6938fab-4334-410a-87b9-5ccd3ac48bdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"action\": \"sale\",\r\n    \"authorization_amount\": 10.00,\r\n    \"serial_number\":\"401-333-444\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/","description":"<p>Use this endpoint with the following parameters to submit transactions using your V400c device setup in cloud mode:</p>\n<ul>\n<li><p>\"serial_number\" =\"401-333-444\"</p>\n</li>\n<li><p>\"service_fee_amount\" = \"1.00\"</p>\n</li>\n</ul>\n<p><strong>NOTE:</strong> The \"service_fee_amount\" is an optional parameter that must be passed only if your location is configured with a service fee. To determine the service fee settings for your particular location, you can perform a GET request on the Location ID. The service fee settings are displayed under the \"Services\" sub-object.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"24949ce2-d771-4578-bd1a-759509570d66","name":"EMV Transaction (V400c)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"action\": \"sale\",\r\n    \"authorization_amount\": 10.00,\r\n    \"serial_number\":\"401-333-444\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/"},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"transaction_id\": \"trn_d8a6ce71-bc87-4d40-9897-473bb428d616\",\r\n    \"location_id\": \"loc_173185\",\r\n    \"serial_number\": \"401-333-444\",\r\n    \"action\": \"sale\",\r\n    \"authorization_amount\": 10.00,\r\n    \"service_fee_amount\": 2.00,\r\n    \"subtotal_amount\": 8.00,\r\n    \"authorization_code\": \"3OH437\",\r\n    \"entered_by\": \"3097e6f6b8d5342b5f57db5110c1f69f\",\r\n    \"billing_address\": {\r\n        \"first_name\": \"John\",\r\n        \"last_name\": \"Doe\"\r\n    },\r\n    \"card\": {\r\n        \"name_on_card\": \"DOE/JOHN\",\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****************1111\",\r\n        \"expire_month\": 4,\r\n        \"expire_year\": 2026,\r\n        \"card_type\": \"amex\"\r\n    },\r\n    \"response\": {\r\n        \"environment\": \"live\",\r\n        \"response_type\": \"A\",\r\n        \"response_code\": \"A01\",\r\n        \"response_desc\": \"TEST APPROVAL\",\r\n        \"authorization_code\": \"3OH437\",\r\n        \"avs_result\": \"Y\",\r\n        \"cvv_result\": \"M\",\r\n        \"emv_receipt_data\": \"application_label:AMEX|entry_mode:CHIP|CVM:SIGN|AID:A000000025010402|TVR:0000008000|IAD:|TSI:E800|ARC:\",\r\n        \"sequence_number\": \"003\",\r\n        \"signature_line_text\": \"DOE/JOHN            \",\r\n        \"receipt_footer1\": \"I agree to pay the above total amount\",\r\n        \"receipt_footer2\": \"according to the card issuer agreement\",\r\n        \"receipt_footer3\": \"(Merchant agreement if credit voucher)\",\r\n        \"cfg_receipt_header1\": \"Header Line 1\",\r\n        \"cfg_receipt_header2\": \"Header Line 2\",\r\n        \"cfg_receipt_header3\": \"Header Line 3\",\r\n        \"cfg_receipt_header4\": \"Header Line 4\",\r\n   \"cfg_receipt_header5\": \"Header Line 5\",\r\n        \"cfg_receipt_footer1\": \"Footer Line 1\",\r\n        \"cfg_receipt_footer2\": \"Footer Line 2\",\r\n        \"cfg_receipt_footer3\": \"Footer Line 3,\r\n        \"cfg_receipt_footer4\": \"Footer Line 4\",\r\n \"cfg_receipt_footer5\": \"Footer Line 5\",\r\n        \"emv_data\": \"82~3C01;9F1A~0850;5F2A~0840;9A~250729;9D~00;9F40~F000A0A002;9F02~000000000800;9F03~000000000000;9F26~878728FE52C8GC85;4F~;9F06~;82~3D00;9F36~006S;9F34~5E2100;9F27~80;9F39~07;9F33~E0h7J9;9F35~26;95~0000008000;9B~E800;9F21~;9F37~D275FEAA;5F2D~656E;91~;5F34~01;84~A000000025010402;9F10~08010103C0K006;9F5B~;9F09~0001;9F0D~F850CVN900;9F0E~0000000000;9F0F~F8G6HCR800;57~XXXXXXXXXXX0948Z4M0420122049784201000F;5A~XXXXXXXXXXX0969A;5F20~48494C410982542G6H654E532F2E202020202020202020202020;9F6E~;\"\r\n    },\r\n    \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_d8a6ce71-bc87-4d40-9897-473bb428d616/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_d8a6ce71-bc87-4d40-9897-473bb428d616/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_d8a6ce71-bc87-4d40-9897-473bb428d616/\"\r\n    }\r\n}\r\n"},{"id":"09b99679-48cd-493a-b2e5-f9d6784457d3","name":"Contactless - EMV Transaction (V400c)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\": 10.11,\r\n    \"subtotal_amount\":8.11,\r\n    \"service_fee_amount\":2.00,\r\n    \"serial_number\":\"401-333-444\",\r\n    \"customer_id\":\"CustFJ\",\r\n    \"reference_id\":\"REFFJ\",\r\n    \"order_number\":\"ORDFJ\",\r\n    \"entered_by\":\"FJ\",\r\n    \"customer_ip_address\":\"192.100.01\",\r\n    \"save_token\":\"customer\",\r\n    \"recurring_indicator\":\"true\",\r\n    \"sales_tax_amount\":1.00,\r\n    \"line_items\":{\r\n    \"line_item_header\":\"LINE ITEM HEADER\",\r\n    \"line_item_1\":\"ist Line Item\"\r\n    },\r\n    \"xdata\":{\r\n      \"xdata_1\":\"XDATA1\"\r\n      },\r\n    \"shipping_address\":{\r\n      \"address_token\":\"add_SJ4D494urUeg2A8T3Xn1fQ\",\r\n      \"first_name\":\"Shipping First Name\",\r\n      \"last_name\":\"Shipping Last Name\",\r\n      \"company_name\":\"Shipping Company Name\",\r\n      \"phone\":\"123-123-123\",\r\n      \"email\":\"shipto@email.com\",\r\n      \"label\":\"Shipping Label\",\r\n      \"address_type\":\"default_shipping\",\r\n      \"shipping_address_type\":\"residential\",\r\n      \"physical_address\":{\r\n        \"street_line1\":\"Ship Address Line 1\",\r\n        \"street_line2\":\"Ship Address Line 2\",\r\n        \"locality\":\"Ciry\",\r\n        \"region\":\"State\",\r\n        \"country\":\"USA\",\r\n        \"postal_code\":\"75013\"\r\n      }\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/"},"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\r\n    \"transaction_id\": \"trn_9e5a4c4f-5ef4-4e25-be28-124bedbfcd62\",\r\n    \"location_id\": \"loc_173185\",\r\n    \"customer_token\": \"cst_69nEyb1YQvujv7IEzKX9oQ\",\r\n    \"paymethod_token\": \"mth_yRKxhwK7QduDKF5E8o7m-w\",\r\n    \"serial_number\": \"401-333-444\",\r\n    \"customer_id\": \"CustFJ\",\r\n    \"order_number\": \"ORDFJ\",\r\n    \"reference_id\": \"REFFJ\",\r\n    \"action\": \"sale\",\r\n    \"authorization_amount\": 10.11,\r\n    \"sales_tax_amount\": 1.00,\r\n    \"service_fee_amount\": 2.00,\r\n    \"subtotal_amount\": 8.11,\r\n    \"authorization_code\": \"7PG872\",\r\n    \"entered_by\": \"FJ\",\r\n    \"billing_address\": {\r\n        \"first_name\": \"CHASE VISA\",\r\n        \"last_name\": \"CARDHOLDER\"\r\n    },\r\n    \"shipping_address\": {\r\n        \"company_name\": \"Shipping First Name Shipping Last Name\",\r\n        \"phone\": \"123-123-123\",\r\n        \"email\": \"shipto@email.com\",\r\n        \"label\": \"Shipping Label\",\r\n        \"physical_address\": {\r\n            \"street_line1\": \"Ship Address Line 1\",\r\n            \"street_line2\": \"Ship Address Line 2\",\r\n            \"locality\": \"Ciry\",\r\n            \"region\": \"State\",\r\n            \"postal_code\": \"75013\",\r\n            \"country\": \"US\"\r\n        }\r\n    },\r\n    \"card\": {\r\n        \"name_on_card\": \"CARDHOLDER/CHASE VISA\",\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****************1111\",\r\n        \"expire_month\": 4,\r\n        \"expire_year\": 2025,\r\n        \"card_type\": \"visa\"\r\n    },\r\n    \"line_items\": {\r\n        \"line_item_header\": \"LINE ITEM HEADER\",\r\n        \"line_item_1\": \"ist Line Item\"\r\n    },\r\n    \"xdata\": {\r\n        \"xdata_1\": \"XDATA1\"\r\n    },\r\n    \"recurring_indicator\": true,\r\n    \"save_token\": \"customer\",\r\n    \"response\": {\r\n        \"environment\": \"live\",\r\n        \"response_type\": \"A\",\r\n        \"response_code\": \"A01\",\r\n        \"response_desc\": \"TEST APPROVAL\",\r\n        \"authorization_code\": \"7PG872\",\r\n        \"avs_result\": \"Y\",\r\n        \"cvv_result\": \"M\",\r\n        \"customer_token\": \"cst_69nEyb1YQvujv7IEzKX9oQ\",\r\n        \"paymethod_token\": \"mth_yRKxhwK7QduDKF5E8o7m-w\",\r\n        \"emv_receipt_data\": \"application_label:CHASE VISA|entry_mode:CONTACTLESS|CVM:|AID:A0000000031010|TVR:0000000000|IAD:|TSI:0000|ARC:\",\r\n        \"sequence_number\": \"004\",\r\n        \"signature_line_text\": \"CARDHOLDER/CHASE VISA\",\r\n        \"receipt_footer1\": \"I agree to pay the above total amount\",\r\n        \"receipt_footer2\": \"according to the card issuer agreement\",\r\n        \"receipt_footer3\": \"(Merchant agreement if credit voucher)\",\r\n        \"cfg_receipt_header1\": \"Header Line 1\",\r\n        \"cfg_receipt_header2\": \"Header Line 2\",\r\n        \"cfg_receipt_header3\": \"Header Line 3\",\r\n        \"cfg_receipt_header4\": \"Header Line 4\",\r\n \"cfg_receipt_header5\": \"Header Line 5\",\r\n        \"cfg_receipt_footer1\": \"Footer Line 1\",\r\n        \"cfg_receipt_footer2\": \"Footer Line 2\",\r\n        \"cfg_receipt_footer3\": \"Footer Line 3”, \r\n        \"cfg_receipt_footer4\": \"Footer Line 4\",\r\n \"cfg_receipt_footer5\": \"Footer Line 5\",\r\n\"emv_data\":\"82~3C01;9F1A~0850;5F2A~0840;9A~250729;9D~00;9F40~F000A0A002;9F02~000000000800;9F03~000000000000;9F26~878728FE52C8GC85;4F~;9F06~;82~3D00;9F36~006S;9F34~5E2100;9F27~80;9F39~07;9F33~E0h7J9;9F35~26;95~0000008000;9B~E800;9F21~;9F37~D275FEAA;5F2D~656E;91~;5F34~01;84~A000000025010402;9F10~08010103C0K006;9F5B~;9F09~0001;9F0D~F850CVN900;9F0E~0000000000;9F0F~F8G6HCR800;57~XXXXXXXXXXX0948Z4M0420122049784201000F;5A~XXXXXXXXXXX0969A;5F20~48494C410982542G6H654E532F2E202020202020202020202020;9F6E~;\"\r\n    },\r\n    \"links\": {\r\n        \"disputes\":\"https://api.forte.net/v3/transactions/trn_9e5a4c4f-5ef4-4e25-be28-124bedbfcd62/disputes\",\r\n        \"settlements\":\"https://api.forte.net/v3/transactions/trn_9e5a4c4f-5ef4-4e25-be28-124bedbfcd62/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_9e5a4c4f-5ef4-4e25-be28-124bedbfcd62/\"\r\n    }\r\n}\r\n"}],"_postman_id":"a6938fab-4334-410a-87b9-5ccd3ac48bdc"},{"name":"Transaction with Service Fee","id":"4165d717-e354-40c0-929d-0e9b703e8fc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\": 111.54,\r\n    \"service_fee_amount\": 3.20,\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  },\r\n  \"card\":{\r\n     \"card_type\": \"visa\",\r\n     \"name_on_card\": \"Jennifer McFly\",\r\n     \"account_number\": \"4111111111111111\",\r\n     \"expire_month\": \"12\",\r\n     \"expire_year\": \"2020\",\r\n     \"card_verification_value\":\"123\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>For service fee transactions, merchants must calculate the fee amount and then include it in the <code>service_fee_amount</code> parameter in the request. To look up your location's service fee rates/amounts, perform a GET call to the <a href=\"https://restdocs.forte.net/?version=latest#c9573549-f7b5-4126-b6da-c1f24514fef3\">Locations by ID</a> endpoint.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"d1e575e0-43ac-4273-a4a2-0eaf53cfb740","name":"Transaction with Service Fee","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\": 111.54,\r\n    \"service_fee_amount\": 3.2,\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  },\r\n  \"card\":{\r\n     \"card_type\": \"visa\",\r\n     \"name_on_card\": \"Jennifer McFly\",\r\n     \"account_number\": \"4111111111111111\",\r\n     \"expire_month\": \"12\",\r\n     \"expire_year\": \"2017\",\r\n     \"card_verification_value\":\"123\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-encoding","value":"gzip","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Mon, 04 Dec 2017 19:46:25 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"2-131583173-131583178 SNNN RT(1512416771484 13905) q(0 0 0 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n    \"transaction_id\": \"trn_f3fc06e7-dc2d-47fe-bea2-596ff26a81c0\",\r\n    \"location_id\": \"loc_200555\",\r\n    \"action\": \"sale\",\r\n    \"authorization_amount\": 111.54,\r\n    \"service_fee_amount\": 3.20,\r\n    \"subtotal_amount\": 108.34,\r\n    \"entered_by\": \"93e5a2be4693067f18e42fcc88bd372c\",\r\n    \"billing_address\": {\r\n        \"first_name\": \"Jennifer\",\r\n        \"last_name\": \"McFly\"\r\n    },\r\n    \"card\": {\r\n        \"name_on_card\": \"Jennifer McFly\",\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"expire_month\": 12,\r\n        \"expire_year\": 2020,\r\n        \"card_type\": \"visa\"\r\n    },\r\n    \"response\": {\r\n        \"environment\": \"live\",\r\n        \"response_type\": \"A\",\r\n        \"response_code\": \"A01\",\r\n        \"response_desc\": \"TEST APPROVAL\",\r\n        \"authorization_code\": \"123456\",\r\n        \"cvv_result\": \"M\"\r\n    }\r\n}"}],"_postman_id":"4165d717-e354-40c0-929d-0e9b703e8fc1"},{"name":"Transaction with Surcharge","id":"61bce86a-61ff-40de-bea8-50b5e1ab9677","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\": 102,\r\n    \"subtotal_amount\": 100.00,\r\n    \"surcharge_fee_amount\":2.00,\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  },\r\n  \"card\":{\r\n     \"card_type\": \"visa\",\r\n     \"name_on_card\": \"Jennifer McFly\",\r\n     \"account_number\": \"4111111111111111\",\r\n     \"expire_month\": \"12\",\r\n     \"expire_year\": \"2030\",\r\n     \"card_verification_value\":\"123\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>This URL allows merchants to process transactions that include a surcharge. The location must be configured for surcharge before passing the same in the transaction. Merchants and partners are responsible for calculating the surcharge amount in accordance with applicable regulations and must include the calculated amount in the request using the surcharge_fee_amount parameter.</p>\n<p>For more information on configuring surcharge for a location, contact CSGForte Customer Support at 888-235-4635 option 3.</p>\n<p><strong>Note:</strong></p>\n<ol>\n<li><p>Surcharge is only applicable for:</p>\n<ol>\n<li><p>Credit Card transactions</p>\n</li>\n<li><p>Non-service fee merchants.<br /> Surcharging is mutually exclusive with convenience/service fees. Only merchants not using a service fee (convenience fee) model can apply a surcharge amount.</p>\n</li>\n</ol>\n</li>\n<li><p>Surcharge fee can be applied on following transaction types:</p>\n<ol>\n<li><p>Sale</p>\n</li>\n<li><p>Authorize</p>\n</li>\n<li><p>Capture</p>\n</li>\n<li><p>Void</p>\n</li>\n<li><p>Full/Partial Refund</p>\n</li>\n</ol>\n</li>\n<li><p>Subtotal_amount is an optional parameter, but it is recommended to include it in the transaction for better accuracy and completeness.</p>\n</li>\n</ol>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"b24f9d48-b938-4b35-a92e-5aad8ba13842","name":"Sale Transaction with Surcharge","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\": 102,\r\n    \"surcharge_fee_amount\":2.00,\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  },\r\n  \"card\":{\r\n     \"card_type\": \"visa\",\r\n     \"name_on_card\": \"Jennifer McFly\",\r\n     \"account_number\": \"4111111111111111\",\r\n     \"expire_month\": \"12\",\r\n     \"expire_year\": \"2030\",\r\n     \"card_verification_value\":\"123\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"transaction_id\": \"trn_4982e390-c6b8-49d6-b8f9-dcbf1098dd93\",\r\n    \"location_id\": \"loc_115161\",\r\n    \"action\": \"sale\",\r\n    \"authorization_amount\": 102.00,\r\n    \"surcharge_fee_amount\": 2.00,\r\n    \"subtotal_amount\": 100.00,\r\n    \"authorization_code\": \"995972\",\r\n    \"entered_by\": \"8dbd1adc927b5d85b3a745a2c334fc12\",\r\n    \"billing_address\": {\r\n        \"first_name\": \"Jennifer\",\r\n        \"last_name\": \"McFly\"\r\n    },\r\n    \"card\": {\r\n        \"name_on_card\": \"Jennifer McFly\",\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"expire_month\": 12,\r\n        \"expire_year\": 2030,\r\n        \"card_type\": \"visa\"\r\n    },\r\n    \"response\": {\r\n        \"environment\": \"live\",\r\n        \"response_type\": \"A\",\r\n        \"response_code\": \"A01\",\r\n        \"response_desc\": \"APPROVED\",\r\n        \"authorization_code\": \"995972\",\r\n        \"avs_result\": \"Y\",\r\n        \"cvv_result\": \"M\"\r\n    },\r\n    \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_4982e390-c6b8-49d6-b8f9-dcbf1098dd93/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_4982e390-c6b8-49d6-b8f9-dcbf1098dd93/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_4982e390-c6b8-49d6-b8f9-dcbf1098dd93/\"\r\n    }\r\n}"},{"id":"a53869a4-e0f2-4f30-a5dd-66a127d88b2c","name":"Auth Transaction with Surcharge","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"action\": \"authorize\",\r\n    \"authorization_amount\": 105.00,\r\n    \"subtotal_amount\": 100.00,\r\n    \"surcharge_fee_amount\": 5.00,\r\n    \"billing_address\": {\r\n        \"first_name\": \"Jennifer\",\r\n        \"last_name\": \"McFly\"\r\n    },\r\n    \"card\": {\r\n        \"card_type\": \"visa\",\r\n        \"name_on_card\": \"Jennifer McFly\",\r\n        \"account_number\": \"4111111111111111\",\r\n        \"expire_month\": \"12\",\r\n        \"expire_year\": \"2030\",\r\n        \"card_verification_value\": \"123\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n    \"transaction_id\": \"trn_b050fee2-f0ba-41a6-a6b4-af6fc29dce7a\",\r\n    \"location_id\": \"loc_115161\",\r\n    \"action\": \"authorize\",\r\n    \"authorization_amount\": 105.00,\r\n    \"surcharge_fee_amount\": 5.00,\r\n    \"subtotal_amount\": 100.00,\r\n    \"authorization_code\": \"993750\",\r\n    \"entered_by\": \"8dbd1adc927b5d85b3a745a2c334fc12\",\r\n    \"billing_address\": {\r\n        \"first_name\": \"Jennifer\",\r\n        \"last_name\": \"McFly\"\r\n    },\r\n    \"card\": {\r\n        \"name_on_card\": \"Jennifer McFly\",\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"expire_month\": 12,\r\n        \"expire_year\": 2030,\r\n        \"card_type\": \"visa\"\r\n    },\r\n    \"response\": {\r\n        \"environment\": \"live\",\r\n        \"response_type\": \"A\",\r\n        \"response_code\": \"A01\",\r\n        \"response_desc\": \"APPROVED\",\r\n        \"authorization_code\": \"993750\",\r\n        \"avs_result\": \"Y\",\r\n        \"cvv_result\": \"M\"\r\n    },\r\n    \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_b050fee2-f0ba-41a6-a6b4-af6fc29dce7a/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_b050fee2-f0ba-41a6-a6b4-af6fc29dce7a/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_b050fee2-f0ba-41a6-a6b4-af6fc29dce7a/\"\r\n    }\r\n}"}],"_postman_id":"61bce86a-61ff-40de-bea8-50b5e1ab9677"},{"name":"Transaction with Level III Data","id":"d3decd83-d88b-47c8-9f5a-cca575963727","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"action\": \"sale\",\r\n   \"authorization_amount\": 0.8,\r\n   \"sales_tax_amount\": 0.30,\r\n   \"tax_exempt\": \"false\",\r\n   \"billing_address\": {\r\n       \"first_name\": \"CSG\",\r\n       \"last_name\": \"Forte\"\r\n   },\r\n   \"card\": {\r\n       \"card_type\": \"Visa\",\r\n       \"name_on_card\": \"CSG Forte\",\r\n       \"procurement_card\": true,\r\n       \"account_number\": \"4111111111111111\",\r\n       \"expire_month\": \"05\",\r\n       \"expire_year\": \"2027\",\r\n       \"card_verification_value\": \"123\",\r\n       \"customer_accounting_code\": \"187723\"\r\n   },\r\n   \"line_items\": {\r\n       \"line_item_header\": \"Item_Descriptor,Total_Tax_Amount,Discount_Amount,Duty_Amount,Item_Commodity_Code,Product_Code,Quantity,Unit_of_Measure,Unit_Cost,Discount_Per_Line_Item,Line_Item_Total,Ship_Date\",\r\n       \"line_item_1\": \"socks,0.10,0,0,6200,SOK1,1,ITM1,0.20,0,0.30,251118\",\r\n       \"line_item_2\": \"coats,0.20,0,0,6200,COT1,1,ITM2,0.30,0,0.50,251119\"\r\n   }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>To send a Level 3 sale transaction using a procurement card, you must include all the required parameters to process a sale transaction along with the additional level 3 data that can be passed in the \"line_item_header\" and \"line_item_X\" data fields.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"8d405fea-76f2-48b7-80e6-408935185c01","name":"Sale Transaction with Level III Data","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n   \"action\": \"sale\",\r\n   \"authorization_amount\": 0.8,\r\n   \"sales_tax_amount\": 0.30,\r\n   \"tax_exempt\": \"false\",\r\n   \"billing_address\": {\r\n       \"first_name\": \"CSG\",\r\n       \"last_name\": \"Forte\"\r\n   },\r\n   \"card\": {\r\n       \"card_type\": \"Visa\",\r\n       \"name_on_card\": \"CSG Forte\",\r\n       \"procurement_card\": true,\r\n       \"account_number\": \"4111111111111111\",\r\n       \"expire_month\": \"05\",\r\n       \"expire_year\": \"2027\",\r\n       \"card_verification_value\": \"123\",\r\n       \"customer_accounting_code\": \"187723\"\r\n   },\r\n   \"line_items\": {\r\n       \"line_item_header\": \"Item_Descriptor,Total_Tax_Amount,Discount_Amount,Duty_Amount,Item_Commodity_Code,Product_Code,Quantity,Unit_of_Measure,Unit_Cost,Discount_Per_Line_Item,Line_Item_Total,Ship_Date\",\r\n       \"line_item_1\": \"socks,0.10,0,0,6200,SOK1,1,ITM1,0.20,0,0.30,251118\",\r\n       \"line_item_2\": \"coats,0.20,0,0,6200,COT1,1,ITM2,0.30,0,0.50,251119\"\r\n   }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\r\n  \"transaction_id\": \"trn_6ac36fb3-cd42-4a75-893e-8296e1e9e98a\",\r\n  \"location_id\": \"loc_151193\",\r\n  \"action\": \"sale\",\r\n  \"authorization_amount\": 0.8,\r\n  \"sales_tax_amount\": 0.3,\r\n  \"authorization_code\": \"085738\",\r\n  \"entered_by\": \"bf1c4a20add978acfafc2f58c753f02a\",\r\n  \"billing_address\": {\r\n    \"first_name\": \"CSG\",\r\n    \"last_name\": \"Forte\"\r\n  },\r\n  \"card\": {\r\n    \"name_on_card\": \"CSG Forte\",\r\n    \"last_4_account_number\": \"1111\",\r\n    \"masked_account_number\": \"****1111\",\r\n    \"customer_accounting_code\": \"187723\",\r\n    \"card_type\": \"visa\"\r\n  },\r\n  \"line_items\": {\r\n    \"line_item_header\": \"Item_Descriptor,Total_Tax_Amount,Discount_Amount,Duty_Amount,Item_Commodity_Code,Product_Code,Quantity,Unit_of_Measure,Unit_Cost,Discount_Per_Line_Item,Line_Item_Total,Ship_Date\",\r\n    \"line_item_1\": \"socks,0.10,0,0,6200,SOK1,1,ITM1,0.20,0,0.30,251118\",\r\n    \"line_item_2\": \"coats,0.20,0,0,6200,COT1,1,ITM2,0.30,0,0.50,251119\"\r\n  },\r\n  \"tax_exempt\": false,\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_type\": \"A\",\r\n    \"response_code\": \"A01\",\r\n    \"response_desc\": \"APPROVED\",\r\n    \"authorization_code\": \"085738\",\r\n    \"avs_result\": \" \",\r\n    \"cvv_result\": \"M\"\r\n  },\r\n  \"links\": {\r\n    \"disputes\": \"https://api.forte.net/v3/transactions/trn_6ac36fb3-dd42-4a75-893e-6296e1e9e98a/disputes\",\r\n    \"settlements\": \"https://api.forte.net/v3/transactions/trn_6ac36fb3-dd42-4a75-893e-6296e1e9e98a/settlements\",\r\n    \"self\": \"https://api.forte.net/v3/transactions/trn_6ac36fb3-dd42-4a75-893e-6296e1e9e98a/\"\r\n  }\r\n}"}],"_postman_id":"d3decd83-d88b-47c8-9f5a-cca575963727"},{"name":"Transaction (ECheck)","id":"df2222ee-ff0d-475c-985b-e64a72b61798","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\": 240.52,\r\n    \"billing_address\":{\r\n       \"first_name\": \"Marty\",\r\n       \"last_name\": \"McFly\"\r\n    },\r\n    \"echeck\":{\r\n       \"sec_code\": \"WEB\",\r\n       \"account_type\": \"Checking\",\r\n       \"routing_number\": \"021000021\",\r\n       \"account_number\": \"000111222\",\r\n       \"account_holder\": \"Marty McFly\",\r\n       \"company_entry_description\": \"PURCHASE\" \r\n\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>EFT is an Electronic Funds Transfer, encompassing all electronic payments and including ACH (eCheck) payments. This URI can perform the following eCheck (ACH) tasks while returning a new <code>transaction_id</code>:</p>\n<ul><li><p>Create an ad-hoc transaction. Note: if the intent is to authorize and immediately capture the transaction, it is recommended that a sale transaction is sent.</p></li><li><p>Create a transaction based on the customer token using the default billing address</p></li><li><p>Create a transaction based on the customer and paymethod tokens using the customer default billing address</p></li><li><p>Create a transaction based on the paymethod token, which requires the address in the request message</p></li><li><p>Reverse a sale transaction and create a credit transaction, which requires the <code>transaction_id</code> and <code>authorization_code</code> of the original transaction</p></li></ul>","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"a91c1c99-5889-4e75-a47e-095c8d29be57","name":"Create a Transaction (ECheck)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\": 240.52,\r\n    \"billing_address\":{\r\n       \"first_name\": \"Marty\",\r\n       \"last_name\": \"McFly\"\r\n    },\r\n    \"echeck\":{\r\n       \"sec_code\": \"WEB\",\r\n       \"account_type\": \"Checking\",\r\n       \"routing_number\": \"111000025\",\r\n       \"account_number\": \"311080311\",\r\n       \"account_holder\": \"Marty McFly\",\r\n        \"company_entry_description\": \"PURCHASE\" \r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 15:24:20 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"7-48791103-48852875 NNNN CT(36 74 0) RT(1508512703858 356056) q(0 0 1 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n  \"transaction_id\": \"trn_ea2d1204-9672-482e-83a2-6e9bb9347051\",\n  \"location_id\": \"loc_192642\",\n  \"action\": \"sale\",\n  \"authorization_amount\": 240.52,\n  \"entered_by\": \"4fefaf5f77d944ce10bdd3d88f7a2da9\",\n  \"billing_address\": {\n    \"first_name\": \"Marty\",\n    \"last_name\": \"McFly\"\n  },\n  \"echeck\": {\n    \"account_holder\": \"Marty McFly\",\n    \"masked_account_number\": \"****0311\",\n    \"last_4_account_number\": \"0311\",\n    \"routing_number\": \"111000025\",\n    \"account_type\": \"checking\",\n    \"sec_code\": \"WEB\",\n    \"company_entry_description\": \"PURCHASE\",\n    \"issuer_bank\": \"JPMORGAN CHASE BANK, NA\"\n  },\n  \"response\": {\n    \"environment\": \"live\",\n    \"response_type\": \"A\",\n    \"response_code\": \"A01\",\n    \"response_desc\": \"APPROVED\",\n    \"authorization_code\": \"17339493\",\n    \"preauth_result\": \"POS\",\n    \"preauth_desc\": \"P70:VALIDATED\"\n  }\n}"}],"_postman_id":"df2222ee-ff0d-475c-985b-e64a72b61798"},{"name":"Transaction (Alternative URL)","id":"b73d6da9-9b2e-41aa-92d5-d7b7b8aae778","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"location_id\": \"loc_192642\",\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\": 102.45,\r\n    \"subtotal_amount\": 99.95,\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  },\r\n  \"card\":{\r\n     \"card_type\": \"visa\",\r\n     \"name_on_card\": \"Jennifer McFly\",\r\n     \"account_number\": \"4111111111111111\",\r\n     \"expire_month\": \"12\",\r\n     \"expire_year\": \"2017\",\r\n     \"card_verification_value\":\"123\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/transactions","description":"<p>This URI can perform the following tasks while returning a new <code>transaction_id</code>:</p><ul><li> Create an ad-hoc transaction</li><li> Create a transaction based on the customer token using the default billing address</li><li> Create a transaction based on the customer and paymethod tokens using the customer default billing address</li><li> Create a transaction based on the paymethod token, which requires the address in the request message</li><li> Reverse a sale transaction and create a credit transaction, which requires the <code>transaction_id</code> and <code>authorization_code</code> of the original transaction</li></ul> <strong>NOTE</strong>: This endpoint does not specify the location of the transaction in the endpoint; rather, the <code>location_id</code> parameter is included in the body of the request.<p></p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"858fba88-f746-4d4a-b4d4-b84977597864","name":"Create a Transaction (Alternative URI)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"location_id\": \"loc_192642\",\r\n    \"action\":\"sale\",\r\n    \"authorization_amount\": 102.45,\r\n    \"subtotal_amount\": 99.95,\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  },\r\n  \"card\":{\r\n     \"card_type\": \"visa\",\r\n     \"name_on_card\": \"Jennifer McFly\",\r\n     \"account_number\": \"4111111111111111\",\r\n     \"expire_month\": \"12\",\r\n     \"expire_year\": \"2017\",\r\n     \"card_verification_value\":\"123\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/transactions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Thu, 19 Oct 2017 21:50:40 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"7-41835020-41840232 NNNN CT(0 0 0) RT(1508449807776 32451) q(0 0 0 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_8e1e070e-ec96-4fbf-95d1-a076b728e419\",\n    \"location_id\": \"loc_192642\",\n    \"action\": \"sale\",\n    \"authorization_amount\": 102.45,\n    \"entered_by\": \"4fefaf5f77d944ce10bdd3d88f7a2da9\",\n    \"billing_address\": {\n        \"first_name\": \"Jennifer\",\n        \"last_name\": \"McFly\"\n    },\n    \"card\": {\n        \"name_on_card\": \"Jennifer McFly\",\n        \"last_4_account_number\": \"1111\",\n        \"masked_account_number\": \"****1111\",\n        \"expire_month\": 12,\n        \"expire_year\": 2017,\n        \"card_type\": \"visa\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"TEST APPROVAL\",\n        \"authorization_code\": \"123456\",\n        \"avs_result\": \"Y\",\n        \"cvv_result\": \"M\"\n    }\n}"}],"_postman_id":"b73d6da9-9b2e-41aa-92d5-d7b7b8aae778"},{"name":"Sale Transaction","id":"d45e45ec-0e8c-4c4f-bc88-2783756a2e39","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"authorization_amount\": 102.45,\r\n    \"subtotal_amount\": 99.95,\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  },\r\n  \"card\":{\r\n     \"card_type\": \"visa\",\r\n     \"name_on_card\": \"Jennifer McFly\",\r\n     \"account_number\": \"4111111111111111\",\r\n     \"expire_month\": \"12\",\r\n     \"expire_year\": \"2030\",\r\n     \"card_verification_value\":\"123\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/sale","description":"<p>A sale transaction is used to collect funds from a customer's debit/credit card or bank account in exchange for goods or services. The <code>sale</code> action creates an <a href=\"https://www.forte.net/glossary\">authorization</a> request and a <a href=\"https://www.forte.net/glossary\">capture</a> operation in one step. Use this URI to create a <code>sale</code> transaction by appending the <code>sale</code> action to the end of the URI. You can also create a <code>sale</code> transaction by including the <code>\"action\"=\"sale\"</code> parameter in the body of a request to the <code>/organizations/{organization_id}/transactions</code> URI.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions","sale"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"6a61c1ae-3227-4e70-9c84-f31d1f33da15","name":"Sale Transaction","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"authorization_amount\": 102.45,\r\n    \"subtotal_amount\": 99.95,\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  },\r\n  \"card\":{\r\n     \"card_type\": \"visa\",\r\n     \"name_on_card\": \"Jennifer McFly\",\r\n     \"account_number\": \"4111111111111111\",\r\n     \"expire_month\": \"12\",\r\n     \"expire_year\": \"2030\",\r\n     \"card_verification_value\":\"123\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/sale"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"close","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data.","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Tue, 12 Dec 2017 21:59:36 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server","enabled":true},{"key":"Set-Cookie","value":"incap_ses_618_621087=T1DxcPrtmx6sgJLeK5STCEhRMFoAAAAAViy5mCUkkssYnJxbUHahyg==; path=/; Domain=.forte.net","description":"an HTTP cookie","enabled":true},{"key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity.","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header","enabled":true},{"key":"X-CDN","value":"Incapsula","description":"Custom header","enabled":true},{"key":"X-Iinfo","value":"7-5780086-5780098 NNNN CT(32 69 0) RT(1513115975968 45) q(0 0 1 0) r(3 3) U6","description":"Custom header","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","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)","enabled":true}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"zc1JQDv3SsqdxPTgM0OnpjEoKFoAAAAAQUIPAAAAAAC5r9SJNQaR/XxRjTJMvNk3","key":"visid_incap_621087"},{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"h3p1CD8cLSwx1TsMcEK08gAAAAAGVeR1GOrif/KFGDOmYvpy","key":"nlbi_621087"},{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"T1DxcPrtmx6sgJLeK5STCEhRMFoAAAAAViy5mCUkkssYnJxbUHahyg==","key":"incap_ses_618_621087"}],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_659c0afa-3a3f-496b-8553-1a52ac029168\",\n    \"location_id\": \"loc_192642\",\n    \"action\": \"sale\",\n    \"authorization_amount\": 102.45,\n    \"entered_by\": \"4fefaf5f77d944ce10bdd3d88f7a2da9\",\n    \"billing_address\": {\n        \"first_name\": \"Jennifer\",\n        \"last_name\": \"McFly\"\n    },\n    \"card\": {\n        \"name_on_card\": \"Jennifer McFly\",\n        \"last_4_account_number\": \"1111\",\n        \"masked_account_number\": \"****1111\",\n        \"expire_month\": 12,\n        \"expire_year\": 2030,\n        \"card_type\": \"visa\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"TEST APPROVAL\",\n        \"authorization_code\": \"123456\",\n        \"avs_result\": \"Y\",\n        \"cvv_result\": \"M\"\n    }\n}"}],"_postman_id":"d45e45ec-0e8c-4c4f-bc88-2783756a2e39"},{"name":"Credit Transaction","id":"8c91834a-e137-4d5c-9e83-540ffbec208c","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"authorization_amount\": 102.45,\r\n    \"subtotal_amount\": 99.95,\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  },\r\n  \"card\":{\r\n     \"card_type\": \"visa\",\r\n     \"name_on_card\": \"Jennifer McFly\",\r\n     \"account_number\": \"4111111111111111\",\r\n     \"expire_month\": \"12\",\r\n     \"expire_year\": \"2030\",\r\n     \"card_verification_value\":\"123\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/credit","description":"<p>A credit transaction is used to send funds to a bank account or credit/debit card. Typically, merchants use this action to refund a customer for a returned good or for payroll distributions. This URI creates a <code>credit</code> transaction by appending the <code>credit</code> action to the end of the URI. You can also create a <code>credit</code> transaction by including the <code>\"action\"=\"credit\"</code> parameter in the body of a request to the <code>/organizations/{organization_id}/transactions</code> URI.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions","credit"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"b141d20e-e33b-46bf-9f31-1b4125a9382f","name":"Create a Credit Transaction","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"authorization_amount\": 102.45,\r\n    \"subtotal_amount\": 99.95,\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  },\r\n  \"card\":{\r\n     \"card_type\": \"visa\",\r\n     \"name_on_card\": \"Jennifer McFly\",\r\n     \"account_number\": \"4111111111111111\",\r\n     \"expire_month\": \"12\",\r\n     \"expire_year\": \"2017\",\r\n     \"card_verification_value\":\"123\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/credit"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 15:05:10 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"0-26687398-26714187 NNNN CT(46 40 0) RT(1508511700003 209882) q(0 0 1 -1) r(3 3) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_8dfc1f75-d0b2-495b-87eb-bc7636000229\",\n    \"location_id\": \"loc_192642\",\n    \"action\": \"credit\",\n    \"authorization_amount\": 102.45,\n    \"entered_by\": \"4fefaf5f77d944ce10bdd3d88f7a2da9\",\n    \"billing_address\": {\n        \"first_name\": \"Jennifer\",\n        \"last_name\": \"McFly\"\n    },\n    \"card\": {\n        \"name_on_card\": \"Jennifer McFly\",\n        \"last_4_account_number\": \"1111\",\n        \"masked_account_number\": \"****1111\",\n        \"expire_month\": 12,\n        \"expire_year\": 2017,\n        \"card_type\": \"visa\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"TEST APPROVAL\",\n        \"authorization_code\": \"123456\",\n        \"avs_result\": \"Y\",\n        \"cvv_result\": \"M\"\n    }\n}"}],"_postman_id":"8c91834a-e137-4d5c-9e83-540ffbec208c"},{"name":"Authorize Transaction","id":"c85a4b79-fc5c-4543-920e-891818a91014","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"authorization_amount\": 102.45,\r\n    \"subtotal_amount\": 99.95,\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  },\r\n  \"card\":{\r\n     \"card_type\": \"visa\",\r\n     \"name_on_card\": \"Jennifer McFly\",\r\n     \"account_number\": \"4111111111111111\",\r\n     \"expire_month\": \"12\",\r\n     \"expire_year\": \"2030\",\r\n     \"card_verification_value\":\"123\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/authorize","description":"<p>An authorization validates funds and occurs at the time of the transaction--such as when a card is swiped at a point-of-sale terminal. In a matter of seconds, a request is sent on behalf of the merchant and authorizations are approved or declined by the issuing bank. Authorizations ensure that cardholders have sufficient funds/credit limits available to complete the transaction. Forte supports both full and partial authorizations. Authorizations should be performed when the capture of the funds will be initiated later. If the intent is to authorize the transaction and capture the funds immediately, a sale transaction should be sent instead of authorization and capture.</p>\n<p>This URI creates an authorize transaction by appending the <code>authorize</code> action to the end of the URI. You can also create an authorize transaction by including the <code>\"action\"=\"authorize\"</code> parameter in the body of a request to the <code>/organizations/{organization_id}/transactions</code> URI.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions","authorize"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"61794803-c4c5-4259-8acc-db8683d36f14","name":"Authorize Transaction","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"authorization_amount\": 102.45,\r\n    \"subtotal_amount\": 99.95,\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  },\r\n  \"card\":{\r\n     \"card_type\": \"visa\",\r\n     \"name_on_card\": \"Jennifer McFly\",\r\n     \"account_number\": \"4111111111111111\",\r\n     \"expire_month\": \"12\",\r\n     \"expire_year\": \"2030\",\r\n     \"card_verification_value\":\"123\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/authorize"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"close","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Encoding","value":"gzip","description":"The type of encoding used on the data.","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Wed, 13 Dec 2017 21:13:50 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"Microsoft-IIS/8.5","description":"A name for the server","enabled":true},{"key":"Transfer-Encoding","value":"chunked","description":"The form of encoding used to safely transfer the entity to the user. Currently defined methods are: chunked, compress, deflate, gzip, identity.","enabled":true},{"key":"X-AspNet-Version","value":"4.0.30319","description":"Custom header","enabled":true},{"key":"X-CDN","value":"Incapsula","description":"Custom header","enabled":true},{"key":"X-Iinfo","value":"7-17380022-17380036 NNNN CT(0 0 0) RT(1513199629816 57) q(0 0 0 -1) r(4 4) U6","description":"Custom header","enabled":true},{"key":"X-Powered-By","value":"ASP.NET","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)","enabled":true}],"cookie":[{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"zc1JQDv3SsqdxPTgM0OnpjEoKFoAAAAAQUIPAAAAAAC5r9SJNQaR/XxRjTJMvNk3","key":"visid_incap_621087"},{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"h3p1CD8cLSwx1TsMcEK08gAAAAAGVeR1GOrif/KFGDOmYvpy","key":"nlbi_621087"},{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"u51tCE7hgWTftOngK5STCPyXMVoAAAAADsqxUkRyCIIXEbddYyaxLw==","key":"incap_ses_618_621087"},{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"Gu1jkb4nQBeXljXOnARN0tqXMVoAAAAAQUIPAAAAAACR/yf5rDPX4eBxRqMSjpKM","key":"visid_incap_636562"},{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"oeBFOLal2lWLA8OP4JROuQAAAAAmzXTV18/4zlgbxvz0Uqg5","key":"nlbi_636562"},{"expires":"Invalid Date","httpOnly":false,"domain":"forte.net","path":"/","secure":false,"value":"3RwFf9Xwc2iuzXlwfaYlB9uXMVoAAAAAJyK+QWvNEmykCOym8SbxeQ==","key":"incap_ses_515_636562"}],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_72653a06-3c32-4d82-8a70-9513bdc15aef\",\n    \"location_id\": \"loc_192642\",\n    \"action\": \"authorize\",\n    \"authorization_amount\": 102.45,\n    \"entered_by\": \"4fefaf5f77d944ce10bdd3d88f7a2da9\",\n    \"billing_address\": {\n        \"first_name\": \"Jennifer\",\n        \"last_name\": \"McFly\"\n    },\n    \"card\": {\n        \"name_on_card\": \"Jennifer McFly\",\n        \"last_4_account_number\": \"1111\",\n        \"masked_account_number\": \"****1111\",\n        \"expire_month\": 12,\n        \"expire_year\": 2030,\n        \"card_type\": \"visa\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"APPROVAL\",\n        \"authorization_code\": \"123456\",\n        \"avs_result\": \"Y\",\n        \"cvv_result\": \"M\"\n    }\n}"}],"_postman_id":"c85a4b79-fc5c-4543-920e-891818a91014"},{"name":"Forte Validate Plus+ Transaction","id":"88dd2e72-c00b-4546-9caa-5268ae361a28","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"authorization_amount\": 1.00,\r\n    \"order_number\": \"7775553\",\r\n    \"echeck\": {\r\n        \"routing_number\": \"021000021\",\r\n        \"account_number\": \"0001112212\"\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/verify","description":"<p><strong>NOTE</strong>: Forte Validate/Validate plus requires a subscription...</p>\n<p>Forte Validate/Validate plus is a service that automatically performs pre-authorization checks on EFT account numbers to ensure the account is valid and in good standing. This URI creates a <a href=\"https://developers.forte.net/bank-account-verification/#Validate+\">Validate/Validate plus </a> transaction by appending the <code>verify</code> action to the end of the URI. You can also create a Forte Verify transaction by including the <code>\"action\"=\"verify\"</code> parameter in the body of a request to the <code>/organizations/{organization_id}/transactions</code> URI.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions","verify"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"2057ceec-f25c-4109-acca-c1c049a7ab0a","name":"Create a Forte Verify Transaction - Negative Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"authorization_amount\": 1.00,\r\n    \"order_number\": \"7775553\",\r\n    \"echeck\": {\r\n        \"routing_number\": \"021000022\",\r\n        \"account_number\": \"0001112215\"\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/verify"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 15:12:57 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"9-58723509-58723515 SNNN RT(1508512352886 24090) q(0 0 0 -1) r(4 4) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n  \"transaction_id\": \"trn_6b0b58df-1471-4edf-85d5-61d33dc846e4\",\n  \"location_id\": \"loc_124125\",\n  \"order_number\": \"7775553\",\n  \"action\": \"verify\",\n  \"authorization_amount\": 1,\n  \"entered_by\": \"3c28bbf362bf661820ea102642c7a9d6\",\n  \"echeck\": {\n    \"masked_account_number\": \"****2215\",\n    \"last_4_account_number\": \"2215\",\n    \"routing_number\": \"021000022\",\n    \"issuer_bank\": \"JPMORGAN CHASE BANK, NA\"\n  \n  },\n  \"response\": {\n    \"environment\": \"live\",\n    \"response_type\": \"D\",\n    \"response_code\": \"U80\",\n    \"response_desc\": \"PREAUTH DECLINE\",\n    \"preauth_result\": \"NEG\",\n    \"preauth_desc\": \"P15:HIGH RISK\"\n  },\n  \"links\": {\n    \"disputes\": \"https://api.forte.net/v3/transactions/trn_6b0b58df-1471-4edf-85d5-61d33dc846e4/disputes\",\n    \"settlements\": \"https://api.forte.net/v3/transactions/trn_6b0b58df-1471-4edf-85d5-61d33dc846e4/settlements\",\n    \"self\": \"https://api.forte.net/v3/transactions/trn_6b0b58df-1471-4edf-85d5-61d33dc846e4/\"\n  }\n}"},{"id":"0b1394b7-4426-46b1-8f62-e091636de6dc","name":"Create a Forte Verify Transaction - Positive Response","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"authorization_amount\": 1.00,\r\n    \"order_number\": \"7775553\",\r\n    \"echeck\": {\r\n        \"routing_number\": \"021000021\",\r\n        \"account_number\": \"0001112212\"\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/verify"},"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true,"type":"text"},{"key":"cache-control","value":"no-cache","description":"","enabled":true,"type":"text"},{"key":"connection","value":"keep-alive","description":"","enabled":true,"type":"text"},{"key":"Content-Type","value":"application/json","description":"","enabled":true,"type":"text"},{"key":"date","value":"Fri, 20 Oct 2020 15:12:57 GMT","description":"","enabled":true,"type":"text"},{"key":"expires","value":"-1","description":"","enabled":true,"type":"text"},{"key":"pragma","value":"no-cache","description":"","enabled":true,"type":"text"},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true,"type":"text"},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true,"type":"text"},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true,"type":"text"},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true,"type":"text"},{"key":"x-iinfo","value":"9-58723509-58723515 SNNN RT(1508512352886 24090) q(0 0 0 -1) r(4 4) U6","description":"","enabled":true,"type":"text"},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true,"type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"transaction_id\": \"trn_bcb5c7d9-97f6-488a-8352-c36607647663\",\n  \"location_id\": \"loc_124125\",\n  \"order_number\": \"7775553\",\n  \"action\": \"verify\",\n  \"authorization_amount\": \"1.00\",\n  \"authorization_code\": \"64813952\",\n  \"entered_by\": \"3c28bbf362bf661820ea102642c7a9d6\",\n  \"echeck\": {\n    \"masked_account_number\": \"****2212\",\n    \"last_4_account_number\": \"2212\",\n    \"routing_number\": \"021000021\",\n    \"issuer_bank\": \"JPMORGAN CHASE BANK, NA\"\n  },\n  \"response\": {\n    \"environment\": \"live\",\n    \"response_type\": \"A\",\n    \"response_code\": \"A01\",\n    \"response_desc\": \"APPROVED\",\n    \"authorization_code\": \"64813952\",\n    \"preauth_result\": \"POS\",\n    \"preauth_desc\": \"P70:VALIDATED\"\n  },\n  \"links\": {\n    \"disputes\": \"https://api.forte.net/v3/transactions/trn_bcb5c7d9-97f6-488a-8352-c36607647663/disputes\",\n    \"settlements\": \"https://api.forte.net/v3/transactions/trn_bcb5c7d9-97f6-488a-8352-c36607647663/settlements\",\n    \"self\": \"https://api.forte.net/v3/transactions/trn_bcb5c7d9-97f6-488a-8352-c36607647663/\"\n  }\n}"}],"_postman_id":"88dd2e72-c00b-4546-9caa-5268ae361a28"},{"name":"Authenticate Transaction","id":"c1bdc4e9-d32e-4554-85a3-1079fbd7331c","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n   \"action\":\"authenticate\",\r\n   \"authorization_amount\": \"1.00\",\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\"\r\n  },\r\n  \"echeck\":{\r\n     \"account_number\": \"91222160453\",\r\n     \"routing_number\": \"122199983\",\r\n     \"account_type\":\"checking\"\r\n  }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/authenticate","description":"<p><strong>IMPORTANT:</strong> Authenticate requires a subscription.</p>\n<p>Authenticate is a service that will verify the ownership of bank accounts. This service will verify if the given person/business (identified by the First &amp; Last name or Business Name) is the owner of a given bank account. This URL creates an Authenticate transaction by appending the <code>authenticate</code> action to the end of the URL. You can also create an Authenticate transaction by including the <code>\"action\"=\"authenticate\"</code> parameter in the body of a request to the <code>/organizations/{organization_id}/transactions</code> URL.</p>\n<p><strong>NOTE:</strong> In the Sandbox environment, you can use the test account numbers referenced in \"Appendix C\" of the <a href=\"https://developers.forte.net/wp-content/uploads/2026/02/agi_integration_guide_3.32.pdf\">AGI Integration Guide</a> to force specific responses.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions","authenticate"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"ec6ee1c6-27a7-45b2-bfa5-601264296d84","name":"Example request + response (positive)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"authenticate\",\r\n    \"authorization_amount\":\"1.00\",\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\",\r\n      }\r\n  },\r\n  \"echeck\":{\r\n     \"account_number\": \"91222160453\",\r\n     \"routing_number\": \"122199983\",\r\n     \"account_type\": \"checking\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/authenticate"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_076c9020-3b24-4ede-ad0a-4080177a991a\",\n    \"location_id\": \"loc_224805\",\n    \"action\": \"authenticate\",\n    \"authorization_amount\": 1.00,\n    \"entered_by\": \"5ac9543ed4e892bb3da595e7192c9fd6\",\n    \"billing_address\": {\n        \"first_name\": \"Jennifer\",\n        \"last_name\": \"McFly\"\n    },\n    \"echeck\": {\n        \"masked_account_number\": \"****0453\",\n        \"last_4_account_number\": \"0453\",\n        \"routing_number\": \"122199983\",\n        \"account_type\": \"checking\",\n        \"issuer_bank\": \"LIBERTY BANK\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"M\",\n        \"response_code\": \"A05\",\n        \"response_desc\": \"FIRST & LAST NAME  MATCH\",\n        \"preauth_result\": \"POS\",\n        \"preauth_desc\": \"MATCH\",\n        \"ownership_match\": \"Y|Y|Y|\"\n    },\n    \"links\": {\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_076c9020-3b24-4ede-ad0a-4080177a991a/disputes\",\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_076c9020-3b24-4ede-ad0a-4080177a991a/settlements\",\n        \"self\": \"https://api.forte.net/v3/transactions/trn_076c9020-3b24-4ede-ad0a-4080177a991a/\"\n    }\n}"},{"id":"66f98b6d-6bbd-46dd-8675-909be274ecb3","name":"Example request + response (conditional)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"authenticate\",\r\n    \"authorization_amount\":\"1.00\",\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\",\r\n      }\r\n  },\r\n  \"echeck\":{\r\n     \"account_number\": \"91222160453\",\r\n     \"routing_number\": \"122199983\",\r\n     \"account_type\": \"checking\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/authenticate"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_8457ae1c-77fa-408f-b7ab-4fe33960e959\",\n    \"location_id\": \"loc_224805\",\n    \"action\": \"authenticate\",\n    \"authorization_amount\": 1.00,\n    \"entered_by\": \"5ac9543ed4e892bb3da595e7192c9fd6\",\n    \"billing_address\": {\n        \"first_name\": \"Marty\",\n        \"last_name\": \"McFly\"\n    },\n    \"echeck\": {\n        \"masked_account_number\": \"****0453\",\n        \"last_4_account_number\": \"0453\",\n        \"routing_number\": \"122199983\",\n        \"account_type\": \"checking\",\n        \"issuer_bank\": \"LIBERTY BANK\"\n\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"P\",\n        \"response_code\": \"A06\",\n        \"response_desc\": \"PARTIAL MATCH\",\n        \"preauth_result\": \"CON\",\n        \"preauth_desc\": \"CONDITIONAL MATCH\",\n        \"ownership_match\": \"N|Y|N|\"\n    },\n    \"links\": {\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_8457ae1c-77fa-408f-b7ab-4fe33960e959/disputes\",\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_8457ae1c-77fa-408f-b7ab-4fe33960e959/settlements\",\n        \"self\": \"https://api.forte.net/v3/transactions/trn_8457ae1c-77fa-408f-b7ab-4fe33960e959/\"\n    }\n}\n"},{"id":"1048c89f-5653-4045-b450-1af4c0fc6341","name":"Example request + response (negative)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"action\":\"authenticate\",\r\n    \"authorization_amount\":\"1.00\",\r\n    \"billing_address\":{\r\n     \"first_name\": \"Jennifer\",\r\n     \"last_name\": \"McFly\",\r\n      }\r\n  },\r\n  \"echeck\":{\r\n     \"account_number\": \"91222160453\",\r\n     \"routing_number\": \"122199983\",\r\n     \"account_type\": \"checking\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/authenticate"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"transaction_id\": \"trn_d1be4659-ab1e-476b-82c4-000a1f2afc2c\",\n  \"location_id\": \"loc_224805\",\n  \"action\": \"authenticate\",\n  \"authorization_amount\": 1,\n  \"entered_by\": \"5ac9543ed4e892bb3da595e7192c9fd6\",\n  \"billing_address\": {\n    \"first_name\": \"Marty\",\n    \"last_name\": \"Brown\",\n    \"company_name\": \"Brown Associates\"\n  },\n  \"echeck\": {\n    \"masked_account_number\": \"****0453\",\n    \"last_4_account_number\": \"0453\",\n    \"routing_number\": \"122199983\",\n    \"account_type\": \"checking\",\n    \"issuer_bank\": \"LIBERTY BANK\"\n  },\n  \"response\": {\n    \"environment\": \"live\",\n    \"response_type\": \"N\",\n    \"response_code\": \"U80\",\n    \"response_desc\": \"NO MATCH\",\n    \"preauth_result\": \"NEG\",\n    \"preauth_desc\": \"NO MATCH\",\n    \"ownership_match\": \"N|N|N|N\"\n  },\n  \"links\": {\n    \"disputes\": \"https://api.forte.net/v3/transactions/trn_d1be4659-ab1e-476b-82c4-000a1f2afc2c/disputes\",\n    \"settlements\": \"https://api.forte.net/v3/transactions/trn_d1be4659-ab1e-476b-82c4-000a1f2afc2c/settlements\",\n    \"self\": \"https://api.forte.net/v3/transactions/trn_d1be4659-ab1e-476b-82c4-000a1f2afc2c/\"\n  }\n}"}],"_postman_id":"c1bdc4e9-d32e-4554-85a3-1079fbd7331c"},{"name":"Force Transaction","id":"02de9f0b-d648-4905-8a23-e2909db505e6","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"authorization_amount\":1.00,\r\n       \"authorization_code\":\"123456\",\r\n       \"billing_address\":{\r\n          \"first_name\":\"Emmett\",\r\n          \"last_name\":\"Brown\",\r\n          \"physical_address\":{\r\n             \"street_line1\":\"2123 Einstein Way\",\r\n             \"street_line2\":\"Suite 200\",\r\n             \"locality\":\"Hill Valley\",\r\n             \"region\":\"CA\",\r\n             \"country\": \"US\",\r\n             \"postal_code\":\"90217\"\r\n         }\r\n      },\r\n      \"card\":{\r\n         \"card_type\":\"visa\",\r\n         \"name_on_card\":\"Emmett Brown\",\r\n         \"account_number\":\"4012888888881881\",\r\n         \"expire_month\":02,\r\n         \"expire_year\":2030,\r\n         \"customer_accounting_code\":\"123\"\r\n     }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/force","description":"<p>A force transaction captures the funds of an echeck transaction by bypassing verification or authorization functionality. Merchants should verify or authorize force operations prior to performing them. This URI creates a <code>force</code> transaction by appending the <code>force</code> action to the end of the URI. You can also create a <code>force</code> transaction by including the <code>\"action\"=\"force\"</code> parameter in the body of a request to the /organizations/{organization_id}/transactions URI.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions","force"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"c63e2275-5188-4a33-8be1-ef6ae11770db","name":"Create a Force Transaction","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"authorization_amount\":1.00,\r\n       \"authorization_code\":\"123456\",\r\n       \"billing_address\":{\r\n          \"first_name\":\"Emmett\",\r\n          \"last_name\":\"Brown\",\r\n          \"physical_address\":{\r\n             \"street_line1\":\"2123 Einstein Way\",\r\n             \"street_line2\":\"Suite 200\",\r\n             \"locality\":\"Hill Valley\",\r\n             \"region\":\"CA\",\r\n             \"postal_code\":\"90217\"\r\n         }\r\n      },\r\n      \"card\":{\r\n         \"card_type\":\"visa\",\r\n         \"name_on_card\":\"Emmett Brown\",\r\n         \"account_number\":\"4012888888881881\",\r\n         \"expire_month\":02,\r\n         \"expire_year\":2030,\r\n         \"customer_accounting_code\":\"123\"\r\n     }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/force"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 15:21:48 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"7-48791103-48826173 NNNN CT(39 44 0) RT(1508512703858 204342) q(0 0 0 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_7ac51dbc-e163-4bc1-8873-c696463777e4\",\n    \"location_id\": \"loc_192642\",\n    \"action\": \"force\",\n    \"authorization_amount\": 1,\n    \"authorization_code\": \"123456\",\n    \"entered_by\": \"4fefaf5f77d944ce10bdd3d88f7a2da9\",\n    \"billing_address\": {\n        \"first_name\": \"Emmett\",\n        \"last_name\": \"Brown\",\n        \"physical_address\": {\n            \"street_line1\": \"2123 Einstein Way\",\n            \"street_line2\": \"Suite 200\",\n            \"locality\": \"Hill Valley\",\n            \"region\": \"CA\",\n            \"country\": \"US\",\n            \"postal_code\": \"90217\"\n        }\n    },\n    \"card\": {\n        \"name_on_card\": \"Emmett Brown\",\n        \"last_4_account_number\": \"1881\",\n        \"masked_account_number\": \"****1881\",\n        \"customer_accounting_code\": \"123\",\n        \"card_type\": \"visa\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"TEST APPROVAL\",\n        \"authorization_code\": \"123456\"\n    }\n}"}],"_postman_id":"02de9f0b-d648-4905-8a23-e2909db505e6"},{"name":"Transaction from a One-Time Token","id":"0f55ae0b-d6ec-43a2-b011-857325b7f728","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"action\":\"sale\", \r\n       \"authorization_amount\":1.00,\r\n       \"billing_address\":{\r\n          \"first_name\":\"Emmett\",\r\n          \"last_name\":\"Brown\"\r\n       },\r\n       \"card\":{\r\n          \"one_time_token\":\"ott_tq0hemmmtf-zsxgp689rew\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>One-time tokens require a <a href=\"https://developers.forte.net/forte-js/\">Forte.js</a> integration. Forte.js is a script you can add to your payment form that sends sensitive payment data to Forte (instead of the directly to your server) in return for a one-time token. This one-time token keeps sensitive data safe and reduces your Payment Card Industry Data Security Standard (PCI-DSS) obligations and scope. One-time tokens expire after 60 minutes.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"d29fd729-8935-4bd6-a84a-e18316468fae","name":"Create a Transaction from a One-Time Token","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"action\":\"sale\", \r\n       \"authorization_amount\":1.00,\r\n       \"billing_address\":{\r\n          \"first_name\":\"Emmett\",\r\n          \"last_name\":\"Brown\"\r\n       },\r\n       \"card\":{\r\n          \"one_time_token\":\"ott_tq0hemmmtf-zsxgp689rew\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.forte.net/v3/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Thu, 19 Oct 2017 20:57:03 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"5-45712770-45758035 NNNN CT(39 38 0) RT(1508446375000 247779) q(0 0 1 -1) r(8 8) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_4aa187d1-330a-4993-96a0-3d83f321c5d4\",\n    \"location_id\": \"loc_192642\",\n    \"action\": \"sale\",\n    \"authorization_amount\": 1,\n    \"entered_by\": \"4fefaf5f77d944ce10bdd3d88f7a2da9\",\n    \"billing_address\": {\n        \"first_name\": \"Emmett\",\n        \"last_name\": \"Brown\"\n    },\n    \"card\": {\n        \"one_time_token\": \"ott_tq0hemmmtf-zsxgp689rew\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"APPROVED\"\n    }\n}"}],"_postman_id":"0f55ae0b-d6ec-43a2-b011-857325b7f728"},{"name":"Transaction with Line Items","id":"7720bf3d-e4fd-40cf-bbba-3c8db6344f9d","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"action\":\"sale\",\r\n       \"authorization_amount\": 109.49,\r\n       \"billing_address\":{\r\n          \"first_name\": \"Emmett\",\r\n          \"last_name\": \"Brown\"\r\n       },\r\n       \"echeck\":{\r\n          \"sec_code\": \"WEB\",\r\n          \"account_type\": \"Checking\",\r\n          \"routing_number\": \"021000021\",\r\n          \"account_number\": \"000111222\",\r\n          \"account_holder\": \"Emmett Brown\"\r\n       },\r\n       \"line_items\":{\r\n          \"line_item_header\":\"SKU,Price,Qty\",\r\n          \"line_item_1\":\"021000021,45.00,2\",\r\n          \"line_item_2\":\"021000022,36.99,10\",\r\n          \"line_item_3\":\"021000023,27.50,7\"\r\n      }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>Line items require both a <code>line_item_header</code> and a numbered line item field (<code>line_item_1</code>). You can include up to 100 fields of line items (e.g., name, quantity, price, etc.)</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"9afd7b3e-bc05-463d-afcd-cf3e5a11403b","name":"Create a Transaction with Line Items","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"action\":\"sale\",\r\n       \"authorization_amount\": 109.49,\r\n       \"billing_address\":{\r\n          \"first_name\": \"Emmett\",\r\n          \"last_name\": \"Brown\"\r\n       },\r\n       \"echeck\":{\r\n          \"sec_code\": \"WEB\",\r\n          \"account_type\": \"Checking\",\r\n          \"routing_number\": \"021000021\",\r\n          \"account_number\": \"000111222\",\r\n          \"account_holder\": \"Emmett Brown\"\r\n       },\r\n       \"line_items\":{\r\n          \"line_item_header\":\"SKU,Price,Qty\",\r\n          \"line_item_1\":\"021000021,45.00,2\",\r\n          \"line_item_2\":\"021000022,36.99,10\",\r\n          \"line_item_3\":\"021000023,27.50,7\"\r\n      }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-encoding","value":"gzip","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Mon, 04 Dec 2017 21:36:21 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"5-237437060-237446454 NNNN CT(40 32 0) RT(1512423337415 44135) q(0 0 1 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_f9ffe880-c1ae-476e-9885-14584a8734d2\",\n    \"location_id\": \"loc_192642\",\n    \"action\": \"sale\",\n    \"authorization_amount\": 109.49,\n    \"entered_by\": \"4fefaf5f77d944ce10bdd3d88f7a2da9\",\n    \"billing_address\": {\n        \"first_name\": \"Emmett\",\n        \"last_name\": \"Brown\"\n    },\n    \"echeck\": {\n        \"account_holder\": \"Emmett Brown\",\n        \"masked_account_number\": \"****1222\",\n        \"last_4_account_number\": \"1222\",\n        \"routing_number\": \"021000021\",\n        \"account_type\": \"checking\",\n        \"sec_code\": \"WEB\"\n    },\n    \"line_items\": {\n        \"line_item_header\": \"SKU,Price,Qty\",\n        \"line_item_1\": \"021000021,45.00,2\",\n        \"line_item_2\": \"021000022,36.99,10\",\n        \"line_item_3\": \"021000023,27.50,7\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"APPROVED\",\n        \"authorization_code\": \"18079003\",\n        \"preauth_result\": \"POS\",\n        \"preauth_desc\": \"P70:VALIDATED\"\n    }\n}"}],"_postman_id":"7720bf3d-e4fd-40cf-bbba-3c8db6344f9d"},{"name":"Transaction with XDATA","id":"f1d89af3-5f88-4cf8-96b6-a6dbf088ec68","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"action\":\"sale\",\r\n       \"customer_token\":\"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n       \"paymethod_token\":\"mth_cp459q53Q0W5wJdMG35f1w\",\r\n       \"reference_id\": \"000159\",\r\n       \"authorization_amount\": 1.00,\r\n       \"entered_by\":\"Griff Tannen\",\r\n       \"sales_tax_amount\": 0.25,\r\n       \"xdata\":{\r\n          \"xdata_1\":\"Branch 00189\",\r\n          \"xdata_2\":\"Hill Valley, CA\",\r\n          \"xdata_3\":\"Region WEST\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>You can include up to nine <code>xdata</code> fields. Each field can contain up to 80 characters. <strong>NOTE</strong>: Values within this field cannot contain double quotation characters (i.e., \"text\"); Forte supports single quotation characters (i.e., 'text'). If you require double quotation characters within this value, use HTML escape characters to ensure the information properly displays (e.g., <code>xdata_1=\"Marco's &amp;#147;Place&amp;#148;\"</code>).</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"43e51966-62d1-4401-b0d5-565e799e357f","name":"Create Token Transactions with XDATA","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"action\":\"sale\",\r\n       \"customer_token\":\"cst_h_TrrHANEU6XjmMV_EMVrA\",\r\n       \"paymethod_token\":\"mth_cp459q53Q0W5wJdMG35f1w\",\r\n       \"reference_id\": \"000159\",\r\n       \"authorization_amount\": 1.00,\r\n       \"entered_by\":\"Griff Tannen\",\r\n       \"sales_tax_amount\": 0.25,\r\n       \"xdata\":{\r\n          \"xdata_1\":\"Branch 00189\",\r\n          \"xdata_2\":\"Hill Valley, CA\",\r\n          \"xdata_3\":\"Region WEST\"\r\n       }\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Thu, 19 Oct 2017 21:06:48 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"6-35236171-35258441 NNNN CT(47 41 0) RT(1508447066543 141432) q(0 0 1 -1) r(6 6) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_d7e58292-8471-4c81-b7db-09fe3dd4efd8\",\n    \"location_id\": \"loc_192642\",\n    \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n    \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\",\n    \"reference_id\": \"000159\",\n    \"action\": \"sale\",\n    \"authorization_amount\": 1,\n    \"sales_tax_amount\": 0.25,\n    \"entered_by\": \"Griff Tannen\",\n    \"xdata\": {\n        \"xdata_1\": \"Branch 00189\",\n        \"xdata_2\": \"Hill Valley, CA\",\n        \"xdata_3\": \"Region WEST\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"TEST APPROVAL\",\n        \"authorization_code\": \"123456\",\n        \"avs_result\": \"Y\",\n        \"cvv_result\": \"M\",\n        \"customer_token\": \"cst_h_TrrHANEU6XjmMV_EMVrA\",\n        \"paymethod_token\": \"mth_cp459q53Q0W5wJdMG35f1w\"\n    }\n}"}],"_postman_id":"f1d89af3-5f88-4cf8-96b6-a6dbf088ec68"},{"name":"Fully Refund a Transaction","id":"d4464d96-0b8c-4e01-9133-a47a37bb1d3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"action\":\"reverse\",\r\n       \"authorization_amount\":104.95,\r\n       \"original_transaction_id\":\"trn_eb28a71e-377c-41a2-89de-bfa7bd47ecd2\",\r\n       \"authorization_code\":\"9ZQ754\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>A reverse (i.e., refund) takes the original charge from a billing account and retracts it (e.g., reversed sales will have a disbursement or credit performed). Forte supports both full and partial reversals. Reversals can be performed on sale, auth, and force (echeck) transactions that have been settled (credit cards) or funded (echecks). Including the <code>reverse</code> action in the body of your request automatically generates a <a href=\"https://restdocs.forte.net/#106b7ecb-60e1-4134-a52c-40236788d3a8\">credit</a> transaction. The <code>original_transaction_id</code> and the <code>authorization_code</code> must also be included in the body of the request.</p>\n<p><strong>Note:</strong> When refunding a transaction with surcharge , need to pass the surcharge amount in the refund request for a full refund.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"8a197356-5a85-456b-b386-13b21493e566","name":"Fully Refund a Transaction","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"curl --location -g 'https://api.forte.net/v3/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions' \\\r\n--header 'Authorization: {{Authorization}}' \\\r\n--header 'Accept: application/json' \\\r\n--header 'X-Forte-Auth-Organization-Id: org_{{AuthOrganizationID}}' \\\r\n--header 'Content-Type: application/json' \\\r\n--data '{\r\n       \"action\":\"reverse\",\r\n       \"authorization_amount\":104.95,\r\n       \"original_transaction_id\":\"trn_05169f58-241f-45b0-a335-3569d4a4e13e\",\r\n       \"authorization_code\":\"123456\"\r\n}'","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Thu, 19 Oct 2017 21:08:47 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"6-35236171-35276006 NNNN CT(63 43 0) RT(1508447066543 260517) q(0 0 1 -1) r(5 5) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n  \"transaction_id\": \"trn_5354c405-f9bb-4d72-a7b1-7befdce75270\",\n  \"location_id\": \"loc_192642\",\n  \"original_transaction_id\": \"trn_05169f58-241f-45b0-a335-3569d4a4e13e\",\n  \"action\": \"credit\",\n  \"authorization_amount\": 104.95,\n  \"authorization_code\": \"123456\",\n  \"entered_by\": \"4fefaf5f77d944ce10bdd3d88f7a2da9\",\n  \"billing_address\": {\n    \"first_name\": \"Jennifer\",\n    \"last_name\": \"McFly\"\n  },\n  \"response\": {\n    \"environment\": \"live\",\n    \"response_type\": \"A\",\n    \"response_code\": \"A01\",\n    \"response_desc\": \"TEST APPROVAL\",\n    \"authorization_code\": \"123456\",\n    \"avs_result\": \"Y\",\n    \"cvv_result\": \"M\"\n  }\n}"},{"id":"3becef4f-5383-4d34-9acd-b293fbee44a7","name":"Fully Refund a Transaction with Surcharge","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"action\": \"reverse\",\r\n    \"authorization_amount\": 105.00,\r\n    \"subtotal_amount\": 100.00,\r\n    \"surcharge_fee_amount\": 5.00,\r\n    \"original_transaction_id\": \"trn_90bae611-fbaa-4424-a284-3f993ff4ef63\",\r\n    \"authorization_code\": \"993963\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Thu, 19 Oct 2017 21:08:47 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"transfer-encoding","value":"chunked","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"6-35236171-35276006 NNNN CT(63 43 0) RT(1508447066543 260517) q(0 0 1 -1) r(5 5) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_f786965e-7fbf-4950-b815-db3c3eba16cd\",\n    \"location_id\": \"loc_115161\",\n    \"original_transaction_id\": \"trn_90bae611-fbaa-4424-a284-3f993ff4ef63\",\n    \"action\": \"credit\",\n    \"authorization_amount\": 105.00,\n    \"subtotal_amount\": 100.00,\n    \"authorization_code\": \"993966\",\n    \"entered_by\": \"8dbd1adc927b5d85b3a745a2c334fc12\",\n    \"billing_address\": {\n        \"first_name\": \"Jennifer\",\n        \"last_name\": \"McFly\"\n    },\n    \"surcharge_fee_amount\": 5.00,\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"APPROVED\",\n        \"authorization_code\": \"993966\",\n        \"avs_result\": \"Y\",\n        \"cvv_result\": \"M\"\n    },\n    \"links\": {\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_f786965e-7fbf-4950-b815-db3c3eba16cd/disputes\",\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_f786965e-7fbf-4950-b815-db3c3eba16cd/settlements\",\n        \"self\": \"https://api.forte.net/v3/transactions/trn_f786965e-7fbf-4950-b815-db3c3eba16cd/\"\n    }\n}"}],"_postman_id":"d4464d96-0b8c-4e01-9133-a47a37bb1d3c"},{"name":"Partially Refund a Transaction","id":"210387dc-51ee-42be-b8df-f54537daa731","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n       \"action\":\"reverse\",\r\n       \"authorization_amount\":50.00,\r\n       \"original_transaction_id\":\"trn_eb28a71e-377c-41a2-89de-bfa7bd47ecd2\",\r\n       \"authorization_code\":\"9ZQ754\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>A reverse (i.e., refund) takes the original charge from a billing account and retracts it (e.g., reversed sales will have a disbursement or credit performed). Forte supports both full and partial reversals. Reverses can be performed on sale, auth, and force (echeck) transactions that have been settled (credit cards) or funded (echecks). Including the <code>reverse</code> action in the body of your request automatically generates a <a href=\"https://restdocs.forte.net/#106b7ecb-60e1-4134-a52c-40236788d3a8\">credit</a> transaction. The <code>original_transaction_id</code> and the <code>authorization_code</code> must also be included in the body of the request.</p>\n<p><strong>Note:</strong> When partially refunding a transaction, need to pass surcharge amount that is proportional to the amount that is being refunded.</p>\n<p>Example:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Action</strong></th>\n<th><strong>subtotal_amount</strong></th>\n<th><strong>surcharge_fee_amount</strong></th>\n<th><strong>authorization_amount</strong></th>\n<th><strong>response</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Sale</td>\n<td>100</td>\n<td>2</td>\n<td>102</td>\n<td>APPROVED</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Action</strong></th>\n<th><strong>authorization_amount</strong></th>\n<th><strong>surcharge_fee_amount</strong></th>\n<th><strong>response</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Refund</td>\n<td>25.5</td>\n<td>0.5</td>\n<td>APPROVED</td>\n</tr>\n</tbody>\n</table>\n</div><p>In the example above:</p>\n<ul>\n<li><p>The refund amount is 25% of the subtotal_amount from the original sale transaction.</p>\n</li>\n<li><p>Therefore, the surcharge_fee_amount on the refund request should be 25% (i.e., $ 0.5) of the surcharge fee amount on the original transaction.<br />  <strong>NOTE:</strong> The surcharge_fee_amount is proportional to the subtotal_amount that is being refunded.</p>\n</li>\n</ul>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"175b4a5a-a75e-4793-af43-7392d3184c6c","name":"Partially Refund a Transaction","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"curl --location -g '{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions' \\\r\n--header 'Authorization: {{Authorization}}' \\\r\n--header 'Accept: application/json' \\\r\n--header 'X-Forte-Auth-Organization-Id: org_{{AuthOrganizationID}}' \\\r\n--header 'Content-Type: application/json' \\\r\n--data '{\r\n       \"action\":\"reverse\",\r\n       \"authorization_amount\":50.00,\r\n       \"original_transaction_id\":\"trn_eb28a71e-377c-41a2-89de-bfa7bd47ecd2\",\r\n       \"authorization_code\":\"9ZQ754\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 Feb 2021 19:21:40 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"858","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n  \"transaction_id\": \"trn_62a776c7-d7d3-48aa-a5d3-873d0773ad24\",\n  \"location_id\": \"loc_124125\",\n  \"original_transaction_id\": \"trn_eb28a71e-377c-41a2-89de-bfa7bd47ecd2\",\n  \"action\": \"credit\",\n  \"authorization_amount\": 50,\n  \"authorization_code\": \"2SB997\",\n  \"entered_by\": \"9b26093587d09d0f1a847083b2e605c1\",\n  \"billing_address\": {\n    \"first_name\": \"Jennifer\",\n    \"last_name\": \"McFly\"\n  },\n  \"response\": {\n    \"environment\": \"live\",\n    \"response_type\": \"A\",\n    \"response_code\": \"A01\",\n    \"response_desc\": \"TEST APPROVAL\",\n    \"authorization_code\": \"2SB997\",\n    \"avs_result\": \"Y\",\n    \"cvv_result\": \"M\"\n  },\n  \"links\": {\n    \"disputes\": \"https://api.forte.net/v3/transactions/trn_62a776c7-d7d3-48aa-a5d3-873d0773ad24/disputes\",\n    \"settlements\": \"https://api.forte.net/v3/transactions/trn_62a776c7-d7d3-48aa-a5d3-873d0773ad24/settlements\",\n    \"self\": \"https://api.forte.net/v3/transactions/trn_62a776c7-d7d3-48aa-a5d3-873d0773ad24/\"\n  }\n}"},{"id":"b8444445-ef0b-4f47-9515-b9d7d1410e96","name":"Partially Refund a Transaction with Surcharge","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"action\": \"reverse\",\r\n    \"authorization_amount\": 25.5,\r\n    \"subtotal_amount\": 25.00,\r\n    \"surcharge_fee_amount\": 0.5,\r\n    \"original_transaction_id\": \"trn_4982e390-c6b8-49d6-b8f9-dcbf1098dd93\",\r\n    \"authorization_code\": \"995935\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 Feb 2021 19:21:40 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"858","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_48d37bc9-29fd-40ad-aa92-282b1a28c24b\",\n    \"location_id\": \"loc_115161\",\n    \"original_transaction_id\": \"trn_4982e390-c6b8-49d6-b8f9-dcbf1098dd93\",\n    \"action\": \"credit\",\n    \"authorization_amount\": 25.50,\n    \"subtotal_amount\": 25.00,\n    \"authorization_code\": \"995979\",\n    \"entered_by\": \"8dbd1adc927b5d85b3a745a2c334fc12\",\n    \"billing_address\": {\n        \"first_name\": \"Jennifer\",\n        \"last_name\": \"McFly\"\n    },\n    \"surcharge_fee_amount\": 0.50,\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"APPROVED\",\n        \"authorization_code\": \"995979\",\n        \"avs_result\": \"Y\",\n        \"cvv_result\": \"M\"\n    },\n    \"links\": {\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_48d37bc9-29fd-40ad-aa92-282b1a28c24b/disputes\",\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_48d37bc9-29fd-40ad-aa92-282b1a28c24b/settlements\",\n        \"self\": \"https://api.forte.net/v3/transactions/trn_48d37bc9-29fd-40ad-aa92-282b1a28c24b/\"\n    }\n}"}],"_postman_id":"210387dc-51ee-42be-b8df-f54537daa731"},{"name":"All Transactions","id":"7109b8d7-0c28-4223-b015-01a28544b922","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/","description":"<p>This URI returns all transactions for a <a href=\"https://restdocs.forte.net/#step-1-sign-up-for-a-test-account\">location</a>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"25294ff5-91b6-4308-9dc9-07a0839228bf","name":"All Transactions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"41850","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 14:52:33 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 3,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_300005\",\n        \"resource_specific\": {\n            \"location_id\": \"loc_115161\",\n            \"start_received_date\": \"2018-05-05T07:52:32.9895316-07:00\",\n            \"end_received_date\": \"2018-08-03T07:52:32.9895316-07:00\"\n        }\n    },\n    \"results\": [\n        {\n            \"transaction_id\": \"trn_5acbc87c-0277-4f43-8f09-643cefdc131e\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"status\": \"ready\",\n            \"action\": \"sale\",\n            \"authorization_amount\": 3.5,\n            \"authorization_code\": \"123456\",\n            \"entered_by\": \"jayashri.srivelu-nam\",\n            \"received_date\": \"2018-05-30T13:57:32.257\",\n            \"billing_address\": {\n                \"first_name\": \"test\",\n                \"last_name\": \"ach\"\n            },\n            \"card\": {\n                \"last_4_account_number\": \"1111\",\n                \"masked_account_number\": \"****1111\",\n                \"card_type\": \"visa\"\n            },\n            \"response\": {\n                \"response_code\": \"A01\",\n                \"authorization_code\": \"123456\"\n            },\n            \"links\": {\n                \"disputes\": \"https://api.forte.net/v3/transactions/trn_5acbc87c-0277-4f43-8f09-643cefdc131e/disputes\",\n                \"settlements\": \"https://api.forte.net/v3/transactions/trn_5acbc87c-0277-4f43-8f09-643cefdc131e/settlements\",\n                \"self\": \"https://api.forte.net/v3/transactions/trn_5acbc87c-0277-4f43-8f09-643cefdc131e\"\n            }\n        },\n        {\n            \"transaction_id\": \"trn_35acd4f0-419f-47d2-a2cd-c8ab2a7722bc\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"status\": \"ready\",\n            \"action\": \"sale\",\n            \"authorization_amount\": 2,\n            \"authorization_code\": \"21334993\",\n            \"entered_by\": \"jayashri.srivelu-nam\",\n            \"received_date\": \"2018-05-30T13:58:15.15\",\n            \"billing_address\": {\n                \"first_name\": \"test\",\n                \"last_name\": \"ach\"\n            },\n            \"echeck\": {\n                \"masked_account_number\": \"****3454\",\n                \"last_4_account_number\": \"3454\"\n            },\n            \"attempt_number\": 1,\n            \"response\": {\n                \"response_code\": \"A01\",\n                \"authorization_code\": \"21334993\"\n            },\n            \"links\": {\n                \"disputes\": \"https://api.forte.net/v3/transactions/trn_35acd4f0-419f-47d2-a2cd-c8ab2a7722bc/disputes\",\n                \"settlements\": \"https://api.forte.net/v3/transactions/trn_35acd4f0-419f-47d2-a2cd-c8ab2a7722bc/settlements\",\n                \"self\": \"https://api.forte.net/v3/transactions/trn_35acd4f0-419f-47d2-a2cd-c8ab2a7722bc\"\n            }\n        },\n        {\n            \"transaction_id\": \"trn_d81e5f47-d899-4d7e-8e3a-398418921385\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"status\": \"ready\",\n            \"action\": \"sale\",\n            \"authorization_amount\": 6.5,\n            \"authorization_code\": \"123456\",\n            \"entered_by\": \"b9f088229ab4989d499e\",\n            \"received_date\": \"2018-05-31T06:28:58.373\",\n            \"billing_address\": {\n                \"company_name\": \"c\"\n            },\n            \"card\": {\n                \"last_4_account_number\": \"0006\",\n                \"masked_account_number\": \"****0006\",\n                \"card_type\": \"visa\"\n            },\n            \"response\": {\n                \"response_code\": \"A01\",\n                \"authorization_code\": \"123456\"\n            },\n            \"links\": {\n                \"disputes\": \"https://api.forte.net/v3/transactions/trn_d81e5f47-d899-4d7e-8e3a-398418921385/disputes\",\n                \"settlements\": \"https://api.forte.net/v3/transactions/trn_d81e5f47-d899-4d7e-8e3a-398418921385/settlements\",\n                \"self\": \"https://api.forte.net/v3/transactions/trn_d81e5f47-d899-4d7e-8e3a-398418921385\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"sandbox\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/transactions/\",\n        \"next\": \"https://api.forte.net/v3/transactions/?page_index=1\"\n    }\n}"}],"_postman_id":"7109b8d7-0c28-4223-b015-01a28544b922"},{"name":"All Sale Transactions","id":"54094063-1add-4bee-abb4-d6093ab7a093","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/sale","description":"<p>This URI returns all <code>sale</code> transactions for a <a href=\"https://restdocs.forte.net/#step-1-sign-up-for-a-test-account\">location</a>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions","sale"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"91da7092-94c5-4861-913d-c97376e39a4b","name":"All Sale Transactions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/sale"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"41888","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 15:04:40 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 3,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_300005\",\n        \"resource_specific\": {\n            \"location_id\": \"loc_115161\",\n            \"action\": \"sale\",\n            \"start_received_date\": \"2018-05-05T08:04:40.4616114-07:00\",\n            \"end_received_date\": \"2018-08-03T08:04:40.4616114-07:00\"\n        }\n    },\n    \"results\": [\n        {\n            \"transaction_id\": \"trn_35acd4f0-419f-47d2-a2cd-c8ab2a7722bc\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"status\": \"ready\",\n            \"action\": \"sale\",\n            \"authorization_amount\": 2,\n            \"authorization_code\": \"21334993\",\n            \"entered_by\": \"jayashri.srivelu-nam\",\n            \"received_date\": \"2018-05-30T13:58:15.15\",\n            \"billing_address\": {\n                \"first_name\": \"test\",\n                \"last_name\": \"ach\"\n            },\n            \"echeck\": {\n                \"masked_account_number\": \"****3454\",\n                \"last_4_account_number\": \"3454\"\n            },\n            \"attempt_number\": 2,\n            \"response\": {\n                \"response_code\": \"A01\",\n                \"authorization_code\": \"21334993\"\n            },\n            \"links\": {\n                \"disputes\": \"https://api.forte.net/v3/transactions/trn_35acd4f0-419f-47d2-a2cd-c8ab2a7722bc/disputes\",\n                \"settlements\": \"https://api.forte.net/v3/transactions/trn_35acd4f0-419f-47d2-a2cd-c8ab2a7722bc/settlements\",\n                \"self\": \"https://api.forte.net/v3/transactions/trn_35acd4f0-419f-47d2-a2cd-c8ab2a7722bc\"\n            }\n        },\n        {\n            \"transaction_id\": \"trn_d81e5f47-d899-4d7e-8e3a-398418921385\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"status\": \"ready\",\n            \"action\": \"sale\",\n            \"authorization_amount\": 6.5,\n            \"authorization_code\": \"123456\",\n            \"entered_by\": \"b9f088229ab4989d499e\",\n            \"received_date\": \"2018-05-31T06:28:58.373\",\n            \"billing_address\": {\n                \"company_name\": \"c\"\n            },\n            \"card\": {\n                \"last_4_account_number\": \"0006\",\n                \"masked_account_number\": \"****0006\",\n                \"card_type\": \"visa\"\n            },\n            \"response\": {\n                \"response_code\": \"A01\",\n                \"authorization_code\": \"123456\"\n            },\n            \"links\": {\n                \"disputes\": \"https://api.forte.net/v3/transactions/trn_d81e5f47-d899-4d7e-8e3a-398418921385/disputes\",\n                \"settlements\": \"https://api.forte.net/v3/transactions/trn_d81e5f47-d899-4d7e-8e3a-398418921385/settlements\",\n                \"self\": \"https://api.forte.net/v3/transactions/trn_d81e5f47-d899-4d7e-8e3a-398418921385\"\n            }\n        },\n        {\n            \"transaction_id\": \"trn_b12547c2-914f-4e92-9914-295f5559a372\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"customer_token\": \"cst_8Wb88FpYRzeCxDVklXZcHQ\",\n            \"status\": \"review\",\n            \"action\": \"sale\",\n            \"authorization_amount\": 2.5,\n            \"entered_by\": \"Scheduled\",\n            \"received_date\": \"2018-06-01T06:53:22.32\",\n            \"billing_address\": {\n                \"company_name\": \"company name\"\n            },\n            \"card\": {\n                \"last_4_account_number\": \"0006\",\n                \"masked_account_number\": \"****0006\",\n                \"card_type\": \"visa\"\n            },\n            \"response\": {\n                \"response_code\": \"U54\"\n            },\n            \"links\": {\n                \"disputes\": \"https://api.forte.net/v3/transactions/trn_b12547c2-914f-4e92-9914-295f5559a372/disputes\",\n                \"settlements\": \"https://api.forte.net/v3/transactions/trn_b12547c2-914f-4e92-9914-295f5559a372/settlements\",\n                \"self\": \"https://api.forte.net/v3/transactions/trn_b12547c2-914f-4e92-9914-295f5559a372\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/transactions/\",\n        \"next\": \"https://api.forte.net/v3/transactions/?page_index=1\"\n    }\n}"}],"_postman_id":"54094063-1add-4bee-abb4-d6093ab7a093"},{"name":"All Credit Transactions","id":"269b3bc7-8755-4b4e-9023-265edb3cd767","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/credit","description":"<p>This URI returns all <code>credit</code> transactions for a <a href=\"https://restdocs.forte.net/#step-1-sign-up-for-a-test-account\">location</a>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions","credit"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"15fea006-621d-492c-acfd-d6a453f76329","name":"All Credit Transactions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{location}}/transactions/credit"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"6183","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 15:11:35 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 2,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_300005\",\n        \"resource_specific\": {\n            \"location_id\": \"loc_115161\",\n            \"action\": \"credit\",\n            \"start_received_date\": \"2018-05-05T08:11:34.8764873-07:00\",\n            \"end_received_date\": \"2018-08-03T08:11:34.8764873-07:00\"\n        }\n    },\n    \"results\": [\n        {\n            \"transaction_id\": \"trn_1560df17-c6f2-4150-8b22-eef951692486\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"status\": \"ready\",\n            \"action\": \"credit\",\n            \"authorization_amount\": 2,\n            \"authorization_code\": \"22415004\",\n            \"entered_by\": \"david.ayodele@forte\",\n            \"received_date\": \"2018-07-25T11:25:21.103\",\n            \"billing_address\": {\n                \"first_name\": \"test\",\n                \"last_name\": \"test\"\n            },\n            \"echeck\": {\n                \"masked_account_number\": \"****3434\",\n                \"last_4_account_number\": \"3434\"\n            },\n            \"attempt_number\": 1,\n            \"response\": {\n                \"response_code\": \"A01\",\n                \"authorization_code\": \"22415004\"\n            },\n            \"links\": {\n                \"disputes\": \"https://api.forte.net/v3/transactions/trn_1560df17-c6f2-4150-8b22-eef951692486/disputes\",\n                \"settlements\": \"https://api.forte.net/v3/transactions/trn_1560df17-c6f2-4150-8b22-eef951692486/settlements\",\n                \"self\": \"https://api.forte.net/v3/transactions/trn_1560df17-c6f2-4150-8b22-eef951692486\"\n            }\n        },\n        {\n            \"transaction_id\": \"trn_f510202b-340f-4bab-9692-fdc7918449bf\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"status\": \"ready\",\n            \"action\": \"credit\",\n            \"authorization_amount\": 2,\n            \"authorization_code\": \"22415005\",\n            \"entered_by\": \"david.ayodele@forte\",\n            \"received_date\": \"2018-07-25T11:25:24.973\",\n            \"billing_address\": {\n                \"first_name\": \"test\",\n                \"last_name\": \"test\"\n            },\n            \"echeck\": {\n                \"masked_account_number\": \"****3434\",\n                \"last_4_account_number\": \"3434\"\n            },\n            \"attempt_number\": 3,\n            \"response\": {\n                \"response_code\": \"A01\",\n                \"authorization_code\": \"22415005\"\n            },\n            \"links\": {\n                \"disputes\": \"https://api.forte.net/v3/transactions/trn_f510202b-340f-4bab-9692-fdc7918449bf/disputes\",\n                \"settlements\": \"https://api.forte.net/v3/transactions/trn_f510202b-340f-4bab-9692-fdc7918449bf/settlements\",\n                \"self\": \"https://api.forte.net/v3/transactions/trn_f510202b-340f-4bab-9692-fdc7918449bf\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"sandbox\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/transactions/\"\n    }\n}"}],"_postman_id":"269b3bc7-8755-4b4e-9023-265edb3cd767"},{"name":"All Authorize Transactions","id":"bdec51bf-32af-47a8-8b80-ef73e7f46ba7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/authorize","description":"<p>This URI returns all <code>authorize</code> transactions for a <a href=\"https://restdocs.forte.net/#step-1-sign-up-for-a-test-account\">location</a>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions","authorize"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"bef75250-c886-48aa-b342-7d9bbaa04466","name":"All Authorize Transactions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{location}}/transactions/authorize"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"2089","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 15:25:50 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"number_results\": 2,\n    \"search_criteria\": {\n        \"page_size\": 50,\n        \"page_index\": 0,\n        \"home_organization_id\": \"org_300005\",\n        \"resource_specific\": {\n            \"location_id\": \"loc_115161\",\n            \"action\": \"authorize\",\n            \"start_received_date\": \"2018-05-05T08:25:50.5165011-07:00\",\n            \"end_received_date\": \"2018-08-03T08:25:50.5165011-07:00\"\n        }\n    },\n    \"results\": [\n        {\n            \"transaction_id\": \"trn_8652719a-ba88-42c4-b4ad-507571692f3c\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"status\": \"declined\",\n            \"action\": \"authorize\",\n            \"authorization_amount\": 1,\n            \"entered_by\": \"jayashri.srivelu-nam\",\n            \"received_date\": \"2018-06-14T14:14:42.173\",\n            \"billing_address\": {\n                \"first_name\": \"test\",\n                \"last_name\": \"test\"\n            },\n            \"card\": {\n                \"last_4_account_number\": \"1111\",\n                \"masked_account_number\": \"****1111\",\n                \"card_type\": \"visa\"\n            },\n            \"response\": {\n                \"response_code\": \"U54\"\n            },\n            \"links\": {\n                \"disputes\": \"https://api.forte.net/v3/transactions/trn_8652719a-ba88-42c4-b4ad-507571692f3c/disputes\",\n                \"settlements\": \"https://api.forte.net/v3/transactions/trn_8652719a-ba88-42c4-b4ad-507571692f3c/settlements\",\n                \"self\": \"https://api.forte.net/v3/transactions/trn_8652719a-ba88-42c4-b4ad-507571692f3c\"\n            }\n        },\n        {\n            \"transaction_id\": \"trn_011a8c80-fc5c-457f-8769-1e0d0ec21bd1\",\n            \"organization_id\": \"org_300005\",\n            \"location_id\": \"loc_115161\",\n            \"status\": \"authorized\",\n            \"action\": \"authorize\",\n            \"authorization_amount\": 2,\n            \"authorization_code\": \"123456\",\n            \"entered_by\": \"jayashri.srivelu-nam\",\n            \"received_date\": \"2018-06-22T08:40:50.517\",\n            \"billing_address\": {\n                \"first_name\": \"test\",\n                \"last_name\": \"test\"\n            },\n            \"card\": {\n                \"last_4_account_number\": \"1111\",\n                \"masked_account_number\": \"****1111\",\n                \"card_type\": \"visa\"\n            },\n            \"response\": {\n                \"response_code\": \"A01\",\n                \"authorization_code\": \"123456\"\n            },\n            \"links\": {\n                \"disputes\": \"https://api.forte.net/v3/transactions/trn_011a8c80-fc5c-457f-8769-1e0d0ec21bd1/disputes\",\n                \"settlements\": \"https://api.forte.net/v3/transactions/trn_011a8c80-fc5c-457f-8769-1e0d0ec21bd1/settlements\",\n                \"self\": \"https://api.forte.net/v3/transactions/trn_011a8c80-fc5c-457f-8769-1e0d0ec21bd1\"\n            }\n        }\n    ],\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/transactions/\"\n    }\n}"}],"_postman_id":"bdec51bf-32af-47a8-8b80-ef73e7f46ba7"},{"name":"All Verify Transactions","id":"cb5abbba-b412-44d3-8c08-1462e30729ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/verify","description":"<p>This URI returns all <code>verify</code> transactions for a <a href=\"https://restdocs.forte.net/#step-1-sign-up-for-a-test-account\">location</a>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions","verify"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"eb0e6a85-66bf-479d-9c1f-d7bf475a3a70","name":"All Verify Transactions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{location}}/transactions/verify"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"437","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 15:36:48 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"number_results\": 2,\r\n  \"search_criteria\": {\r\n    \"page_size\": 50,\r\n    \"page_index\": 0,\r\n    \"home_organization_id\": \"org_334316\",\r\n    \"resource_specific\": {\r\n      \"location_id\": \"loc_192642\",\r\n      \"action\": \"verify\",\r\n      \"start_received_date\": \"2017-09-05T12:15:17.0173652-07:00\",\r\n      \"end_received_date\": \"2017-12-04T12:15:17.0173652-08:00\"\r\n    }\r\n  },\r\n  \"results\": [\r\n    {\r\n      \"transaction_id\": \"trn_20aa0aeb-bfac-497a-9512-d8d8dde008ea\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"status\": \"failed\",\r\n      \"action\": \"verify\",\r\n      \"authorization_amount\": 0.01,\r\n      \"entered_by\": \"4fefaf5f77d944ce10bd\",\r\n      \"received_date\": \"2017-12-04T12:06:40.51\",\r\n      \"billing_address\": {\r\n        \"first_name\": \"Marty\",\r\n        \"last_name\": \"McFly\"\r\n      },\r\n      \"echeck\": {\r\n        \"masked_account_number\": \"****1222\",\r\n        \"last_4_account_number\": \"1222\"\r\n      },\r\n      \"attempt_number\": 1,\r\n      \"response\": {\r\n        \"response_code\": \"U02\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_20aa0aeb-bfac-497a-9512-d8d8dde008ea/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_20aa0aeb-bfac-497a-9512-d8d8dde008ea/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_20aa0aeb-bfac-497a-9512-d8d8dde008ea\"\r\n      }\r\n    },\r\n    {\r\n      \"transaction_id\": \"trn_c0f10b2c-de27-44ba-9a79-ec05d81e051c\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"status\": \"complete\",\r\n      \"action\": \"verify\",\r\n      \"authorization_amount\": 0.01,\r\n      \"authorization_code\": \"18078821\",\r\n      \"entered_by\": \"4fefaf5f77d944ce10bd\",\r\n      \"received_date\": \"2017-12-04T12:10:42.237\",\r\n      \"billing_address\": {\r\n        \"first_name\": \"Marty\",\r\n        \"last_name\": \"McFly\"\r\n      },\r\n      \"echeck\": {\r\n        \"masked_account_number\": \"****9886\",\r\n        \"last_4_account_number\": \"9886\"\r\n      },\r\n      \"attempt_number\": 1,\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"18078821\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_c0f10b2c-de27-44ba-9a79-ec05d81e051c/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_c0f10b2c-de27-44ba-9a79-ec05d81e051c/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_c0f10b2c-de27-44ba-9a79-ec05d81e051c\"\r\n      }\r\n    }\r\n  ],\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_desc\": \"Get Successful.\"\r\n  },\r\n  \"links\": {\r\n    \"self\": \"https://api.forte.net/v3/transactions/\"\r\n  }\r\n}"}],"_postman_id":"cb5abbba-b412-44d3-8c08-1462e30729ee"},{"name":"All Authenticate Transactions","id":"823cba1e-ce9a-48ce-b9eb-5a5d3e23e243","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/authenticate","description":"<p>This URI returns all <code>authenticate</code> transactions for a <a href=\"https://restdocs.forte.net/#step-1-sign-up-for-a-test-account\">location</a></p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions","authenticate"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"ba3c798d-6c95-468a-b13e-74e2c7954fae","name":"All Authenticate Transactions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{location}}/transactions/verify"},"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"437","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 15:36:48 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n    \"number_results\": 3,\r\n    \"search_criteria\": {\r\n        \"page_size\": 50,\r\n        \"page_index\": 0,\r\n        \"home_organization_id\": \"org_300005\",\r\n        \"resource_specific\": {\r\n            \"location_id\": \"loc_224805\",\r\n            \"action\": \"authenticate\",\r\n            \"start_received_date\": \"2022-11-07T00:00:00\",\r\n            \"end_received_date\": \"2022-11-08T00:00:00\"\r\n        }\r\n    },\r\n    \"results\": [\r\n        {\r\n            \"transaction_id\": \"trn_5a0a5e9e-62d8-4092-9c6e-c69fa6699b8a\",\r\n            \"organization_id\": \"org_300005\",\r\n            \"location_id\": \"loc_224805\",\r\n            \"status\": \"complete\",\r\n            \"action\": \"authenticate\",\r\n            \"authorization_amount\": 1.00,\r\n            \"entered_by\": \"5ac9543ed4e892bb3da5\",\r\n            \"received_date\": \"2022-11-07T05:24:57.45\",\r\n            \"billing_address\": {\r\n                \"first_name\": \"MARTY\",\r\n                \"last_name\": \"BROWN\"\r\n            },\r\n            \"echeck\": {\r\n                \"masked_account_number\": \"****0453\",\r\n                \"last_4_account_number\": \"0453\",\r\n                \"routing_number\": \"122199983\",\r\n                \"account_type\": \"checking\"\r\n            },\r\n            \"response\": {\r\n                \"response_code\": \"U80\",\r\n                \"ownership_match\": \"N|N|N|\"\r\n            },\r\n            \"links\": {\r\n                \"disputes\": \"https://api.forte.net/v3/transactions/trn_5a0a5e9e-62d8-4092-9c6e-c69fa6699b8a/disputes\",\r\n                \"settlements\": \"https://api.forte.net/v3/transactions/trn_5a0a5e9e-62d8-4092-9c6e-c69fa6699b8a/settlements\",\r\n                \"self\": \"https://api.forte.net/v3/transactions/trn_5a0a5e9e-62d8-4092-9c6e-c69fa6699b8a/\"\r\n            }\r\n        },\r\n        {\r\n            \"transaction_id\": \"trn_6771a87a-d07e-42f1-9a93-e9454d41e2fe\",\r\n            \"organization_id\": \"org_300005\",\r\n            \"location_id\": \"loc_224805\",\r\n            \"status\": \"complete\",\r\n            \"action\": \"authenticate\",\r\n            \"authorization_amount\": 1.00,\r\n            \"entered_by\": \"5ac9543ed4e892bb3da5\",\r\n            \"received_date\": \"2022-11-07T05:28:01.937\",\r\n            \"billing_address\": {\r\n                \"first_name\": \"JENNIFER\",\r\n                \"last_name\": \"BROWN\"\r\n            },\r\n            \"echeck\": {\r\n                \"masked_account_number\": \"****0453\",\r\n                \"last_4_account_number\": \"0453\",\r\n                \"routing_number\": \"122199983\",\r\n                \"account_type\": \"checking\"\r\n            },\r\n            \"response\": {\r\n                \"response_code\": \"A06\",\r\n                \"ownership_match\": \"Y|N|Y|\"\r\n            },\r\n            \"links\": {\r\n                \"disputes\": \"https://api.forte.net/v3/transactions/trn_6771a87a-d07e-42f1-9a93-e9454d41e2fe/disputes\",\r\n                \"settlements\": \"https://api.forte.net/v3/transactions/trn_6771a87a-d07e-42f1-9a93-e9454d41e2fe/settlements\",\r\n                \"self\": \"https://api.forte.net/v3/transactions/trn_6771a87a-d07e-42f1-9a93-e9454d41e2fe/\"\r\n            }\r\n        },\r\n        {\r\n            \"transaction_id\": \"trn_b2d6054c-0a69-452a-81b8-d7866c0a898b\",\r\n            \"organization_id\": \"org_300005\",\r\n            \"location_id\": \"loc_224805\",\r\n            \"status\": \"complete\",\r\n            \"action\": \"authenticate\",\r\n            \"authorization_amount\": 1.00,\r\n            \"entered_by\": \"5ac9543ed4e892bb3da5\",\r\n            \"received_date\": \"2022-11-07T05:29:36.693\",\r\n            \"billing_address\": {\r\n                \"first_name\": \"JENNIFER\",\r\n                \"last_name\": \"MCFLY\"\r\n            },\r\n            \"echeck\": {\r\n                \"masked_account_number\": \"****0453\",\r\n                \"last_4_account_number\": \"0453\",\r\n                \"routing_number\": \"122199983\",\r\n                \"account_type\": \"checking\"\r\n            },\r\n            \"response\": {\r\n                \"response_code\": \"A05\",\r\n                \"ownership_match\": \"Y|Y|Y|\"\r\n            },\r\n            \"links\": {\r\n                \"disputes\": \"https://api.forte.net/v3/transactions/trn_b2d6054c-0a69-452a-81b8-d7866c0a898b/disputes\",\r\n                \"settlements\": \"https://api.forte.net/v3/transactions/trn_b2d6054c-0a69-452a-81b8-d7866c0a898b/settlements\",\r\n                \"self\": \"https://api.forte.net/v3/transactions/trn_b2d6054c-0a69-452a-81b8-d7866c0a898b/\"\r\n            }\r\n        }\r\n    ],\r\n    \"response\": {\r\n        \"environment\": \"live\",\r\n        \"response_desc\": \"Get Successful.\"\r\n    },\r\n    \"links\": {\r\n        \"self\": \"https://api.forte.net/v3/transactions/authenticate\"\r\n    }\r\n}\r\n"}],"_postman_id":"823cba1e-ce9a-48ce-b9eb-5a5d3e23e243"},{"name":"All Inquiry Transactions","id":"3624b0b5-36b3-4ccd-9a1d-155b4da9f8b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/inquiry","description":"<p>This URI returns all <code>inquiry</code> transactions for a <a href=\"https://restdocs.forte.net/#step-1-sign-up-for-a-test-account\">location</a>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions","inquiry"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"f4577625-0ddb-463d-a65a-5e3c6a446d66","name":"All Inquiry Transactions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{location}}/transactions/inquiry"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"438","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 15:41:23 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"number_results\": 3,\r\n  \"search_criteria\": {\r\n    \"page_size\": 50,\r\n    \"page_index\": 0,\r\n    \"home_organization_id\": \"org_334316\",\r\n    \"resource_specific\": {\r\n      \"location_id\": \"loc_192642\",\r\n      \"action\": \"inquiry\",\r\n      \"start_received_date\": \"2017-09-05T13:27:07.7020344-07:00\",\r\n      \"end_received_date\": \"2017-12-04T13:27:07.7020344-08:00\"\r\n    }\r\n  },\r\n  \"results\": [\r\n    {\r\n      \"transaction_id\": \"trn_b122dd43-8937-4ebb-9814-a2b4757f732f\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"status\": \"complete\",\r\n      \"action\": \"inquiry\",\r\n      \"authorization_code\": \"18078950\",\r\n      \"entered_by\": \"4fefaf5f77d944ce10bd\",\r\n      \"received_date\": \"2017-12-04T13:08:46.487\",\r\n      \"billing_address\": {\r\n        \"first_name\": \"Jennifer\",\r\n        \"last_name\": \"McFly\"\r\n      },\r\n      \"card\": {\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"card_type\": \"visa\"\r\n      },\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"18078950\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_b122dd43-8937-4ebb-9814-a2b4757f732f/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_b122dd43-8937-4ebb-9814-a2b4757f732f/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_b122dd43-8937-4ebb-9814-a2b4757f732f\"\r\n      }\r\n    },\r\n    {\r\n      \"transaction_id\": \"trn_28d84745-d769-4987-a911-56c35de15adf\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"status\": \"complete\",\r\n      \"action\": \"inquiry\",\r\n      \"authorization_code\": \"18060505\",\r\n      \"entered_by\": \"4fefaf5f77d944ce10bd\",\r\n      \"received_date\": \"2017-12-04T13:09:00.02\",\r\n      \"billing_address\": {\r\n        \"first_name\": \"Marty\",\r\n        \"last_name\": \"McFly\"\r\n      },\r\n      \"card\": {\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"card_type\": \"visa\"\r\n      },\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"18060505\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_28d84745-d769-4987-a911-56c35de15adf/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_28d84745-d769-4987-a911-56c35de15adf/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_28d84745-d769-4987-a911-56c35de15adf\"\r\n      }\r\n    },\r\n    {\r\n      \"transaction_id\": \"trn_6b678762-0e11-4495-9ee6-3025e48f746d\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"status\": \"complete\",\r\n      \"action\": \"inquiry\",\r\n      \"authorization_code\": \"18078953\",\r\n      \"entered_by\": \"4fefaf5f77d944ce10bd\",\r\n      \"received_date\": \"2017-12-04T13:09:22.957\",\r\n      \"billing_address\": {\r\n        \"first_name\": \"Marty\",\r\n        \"last_name\": \"McFly\"\r\n      },\r\n      \"card\": {\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"card_type\": \"visa\"\r\n      },\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"18078953\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_6b678762-0e11-4495-9ee6-3025e48f746d/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_6b678762-0e11-4495-9ee6-3025e48f746d/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_6b678762-0e11-4495-9ee6-3025e48f746d\"\r\n      }\r\n    }\r\n  ],\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_desc\": \"Get Successful.\"\r\n  },\r\n  \"links\": {\r\n    \"self\": \"https://api.forte.net/v3/transactions/\"\r\n  }\r\n}"}],"_postman_id":"3624b0b5-36b3-4ccd-9a1d-155b4da9f8b6"},{"name":"All Transactions for a Customer","id":"ed4e8619-fbd8-4f1c-b9d4-3aa13a582fe1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/customers/cst_{{customertoken}}/transactions/","description":"<p>Returns all transactions for a specific <code>customer_token</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","customers","cst_{{customertoken}}","transactions",""],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"cd174bb2-cee7-46ad-932f-6b9007dcda71","name":"All Transactions for a Customer","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{location}}/customers/cst_{{customertoken}}/transactions/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"4481","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 15:47:19 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"number_results\": 12,\r\n  \"search_criteria\": {\r\n    \"page_size\": 50,\r\n    \"page_index\": 0,\r\n    \"home_organization_id\": \"org_334316\",\r\n    \"resource_specific\": {\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_lyv-2BilTkWpIgK1TMKvoA\"\r\n    }\r\n  },\r\n  \"results\": [\r\n    {\r\n      \"transaction_id\": \"trn_735fddfb-1b28-4630-b67d-cbd919f45c35\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_lyv-2BilTkWpIgK1TMKvoA\",\r\n      \"status\": \"ready\",\r\n      \"action\": \"sale\",\r\n      \"authorization_amount\": 10,\r\n      \"authorization_code\": \"123456\",\r\n      \"received_date\": \"2017-07-19T16:49:34.057\",\r\n      \"card\": {\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"card_type\": \"visa\"\r\n      },\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"123456\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_735fddfb-1b28-4630-b67d-cbd919f45c35/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_735fddfb-1b28-4630-b67d-cbd919f45c35/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_735fddfb-1b28-4630-b67d-cbd919f45c35\"\r\n      }\r\n    },\r\n    {\r\n      \"transaction_id\": \"trn_b4690950-d718-4312-99a2-c1a8dfd5c6bc\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_lyv-2BilTkWpIgK1TMKvoA\",\r\n      \"status\": \"ready\",\r\n      \"action\": \"sale\",\r\n      \"authorization_amount\": 10,\r\n      \"authorization_code\": \"123456\",\r\n      \"received_date\": \"2017-07-20T02:13:08.777\",\r\n      \"card\": {\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"card_type\": \"visa\"\r\n      },\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"123456\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_b4690950-d718-4312-99a2-c1a8dfd5c6bc/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_b4690950-d718-4312-99a2-c1a8dfd5c6bc/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_b4690950-d718-4312-99a2-c1a8dfd5c6bc\"\r\n      }\r\n    },\r\n    {\r\n      \"transaction_id\": \"trn_093a0609-515f-4179-b635-e283d9d56856\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_lyv-2BilTkWpIgK1TMKvoA\",\r\n      \"status\": \"ready\",\r\n      \"action\": \"sale\",\r\n      \"authorization_amount\": 10,\r\n      \"authorization_code\": \"123456\",\r\n      \"received_date\": \"2017-07-20T23:22:49.27\",\r\n      \"card\": {\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"card_type\": \"visa\"\r\n      },\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"123456\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_093a0609-515f-4179-b635-e283d9d56856/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_093a0609-515f-4179-b635-e283d9d56856/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_093a0609-515f-4179-b635-e283d9d56856\"\r\n      }\r\n    },\r\n    {\r\n      \"transaction_id\": \"trn_7ca702cb-94da-4d3e-a9b4-0872710b1f40\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_lyv-2BilTkWpIgK1TMKvoA\",\r\n      \"status\": \"ready\",\r\n      \"action\": \"sale\",\r\n      \"authorization_amount\": 10,\r\n      \"authorization_code\": \"123456\",\r\n      \"received_date\": \"2017-07-21T16:49:01.87\",\r\n      \"card\": {\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"card_type\": \"visa\"\r\n      },\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"123456\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_7ca702cb-94da-4d3e-a9b4-0872710b1f40/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_7ca702cb-94da-4d3e-a9b4-0872710b1f40/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_7ca702cb-94da-4d3e-a9b4-0872710b1f40\"\r\n      }\r\n    },\r\n    {\r\n      \"transaction_id\": \"trn_c74a191a-ae2a-4f4f-9c7c-aa9bd88d072e\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_lyv-2BilTkWpIgK1TMKvoA\",\r\n      \"status\": \"ready\",\r\n      \"action\": \"sale\",\r\n      \"authorization_amount\": 10,\r\n      \"authorization_code\": \"123456\",\r\n      \"received_date\": \"2017-07-23T23:10:20.447\",\r\n      \"card\": {\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"card_type\": \"visa\"\r\n      },\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"123456\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_c74a191a-ae2a-4f4f-9c7c-aa9bd88d072e/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_c74a191a-ae2a-4f4f-9c7c-aa9bd88d072e/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_c74a191a-ae2a-4f4f-9c7c-aa9bd88d072e\"\r\n      }\r\n    },\r\n    {\r\n      \"transaction_id\": \"trn_9eb617d2-60fc-489a-9986-d720e056f5a6\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_lyv-2BilTkWpIgK1TMKvoA\",\r\n      \"status\": \"ready\",\r\n      \"action\": \"sale\",\r\n      \"authorization_amount\": 10,\r\n      \"authorization_code\": \"123456\",\r\n      \"received_date\": \"2017-07-23T23:11:34.547\",\r\n      \"card\": {\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"card_type\": \"visa\"\r\n      },\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"123456\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_9eb617d2-60fc-489a-9986-d720e056f5a6/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_9eb617d2-60fc-489a-9986-d720e056f5a6/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_9eb617d2-60fc-489a-9986-d720e056f5a6\"\r\n      }\r\n    },\r\n    {\r\n      \"transaction_id\": \"trn_cfead72d-74ad-4cd2-8862-ed483d62c07e\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_lyv-2BilTkWpIgK1TMKvoA\",\r\n      \"status\": \"ready\",\r\n      \"action\": \"sale\",\r\n      \"authorization_amount\": 10,\r\n      \"authorization_code\": \"123456\",\r\n      \"received_date\": \"2017-07-23T23:12:05.283\",\r\n      \"card\": {\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"card_type\": \"visa\"\r\n      },\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"123456\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_cfead72d-74ad-4cd2-8862-ed483d62c07e/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_cfead72d-74ad-4cd2-8862-ed483d62c07e/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_cfead72d-74ad-4cd2-8862-ed483d62c07e\"\r\n      }\r\n    },\r\n    {\r\n      \"transaction_id\": \"trn_c4871b59-cfd2-45a4-90bd-b80a260621b2\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_lyv-2BilTkWpIgK1TMKvoA\",\r\n      \"status\": \"ready\",\r\n      \"action\": \"sale\",\r\n      \"authorization_amount\": 10,\r\n      \"authorization_code\": \"123456\",\r\n      \"received_date\": \"2017-07-23T23:30:39.81\",\r\n      \"card\": {\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"card_type\": \"visa\"\r\n      },\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"123456\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_c4871b59-cfd2-45a4-90bd-b80a260621b2/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_c4871b59-cfd2-45a4-90bd-b80a260621b2/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_c4871b59-cfd2-45a4-90bd-b80a260621b2\"\r\n      }\r\n    },\r\n    {\r\n      \"transaction_id\": \"trn_962cc4e4-c26e-470f-8cf6-fd4321b3995a\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_lyv-2BilTkWpIgK1TMKvoA\",\r\n      \"status\": \"ready\",\r\n      \"action\": \"sale\",\r\n      \"authorization_amount\": 10,\r\n      \"authorization_code\": \"123456\",\r\n      \"received_date\": \"2017-07-24T23:04:21.87\",\r\n      \"card\": {\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"card_type\": \"visa\"\r\n      },\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"123456\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_962cc4e4-c26e-470f-8cf6-fd4321b3995a/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_962cc4e4-c26e-470f-8cf6-fd4321b3995a/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_962cc4e4-c26e-470f-8cf6-fd4321b3995a\"\r\n      }\r\n    },\r\n    {\r\n      \"transaction_id\": \"trn_d9d7ae3d-a928-4a12-89ea-b0609a4e3f96\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_lyv-2BilTkWpIgK1TMKvoA\",\r\n      \"status\": \"ready\",\r\n      \"action\": \"sale\",\r\n      \"authorization_amount\": 10,\r\n      \"authorization_code\": \"123456\",\r\n      \"received_date\": \"2017-07-24T23:04:47.667\",\r\n      \"card\": {\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"card_type\": \"visa\"\r\n      },\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"123456\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_d9d7ae3d-a928-4a12-89ea-b0609a4e3f96/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_d9d7ae3d-a928-4a12-89ea-b0609a4e3f96/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_d9d7ae3d-a928-4a12-89ea-b0609a4e3f96\"\r\n      }\r\n    },\r\n    {\r\n      \"transaction_id\": \"trn_313526de-25fa-43a9-9918-3110259ed1cd\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_lyv-2BilTkWpIgK1TMKvoA\",\r\n      \"status\": \"ready\",\r\n      \"action\": \"sale\",\r\n      \"authorization_amount\": 10,\r\n      \"authorization_code\": \"123456\",\r\n      \"received_date\": \"2017-07-24T23:24:50.97\",\r\n      \"card\": {\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"card_type\": \"visa\"\r\n      },\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"123456\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_313526de-25fa-43a9-9918-3110259ed1cd/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_313526de-25fa-43a9-9918-3110259ed1cd/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_313526de-25fa-43a9-9918-3110259ed1cd\"\r\n      }\r\n    },\r\n    {\r\n      \"transaction_id\": \"trn_f0d3ea66-040f-4d57-9ff1-77d28bc4b95b\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"customer_token\": \"cst_lyv-2BilTkWpIgK1TMKvoA\",\r\n      \"status\": \"ready\",\r\n      \"action\": \"sale\",\r\n      \"authorization_amount\": 10,\r\n      \"authorization_code\": \"123456\",\r\n      \"received_date\": \"2017-07-24T23:29:04.563\",\r\n      \"card\": {\r\n        \"last_4_account_number\": \"1111\",\r\n        \"masked_account_number\": \"****1111\",\r\n        \"card_type\": \"visa\"\r\n      },\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"123456\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_f0d3ea66-040f-4d57-9ff1-77d28bc4b95b/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_f0d3ea66-040f-4d57-9ff1-77d28bc4b95b/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_f0d3ea66-040f-4d57-9ff1-77d28bc4b95b\"\r\n      }\r\n    }\r\n  ],\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_desc\": \"Get Successful.\"\r\n  },\r\n  \"links\": {\r\n    \"self\": \"https://api.forte.net/v3/transactions/\"\r\n  }\r\n}"}],"_postman_id":"ed4e8619-fbd8-4f1c-b9d4-3aa13a582fe1"},{"name":"Transaction by ID","id":"fd4c4170-ae63-45fc-94c3-db58756e0827","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/trn_{{transactionID}}","description":"<p>Returns the details of a specific transaction based on the <code>transaction_id</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions","trn_{{transactionID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"d889e172-48f5-4f30-ab16-fb9ff391b095","name":"Transaction by ID","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{location}}/transactions/trn_{{transactionID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"1117","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 15:52:53 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"transaction_id\": \"trn_a33b39d8-ac96-4c8b-b6bd-25bb74d6fff3\",\r\n  \"organization_id\": \"org_334316\",\r\n  \"location_id\": \"loc_192642\",\r\n  \"status\": \"voided\",\r\n  \"action\": \"force\",\r\n  \"authorization_amount\": 1,\r\n  \"authorization_code\": \"123456\",\r\n  \"received_date\": \"2016-10-11T10:27:40.387\",\r\n  \"billing_address\": {\r\n    \"first_name\": \"Emmett\",\r\n    \"last_name\": \"Brown\",\r\n    \"physical_address\": {\r\n      \"street_line1\": \"2123 Einstein Way\",\r\n      \"street_line2\": \"Suite 200\",\r\n      \"locality\": \"Hill Valley\",\r\n      \"region\": \"CA\",\r\n      \"country\": \"US\",\r\n      \"postal_code\": \"90217\"\r\n    }\r\n  },\r\n  \"card\": {\r\n    \"name_on_card\": \"Emmett Brown\",\r\n    \"last_4_account_number\": \"1881\",\r\n    \"masked_account_number\": \"****1881\",\r\n    \"expire_month\": 2,\r\n    \"expire_year\": 2019,\r\n    \"customer_accounting_code\": \"123\",\r\n    \"card_type\": \"visa\"\r\n  },\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_type\": \"A\",\r\n    \"response_code\": \"A01\",\r\n    \"response_desc\": \"TEST APPROVAL\",\r\n    \"authorization_code\": \"123456\"\r\n  },\r\n  \"links\": {\r\n    \"disputes\": \"https://api.forte.net/v3/transactions/trn_a33b39d8-ac96-4c8b-b6bd-25bb74d6fff3/disputes\",\r\n    \"settlements\": \"https://api.forte.net/v3/transactions/trn_a33b39d8-ac96-4c8b-b6bd-25bb74d6fff3/settlements\",\r\n    \"self\": \"https://api.forte.net/v3/transactions/trn_a33b39d8-ac96-4c8b-b6bd-25bb74d6fff3\"\r\n  }\r\n}"},{"id":"3912c610-8d6e-4a56-90a0-4448d7e9d167","name":"Transaction by ID (eCheck)","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{location}}/transactions/trn_{{transactionID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"1117","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 15:52:53 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n    \"transaction_id\": \"trn_def47e59-7b34-40be-9ba5-bc1991c616af\",\r\n    \"organization_id\": \"org_300005\",\r\n    \"location_id\": \"loc_115161\",\r\n    \"status\": \"ready\",\r\n    \"action\": \"sale\",\r\n    \"authorization_amount\": 110.00,\r\n    \"service_fee_amount\": 4.00,\r\n    \"subtotal_amount\": 106.00,\r\n    \"authorization_code\": \"43848525\",\r\n    \"entered_by\": \"8dbd1adc927b5d85b3a7\",\r\n    \"received_date\": \"2026-03-17T00:14:25.727\",\r\n    \"billing_address\": {\r\n        \"first_name\": \"Marty\",\r\n        \"last_name\": \"McFly\"\r\n    },\r\n    \"echeck\": {\r\n        \"masked_account_number\": \"****1222\",\r\n        \"last_4_account_number\": \"1222\",\r\n        \"routing_number\": \"122199983\",\r\n        \"account_type\": \"checking\",\r\n        \"sec_code\": \"WEB\". \"issuer_bank\": \"LIBERTY BANK\"\r\n    },\r\n    \"biller_name\": \"McFly, Marty\",\r\n    \"attempt_number\": 1,\r\n    \"response\": {\r\n        \"environment\": \"live\",\r\n        \"response_type\": \"A\",\r\n        \"response_code\": \"A01\",\r\n        \"response_desc\": \"APPROVED\",\r\n        \"authorization_code\": \"43848525\"\r\n    },\r\n    \"links\": {\r\n        \"disputes\": \" https://api.forte.net/v3/transactions/trn_def47e59-7b34-40be-9ba5-bc1991c616af/disputes\",\r\n        \"settlements\": \" https://api.forte.net/v3/transactions/trn_def47e59-7b34-40be-9ba5-bc1991c616af/settlements\",\r\n        \"self\": \" https://api.forte.net/v3/transactions/trn_def47e59-7b34-40be-9ba5-bc1991c616af/\"\r\n    }\r\n}"}],"_postman_id":"fd4c4170-ae63-45fc-94c3-db58756e0827"},{"name":"Transactions with Filter","id":"6cde180f-60ce-41ba-ae5c-3058306081aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions?filter=start_received_date+eq+'2018-01-01'+and+end_received_date+eq+'2018-08-03' ","description":"<p>To narrow your search data using specific criteria, use the following filter parameters:</p>\n<ul><li><p>start_received_date / end_received_date</p></li><li><p>received_date</p></li><li><p>origination_date</p></li><li><p>customer_token</p></li><li><p>original_transaction_id</p></li><li><p>customer_id</p></li><li><p>order_number</p></li><li><p>reference_id</p></li><li><p>status</p></li><li><p>action</p></li><li><p>authorization_amount</p></li><li><p>entered_by</p></li><li><p>bill_to_company_name</p></li><li><p>bill_to_first_name</p></li><li><p>bill_to_last_name</p></li><li><p>paymethod_type</p></li><li><p>last_4_account_number</p></li><li><p>response_code</p></li><li><p>attempt_number</p></li></ul>\n\n<p><strong>NOTES</strong>:</p>\n<ul><li><p>The <code>action</code> filter parameter supports the following values:</p><ul><li><p>sale</p></li><li><p>credit</p></li><li><p>authorize</p></li><li><p>verify</p></li><li><p>authenticate</p></li><li><p>inquiry</p></li></ul></li><li><p>Searches using the <code>origination_date</code> filter parameter will only yield results for echeck transactions.</p></li><li><p>To find transactions within a specified date range, use the <code>start_received_date</code> and <code>end_received_date</code> filter parameters or the <code>start_origination_date</code> and <code>end_origination_date</code> filter parameters.</p></li><li><p>To find transactions from a single day, use the <code>received_date</code> or <code>origination_date</code> (echeck only) filter paramters.</p></li><li><p>Date range filters must include both the start and end date parameters; otherwise, Forte uses a default 90-day date range from the provided date parameter or, when no date parameter is provided, from the current date.</p></li><li><p>All date filter parameters are time aware</p></li></ul>","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[{"key":"filter","value":"start_received_date+eq+'2018-01-01'+and+end_received_date+eq+'2018-08-03' "}],"variable":[]}},"response":[{"id":"cd199598-abd1-4020-ab4c-02313719ee81","name":"Transactions with Filter","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"}],"url":{"raw":"{{baseURI}}/organizations/org_{{organization}}/locations/loc_{{location}}/transactions?filter=start_received_date+eq+'2018-01-01'+and+end_received_date+eq+'2018-08-03' ","host":["{{baseURI}}"],"path":["organizations","org_{{organization}}","locations","loc_{{location}}","transactions"],"query":[{"key":"filter","value":"start_received_date+eq+'2018-01-01'+and+end_received_date+eq+'2018-08-03' "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds","enabled":true},{"key":"Connection","value":"keep-alive","description":"Options that are desired for the connection","enabled":true},{"key":"Content-Length","value":"41247","description":"The length of the response body in octets (8-bit bytes)","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","description":"The mime type of this content","enabled":true},{"key":"Date","value":"Fri, 03 Aug 2018 16:02:25 GMT","description":"The date and time that the message was sent","enabled":true},{"key":"Expires","value":"-1","description":"Gives the date/time after which the response is considered stale","enabled":true},{"key":"Pragma","value":"no-cache","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain.","enabled":true},{"key":"Server","value":"","description":"A name for the server","enabled":true}],"cookie":[],"responseTime":null,"body":"{\r\n  \"number_results\": 4,\r\n  \"search_criteria\": {\r\n    \"page_size\": 50,\r\n    \"page_index\": 0,\r\n    \"home_organization_id\": \"org_334316\",\r\n    \"resource_specific\": {\r\n      \"location_id\": \"loc_192642\",\r\n      \"start_received_date\": \"2018-01-01T09:22:52.5502369-07:00\",\r\n      \"end_received_date\": \"2018-108-03T09:22:52.5502369-08:00\"\r\n    }\r\n  },\r\n  \"results\": [\r\n    {\r\n      \"transaction_id\": \"trn_698bf8be-4695-4aab-b785-7a2b9bd5e77a\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"status\": \"declined\",\r\n      \"action\": \"sale\",\r\n      \"authorization_amount\": 240.52,\r\n      \"received_date\": \"2018-02-21T14:05:41.493\",\r\n      \"billing_address\": {\r\n        \"first_name\": \"Marty\",\r\n        \"last_name\": \"McFly\"\r\n      },\r\n      \"echeck\": {\r\n        \"masked_account_number\": \"****1222\",\r\n        \"last_4_account_number\": \"1222\"\r\n      },\r\n      \"attempt_number\": 1,\r\n      \"response\": {\r\n        \"response_code\": \"U02\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_698bf8be-4695-4aab-b785-7a2b9bd5e77a/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_698bf8be-4695-4aab-b785-7a2b9bd5e77a/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_698bf8be-4695-4aab-b785-7a2b9bd5e77a\"\r\n      }\r\n    },\r\n    {\r\n      \"transaction_id\": \"trn_d81e5f47-d899-4d7e-8e3a-398418921385\",\r\n      \"organization_id\": \"org_300005\",\r\n      \"location_id\": \"loc_115161\",\r\n      \"status\": \"ready\",\r\n      \"action\": \"sale\",\r\n      \"authorization_amount\": 6.5,\r\n      \"authorization_code\": \"123456\",\r\n      \"entered_by\": \"b9f088229ab4989d499e\",\r\n      \"received_date\": \"2018-05-31T06:28:58.373\",\r\n      \"billing_address\": {\r\n        \"company_name\": \"McFly Industries\"\r\n      },\r\n      \"card\": {\r\n        \"last_4_account_number\": \"0006\",\r\n        \"masked_account_number\": \"****0006\",\r\n        \"card_type\": \"visa\"\r\n      },\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"123456\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_d81e5f47-d899-4d7e-8e3a-398418921385/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_d81e5f47-d899-4d7e-8e3a-398418921385/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_d81e5f47-d899-4d7e-8e3a-398418921385\"\r\n      }\r\n    },\r\n    {\r\n      \"transaction_id\": \"trn_abf0e36f-51a0-4572-9ded-ec5b14e023a5\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"status\": \"declined\",\r\n      \"action\": \"sale\",\r\n      \"authorization_amount\": 240.52,\r\n      \"received_date\": \"2018-05-21T14:49:11.657\",\r\n      \"billing_address\": {\r\n        \"first_name\": \"Marty\",\r\n        \"last_name\": \"McFly\"\r\n      },\r\n      \"echeck\": {\r\n        \"masked_account_number\": \"****1222\",\r\n        \"last_4_account_number\": \"1222\"\r\n      },\r\n      \"attempt_number\": 1,\r\n      \"response\": {\r\n        \"response_code\": \"A01\",\r\n        \"authorization_code\": \"21334993\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_abf0e36f-51a0-4572-9ded-ec5b14e023a5/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_abf0e36f-51a0-4572-9ded-ec5b14e023a5/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_abf0e36f-51a0-4572-9ded-ec5b14e023a5\"\r\n      }\r\n    },\r\n    {\r\n      \"transaction_id\": \"trn_7da0543c-068f-49a6-b7de-ded19e3a6d92\",\r\n      \"organization_id\": \"org_334316\",\r\n      \"location_id\": \"loc_192642\",\r\n      \"status\": \"declined\",\r\n      \"action\": \"sale\",\r\n      \"authorization_amount\": 240.52,\r\n      \"received_date\": \"2018-06-21T14:52:12.33\",\r\n      \"billing_address\": {\r\n        \"first_name\": \"Marty\",\r\n        \"last_name\": \"McFly\"\r\n      },\r\n      \"echeck\": {\r\n        \"masked_account_number\": \"****1222\",\r\n        \"last_4_account_number\": \"1222\"\r\n      },\r\n      \"attempt_number\": 2,\r\n      \"response\": {\r\n        \"response_code\": \"U02\"\r\n      },\r\n      \"links\": {\r\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_7da0543c-068f-49a6-b7de-ded19e3a6d92/disputes\",\r\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_7da0543c-068f-49a6-b7de-ded19e3a6d92/settlements\",\r\n        \"self\": \"https://api.forte.net/v3/transactions/trn_7da0543c-068f-49a6-b7de-ded19e3a6d92\"\r\n      }\r\n    }\r\n  ],\r\n  \"response\": {\r\n    \"environment\": \"live\",\r\n    \"response_desc\": \"Get Successful.\"\r\n  },\r\n  \"links\": {\r\n    \"self\": \"https://api.forte.net/v3/transactions/?filter=bill_to_first_name+eq+Marty\",\r\n    \"next\": \"https://api.forte.net/v3/transactions/?filter=bill_to_first_name+eq+Marty&page_index=1\"\r\n  }\r\n}"}],"_postman_id":"6cde180f-60ce-41ba-ae5c-3058306081aa"},{"name":"Void a Transaction","id":"f1fd1aa3-a9f1-4f3f-b830-195bedf5203e","request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n       \"action\":\"void\",\r\n       \"authorization_code\":\"33717372\",\r\n       \"entered_by\":\"Griff Tannen\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/trn_{{transactionID}}","description":"<p>A void is used to stop a transaction from originating (echecks) or going to settlement (credit cards) and for canceling holds on transactions that were previously authorized. You can only void a transaction once. Only <code>sale</code>, <code>authorize</code>, <code>force</code> (echecks only) or <code>credit</code> transactions in the Ready, Authorized, or Review status can be voided.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions","trn_{{transactionID}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"9e8c5fb5-8f72-420f-b2d7-fad20c50b563","name":"Void a Transaction","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"action\":\"void\",\r\n       \"authorization_code\":\"33717372\",\r\n       \"entered_by\":\"Griff Tannen\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/v3/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/{{transactionID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","description":"","enabled":true},{"key":"cache-control","value":"no-cache","description":"","enabled":true},{"key":"connection","value":"keep-alive","description":"","enabled":true},{"key":"content-length","value":"632","description":"","enabled":true},{"key":"content-type","value":"application/json; charset=utf-8","description":"","enabled":true},{"key":"date","value":"Fri, 20 Oct 2017 15:27:25 GMT","description":"","enabled":true},{"key":"expires","value":"-1","description":"","enabled":true},{"key":"pragma","value":"no-cache","description":"","enabled":true},{"key":"server","value":"Microsoft-IIS/8.5","description":"","enabled":true},{"key":"x-aspnet-version","value":"4.0.30319","description":"","enabled":true},{"key":"x-cdn","value":"Incapsula","description":"","enabled":true},{"key":"x-iinfo","value":"7-48791103-48880387 SNNN RT(1508512703858 541208) q(0 0 0 -1) r(2 2) U6","description":"","enabled":true},{"key":"x-powered-by","value":"ASP.NET","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_d175cbfb-39b0-4340-89d3-b7edbf31a1b6\",\n    \"location_id\": \"loc_192642\",\n    \"action\": \"void\",\n    \"authorization_code\": \"33717372\",\n    \"entered_by\": \"Griff Tannen\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"APPROVED\",\n        \"authorization_code\": \"17324927\"\n    },\n    \"links\": {\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_6ab4a418-73ff-4d82-abb7-319c5e4f97d9/disputes\",\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_6ab4a418-73ff-4d82-abb7-319c5e4f97d9/settlements\",\n        \"self\": \"https://api.forte.net/v3/transactions/trn_6ab4a418-73ff-4d82-abb7-319c5e4f97d9\"\n    }\n}"}],"_postman_id":"f1fd1aa3-a9f1-4f3f-b830-195bedf5203e"},{"name":"Void an Authorization","id":"4acc80d4-d12e-405f-ab10-59229cf5d368","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n       \"action\":\"void\",\r\n       \"authorization_code\":\"0KR123\",\r\n       \"entered_by\":\"Griff Tannen\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/trn_{{transaction_id}}","description":"<p>This endpoint voids a previously approved <code>authorize</code> transaction. </p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions","trn_{{transaction_id}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"13b7a3c5-9485-4f58-964a-e0f3cbe88c79","name":"Void an Authorization","originalRequest":{"method":"PUT","header":[{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"action\":\"void\",\r\n       \"authorization_code\":\"0KR123\",\r\n       \"entered_by\":\"Griff Tannen\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/trn_{{transaction_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 Jan 2021 18:54:51 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"635","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_ddd65b98-bb1f-48b9-be56-2752810a6b78\",\n    \"location_id\": \"loc_124125\",\n    \"action\": \"void\",\n    \"authorization_code\": \"0KR123\",\n    \"entered_by\": \"Griff Tannen\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"APPROVED\",\n        \"authorization_code\": \"779523\"\n    },\n    \"links\": {\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_f6598e65-f5cb-4c40-87f8-e04d9c269b55/disputes\",\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_f6598e65-f5cb-4c40-87f8-e04d9c269b55/settlements\",\n        \"self\": \"https://api.forte.net/v3/transactions/trn_f6598e65-f5cb-4c40-87f8-e04d9c269b55/\"\n    }\n}"}],"_postman_id":"4acc80d4-d12e-405f-ab10-59229cf5d368"},{"name":"Void a Refund","id":"20379012-7303-4690-9f15-56fc32cacdc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n       \"action\":\"void\",\r\n       \"authorization_code\":\"0XD331\",\r\n       \"entered_by\":\"Griff Tannen\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/trn_{{transaction_id}}","description":"<p>This endpoint stops the disbursement of funds back to the consumer after their original transaction was reversed/refunded. You must append the <code>transaction_id</code> of the refund transaction to the end of the endpoint, and include the <code>void</code> action and <code>authorization_code</code> of the refund/reversal transaction in the body of the request.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions","trn_{{transaction_id}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"d7ad2c81-7d29-4f51-b546-3ae0fd968211","name":"Void a Refund","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"Accept","value":"application/json","type":"text"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n       \"action\":\"void\",\r\n       \"authorization_code\":\"0XD331\",\r\n       \"entered_by\":\"Griff Tannen\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions/trn_{{transaction_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 02 Feb 2021 20:38:19 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"635","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_d6aac435-d0bd-46ab-bfc4-426750f7ab18\",\n    \"location_id\": \"loc_124125\",\n    \"action\": \"void\",\n    \"authorization_code\": \"0XD331\",\n    \"entered_by\": \"Griff Tannen\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"APPROVED\",\n        \"authorization_code\": \"059506\"\n    },\n    \"links\": {\n        \"disputes\": \"https://api.forte.net/v3/transactions/trn_a9234284-0244-4e91-b5bb-175e01e3e641/disputes\",\n        \"settlements\": \"https://api.forte.net/v3/transactions/trn_a9234284-0244-4e91-b5bb-175e01e3e641/settlements\",\n        \"self\": \"https://api.forte.net/v3/transactions/trn_a9234284-0244-4e91-b5bb-175e01e3e641/\"\n    }\n}"}],"_postman_id":"20379012-7303-4690-9f15-56fc32cacdc8"},{"name":"Capture a Transaction","id":"05d8eddc-50d4-41e0-8a3f-b7d38866a37c","protocolProfileBehavior":{"disabledSystemHeaders":{"accept":true},"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}],"advancedConfig":[{"key":"saveHelperData","value":"<save-helper-data>"},{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"action\": \"capture\",\r\n    \"transaction_id\": \"trn_2360c442-a6f7-423e-a4d8-de944b7aee16\",\r\n    \"authorization_code\": \"0SF381\",\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions","description":"<p>A <code>capture</code> enables merchants to collect the funds of a previous <code>authorize</code> transaction. A capture must be performed within the authorization/pre-authorization period (i.e., when the status of the transaction is in-progress) for credit card and echeck transactions. This transaction should be used when the capture of the funds will be initiated later. If the intent is to authorize the transaction and capture the funds immediately, a sale transaction should be sent instead of authorization and capture.</p>\n<p><strong>NOTE</strong>: authorization_amount field (capture amounts) are supported in sandbox environment but in production environment it is dependent on the processor</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"90395d94-7669-45f5-96f0-4c365d665e5f","name":"Capture a Transaction","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"X-Forte-Auth-Organization-Id","value":"org_{{AuthOrganizationID}}","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"action\": \"capture\",\r\n    \"transaction_id\": \"trn_2360c442-a6f7-423e-a4d8-de944b7aee16\",\r\n    \"authorization_amount\": 108.34,\r\n    \"authorization_code\": \"0SF381\",\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/transactions?Authorization={{Authorization}}&Accept=application/json&X-Forte-Auth_Organization_Id=org_{{AuthOrganizationID}}&Content-Type=application/json","host":["{{baseURI}}"],"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","transactions"],"query":[{"key":"Authorization","value":"{{Authorization}}"},{"key":"Accept","value":"application/json"},{"key":"X-Forte-Auth_Organization_Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Jan 2021 23:04:30 GMT","enabled":true},{"key":"Content-Type","value":"application/json; charset=utf-8","enabled":true},{"key":"Content-Length","value":"417","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Cache-Control","value":"no-cache","enabled":true},{"key":"Pragma","value":"no-cache","enabled":true},{"key":"Expires","value":"-1","enabled":true},{"key":"Server","value":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"transaction_id\": \"trn_9b1bfe9f-9fc7-4ad4-84c7-d8637e402254\",\n    \"location_id\": \"loc_124125\",\n    \"original_transaction_id\": \"trn_2360c442-a6f7-423e-a4d8-de944b7aee16\",\n    \"action\": \"capture\",\n    \"authorization_amount\": 108.34,\n    \"authorization_code\": \"0SF381\",\n    \"entered_by\": \"9b26093587d09d0f1a847083b2e605c1\",\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_type\": \"A\",\n        \"response_code\": \"A01\",\n        \"response_desc\": \"APPROVED\",\n        \"authorization_code\": \"779522\"\n    }\n}"}],"_postman_id":"05d8eddc-50d4-41e0-8a3f-b7d38866a37c"}],"id":"a110f52c-df9a-4393-93dd-00c8c9c80dd4","description":"<p>The <code>transactions</code> object captures all the transaction(s) associated with a merchant location. The <code>transactions</code> object includes the <code>address</code>, <code>vendor</code>,<code>card</code>, <code>echeck</code>, <code>line_items</code> and <code>xdata</code> sub-objects. Token-based transactions will use default addresses and will require you to set the customer's default shipping and billing addresses prior to passing transaction data. The <code>transaction</code> object supports both Canadian and U.S.-based addresses and payment methods. For more information on how to correctly format Canadian routing numbers see the <code>echeck.routing_number</code> parameter.</p>\n<h2 id=\"transactions-object\">Transactions Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n<th>Type</th>\n<th>Req</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>organization_id</code></td>\n<td>The identification number of the associated organization. For example, <code>org_5551236</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>location_id</code></td>\n<td>The identification number of the associated location. For example, <code>loc_1234568</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>action</code></td>\n<td>The supported transaction types include the following values:  <br />- <code>sale</code> - Used to collect funds from a debit/credit card or bank account. This action is the same as an authorization + capture operation in just one step, and should be the preferred option if the intent of the merchant is to capture the funds immediately upon authorization.  <br />- <code>authorize</code> - Used to verify the specified account information (bank account or debit/credit card account) and balance (for credit cards). This transaction should be used when the capture of the funds will be initiated at a later time. For example, after the shipping or the delivery of goods subject to the transaction. If the intent is to authorize the transaction and capture the funds immediately a sale transaction call should be sent instead of authorization and capture calls.  <br />- <code>credit</code> - Used to send fund to a bank account or credit/debit card.  <br />- <code>void</code> - Used to stop a transaction or cancel the hold on a transaction that was authorized. Voids can only be performed on items that haven't yet originated (for echeck transactions) or settled (for credit card transactions).  <br />- <code>capture</code> - Used to collect the funds that were previously authorized. See <code>authorize</code>.  <br />- <code>inquiry</code> - Requests the available balance from a card.**  <br />NOTE**: This action is only for merchant organizations approved to process partial authorization transactions.  <br />-** <strong><code>verify</code></strong> <strong>- Used to verify a bank account or card account when there isn't a need to perform a capture operation later.<strong>NOTE</strong>: For credit cards, this action is only supported for merchants enrolled with Vantiv.  <br />-</strong> <strong><code>authenticate</code></strong> <strong>- used to verify the ownership of a bank account. This service verifies if the given person/business (identified by the First &amp; Last name or Business Name) is the owner of a given bank account.  <br />-</strong> <strong><code>force</code></strong> <strong>- Used to capture funds by bypassing verification or authorization functionality. Merchants should verify or authorize a force operation prior to performing it.  <br />-</strong> <strong><code>reverse</code></strong> *<em>- Used to reverse a previous sale (</em><em><strong><code>action=sale</code></strong></em>*) transaction if it's too late to void that transaction.  <br /><strong>NOTE:</strong> Action = <code>credit</code> or <code>force</code> cannot be reversed.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>The current dispositon of the transaction. For a list of transaction status values, click <a href=\"https://developers.forte.net/transaction-codes/\">here</a></td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>customer_token</code></td>\n<td>A unique string used to represent a customer. For example, <code>cst_SoGUG6mcLUS1nVzYBIbk3g</code>. Transactions can be created using only a <code>customer_token</code> (i.e., the merchant does not need to pass the <code>paymethods</code> object or a <code>paymethod_token</code>) if the customer has defined a <code>default_paymethod_token</code> in the <code>customer</code> object. [max length = 26]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>customer_id</code></td>\n<td>A merchant-defined string used to identify the customer. [max length = 15]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>paymethod_token</code></td>\n<td>A unique string used to represent a payment method. For example, <code>mth_1578436587</code>. [max length = 26]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>reference_id</code></td>\n<td>A merchant-defined string that identifies the transaction.[max length = 15]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>authorization_amount</code></td>\n<td>The amount to be charged/credited to the customer.</td>\n<td>decimal</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>order_number</code></td>\n<td>A merchant-assigned ID code that is returned with the transaction response. [max length = 36]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>original_transaction_id</code></td>\n<td>The trace number returned by the original transaction. [max length = 36]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>transaction_id</code></td>\n<td>A 36-character code that uniquely identifies the transaction.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>authorization_code</code></td>\n<td>An approval code from a vendor that authorizes a merchant to void a transaction.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>entered_by</code></td>\n<td>The name or the ID of the person entering the data. [max length = 20]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>received_date</code></td>\n<td>The date the merchant received the transaction. This parameter is return only.</td>\n<td>datetime</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>origination_date</code></td>\n<td>The date the funds of the transaction go to the originating depository financial institution. This parameter is return only.</td>\n<td>datetime</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>sales_tax_amount</code></td>\n<td>The sales tax amount. This field is only required for procurement card transactions.</td>\n<td>decimal</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>freight_amount</code></td>\n<td>The shipping fee amount</td>\n<td>decimal</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>tax_exempt</code></td>\n<td>This field is only required for procurement card transactions to indicate tax exemption and will be required to be passed as true only when sales_tax_amount is $0.</td>\n<td>bool</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>subtotal_amount</code></td>\n<td>The base amount of the good or service. This parameter is auto-calculated and is not required for requests. Use this parameter when calculating service fees and surcharge fee.</td>\n<td>decimal</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>service_fee_amount</code></td>\n<td>The service fee (i.e., convenience fee) for this transaction. Use the following definitions when calculating a service fee:  <br />- <code>service_fee_amount</code> - The percentage calculated (e.g., <code>subtotal_amount</code> * 2.45% for a service fee of 2.45%)  <br />- <code>authorization_amount</code> - The resulting sum of the <code>subtotal_amount</code> and the <code>service_fee_amount</code>.</td>\n<td>decimal</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>surcharge_fee_amount</code></td>\n<td>The surcharge for this transaction. This amount must be calculated by the  <br />merchants and partners in accordance with applicable regulations.  <br />- <code>authorization_amount</code>- The resulting sum of the <code>subtotal_amount</code>and the <code>surcharge_fee_amount.</code></td>\n<td>decimal</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>recurring_indicator</code></td>\n<td>A merchant-assigned flag used to indicate recurring credit card transactions for the following transaction types when set to <code>true</code> for <code>POST</code>-only requests:  <br />  <br />- <code>sale</code>  <br />- <code>authorize</code>  <br />- <code>credit</code>  <br />- <code>force</code>  <br />  <br /><strong>NOTE</strong>: When set to <code>true</code>, this parameter could have an impact on a merchant's interchange rates depending on his or her credit card processor. Contact your processor for more information.</td>\n<td>bool</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>customer_ip_address</code></td>\n<td>The customer's originating IP address. This parameter is used for fraud prevention and does not echo back in the response. [max length = 80]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>save_token</code></td>\n<td>This parameter creates customer and/or paymethod tokens for any transaction <code>POST</code> request—whether passed via request parameters or via swipe data through the <code>card.card_data parameter</code>. Supported values include the following:  <br />  <br />- <code>customer</code> - Creates a new customer and paymethod tokens.  <br />- <code>paymethod</code> - Creates a clientless paymethod token.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>attempt_number</code></td>\n<td>The number of times Forte has presented an ACH transaction for settlement. Values for this field can only be positive, whole numbers (e.g., <code>attempt_number=1</code>). This field is return only. [max length = 80]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>cof_transaction_type</code></td>\n<td>Indicates whether the credential on file (COF) transaction is recurring (<code>0</code>) or customer initiated (<code>1</code>). <strong>NOTE</strong>: If you are performing a zero-dollar authorization and only storing the payment method for future use, then the <code>pg_cof_transaction_type</code> should be <code>1</code>.</td>\n<td>int</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>cof_initial_transaction_id</code></td>\n<td>The processor’s transaction ID of the first transaction for a stored credential on file. This field is required for non-tokenized, credential-on-file subsequent transactions. [max length = 20]</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>billing_address</code></td>\n<td>The Address Object</td>\n<td>object</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>billing_address.address_token</code></td>\n<td>A unique string used to represent an address. For example, <code>add_tq0hemmmtf-zsxgq689rew</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>billing_address.customer_token</code></td>\n<td>A unique string used to represent a customer. For example, <code>cst_SoGUG6mcLUS1nVzYBIbk3g</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>billing_address.organization_id</code></td>\n<td>The identification number of the associated organization. For example, <code>org_5551236</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>billing_address.location_id</code></td>\n<td>The identification number of the associated location. For example, <code>loc_1234568</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>billing_address.first_name</code></td>\n<td>The first name of the user associated with this billing address [max length = 25]. <strong>NOTE</strong>: The <code>first_name</code> and <code>last_name</code> parameters are required for billing addresses when creating transactions without tokens.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>billing_address.last_name</code></td>\n<td>The last name of the user associated with this billing address [max length = 25]. <strong>NOTE</strong>: The <code>first_name</code> and <code>last_name</code> parameters are required for billing addresses when creating transactions without tokens.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>billing_address.company_name</code></td>\n<td>The name of the company associated with this billing address [max length = 20]. <strong>NOTE</strong>: The <code>company_name</code> parameter is required for billing addresses when creating transactions without tokens.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>billing_address.phone</code></td>\n<td>The phone number associated with this billing address. This field supports both U.S. and Canadian phone numbers. [max length = 15]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>billing_address.email</code></td>\n<td>The email address associated with this billing address. [max length = 50]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>billing_address.label</code></td>\n<td>A label that succinctly identifies the address. For example, \"Work\" or \"Home.\" [max length = 50]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>billing_address.address_type</code></td>\n<td>The type of address. Use one of the following values:  <br />  <br />- <code>default_billing</code> - The default billing address  <br />- <code>none</code> - The address is not a default address  <br />- <code>both</code> - The address is both a default shipping and default billing address</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>billing_address.shipping_address_type</code></td>\n<td>Indicates whether the address is a <code>residential</code> or <code>commercial</code> address (if the address is both a billing and shipping address).</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>billing_addreess.physical_address</code></td>\n<td>The Physical Address Object.</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>billing_address.physical_address.street_line1</code></td>\n<td>The first line of the street address. [max length = 35]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>billing_address.physical_address.street_line2</code></td>\n<td>The second line of the street address. [max length = 35]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>billing_address.physical_address.locality</code></td>\n<td>Locality or city/town/village. [max length = 25]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>billing_address.physical_address.region</code></td>\n<td>Region or state/province. This field supports both U.S. and Canadian regions. [max length = 2]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>billing_address.physical_address.country</code></td>\n<td>The ISO 3166-1 alpha-2 country abbreviation. [max length = 2]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>billing_address.physical_address.postal_code</code></td>\n<td>Postal Code [max length = 15]. This field supports both U.S. and Canadian postal codes.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>shipping_address</code></td>\n<td>The Address Object</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>shipping_address.address_token</code></td>\n<td>A unique string used to represent an address. For example, <code>add_tq0hemmmtf-zsxgq689rew</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>shipping_address.customer_token</code></td>\n<td>A unique string used to represent a customer. For example, <code>cst_SoGUG6mcLUS1nVzYBIbk3g</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>shipping_address.organization_id</code></td>\n<td>The identification number of the associated organization. For example, <code>org_5551236</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>shipping_address.location_id</code></td>\n<td>The identification number of the associated location. For example, <code>loc_1234568</code>.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>shipping_address.first_name</code></td>\n<td>The first name of the user associated with this shipping address [max length = 25]. <strong>NOTE</strong>: The <code>first_name</code> and <code>last_name</code> parameters are required for billing addresses when creating transactions without tokens.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>shipping_address.last_name</code></td>\n<td>The last name of the user associated with this shipping address [max length = 25]. <strong>NOTE</strong>: The <code>first_name</code> and <code>last_name</code> parameters are required for billing addresses when creating transactions without tokens.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>shipping_address.company_name</code></td>\n<td>The name of the company associated with this shipping address [max length = 20].  <br /><strong>NOTE</strong>: The <code>company_name</code> parameter is required for billing addresses when creating transactions without tokens.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>shipping_address.phone</code></td>\n<td>The phone number associated with this shipping address. This field supports both U.S. and Canadian phone numbers. [max length = 15]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>shipping_address.email</code></td>\n<td>The email address associated with this shipping address. [max length = 50]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>shipping_address.label</code></td>\n<td>A label that succinctly identifies the address. For example, \"Work\" or \"Home.\"</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>shipping_address.address_type</code></td>\n<td>The type of address. Use one of the following values:  <br />  <br />- <code>default_shipping</code> - The default shipping address  <br />- <code>none</code> - The address is not a default address  <br />- <code>both</code> - The address is both a default shipping address and a default billing address</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>shipping_address.shipping_address_type</code></td>\n<td>Indicates whether the address is a residential or commercial address.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>shipping_address.physical_address</code></td>\n<td>The Physical Address Object.</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>shipping_address.physical_address.street_line1</code></td>\n<td>The first line of the street address. [max length = 35]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>shipping_address.physical_address.street_line2</code></td>\n<td>The second line of the street address. [max length = 35]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>shipping_address.physical_address.locality</code></td>\n<td>Locality or city/town/village [max length = 25]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>shipping_address.physical_address.region</code></td>\n<td>Region or state/province. This field supports both U.S. and Canadian regions. [max length = 2]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>shipping_address.physical_address.country</code></td>\n<td>The ISO 3166-1 alpha-2 country abbreviation. [max length = 2]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>shipping_address.physical_address.postal_code</code></td>\n<td>Postal Code [max length = 15]. This field supports both U.S. and Canadian postal codes.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card</code></td>\n<td>The Card Object</td>\n<td>object</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>card.card_type</code></td>\n<td>The type of credit card [max length = 4]. Options for this field include the following:  <br />- <code>visa</code>  <br />- <code>mast</code>  <br />- <code>amex</code>  <br />- <code>disc</code>  <br />- <code>dine</code>  <br />- <code>jcb</code></td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>card.name_on_card</code></td>\n<td>The name printed on the credit card [max length = 50]. This field is required when creating a new record or creating a permanent token from a one-time token.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>card.last_4_account_number</code></td>\n<td>The last four digits of the redacted account number. This field is return only. [max length = 4]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>card.account_number</code></td>\n<td>The card number. This field is required when creating a new record and can only contain digits. Forte echoes this parameter in the <code>card.masked_account_number</code> response parameter. [max length = 19].  <br />For Digital wallet transactions this device-specific identifier (DPAN - Device Primary Account Number) replaces the card number to securely conduct transactions.  <br /><strong>Note</strong>: Device Primary Account Number is used for alternative method of payments.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>card.expire_month</code></td>\n<td>The expiration month. This field is required when creating a new record and must be a valid future date. [max length = 2].</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>card.expire_year</code></td>\n<td>The expiration year. This field is required when creating a new record and must be a valid future date. [max length = 4].</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>card.card_verification_value</code></td>\n<td>The card verification number. Forte does not store this field with the paymethod token, but echoes it back. [max length = 5].</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>card.procurement_card</code></td>\n<td>Indicates whether or not this is a procurement card transaction. Accepted values are either <code>true</code> or <code>false</code>. For procurement card transactions, merchants must pass the <code>customer_accounting_code</code> field in the <code>card</code> object and the <code>sales_tax_amount</code> field in the <code>transaction</code> object. [max length = 5].</td>\n<td>bool</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.customer_accounting_code</code></td>\n<td>Lists the procurement card accounting code. Forte does not save this information if the merchant is creating a paymethod. [max length = 17]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.one_time_token</code></td>\n<td>A single use token generated by <a href=\"https://developers.forte.net/forte-js/\">Forte.js</a> (e.g., <code>ott_g7vnjqikszabzynu6eowbq</code>).</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.card_reader</code></td>\n<td>The eight-digit device part number specifying which swipe device was used to capture the card data. Currently, only the following models and part numbers are supported when capturing encrypted card data:  <br />  <br />- <code>30050202</code> (IPAD)  <br />- <code>30050203</code> (IPAD PIN Pad and Card Reader)  <br />- <code>21073062</code> (Dynamag)  <br />- <code>21073084</code> (iDynamo - used for iPhone mobile apps)  <br />- <code>21073131</code> (iDynamo 5 (lightening adapter) - used for iPhone mobile apps)  <br />- <code>21079802</code> (eDynamo)  <br />- dynaflex2go (DynaFlex II Go)  <br />  <br />[max length = 20]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.card_data</code></td>\n<td>The full set of swipe data received from the encrypting swipe device. [max length = 1500]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.card_emv_data</code></td>\n<td>The full set of emv data received from the emv device. [max length = 1500]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.fallback_swipe</code></td>\n<td>Indicates if this swiped transaction is a fallback swipe after a dipped transaction failed to process. Accepted values are either <code>true</code> or <code>false</code> [max length = 5]</td>\n<td>bool</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>card.wallet_cryptogram</code></td>\n<td>This one-time encrypted string represents the transaction and merchant information</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>wallet_encrypted_token</code></td>\n<td>This field is a stringified version of the encrypted token provided by the digital wallet(Apple Pay and Google Pay)</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>card.wallet_type</code></td>\n<td>This field will indicate the wallet used to obtain the cryptogram. Supported values: “ApplePay”</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>card.wallet_source</code></td>\n<td>This will indicate the platform on which the payment request was received. Web: integrations capturing payments on browser Mobile: Data values describing an InApp Transaction</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>emv_receipt_data</code></td>\n<td>Receipt data returned when performing an EMV transaction with a Device (eDynamo, Dynaflex and V400c), that can be used to print an EMV compliant receipt. Contains below listed fields:  <br />– application_ label  <br />– entry_mode  <br />– CVM  <br />– AID  <br />– TVR  <br />– IAD  <br />– TSI  <br />– ARC</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>emv_data</code></td>\n<td>EMV data returned when performing an EMV transaction with a Device (eDynamo, Dynaflex and V400c), that can be used to print an EMV compliant receipt</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>serial_number</code></td>\n<td>Applicable only for a V400c device transaction.  <br />The serial number of a V400c device, enabled in cloud mode, on which a card present transaction can be performed.  <br />It accepts serial number in xxx-xxx-xxx or xxxxxxxxx format.  <br />This is a required field when performing transactions on a cloud enabled V400c device.  <br />[max length = 11]</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>sequence_number</code></td>\n<td>Applicable only for a V400c device transaction.  <br />Returns the sequence number of the transaction performed on the device that can be used to print an EMV compliant receipt.</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>signature_line_text</code></td>\n<td>Applicable only for a V400c device transaction.  <br />Returns the name of the card holder for a dipped / swiped card transaction, returns “CARDHOLDER/&lt;&gt;” for a contactless transaction and returns “Signature” for a manual transaction that can be used to print an EMV compliant receipt.</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>recipt_footer1</code></td>\n<td>Applicable only for a V400c device transaction.  <br />Returns the text “I agree to pay the above total amount\", that can be used to print an EMV compliant receipt.</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>recipt_footer2</code></td>\n<td>Applicable only for a V400c device transaction.  <br />Returns the text “according to the card issuer agreement”, that can be used to print an EMV compliant receipt.</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>recipt_footer3</code></td>\n<td>Applicable only for a V400c device transaction.  <br />Returns the text “(Merchant agreement if credit voucher that can be used to print an EMV compliant receipt.</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>cfg_recipt_header1</code></td>\n<td>Applicable only for a V400c device transaction.  <br />The receipt header – line 1, as configured on the V400c device, that can be used to print an EMV compliant receipt.</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>cfg_recipt_header2</code></td>\n<td>Applicable only for a V400c device transaction.  <br />The receipt header – line 2, as configured on the V400c device, that can be used to print an EMV compliant receipt.</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>cfg_recipt_header3</code></td>\n<td>Applicable only for a V400c device transaction.  <br />The receipt header – line 3, as configured on the V400c device, that can be used to print an EMV compliant receipt.</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>cfg_recipt_header4</code></td>\n<td>Applicable only for a V400c device transaction.  <br />The receipt header – line 4, as configured on the V400c device, that can be used to print an EMV compliant receipt.</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>cfg_recipt_header5</code></td>\n<td>Applicable only for a V400c device transaction.  <br />The receipt header – line 5, as configured on the V400c device, that can be used to print an EMV compliant receipt.</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>cfg_recipt_footer1</code></td>\n<td>Applicable only for a V400c device transaction.  <br />The receipt footer – line 1, as configured on the V400c device, that can be used to print an EMV compliant receipt.</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>cfg_recipt_footer2</code></td>\n<td>Applicable only for a V400c device transaction.  <br />The receipt footer – line 2, as configured on the V400c device, that can be used to print an EMV compliant receipt.</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>cfg_recipt_footer3</code></td>\n<td>Applicable only for a V400c device transaction.  <br />The receipt footer – line 3, as configured on the V400c device, that can be used to print an EMV compliant receipt.</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>cfg_recipt_footer4</code></td>\n<td>Applicable only for a V400c device transaction.  <br />The receipt footer – line 4, as configured on the V400c device, that can be used to print an EMV compliant receipt.</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>cfg_recipt_footer5</code></td>\n<td>Applicable only for a V400c device transaction.  <br />The receipt footer – line 5, as configured on the V400c device, that can be used to print an EMV compliant receipt.</td>\n<td>String</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>echeck</code></td>\n<td>The eCheck Object</td>\n<td>object</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>echeck.account_holder</code></td>\n<td>The name of the account owner. This field is required when creating or updating a new record.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>echeck.last_4_account_number</code></td>\n<td>The last four digits of the redacted account number. This field is return only. [max length = 4]</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>echeck.account_number</code></td>\n<td>The DDA or eCheck account number. This field is required when creating or updating a new record and can only contain digits. Forte echoes this parameter in the <code>echeck.masked_account_number</code> response parameter.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>echeck.routing_number</code></td>\n<td>The transit routing number. This field supports both U.S. and Canadian routing numbers. <strong>NOTE</strong>: A Canadian routing number displayed on a check needs to be reformatted differently for electronic payments. If a check displays a routing number as BBBBB-AAA (where AAA indicates the Financial Institution and BBBBB is the branch), then the routing number must be changed to 0AAABBBBB to process the payment electronically. For example, if a check from an account issued by the Bank of Montreal showed the routing number 00011-001, then that number would need to be reformatted to 000100011 for the payment to be electronically processed. Click <a href=\"https://www.payments.ca/payment-resources/directories?field_directory_type=11\">here</a> for a directory of Canadian financial institutions. This field is required when creating or updating a new record and can only contain digits. [max length = 9].</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>echeck.account_type</code></td>\n<td>Use one of the following values for this parameter:  <br />  <br />- <code>Checking</code>  <br />- <code>Savings</code></td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>echeck.item_description</code></td>\n<td>Check number or other description of item to be processed. <strong>NOTE</strong>: This field is only available for <code>POST</code> transactions and is not included in the <code>paymethods</code> object.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>echeck.sec_code</code></td>\n<td>Use one of the following values for this standard-entry class code: <code>ARC</code>, <code>CCD</code>, <code>CIE</code>, <code>CTX</code>, <code>POP</code>, <code>POS</code>, <code>PPD</code>, <code>RCK</code>, <code>TEL</code>, <code>WEB</code>.  <br />  <br />For eCheck transactions, it is only required for action= \"sale\", \"authorize\", \"credit\" and \"force\". Otherwise (e.g. \"verify\", \"authenticate\") it should be null. For more information on SEC codes, see the <a href=\"https://developers.forte.net/ach-standard-entry-class-codes/\">ACH Standard Entry Class (SEC) Codes</a> Tutorial. This parameter is required to conform with a NACHA requirement that states when submitting a transaction for processing, the originator must designate how the transaction was authorized. Forte customers primarily use the <code>PPD</code>, <code>CCD</code>, and <code>WEB</code> SEC codes.</td>\n<td>string</td>\n<td>C</td>\n</tr>\n<tr>\n<td><code>echeck.one_time_token</code></td>\n<td>A single use token generated by <a href=\"https://developers.forte.net/forte-js/\">Forte.js</a> (e.g., <code>ott_g7vnjqikszabzynu6eowbq</code>).</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>echeck.company_entry_description</code></td>\n<td>A field (up to 10 characters) used to identify the transaction on the customer’s bank statement for ACH transactions. Accurate descriptors help reduce disputes and ensure NACHA compliance.  <br /><strong>NOTE</strong>: Standard descriptors must be used for applicable entries:  <br />- <strong>PAYROLL</strong>: for PPD Credit entries (employee wage payments)  <br />- <strong>PURCHASE:</strong> for ACH WEB Debit entries (consumer-authorized purchases)</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>echeck.issuer_bank</code></td>\n<td>Represents the name of the bank associated with the routing number used in an eCheck transaction.</td>\n<td>string</td>\n<td>—</td>\n</tr>\n<tr>\n<td><code>vendor</code></td>\n<td>The vendor Object</td>\n<td>object</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>vendor.vendor_type</code></td>\n<td>The supported vendor types include the following:  <br />  <br />PayPal</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>vendor.vendor_billing_agreement_token</code></td>\n<td>The ID of PayPal billing agreement token</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td><code>vendor.vendor_billing_agreement_id</code></td>\n<td>The ID of PayPal billing agreement</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>line_items</code></td>\n<td>The Line Items Object.</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>line_items.line_item_header</code></td>\n<td>Description of the data elements contained within each line item. This header will be displayed when viewing transaction details.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>line_items.line_item_1-10000</code></td>\n<td>Contents of the line item formatted according to the <code>line_item_header</code>.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>xdata</code></td>\n<td>The Xdata Object</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td><code>xdata.xdata_1-9</code></td>\n<td>Up to nine fields (1-9) of extra data that can be associated with a schedule or transaction. Each <code>xdata_#</code> field can contain up to 255 characters.</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td>vendor</td>\n<td>The vendor Object</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td>vendor.vendor_type</td>\n<td>The supported vendor types include the following.  <br />  <br />PayPal</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>vendor.vendor_order_number</td>\n<td>The ID of the order  <br />  <br />**Note:**The vendor_order_number is required for vendor when creating transaction without PayPal tokens</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>vendor.vendor_billing_agreement_id</td>\n<td>The ID of PayPal billing agreement  <br />  <br /><strong>NOTE</strong>:The vendor_billing_agreement_id is required for vendor when creating transaction with PayPal tokens.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"e81deabe-2cd1-4005-b97a-eddaea8437b3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4fe87d3e-b4c1-4850-bca5-4d8253e799e0","type":"text/javascript","exec":[""]}}],"_postman_id":"a110f52c-df9a-4393-93dd-00c8c9c80dd4"},{"name":"Vendors","item":[{"name":"PayPal","item":[{"name":"Agreements","item":[{"name":"Create Agreement Token","id":"75e6315b-40a8-4866-b666-a8faf2bf7aa4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"vendor\": {\r\n        \"vendor_type\": \"PayPal\",\r\n        \"return_url\": \"https://example.com/returnUrl\",\r\n        \"cancel_url\": \"https://example.com/cancelUrl\",\r\n        \"vendor_account_email\": \"it@pp3.com\"\r\n    }\r\n}\r\n\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/vendors/ven_{{vendorAccountID}}/agreements","description":"<p>This URI creates <code>vendor_billing_agreement_token</code> and returns <code>approval_url</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","vendors","ven_{{vendorAccountID}}","agreements"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"b69115e1-5c1d-4e8e-a4a4-f904a4a7efe3","name":"Create Agreement Token","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"X-Forte-Auth_Organization_Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"vendor\": {\r\n        \"vendor_type\": \"PayPal\",\r\n        \"return_url\": \"https://example.com/returnUrl\",\r\n        \"cancel_url\": \"https://example.com/cancelUrl\",\r\n        \"vendor_account_email\": \"it@pp3.com\"\r\n    }\r\n}\r\n\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/vendors/ven_{{vendorAccountID}}/agreements"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"vendor\": {\n        \"vendor_type\": \"paypal\",\n        \"vendor_approval_url\": \"https://www.sandbox.paypal.com/agreements/approve?ba_token=BA-8BU01301UX1563642\",\n        \"vendor_account_email\": \"it@pp3.com\",\n        \"vendor_billing_agreement_token\": \"BA-8BU01301UX1563642\",\n        \"vendor_token_status\": \"pending\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/organizations/org_300005/locations/loc_192642/vendors/ven_2TXS88UYGN8LE/agreements/agg_BA-8BU01301UX1563642\"\n    }\n}"}],"_postman_id":"75e6315b-40a8-4866-b666-a8faf2bf7aa4"},{"name":"Agreement token by ID","id":"25901565-c4ff-4f43-9ee3-f2e277aaac5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/vendors/ven_{{vendorAccountID}}/agreements/agg_{{vendor_billing_agreement_token}} ","description":"<p>This URL returns paypal agreement token details associated with <code>vendor_billing_agreement_token</code>.</p>\n<p>Agreement token can have the following statuses:</p>\n<ul>\n<li><p>PAYER_ACTION_REQUIRED: The token requires an action from the payer.</p>\n</li>\n<li><p>APPROVED: The token is approved.</p>\n</li>\n<li><p>VAULTED: The payment token has been vaulted.</p>\n</li>\n</ul>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","vendors","ven_{{vendorAccountID}}","agreements","agg_{{vendor_billing_agreement_token}} "],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"39b31274-4d6f-4639-8c4c-bda3fe957f96","name":"Agreement Token by ID-Approved","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"X-Forte-Auth_Organization_Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/vendors/ven_{{vendorAccountID}}/agreements/agg_{{vendor_billing_agreement_token}} "},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text","enabled":true}],"cookie":[],"responseTime":null,"body":"{ {\n    \"location_id\": \"loc_192642\",\n    \"vendor\": {\n        \"vendor_type\": \"paypal\",\n        \"vendor_account_id\": \"2TXS88UYGN8LE\",\n        \"vendor_billing_agreement_token\": \"BA-6RR2783828950364P\",\n        \"vendor_token_status\": \"APPROVED\"\n    },\n    \"billing_address\": {\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"email\": \"sb-ymx43p27176890@personal.example.com\",\n        \"physical_address\": {\n            \"street_line1\": \"500, W Bethany Street\",\n            \"street_line2\": \"123\",\n            \"locality\": \"Allen\",\n            \"region\": \"TX\",\n            \"postal_code\": \"75013\",\n            \"country\": \"US\"\n        }\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/organizations/org_300005/locations/loc_192642/vendors/ven_2TXS88UYGN8LE/agreements/agg_BA-6RR2783828950364P\"\n    }\n}\n\n\n"},{"id":"61d73d3d-b4e0-4865-b8de-06b10be992f3","name":"Agreement Token by ID-Pending","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"X-Forte-Auth_Organization_Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/vendors/ven_{{vendorAccountID}}/agreements/agg_{{vendor_billing_agreement_token}} "},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"location_id\": \"loc_234234\",\n    \"vendor\": {\n        \"vendor_type\": \"payPal\",\n        \"vendor_account_id\": \"2TXS88UYGN8LE\",\n        \"vendor_billing_agreement_token\": \"BA-6RR2783828950364P\",\n        \"vendor_token_status\": \"PENDING\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/organizations/org_300005/locations/loc_192642/vendors/ven_2TXS88UYGN8LE/agreements/agg_BA-6RR2783828950364P\"\n    }\n}"}],"_postman_id":"25901565-c4ff-4f43-9ee3-f2e277aaac5f"}],"id":"8cab6a49-fdac-4a0c-92d9-5f4a62e00bea","description":"<p>The <code>agreements</code> <code>object</code> enables the merchant to create(<code>POST</code>) and retrieve(<code>GET</code>) a paypal token. It generates a <code>vendor_billing_agreement_token</code> and <code>vendor_approval_url</code>. The <code>vendor_billing_agreement_token</code> is a unique string token generated by PayPal. It can be used to create PayPal <code>paymethods</code>. The <code>vendor_approval_url</code> is a web link, that enables the merchants to direct their users to log into PayPal account, review the transaction details and approve the payment. Once the payment is approved by the users on their PayPal account, merchants can redirect the buyers back to their preferred web page by specifying the same in the <code>return_url</code>. The agreements object includes the <code>vendor</code> sub-object.</p>\n<h2 id=\"agreements-object\">Agreements Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n<th>Req</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>organization_id</td>\n<td>The identification number of the associated organization. For example, org_5551236.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>location_id</td>\n<td>The identification number of the associated location. For example, loc_1234568.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>vendor</td>\n<td>The vendor object</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>vendor.vendor_type</td>\n<td>The supported vendor types include the following.  <br />• paypal</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>vendor.vendor_account_email</td>\n<td>The email address of merchant linked to the PayPal account</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>vendor.return_url</td>\n<td>The URL where the customer will be redirected to once the transaction is approved.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>vendor.cancel_url</td>\n<td>The URL where the customer will be re-directed to once the transaction is cancelled.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>vendor.vendor_approval_url</td>\n<td>This is a response parameter. The approval URL is a web link provided by PayPal as part of the response when an Order is created. The buyer should be redirected to this URL to log into their PayPal account, review the transaction details, and approve the payment.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>vendor.vendor_token_status</td>\n<td>The orders status  <br />•PENDING:The token approval is pending.  <br />•APPROVED:The token is approved.</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>vendor.vendor_billing_agreement_token</td>\n<td>The ID of the billing agreement.</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>vendor.vendor_billing_agreement_id</td>\n<td>The ID of PayPal billing agreement.</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>vendor.vendor_account_ID</td>\n<td>The ID that the merchant receives from CSG Forte when onboarded to PayPal.</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address</td>\n<td>The Address Object</td>\n<td>object</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.first_name</td>\n<td>The first name of the user associated with this billing address [max length = 25]. <strong>NOTE</strong>: The first_name and last_name parameters are required for billing addresses when creating transactions without tokens.</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.last_name</td>\n<td>The last name of the user associated with this billing address [max length = 25]. NOTE: The first_name and last_name parameters are required for billing addresses when creating transactions without tokens.</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.phone</td>\n<td>The phone number associated with this billing address. This field supports both U.S. and Canadian phone numbers. [max length = 15</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.email</td>\n<td>The email address associated with this billing address. [max length = 50]</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_addreess.physical_address</td>\n<td>The Physical Address Object.</td>\n<td>object</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.physical_address.street_line1</td>\n<td>The first line of the street address. [max length = 35]</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.physical_address.street_line2</td>\n<td>The second line of the street address. [max length = 35]</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.physical_address.locality</td>\n<td>Locality or city/town/village. [max length = 25]</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.physical_address.region</td>\n<td>Region or state/province. This field supports both U.S. and Canadian regions. [max length = 2]</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.physical_address.country</td>\n<td>The ISO 3166-1 alpha-2 country abbreviation. [max length = 2]</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.physical_address.postal_code</td>\n<td>Postal Code [max length = 15]. This field supports both U.S. and Canadian postal codes.</td>\n<td>string</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8cab6a49-fdac-4a0c-92d9-5f4a62e00bea","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"e1cc7cf3-62e8-493f-ade3-28b198274483","id":"e1cc7cf3-62e8-493f-ade3-28b198274483","name":"Vendors","type":"folder"}}},{"name":"Orders","item":[{"name":"Create Order with Shipping Address","id":"a433e601-2615-411f-a086-e22a2d9adcd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"authorization_amount\": 102.45,\r\n    \"order_number\": \"ORD123\",\r\n    \"vendor\": {\r\n        \"vendor_type\": \"paypal\",\r\n        \"return_url\": \"https://example.com/returnUrl\",\r\n        \"cancel_url\": \"https://example.com/cancelUrl\",\r\n        \"locale\": \"en-US\",\r\n        \"vendor_account_email\": \"it@pp3.com\"\r\n    },\r\n    \"shipping_address\": {\r\n        \"first_name\": \"Emmett\",\r\n        \"last_name\": \"Brown\",\r\n        \"physical_address\": {\r\n            \"street_line1\": \"SA Line 1\",\r\n            \"street_line2\": \"SA Line 2\",\r\n            \"locality\": \"Allen\",\r\n            \"region\": \"TX\",\r\n            \"postal_code\": \"560018\",\r\n            \"country\": \"US\"\r\n        }\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/vendors/ven_{{vendorAccountID}}/orders","description":"<p>This URI creates a PayPal <code>vendor_order_number</code> and</p>\n<p><code>vendor_approval_url</code></p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","vendors","ven_{{vendorAccountID}}","orders"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"3aee88f6-f331-423b-9ab9-51cf8fe8e857","name":"Create Order with Shipping address","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"X-Forte-Auth_Organization_Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"authorization_amount\": 102.45,\r\n    \"order_number\": \"ORD123\",\r\n    \"vendor\": {\r\n        \"vendor_type\": \"paypal\",\r\n        \"return_url\": \"https://example.com/returnUrl\",\r\n        \"cancel_url\": \"https://example.com/cancelUrl\",\r\n        \"locale\": \"en-US\",\r\n        \"vendor_account_email\": \"it@pp3.com\"\r\n    },\r\n    \"shipping_address\": {\r\n        \"first_name\": \"Emmett\",\r\n        \"last_name\": \"Brown\",\r\n        \"physical_address\": {\r\n            \"street_line1\": \"SA Line 1\",\r\n            \"street_line2\": \"SA Line 2\",\r\n            \"locality\": \"Allen\",\r\n            \"region\": \"TX\",\r\n            \"postal_code\": \"560018\",\r\n            \"country\": \"US\"\r\n        }\r\n    }\r\n}\r\n\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{locationID}/vendors/ven_{{vendorAccountID}}/orders"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"authorization_amount\": 102.45,\n    \"order_number\": \"ORD123\",\n    \"vendor\": {\n        \"vendor_type\": \"paypal\",\n        \"vendor_approval_url\": \"https://www.sandbox.paypal.com/checkoutnow?token=4FY371515P9080118\",\n        \"vendor_account_email\": \"it@pp3.com\",\n        \"vendor_order_number\": \"4FY371515P9080118\",\n        \"vendor_order_status\": \"PAYER_ACTION_REQUIRED\"\n    },\n    \"shipping_address\": {\n        \"first_name\": \"Emmett\",\n        \"last_name\": \"Brown\",\n        \"physical_address\": {\n            \"street_line1\": \"SA Line 1\",\n            \"street_line2\": \"SA Line 2\",\n            \"locality\": \"Allen\",\n            \"region\": \"TX\",\n            \"postal_code\": \"560018\",\n            \"country\": \"US\"\n        }\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/organizations/org_334316/locations/loc_192642/vendors/ven_2TXS88UYGN8LE/orders/4FY371515P9080118\"\n    }\n}\n"}],"_postman_id":"a433e601-2615-411f-a086-e22a2d9adcd5"},{"name":"Create orders without Shipping Address","id":"357bbd1c-1f30-4167-8a96-94b350d19232","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"authorization_amount\": 102.45,\r\n    \"order_number\": \"ORD123\",\r\n    \"vendor\": {\r\n        \"vendor_type\": \"paypal\",\r\n        \"return_url\": \"https://example.com/returnUrl\",\r\n        \"cancel_url\": \"https://example.com/cancelUrl\",\r\n        \"locale\": \"en-US\",\r\n        \"vendor_account_email\": \"it@pp3.com\"\r\n    }\r\n}\r\n\r\n\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/vendors/ven_{{vendorAccountID}}/orders\n\n","description":"<p>This URI creates a PayPal <code>vendor_order_number</code> and returns <code>vendor_approval_url</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{{locationID}}","vendors","ven_{{vendorAccountID}}","orders\n\n"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"3b50b2b4-256e-49bd-abe3-07868aac4674","name":"Create Orders without Shipping address","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Authorization","value":"{{Authorization}}"},{"key":"X-Forte-Auth_Organization_Id","value":"org_{{AuthOrganizationID}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"authorization_amount\": 102.45,\r\n    \"order_number\": \"ORD123\",\r\n    \"vendor\": {\r\n        \"vendor_type\": \"paypal\",\r\n        \"return_url\": \"https://example.com/returnUrl\",\r\n        \"cancel_url\": \"https://example.com/cancelUrl\",\r\n        \"locale\": \"en-US\",\r\n        \"vendor_account_email\": \"it@pp3.com\"\r\n    }\r\n}\r\n\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{{locationID}}/vendors/ven_{{vendorAccountID}}/orders\n\n"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"authorization_amount\": 102.45,\n    \"order_number\": \"ORD123\",\n    \"vendor\": {\n        \"vendor_type\": \"paypal\",\n        \"vendor_approval_url\": \"https://www.sandbox.paypal.com/checkoutnow?token=49D016001T440021E\",\n        \"vendor_account_email\": \"it@pp3.com\",\n        \"vendor_order_number\": \"49D016001T440021E\",\n        \"vendor_order_status\": \"PAYER_ACTION_REQUIRED\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Create Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/organizations/org_334316/locations/loc_192642/vendors/ven_2TXS88UYGN8LE/orders/49D016001T440021E\"\n    }\n}\n\n\n"}],"_postman_id":"357bbd1c-1f30-4167-8a96-94b350d19232"},{"name":"Order by ID","id":"6ddd36b3-d003-42e6-b70c-c1b5ac4c06af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{locationID}/vendors/ven_{{vendorAccountID}}/orders/{{vendor_order_number}} ","description":"<p>This URI returns PayPal order details associated with <code>vendor_order_number</code>.<br />Orders can have the following statuses:</p>\n<p>• PAYER_ACTION_REQUIRED: The order requires an action from the payer.<br />• APPROVED : The customer approved the payment through the PayPal wallet.<br />• COMPLETED : The payment was authorized and captured for the order.</p>\n<p><strong>NOTE</strong>: When the <code>vendor_order_status</code> is : \"PAYER_ACTION_REQUIRED\", since the order is not yet approved, the billing_address will not be part of the response and shipping_address will be part of the response only if it was passed in the request.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{locationID}","vendors","ven_{{vendorAccountID}}","orders","{{vendor_order_number}} "],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"49b158b3-fbff-480b-b3ba-ee5947bbfeb5","name":"Order by ID-Payer Action Required","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"X-Forte-Auth_Organization_Id   ","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{baseURI}}/organizations/org_organizationID/locations/loc_locationID/vendors/ven_{{vendorAccountID}}/orders/{{ vendor_order_number }}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"authorization_amount\": 102.45,\n    \"location_id\": \"192642\",\n    \"vendor\": {\n        \"vendor_type\": \"paypal\",\n        \"vendor_account_email\": \"it@pp3.com\",\n        \"vendor_order_number\": \"49D016001T440021E\",\n        \"vendor_order_status\": \"PAYER_ACTION_REQUIRED\",\n        \"vendor_account_id\": \"2TXS88UYGN8LE\"\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/organizations/org_334316/locations/loc_192642/vendors/ven_2TXS88UYGN8LE/orders/49D016001T440021E\"\n    }\n}\n"},{"id":"1f6fe89d-8b5f-4537-a78b-0121efd0ea21","name":"Order by ID-Approved","originalRequest":{"method":"GET","header":[],"url":"{{baseURI}}/organizations/org_organizationID/locations/loc_locationID/vendors/ven_{{vendorAccountID}}/orders/{{ vendor_order_number }}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"authorization_amount\": 102.45,\n    \"location_id\": \"192642\",\n    \"vendor\": {\n        \"vendor_type\": \"paypal\",\n        \"vendor_account_email\": \"it@pp3.com\",\n        \"vendor_order_number\": \"49D016001T440021E\",\n        \"vendor_order_status\": \"APPROVED\",\n        \"vendor_account_id\": \"2TXS88UYGN8LE\"\n    },\n    \"billing_address\": {\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"email\": \"sb-ymx43p27176890@personal.example.com\",\n        \"physical_address\": {\n            \"street_line1\": \"500, W Bethany Street\",\n            \"street_line2\": \"123\",\n            \"locality\": \"Allen\",\n            \"region\": \"TX\",\n            \"postal_code\": \"75013\",\n            \"country\": \"US\"\n        }\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/organizations/org_334316/locations/loc_192642/vendors/ven_2TXS88UYGN8LE/orders/49D016001T440021E\"\n    }\n}\n"},{"id":"8a37015e-c2e2-46b2-8317-06e5e71deeec","name":"Order by ID -Completed","originalRequest":{"method":"GET","header":[],"url":"{{baseURI}}/organizations/org_organizationID/locations/loc_locationID/vendors/ven_{{vendorAccountID}}/orders/{{ vendor_order_number }}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"authorization_amount\": 102.45,\n    \"location_id\": \"192642\",\n    \"vendor\": {\n        \"vendor_type\": \"paypal\",\n        \"vendor_account_email\": \"it@pp3.com\",\n        \"vendor_order_number\": \"8XJ96991U0723350T\",\n        \"vendor_order_status\": \"COMPLETED\",\n        \"vendor_account_id\": \"2TXS88UYGN8LE\"\n    },\n    \"billing_address\": {\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"email\": \"sb-ymx43p27176890@personal.example.com\",\n        \"physical_address\": {\n            \"street_line1\": \"500, W Bethany Street\",\n            \"street_line2\": \"123\",\n            \"locality\": \"Allen\",\n            \"region\": \"TX\",\n            \"postal_code\": \"75013\",\n            \"country\": \"US\"\n        }\n    },\n    \"shipping_address\": {\n        \"first_name\": \"Emmett\",\n        \"last_name\": \"Brown\",\n        \"physical_address\": {\n            \"street_line1\": \"SA Line 1\",\n            \"street_line2\": \"SA Line 2\",\n            \"locality\": \"Allen\",\n            \"region\": \"TX\",\n            \"postal_code\": \"560018\",\n            \"country\": \"US\"\n        }\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Get Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/organizations/org_334316/locations/loc_192642/vendors/ven_2TXS88UYGN8LE/orders/8XJ96991U0723350T\"\n    }\n}\n"}],"_postman_id":"6ddd36b3-d003-42e6-b70c-c1b5ac4c06af"},{"name":"Update a PayPal Order","id":"e21bee05-6525-4cb5-9a23-10e69dd03cb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"{{apiaccessid}}"},{"key":"password","value":"{{apisecurekey}}"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"vendor\": {\r\n        \"vendor_type\": \"PayPal\"\r\n    },\r\n    \"authorization_amount\": 109.45,\r\n    \"Shipping_address\": {\r\n        \"first_name\": \"Marty\",\r\n        \"last_name\": \"Mcly\",\r\n        \"physical_address\": {\r\n            \"street_line1\": \"8003 Clock Tower Ln\",\r\n            \"street_line2\": \"Suite 200\",\r\n            \"locality\": \"Allen\",\r\n            \"region\": \"TX\",\r\n            \"postal_code\": \"560018\",\r\n            \"country\": \"US\"\r\n        }\r\n    }\r\n}\r\n\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{locationID}/vendors/ven_{{vendorAccountID}}/orders/{{vendor_order_number}}","description":"<p>This URI updates the <code>authorization_amount</code> and <code>shipping_address</code> associated with the <code>vendor_order_number</code>.</p>\n","urlObject":{"path":["organizations","org_{{organizationID}}","locations","loc_{locationID}","vendors","ven_{{vendorAccountID}}","orders","{{vendor_order_number}}"],"host":["{{baseURI}}"],"query":[],"variable":[]}},"response":[{"id":"3080de7b-fc8d-4f3b-bf52-8a3c31bed14b","name":"Update a PayPal Order","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Authorization}}","type":"text"},{"key":"X-Forte-Auth_Organization_Id","value":"org_{{AuthOrganizationID}}","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"vendor\": {\r\n        \"vendor_type\": \"PayPal\"\r\n    },\r\n    \"authorization_amount\": 109.45,\r\n    \"Shipping_address\": {\r\n        \"first_name\": \"Marty\",\r\n        \"last_name\": \"Mcly\",\r\n        \"physical_address\": {\r\n            \"street_line1\": \"8003 Clock Tower Ln\",\r\n            \"street_line2\": \"Suite 200\",\r\n            \"locality\": \"Allen\",\r\n            \"region\": \"TX\",\r\n            \"postal_code\": \"560018\",\r\n            \"country\": \"US\"\r\n        }\r\n    }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"{{baseURI}}/organizations/org_{{organizationID}}/locations/loc_{locationID}/vendors/ven_{{vendorAccountID}}/orders/{{vendor_order_number}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"authorization_amount\": 109.45,\n    \"location_id\": \"loc_242550\",\n    \"vendor\": {\n        \"vendor_type\": \"PayPal\"\n    },\n    \"Shipping_address\": {\n        \"first_name\": \"Marty\",\n        \"last_name\": \"Mcly\",\n        \"physical_address\": {\n            \"street_line1\": \"8003 Clock Tower Ln\",\n            \"street_line2\": \"Suite 200\",\n            \"locality\": \"Allen\",\n            \"region\": \"TX\",\n            \"postal_code\": \"560018\",\n            \"country\": \"US\"\n        }\n    },\n    \"response\": {\n        \"environment\": \"live\",\n        \"response_desc\": \"Update Successful.\"\n    },\n    \"links\": {\n        \"self\": \"https://api.forte.net/v3/organizations/org_300069/locations/loc_258750/vendors/ven_X8FJTTXPMDDWQ/orders/97D647112X2525015\"\n    }\n}"}],"_postman_id":"e21bee05-6525-4cb5-9a23-10e69dd03cb2"}],"id":"79c09528-7e79-4c5a-86d8-c166d3580cf2","description":"<p>The <code>orders</code> <code>object</code> enables the merchant to create(<code>POST</code>), retrieve(<code>GET</code>) and update(<code>PUT</code>) a PayPal order. It generates a <code>vendor_order_number</code> and <code>vendor_approval_url.</code> The <code>vendor_order_number</code> is a unique string ID referenced for any PayPal related transactions. The <code>vendor_approval_url</code> is a web link, that enables the merchants to direct their users to log into PayPal account, review the transaction details and approve the payment. Once the payment is approved by the users on their PayPal account, merchants can redirect the buyers back to their preferred web page by specifying the same in the <code>return_url</code>.<br />The <code>order</code> object includes the <code>vendor</code> sub-object.</p>\n<h2 id=\"orders-object\"><strong>Orders Object</strong></h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Req</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>organization_id</td>\n<td>The identification number of the associated organization. For example, org_5551236.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>location_id</td>\n<td>The identification number of the associated location. For example, loc_1234568.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>authorization_amount</td>\n<td>The amount to be charged/credited to the customer.</td>\n<td>decimal</td>\n<td>R</td>\n</tr>\n<tr>\n<td>subtotal_amount</td>\n<td>The base amount of the goods or service.  <br />Use this parameter when calculating service fees in the other fee breakdown.</td>\n<td>decimal</td>\n<td>C</td>\n</tr>\n<tr>\n<td>freight_amount</td>\n<td>The shipping fee amount</td>\n<td>decimal</td>\n<td>O</td>\n</tr>\n<tr>\n<td>service_fee_amount</td>\n<td>Thye service fee (i.e., convenience fee) for this order.  <br />Use this following definitions when calculating a service fee:  <br />- service_fee_amount: The percentage calculated (for example: subtotal_amount * 2.45% for a service fee of 2.45%)  <br />- authorization_amount: The resulting sum of the subtotal_amount and the service_fee_amount</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>order_number</td>\n<td>A merchant-assigned unique ID code that is returned with the PayPal-create order response.  <br /><strong>Note</strong>: order_number is unique for each PayPal order and is identified as invoice number in PayPal[max length = 36]</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td>vendor</td>\n<td>The <code>vendor</code> object</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>vendor.vendor_type</td>\n<td>The supported vendor types include the following.  <br />• PayPal</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>vendor.vendor_account_email</td>\n<td>The email address of merchant linked to the PayPal account.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>vendor.return_url</td>\n<td>The URL where the customer is redirected after the customer approves the payment</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>vendor.cancel_url</td>\n<td>The URL where the customer is redirected after the customer cancels the payment.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>vendor.locale</td>\n<td>The parameter used to set the language in which the PayPal checkout window will be displayed. The supported values are:  <br />• en_US  <br />• fr_CA  <br />• es_MX  <br />Default value is: en_US</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td>vendor.vendor_order_number</td>\n<td>This is a response parameter. The ID of the order.</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>vendor.vendor_approval_url</td>\n<td>This is a response parameter. The approval URL is a web link provided by PayPal as part of the response when an Order is created. The buyer should be redirected to this URL to log into their PayPal account, review the transaction details, and approve the payment.</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>vendor.vendor_order_status</td>\n<td>This is a response parameter. It provides the status of the order. Possible value are:  <br />•PAYER_ACTION_REQUIRED : The order requires an action from the payer  <br />• APPROVED : The customer approved the payment through the PayPal wallet  <br />• COMPLETED : The authorized payment was captured for the order.</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>vendor.vendor_account_ID</td>\n<td>The ID that the merchant receives from CSG Forte when onboarded to PayPal.</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>shipping_address</td>\n<td>The Address Object</td>\n<td>object</td>\n<td>O</td>\n</tr>\n<tr>\n<td>shipping_address.physical_address</td>\n<td>The Physical Address Object.</td>\n<td>object</td>\n<td>R</td>\n</tr>\n<tr>\n<td>shipping_address.first_name</td>\n<td>The first name of the user associated with this shipping address [max length = 25].</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>shipping_address.last_name</td>\n<td>The last name of the user associated with this shipping address [max length = 25].</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>shipping_address.physical_address.street_line1</td>\n<td>The first line of the street address. [max length = 35]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>shipping_address.physical_address.street_line2</td>\n<td>The second line of the street address. [max length = 35</td>\n<td>string</td>\n<td>O</td>\n</tr>\n<tr>\n<td>shipping_address.physical_address.locality</td>\n<td>Locality or city/town/village [max length = 25]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>shipping_address.physical_address.region</td>\n<td>Region or state/province. This field supports both U.S. and Canadian regions. [max length = 2]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>shipping_address.physical_address.country</td>\n<td>The ISO 3166-1 alpha-2 country abbreviation. [max length = 2]</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>shipping_address.physical_address.postal_code</td>\n<td>Postal Code [max length = 15]. This field supports both U.S. and Canadian postal codes.</td>\n<td>string</td>\n<td>R</td>\n</tr>\n<tr>\n<td>billing_address</td>\n<td>The Address Object</td>\n<td>object</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.first_name</td>\n<td>The first name of the user associated with this billing address [max length = 25].</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.last_name</td>\n<td>The last name of the user associated with this billing address [max length = 25].</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.phone</td>\n<td>The phone number associated with this billing address. This field supports both U.S. and Canadian phone numbers. [max length = 15]</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.email</td>\n<td>The email address associated with this billing address. [max length = 50]</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_addreess.physical_address</td>\n<td>The Physical Address Object.</td>\n<td>object</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.physical_address.street_line1</td>\n<td>The first line of the street address. [max length = 35]</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.physical_address.street_line2</td>\n<td>The second line of the street address. [max length = 35]</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.physical_address.locality</td>\n<td>Locality or city/town/village. [max length = 25]</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.physical_address.region</td>\n<td>Region or state/province. This field supports both U.S. and Canadian regions. [max length = 2]</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.physical_address.country</td>\n<td>The ISO 3166-1 alpha-2 country abbreviation. [max length = 2]</td>\n<td>string</td>\n<td>-</td>\n</tr>\n<tr>\n<td>billing_address.physical_address.postal_code</td>\n<td>Postal Code [max length = 15]. This field supports both U.S. and Canadian postal codes.</td>\n<td>string</td>\n<td>-</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"79c09528-7e79-4c5a-86d8-c166d3580cf2","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"e1cc7cf3-62e8-493f-ade3-28b198274483","id":"e1cc7cf3-62e8-493f-ade3-28b198274483","name":"Vendors","type":"folder"}}}],"id":"79894ac2-761a-45a9-b32c-d67aa00959e0","description":"<p>The <code>paypal</code> <code>object</code> contains sub-objects required to create, retrieve, and update PayPal orders and PayPal billing agreements, that can be further used to create a sale or a token transaction. The <code>paypal</code> object includes <code>orders</code> and <code>agreements</code> sub-objects.Check.</p>\n<p><strong>Note</strong>:For more information on PayPal requirements and integration process , see the <a href=\"https://developers.forte.net/digital-wallet-payment/\">Digital Wallets</a> page on DevDocs.</p>\n","_postman_id":"79894ac2-761a-45a9-b32c-d67aa00959e0","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"e1cc7cf3-62e8-493f-ade3-28b198274483","id":"e1cc7cf3-62e8-493f-ade3-28b198274483","name":"Vendors","type":"folder"}}}],"id":"e1cc7cf3-62e8-493f-ade3-28b198274483","description":"<p>The <code>vendors object</code> is a logical container resource that holds digital payment vendors, that are supported by CSG Forte. Currently, PayPal is the only supported vendor.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"a2b18409-0959-40f8-bf28-42a759bc7d68","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"49eaa7c2-6003-4df9-b6d2-3403d91786ef","type":"text/javascript","exec":[""]}}],"_postman_id":"e1cc7cf3-62e8-493f-ade3-28b198274483"},{"name":"Changelogs","item":[{"name":"July 7,2024","item":[],"id":"d3433871-eca2-4c32-ad40-6523c54e87e7","description":"<ul>\n<li><p>Renamed Forte Verify to Forte Validate/ Validate+ Transaction. View <a href=\"https://restdocs.forte.net/#ce6a2a7d-5724-4729-92f5-415bfaddaf66\">here</a></p>\n</li>\n<li><p>Added order_number in Request and Response body. View <a href=\"https://restdocs.forte.net/#ce6a2a7d-5724-4729-92f5-415bfaddaf66\">here</a></p>\n</li>\n</ul>\n","_postman_id":"d3433871-eca2-4c32-ad40-6523c54e87e7"},{"name":"May 30,2024","item":[],"id":"36e7dc61-b7a8-4d59-9922-8d72e9d619ec","description":"<p>Digital Wallets Request and Response Updated in:</p>\n<ul>\n<li><a href=\"https://restdocs.forte.net/#28d74201-e45b-40ad-9449-f47f76bb1063\">Forte REST API v3<br /><br /></a></li>\n</ul>\n<p>In GET Customer's Paymethods base URI is updated. View <a href=\"https://restdocs.forte.net/#48e1cb12-5c59-44a9-bd67-3b9a5386bf74\">here;i</a>ncorrect variable location was replaced with locationId.  </p>\n<p><a href=\"https://restdocs.forte.net/#28d74201-e45b-40ad-9449-f47f76bb1063\"><br /></a></p>\n","_postman_id":"36e7dc61-b7a8-4d59-9922-8d72e9d619ec"},{"name":"February 28,2024","item":[],"id":"b1aba8d6-c33c-43d1-a53b-1a63ed18380c","description":"<ul>\n<li>vendor_account_ID parameter added to Orders and Agreements table.</li>\n</ul>\n<p>Updated and rectified merchantID references and replaced it with</p>\n<ul>\n<li><p>vendorAccountID in <a href=\"https://restdocs.forte.net/#06ec397a-2f7b-4cd3-8cbe-1cc0552ccccf\">Update a PayPal Order</a></p>\n</li>\n<li><p><a href=\"https://restdocs.forte.net/#8ccaa602-f232-4301-9cef-38d353e1c9e8\">Create orders without Shipping address.</a></p>\n</li>\n<li><p><a href=\"https://restdocs.forte.net/#8ccaa602-f232-4301-9cef-38d353e1c9e8\">Create orders with shipping address</a></p>\n</li>\n<li><p><a href=\"https://restdocs.forte.net/#2594dfaf-a5ca-4e79-a7e1-8799b6b032b8\">Create agreement Token</a> and all other example requests and responses wherever merchantID was referenced.</p>\n</li>\n</ul>\n","_postman_id":"b1aba8d6-c33c-43d1-a53b-1a63ed18380c"},{"name":"February 10,2024","item":[],"id":"1e69757c-6c3b-47e2-b4cf-83c5be8661db","description":"<ul>\n<li>Updated for billing_address.first_name and billing_address.last_name in Agreements Object.</li>\n</ul>\n<p>Changes in Paymethods-</p>\n<ul>\n<li><p>Added <a href=\"https://restdocs.forte.net/#6406bc25-94f6-44b7-9816-659e1bef4e62\">Customer PayPal method</a> object.</p>\n</li>\n<li><p>Request and response body is<br />  updated in <a href=\"https://restdocs.forte.net/#608ff58e-4a5b-4da1-9556-3ee9c2c59115\">Clientless PayPal method</a></p>\n</li>\n<li><p>vendor.vendor_type,vendor.vendor_order_number , vendor.vendor_billing_agreement_id<br />  is marked Mandotory in Transactions.</p>\n</li>\n</ul>\n","_postman_id":"1e69757c-6c3b-47e2-b4cf-83c5be8661db"},{"name":"January 9,2024","item":[],"id":"0ca751d4-4467-4a8c-b530-df4333939a57","description":"<ul>\n<li><p>Added Vendors logical container which holds digital<br />  payment Vendors. View <a href=\"https://restdocs.forte.net/#748c0ae5-3b35-4ee7-908c-f84a402b39cb\">here</a>.</p>\n</li>\n<li><p> Added PayPal resource that contains Orders and<br />  Agreements objects. View <a href=\"https://restdocs.forte.net/#e14881c3-6cc3-4c27-ae80-d4354e333873\">here</a>.</p>\n</li>\n<li><p>New Sample Post requests and responses for PayPal<br />  resource is added -<br />  <a href=\"https://restdocs.forte.net/#8169114c-9dfa-4449-ae08-4aac00bbc8d0\">Customers with PayPal Payment Method</a><br />  <a href=\"https://restdocs.forte.net/#aea2aebf-38a7-4bc1-a7b8-66410dd6ae5e\">Customer with Billing/Shipping Address and PayPal<br />Payment Data</a><br />  <a href=\"https://restdocs.forte.net/#6406bc25-94f6-44b7-9816-659e1bef4e62\">Customer PayPal Paymethod</a><br />  <a href=\"https://restdocs.forte.net/#608ff58e-4a5b-4da1-9556-3ee9c2c59115\">Clientless PayPal Paymethod</a></p>\n</li>\n</ul>\n","_postman_id":"0ca751d4-4467-4a8c-b530-df4333939a57"}],"id":"f28c82dc-b354-4b19-9ad8-f664043342ea","description":"<p>This Changelog highlights notable changes to the <a href=\"https://restdocs.forte.net/\">Forte REST API</a> docs.</p>\n","_postman_id":"f28c82dc-b354-4b19-9ad8-f664043342ea"}],"event":[{"listen":"prerequest","script":{"id":"111c715f-dd4e-48f2-80a3-2036408a329f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4b2c6428-ba93-48bb-b402-7df06d1647bf","type":"text/javascript","exec":[""]}}],"variable":[{"key":"AuthOrganizationId","value":"org_300005"}]}