{"info":{"_postman_id":"08d4f669-7edc-4973-81f7-5eb7c86b4b1a","name":"Orbt","description":"<html><head></head><body><h1 id=\"orbt-api-complete-user-guide-faq\">🚀 ORBT API - Complete User Guide &amp; FAQ</h1>\n<hr>\n<h2 id=\"🎯-introduction\">🎯 Introduction</h2>\n<h3 id=\"what-is-orbt\">What is ORBT?</h3>\n<p><strong>ORBT</strong> is a B2B2C platform built by Ncentiva that enables businesses (Partners) to distribute digital incentives, gift cards, controlled budgets, and benefits to Consumers through a modern and scalable interface.</p>\n<h3 id=\"purpose-of-orbt\">Purpose of ORBT</h3>\n<ul>\n<li><p>✅ Simplify how companies distribute digital value</p>\n</li>\n<li><p>✅ Centralize incentive and benefit management</p>\n</li>\n<li><p>✅ Deliver a modern experience for end-users</p>\n</li>\n<li><p>✅ Leverage Ncentiva's robust gift card processing engine</p>\n</li>\n</ul>\n<h3 id=\"main-use-cases\">Main Use Cases</h3>\n<ul>\n<li><p>💼 Employee rewards and benefits</p>\n</li>\n<li><p>🎁 Customer incentives and loyalty programs</p>\n</li>\n<li><p>📢 Promotional campaigns</p>\n</li>\n<li><p>🎫 Digital gift card distribution</p>\n</li>\n<li><p>💳 Budget-controlled purchasing</p>\n</li>\n<li><p>🏪 Automated payouts in branded stores</p>\n</li>\n<li><p>💸 Refunding alternatives platform</p>\n</li>\n</ul>\n<h3 id=\"who-can-use-orbt\">Who Can Use ORBT?</h3>\n<ul>\n<li><p>Companies of any size</p>\n</li>\n<li><p>Agencies and corporate programs</p>\n</li>\n<li><p>Loyalty platforms</p>\n</li>\n<li><p>Retailers and marketplaces</p>\n</li>\n<li><p>Any business wanting to reach end-customers with digital value</p>\n</li>\n</ul>\n<hr>\n<h2 id=\"🏁-quick-start-guide\">🏁 Quick Start Guide</h2>\n<h3 id=\"prerequisites\">Prerequisites</h3>\n<p>Before you begin, ensure you have:</p>\n<ul>\n<li><p>✅ <strong>API Key</strong> - Your unique authentication key</p>\n</li>\n<li><p>✅ <strong>Client ID</strong> - Your partner identifier</p>\n</li>\n<li><p>✅ <strong>HMAC Secret</strong> - Your signing secret key</p>\n</li>\n<li><p>✅ <strong>Environment Access</strong> - UAT or Production URL</p>\n</li>\n</ul>\n<h3 id=\"your-first-api-call\">Your First API Call</h3>\n<p><strong>Step 1:</strong> Configure your authentication (see <a href=\"https://claude.ai/chat/8d4ad515-bcc6-471f-a0cc-3deedcdc9739#authentication\">Authentication</a>)</p>\n<p><strong>Step 2:</strong> Create your first customer:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">POST https://api-uat.ncentiva.com/api/partner/v1/customer\n\n</code></pre>\n<p><strong>Step 3:</strong> Review the response and retrieve wallet details</p>\n<p><strong>Step 4:</strong> Fund the customer wallet or assign campaigns</p>\n<hr>\n<h2 id=\"🔐-authentication\">🔐 Authentication</h2>\n<p>ORBT uses <strong>HMAC-SHA256 signature-based authentication</strong> to ensure secure API communication.</p>\n<h3 id=\"required-headers\">Required Headers</h3>\n<p>Every authenticated request must include these four headers:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Description</th>\n<th>Example Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>x-api-key</code></td>\n<td>Your unique API key</td>\n<td><code>YOUR_API_KEY_HERE</code></td>\n</tr>\n<tr>\n<td><code>x-client-id</code></td>\n<td>Your partner/client ID</td>\n<td><code>xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx</code></td>\n</tr>\n<tr>\n<td><code>x-signature</code></td>\n<td>HMAC-SHA256 signature</td>\n<td><code>Generated dynamically</code></td>\n</tr>\n<tr>\n<td><code>x-timestamp</code></td>\n<td>ISO 8601 timestamp</td>\n<td><code>2026-02-12T14:30:00.000Z</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"generating-the-hmac-signature\">Generating the HMAC Signature</h3>\n<p>The signature ensures request integrity and authenticity.</p>\n<h4 id=\"formula\">Formula</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">dataToSign = METHOD + \"\\n\" + TIMESTAMP + \"\\n\" + CLIENT_ID + \"\\n\" + BODY\nsignature = HMAC-SHA256(dataToSign, HMAC_SECRET).toBase64()\n\n</code></pre>\n<h4 id=\"javascript-example-postman-pre-request-script\">JavaScript Example (Postman Pre-request Script)</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const method = pm.request.method; // e.g., \"POST\"\nconst timestamp = new Date().toISOString();\nconst body = pm.request.data ? \n  (typeof pm.request.data === 'string' ? \n    pm.request.data : \n    JSON.stringify(pm.request.data)) : \"\";\n// Replace with your actual credentials\nconst apiKey = 'YOUR_API_KEY_HERE';\nconst clientId = 'YOUR_CLIENT_ID_HERE';\nconst hmacSecret = 'YOUR_HMAC_SECRET_HERE';\nconst dataToSign = `${method}\\n${timestamp}\\n${clientId}\\n${body}`;\nconst crypto = require('crypto-js');\nconst signature = crypto.HmacSHA256(dataToSign, hmacSecret)\n  .toString(crypto.enc.Base64);\n// Set environment variables\npm.environment.set('x-api-key', apiKey);\npm.environment.set('x-client-id', clientId);\npm.environment.set('x-signature', signature);\npm.environment.set('x-timestamp', timestamp);\n\n</code></pre>\n<h4 id=\"python-example\">Python Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-python\">import hmac\nimport hashlib\nimport base64\nfrom datetime import datetime\ndef generate_signature(method, client_id, body, hmac_secret):\n    timestamp = datetime.utcnow().isoformat() + 'Z'\n    data_to_sign = f\"{method}\\n{timestamp}\\n{client_id}\\n{body}\"\n    signature = hmac.new(\n        hmac_secret.encode('utf-8'),\n        data_to_sign.encode('utf-8'),\n        hashlib.sha256\n    ).digest()\n    return base64.b64encode(signature).decode('utf-8'), timestamp\n\n</code></pre>\n<h3 id=\"security-best-practices\">Security Best Practices</h3>\n<ul>\n<li><p>🔒 Never expose your HMAC secret in client-side code</p>\n</li>\n<li><p>🔄 Rotate API keys regularly</p>\n</li>\n<li><p>📝 Log API key usage for audit trails</p>\n</li>\n<li><p>⏱️ Implement timestamp validation to prevent replay attacks</p>\n</li>\n<li><p>🚫 Revoke compromised keys immediately</p>\n</li>\n</ul>\n<hr>\n<h2 id=\"🛠️-api-endpoints\">🛠️ API Endpoints</h2>\n<h3 id=\"base-urls\">Base URLs</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Environment</th>\n<th>Base URL</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>UAT/Staging</strong></td>\n<td><code>https://api-uat.ncentiva.com</code></td>\n</tr>\n<tr>\n<td><strong>Production</strong></td>\n<td><code>https://api.ncentiva.com</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"available-endpoints\">Available Endpoints</h3>\n<h4 id=\"1-create-customer\">1. Create Customer</h4>\n<p><strong>Endpoint:</strong> <code>POST /api/partner/v1/customer</code></p>\n<p>Creates a new customer with an initial wallet balance.</p>\n<p><strong>Request Body:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"fullName\": \"John Doe\",\n  \"email\": \"john.doe@example.com\",\n  \"currency\": \"usd\",\n  \"initialFunds\": 100.00\n}\n\n</code></pre>\n<p><strong>Request Parameters:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>fullName</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>Customer's full name</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>Unique email address</td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>Currency code (e.g., <code>usd</code>, <code>eur</code>)</td>\n</tr>\n<tr>\n<td><code>initialFunds</code></td>\n<td>number</td>\n<td>Yes</td>\n<td>Initial wallet balance</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Success Response (200 OK):</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"data\": {\n    \"id\": 51,\n    \"walletId\": \"51\",\n    \"fullName\": \"John Doe\",\n    \"email\": \"john.doe@example.com\",\n    \"walletBalance\": 100.00,\n    \"currency\": \"USD\"\n  }\n}\n\n</code></pre>\n<p><strong>Response Fields:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>integer</td>\n<td>Customer ID</td>\n</tr>\n<tr>\n<td><code>walletId</code></td>\n<td>string</td>\n<td>Wallet identifier</td>\n</tr>\n<tr>\n<td><code>fullName</code></td>\n<td>string</td>\n<td>Customer name</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td>string</td>\n<td>Customer email</td>\n</tr>\n<tr>\n<td><code>walletBalance</code></td>\n<td>number</td>\n<td>Current wallet balance</td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td>string</td>\n<td>Wallet currency</td>\n</tr>\n</tbody>\n</table>\n</div><hr>\n<h2 id=\"📚-platform-concepts\">📚 Platform Concepts</h2>\n<h3 id=\"partner\">Partner</h3>\n<p>A <strong>Partner</strong> is the business entity registered in ORBT that manages Consumers, Team Members, funds, campaigns, and catalog access.</p>\n<p><strong>Capabilities:</strong></p>\n<ul>\n<li><p>Manage consumer accounts</p>\n</li>\n<li><p>Distribute funds and incentives</p>\n</li>\n<li><p>Create and assign campaigns</p>\n</li>\n<li><p>Configure brand catalogs</p>\n</li>\n<li><p>Access reporting and analytics</p>\n</li>\n</ul>\n<h3 id=\"team-member\">Team Member</h3>\n<p>An internal user of a Partner account with defined roles and permissions (admin, operator, viewer).</p>\n<p><strong>Roles:</strong></p>\n<ul>\n<li><p><strong>Admin</strong> - Full access to all features</p>\n</li>\n<li><p><strong>Operator</strong> - Can manage consumers and transactions</p>\n</li>\n<li><p><strong>Viewer</strong> - Read-only access to reports</p>\n</li>\n</ul>\n<h3 id=\"consumer\">Consumer</h3>\n<p>An end-user who receives funds, benefits, or incentives from a Partner and uses those balances to purchase digital products.</p>\n<p><strong>Consumer Journey:</strong></p>\n<ol>\n<li><p>Created by Partner (Portal, CSV, or API)</p>\n</li>\n<li><p>Receives email with login credentials</p>\n</li>\n<li><p>Sets password on first login</p>\n</li>\n<li><p>Browses available brands</p>\n</li>\n<li><p>Makes purchases using wallet balance</p>\n</li>\n<li><p>Receives digital products via email</p>\n</li>\n</ol>\n<h3 id=\"recipient\">Recipient</h3>\n<p>The final receiver of a digital order (email address where gift card is delivered). The Recipient may be the Consumer or an external person.</p>\n<h3 id=\"campaign\">Campaign</h3>\n<p>A rule-based budget configuration that defines spending limits, allowed brands, time windows, and eligibility rules.</p>\n<p><strong>Campaign Features:</strong></p>\n<ul>\n<li><p>Budget allocation</p>\n</li>\n<li><p>Brand restrictions</p>\n</li>\n<li><p>Time-based activation</p>\n</li>\n<li><p>Consumer eligibility rules</p>\n</li>\n<li><p>Multi-currency support</p>\n</li>\n</ul>\n<h3 id=\"brand\">Brand</h3>\n<p>A gift card provider or digital service available in the ORBT catalog.</p>\n<h3 id=\"gc-number\">GC Number</h3>\n<p>The unique digital code representing the gift card's primary identifier.</p>\n<h3 id=\"gc-pin\">GC Pin</h3>\n<p>A secure PIN code (when applicable) used to redeem the gift card on the Brand's platform.</p>\n<h3 id=\"wallets\">Wallets</h3>\n<p>Digital balances assigned to a Consumer. ORBT supports multiple wallets per Consumer, enabling multi-currency functionality.</p>\n<p><strong>Wallet Types:</strong></p>\n<ul>\n<li><p>General wallet balance</p>\n</li>\n<li><p>Campaign-specific balances</p>\n</li>\n<li><p>Currency-specific wallets</p>\n</li>\n</ul>\n<h3 id=\"transaction\">Transaction</h3>\n<p>Any movement of funds including credit, debit, rebate, refund, or adjustments.</p>\n<hr>\n<h2 id=\"👥-partner-management\">👥 Partner Management</h2>\n<h3 id=\"can-a-partner-have-internal-users\">Can a Partner have internal users?</h3>\n<p><strong>Yes.</strong> Partners can create Team Members with specific roles and access levels.</p>\n<h3 id=\"what-actions-can-partner-users-perform\">What actions can Partner users perform?</h3>\n<p>Team Members can:</p>\n<ul>\n<li><p>✅ Manage Consumers</p>\n</li>\n<li><p>✅ Add or deduct funds</p>\n</li>\n<li><p>✅ Create and assign Campaigns</p>\n</li>\n<li><p>✅ Review and filter transactions</p>\n</li>\n<li><p>✅ Enable or disable brands</p>\n</li>\n<li><p>✅ Configure pricing adjustments and bonuses</p>\n</li>\n<li><p>✅ Manage API keys and integrations</p>\n</li>\n<li><p>✅ Access reporting tools</p>\n</li>\n<li><p>✅ Update account settings and branding</p>\n</li>\n</ul>\n<h3 id=\"can-partners-assign-or-deactivate-team-members\">Can Partners assign or deactivate Team Members?</h3>\n<p><strong>Yes.</strong> Partners can create, deactivate, or modify Team Member roles at any time.</p>\n<h3 id=\"can-partners-deactivate-consumers\">Can Partners deactivate Consumers?</h3>\n<p><strong>Yes.</strong> Deactivated Consumers cannot place new orders. Deactivation can be done individually or via CSV bulk upload.</p>\n<h3 id=\"why-does-orbt-use-a-unified-partner-configuration\">Why does ORBT use a unified Partner configuration?</h3>\n<p>To ensure all business customers follow the same processing, reporting, and API standards. This consistency:</p>\n<ul>\n<li><p>Improves reliability</p>\n</li>\n<li><p>Reduces errors</p>\n</li>\n<li><p>Allows seamless choice between Ncentiva bulk processing or ORBT direct-to-consumer flows</p>\n</li>\n</ul>\n<hr>\n<h2 id=\"🧑🤝🧑-consumer-management\">🧑‍🤝‍🧑 Consumer Management</h2>\n<h3 id=\"what-is-a-consumer\">What is a Consumer?</h3>\n<p>A Consumer is an individual who receives incentives, benefits, or wallet funds from a Partner through ORBT.</p>\n<h3 id=\"how-are-consumers-created\">How are Consumers created?</h3>\n<p>Consumers can be created via:</p>\n<ol>\n<li><p><strong>Partner Portal</strong> - Manual creation through UI</p>\n</li>\n<li><p><strong>Bulk Upload</strong> - CSV file upload</p>\n</li>\n<li><p><strong>API</strong> - Automated creation via <code>/api/partner/v1/customer</code> endpoint</p>\n</li>\n</ol>\n<h3 id=\"what-is-a-recipient\">What is a Recipient?</h3>\n<p>The Recipient is the person who receives the final digital item (gift card email). The Recipient may be the Consumer themselves or any external person selected by the Consumer during checkout.</p>\n<h3 id=\"what-does-the-consumer-receive-when-created\">What does the Consumer receive when created?</h3>\n<p>Consumers receive an <strong>email notification</strong> containing:</p>\n<ul>\n<li><p>Login credentials (temporary password)</p>\n</li>\n<li><p>Link to ORBT platform</p>\n</li>\n<li><p>Instructions for first-time login</p>\n</li>\n</ul>\n<p><strong>First Login Requirements:</strong></p>\n<ul>\n<li><p>Must update temporary credentials</p>\n</li>\n<li><p>Must set a trusted password</p>\n</li>\n<li><p>Must accept terms and conditions</p>\n</li>\n</ul>\n<h3 id=\"how-can-consumers-reset-their-credentials\">How can Consumers reset their credentials?</h3>\n<p>Through the <strong>\"Forgot Password\"</strong> link on the ORBT login page, which sends a password reset email.</p>\n<h3 id=\"what-does-the-consumer-receive-after-selecting-a-product\">What does the Consumer receive after selecting a product?</h3>\n<p>Consumers receive a <strong>confirmation email</strong> with redemption information:</p>\n<ul>\n<li><p>✉️ Brand name</p>\n</li>\n<li><p>🔢 GC number (gift card code)</p>\n</li>\n<li><p>🔐 PIN or PIN-less instructions</p>\n</li>\n<li><p>📋 Additional redemption steps (if required by brand)</p>\n</li>\n<li><p>🔗 Direct redemption link (when applicable)</p>\n</li>\n</ul>\n<h3 id=\"can-consumers-send-or-gift-items-to-others\">Can Consumers send or gift items to others?</h3>\n<p><strong>Yes.</strong> Consumers may assign an order to an external Recipient by entering their email address during checkout.</p>\n<hr>\n<h2 id=\"💰-wallets--funds\">💰 Wallets &amp; Funds</h2>\n<h3 id=\"how-are-funds-deducted-from-partners\">How are funds deducted from Partners?</h3>\n<p>Partner funds are deducted when:</p>\n<ul>\n<li><p>Funds are transferred to Consumers</p>\n</li>\n<li><p>Gift cards are purchased under Partner-level transactions</p>\n</li>\n<li><p>Campaign budgets are allocated</p>\n</li>\n</ul>\n<h3 id=\"how-are-funds-deducted-from-consumers\">How are funds deducted from Consumers?</h3>\n<p>Funds are deducted from a Consumer's wallet at the moment they purchase digital products in the ORBT marketplace.</p>\n<p><strong>Deduction Priority:</strong></p>\n<ol>\n<li><p>Campaign-specific balance (if applicable)</p>\n</li>\n<li><p>General wallet balance</p>\n</li>\n<li><p>Bonus credit (if available)</p>\n</li>\n</ol>\n<h3 id=\"can-partners-modify-consumer-wallet-balances\">Can Partners modify Consumer wallet balances?</h3>\n<p><strong>Yes.</strong> Partners can:</p>\n<ul>\n<li><p>➕ Add funds directly</p>\n</li>\n<li><p>➖ Remove funds</p>\n</li>\n<li><p>🔄 Adjust balances via bulk processes</p>\n</li>\n<li><p>📊 Track all modifications in transaction logs</p>\n</li>\n</ul>\n<h3 id=\"can-partners-modify-a-campaign-budget\">Can Partners modify a Campaign budget?</h3>\n<p><strong>Yes.</strong> Campaign budgets can be:</p>\n<ul>\n<li><p>Increased or decreased</p>\n</li>\n<li><p>Disabled completely</p>\n</li>\n<li><p>Modified at any time without affecting past transactions</p>\n</li>\n</ul>\n<hr>\n<h2 id=\"🎯-campaigns\">🎯 Campaigns</h2>\n<h3 id=\"what-is-a-campaign\">What is a Campaign?</h3>\n<p>A Campaign defines budget rules including:</p>\n<ul>\n<li><p>💵 Spending limits</p>\n</li>\n<li><p>🏷️ Allowed brands</p>\n</li>\n<li><p>👥 Eligible Consumers</p>\n</li>\n<li><p>⏰ Time windows</p>\n</li>\n<li><p>💱 Available currencies</p>\n</li>\n</ul>\n<h3 id=\"how-do-partners-assign-campaigns\">How do Partners assign Campaigns?</h3>\n<ol>\n<li><p>Create Campaign in the Campaign module</p>\n</li>\n<li><p>Define rules and budget</p>\n</li>\n<li><p>Assign to one or multiple Consumers</p>\n</li>\n<li><p>Monitor usage and adjust as needed</p>\n</li>\n</ol>\n<h3 id=\"can-consumers-belong-to-multiple-campaigns\">Can Consumers belong to multiple Campaigns?</h3>\n<p><strong>Yes.</strong> A Consumer may have multiple active Campaigns simultaneously. ORBT will combine available balances based on campaign rules and priorities.</p>\n<h3 id=\"what-currency-do-campaigns-use\">What currency do Campaigns use?</h3>\n<p>Campaigns inherit the Partner's available currencies (e.g., USD, EUR, GBP). Once a Partner enables additional currencies, Campaigns may be configured in those currencies.</p>\n<h3 id=\"can-campaigns-be-disabled\">Can Campaigns be disabled?</h3>\n<p><strong>Yes.</strong> Disabling a Campaign:</p>\n<ul>\n<li><p>Removes rules immediately</p>\n</li>\n<li><p>Stops any further usage</p>\n</li>\n<li><p>Does not affect historical transactions</p>\n</li>\n</ul>\n<h3 id=\"can-campaigns-be-scheduled-with-start-and-end-dates\">Can Campaigns be scheduled with start and end dates?</h3>\n<p><strong>Yes.</strong> Campaigns support:</p>\n<ul>\n<li><p>⏰ Activation schedules</p>\n</li>\n<li><p>⌛ Expiration windows</p>\n</li>\n<li><p>📅 Conditional time-based restrictions</p>\n</li>\n<li><p>🔄 Recurring campaign patterns</p>\n</li>\n</ul>\n<hr>\n<h2 id=\"🏪-brands--catalog\">🏪 Brands &amp; Catalog</h2>\n<h3 id=\"how-can-partners-add-brands\">How can Partners add brands?</h3>\n<p>The ORBT/Ncentiva team enables available brands for each Partner based on:</p>\n<ul>\n<li><p>Commercial agreements</p>\n</li>\n<li><p>Geographic availability</p>\n</li>\n<li><p>Partner tier/category</p>\n</li>\n</ul>\n<p><strong>Partners can then:</strong></p>\n<ul>\n<li><p>Activate or deactivate brands</p>\n</li>\n<li><p>Configure pricing adjustments</p>\n</li>\n<li><p>Set bonus percentages</p>\n</li>\n<li><p>Control brand visibility</p>\n</li>\n</ul>\n<h3 id=\"can-partners-have-rebates-or-special-pricing\">Can Partners have rebates or special pricing?</h3>\n<p><strong>Yes.</strong> Based on commercial agreements with Ncentiva, Partners can:</p>\n<ul>\n<li><p>💰 Adjust pricing</p>\n</li>\n<li><p>🎁 Configure bonuses</p>\n</li>\n<li><p>📊 Set margin rules</p>\n</li>\n<li><p>🏷️ Create promotional offers</p>\n</li>\n</ul>\n<p>These adjustments are automatically reflected for Consumers in the marketplace.</p>\n<hr>\n<h2 id=\"📊-transactions\">📊 Transactions</h2>\n<h3 id=\"what-are-the-types-of-transactions\">What are the types of transactions?</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Type</th>\n<th>Description</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Credit</strong></td>\n<td>Funds added to wallet/campaign</td>\n<td>Partner funds Consumer wallet</td>\n</tr>\n<tr>\n<td><strong>Debit</strong></td>\n<td>Funds subtracted</td>\n<td>Consumer purchases gift card</td>\n</tr>\n<tr>\n<td><strong>Rebate</strong></td>\n<td>Reward/percentage returned</td>\n<td>Bonus from negotiated pricing</td>\n</tr>\n<tr>\n<td><strong>Refund</strong></td>\n<td>Reversal of previous debit</td>\n<td>Cancelled or failed order</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"what-are-the-transaction-statuses\">What are the transaction statuses?</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status</th>\n<th>Description</th>\n<th>Action Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Completed</strong></td>\n<td>Fully processed</td>\n<td>None</td>\n</tr>\n<tr>\n<td><strong>Pending</strong></td>\n<td>Being processed by ORBT/provider</td>\n<td>Wait or contact support if prolonged</td>\n</tr>\n<tr>\n<td><strong>Failed</strong></td>\n<td>Could not complete</td>\n<td>Review details and retry</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"what-can-a-partner-do-if-an-order-stays-pending\">What can a Partner do if an order stays pending?</h3>\n<p><strong>Contact ORBT Support Team</strong> for:</p>\n<ul>\n<li><p>Verification of order status</p>\n</li>\n<li><p>Escalation to brand provider</p>\n</li>\n<li><p>Manual intervention if required</p>\n</li>\n</ul>\n<h3 id=\"what-can-a-partner-do-if-an-order-fails\">What can a Partner do if an order fails?</h3>\n<ol>\n<li><p>🔄 <strong>Retry the order</strong> - Use \"Retry\" button (if available)</p>\n</li>\n<li><p>💰 <strong>Check Consumer's wallet</strong> - Ensure sufficient balance</p>\n</li>\n<li><p>✉️ <strong>Confirm Recipient information</strong> - Verify email is correct</p>\n</li>\n<li><p>🆘 <strong>Contact support</strong> - If issue persists</p>\n</li>\n</ol>\n<h3 id=\"can-partners-retry-an-order\">Can Partners retry an order?</h3>\n<p><strong>Yes</strong>, for all brands that support retry functionality. The retry feature is available in the Partner Portal.</p>\n<hr>\n<h2 id=\"🎁-bonuses\">🎁 Bonuses</h2>\n<p>Bonuses represent added value given to Consumers, improving their purchasing power.</p>\n<h3 id=\"types-of-bonuses\">Types of Bonuses</h3>\n<h4 id=\"1-gift-card-value-with-bonus\">1. Gift Card Value with Bonus</h4>\n<p>The bonus is added <strong>directly to the gift card value</strong>.</p>\n<p><strong>Example:</strong></p>\n<ul>\n<li><p>Base gift card: $50</p>\n</li>\n<li><p>Bonus: 10%</p>\n</li>\n<li><p><strong>Final gift card value: $55</strong></p>\n</li>\n</ul>\n<h4 id=\"2-gift-card-with-bonus-cash\">2. Gift Card with Bonus Cash</h4>\n<p>Consumer receives gift card value <strong>plus</strong> bonus separately as wallet cash.</p>\n<p><strong>Example:</strong></p>\n<ul>\n<li><p>Gift card: $50 (stays $50)</p>\n</li>\n<li><p>Bonus: 10% = $5</p>\n</li>\n<li><p><strong>$5 added to wallet for future purchases</strong></p>\n</li>\n</ul>\n<h3 id=\"how-partners-configure-bonuses\">How Partners Configure Bonuses</h3>\n<p>Partners can enable bonuses that:</p>\n<ul>\n<li><p>Apply to specific brands</p>\n</li>\n<li><p>Activate during promotional periods</p>\n</li>\n<li><p>Target specific Consumer segments</p>\n</li>\n<li><p>Stack with existing campaign rules</p>\n</li>\n</ul>\n<hr>\n<h2 id=\"⚠️-error-handling\">⚠️ Error Handling</h2>\n<h3 id=\"common-http-status-codes\">Common HTTP Status Codes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Status</th>\n<th>Meaning</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK</td>\n<td>Request successful</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request</td>\n<td>Validation error or malformed request</td>\n</tr>\n<tr>\n<td><strong>402</strong></td>\n<td>Payment Required</td>\n<td>Insufficient balance</td>\n</tr>\n<tr>\n<td><strong>403</strong></td>\n<td>Forbidden</td>\n<td>Authentication failed or access denied</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found</td>\n<td>Resource doesn't exist</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error</td>\n<td>System error</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"error-response-format\">Error Response Format</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": false,\n  \"error\": {\n    \"error\": \"ERROR_CODE\",\n    \"message\": \"Human-readable error description\"\n  }\n}\n\n</code></pre>\n<h3 id=\"specific-error-scenarios\">Specific Error Scenarios</h3>\n<h4 id=\"1-authentication-failed-403\">1. Authentication Failed (403)</h4>\n<p><strong>Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"Message\": \"User is not authorized to access this resource with an explicit deny in an identity-based policy\"\n}\n\n</code></pre>\n<p><strong>Causes:</strong></p>\n<ul>\n<li><p>Invalid API key</p>\n</li>\n<li><p>Incorrect signature</p>\n</li>\n<li><p>Expired timestamp</p>\n</li>\n<li><p>Revoked credentials</p>\n</li>\n</ul>\n<p><strong>Solutions:</strong></p>\n<ul>\n<li><p>✅ Verify API key and Client ID</p>\n</li>\n<li><p>✅ Regenerate signature</p>\n</li>\n<li><p>✅ Check timestamp is current</p>\n</li>\n<li><p>✅ Confirm credentials are active</p>\n</li>\n</ul>\n<h4 id=\"2-validation-error---existing-customer-400\">2. Validation Error - Existing Customer (400)</h4>\n<p><strong>Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": false,\n  \"error\": {\n    \"error\": \"VALIDATION_ERROR\",\n    \"message\": \"Some customers already have wallets in the requested currency\"\n  }\n}\n\n</code></pre>\n<p><strong>Causes:</strong></p>\n<ul>\n<li><p>Email already exists for this Partner</p>\n</li>\n<li><p>Customer already has wallet in requested currency</p>\n</li>\n</ul>\n<p><strong>Solutions:</strong></p>\n<ul>\n<li><p>✅ Use different email address</p>\n</li>\n<li><p>✅ Update existing customer instead</p>\n</li>\n<li><p>✅ Check for duplicate entries</p>\n</li>\n</ul>\n<h4 id=\"3-insufficient-balance-402\">3. Insufficient Balance (402)</h4>\n<p><strong>Response:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": false,\n  \"error\": {\n    \"error\": \"BUSINESS_RULE_ERROR\",\n    \"message\": \"Unable to pre-charge all currency groups\"\n  }\n}\n\n</code></pre>\n<p><strong>Causes:</strong></p>\n<ul>\n<li><p>Partner balance too low</p>\n</li>\n<li><p>Cannot allocate requested initial funds</p>\n</li>\n</ul>\n<p><strong>Solutions:</strong></p>\n<ul>\n<li><p>✅ Add funds to Partner account</p>\n</li>\n<li><p>✅ Reduce initialFunds amount</p>\n</li>\n<li><p>✅ Contact finance team</p>\n</li>\n</ul>\n<hr>\n<h2 id=\"🎨-customization\">🎨 Customization</h2>\n<h3 id=\"what-parts-of-orbt-can-be-customized\">What parts of ORBT can be customized?</h3>\n<p>Partners can customize:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Element</th>\n<th>Options</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Visual</strong></td>\n<td>Logo, colors, UI elements</td>\n</tr>\n<tr>\n<td><strong>Communications</strong></td>\n<td>Email templates, notifications</td>\n</tr>\n<tr>\n<td><strong>Catalog</strong></td>\n<td>Brand availability, pricing</td>\n</tr>\n<tr>\n<td><strong>Rules</strong></td>\n<td>Bonus rules, marketplace visibility</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"can-notifications-follow-the-partners-look-and-feel\">Can notifications follow the Partner's look and feel?</h3>\n<p><strong>Yes.</strong> Notifications can adopt:</p>\n<ul>\n<li><p>Partner branding</p>\n</li>\n<li><p>Custom colors</p>\n</li>\n<li><p>Partner logos</p>\n</li>\n<li><p>Branded email templates</p>\n</li>\n</ul>\n<p>This creates a seamless white-label experience for Consumers.</p>\n<hr>\n<h2 id=\"🔌-api--integrations\">🔌 API &amp; Integrations</h2>\n<h3 id=\"does-orbt-provide-apis-for-partners\">Does ORBT provide APIs for Partners?</h3>\n<p><strong>Yes.</strong> ORBT provides comprehensive APIs for:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Function</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Consumer creation</strong></td>\n<td>Create customer accounts</td>\n</tr>\n<tr>\n<td><strong>Wallet funding</strong></td>\n<td>Add/remove funds</td>\n</tr>\n<tr>\n<td><strong>Order creation</strong></td>\n<td>Process gift card purchases</td>\n</tr>\n<tr>\n<td><strong>Status checks</strong></td>\n<td>Query order/transaction status</td>\n</tr>\n<tr>\n<td><strong>Reporting</strong></td>\n<td>Retrieve analytics data</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"where-is-the-api-documentation-available\">Where is the API documentation available?</h3>\n<p>Inside the <strong>Partner Portal</strong> under the <strong>\"API &amp; Security\"</strong> section.</p>\n<p>You can also find it in this Postman collection.</p>\n<h3 id=\"can-orbt-integrate-with-checkout-flows\">Can ORBT integrate with checkout flows?</h3>\n<p><strong>Yes.</strong> Partners can integrate ORBT directly into:</p>\n<ul>\n<li><p>Their own systems</p>\n</li>\n<li><p>Customer portals</p>\n</li>\n<li><p>Mobile apps</p>\n</li>\n<li><p>Web applications</p>\n</li>\n<li><p>Third-party platforms</p>\n</li>\n</ul>\n<h3 id=\"is-api-usage-secure\">Is API usage secure?</h3>\n<p><strong>Yes.</strong> ORBT security features include:</p>\n<ul>\n<li><p>🔐 Encrypted API keys</p>\n</li>\n<li><p>🔄 Key rotation capabilities</p>\n</li>\n<li><p>🚫 Key revocation</p>\n</li>\n<li><p>📊 Usage monitoring and logging</p>\n</li>\n<li><p>✅ HMAC-SHA256 request signing</p>\n</li>\n</ul>\n<hr>\n<h2 id=\"🔒-security\">🔒 Security</h2>\n<h3 id=\"does-orbt-support-role-based-access\">Does ORBT support role-based access?</h3>\n<p><strong>Yes.</strong> Team Members receive individually defined roles and permissions:</p>\n<ul>\n<li><p>Full access (Admin)</p>\n</li>\n<li><p>Limited access (Operator)</p>\n</li>\n<li><p>Read-only access (Viewer)</p>\n</li>\n<li><p>Custom role combinations</p>\n</li>\n</ul>\n<h3 id=\"are-api-keys-secure\">Are API keys secure?</h3>\n<p><strong>Yes.</strong> Keys are:</p>\n<ul>\n<li><p>Encrypted at rest</p>\n</li>\n<li><p>Can be created on-demand</p>\n</li>\n<li><p>Can be revoked immediately</p>\n</li>\n<li><p>Can be rotated regularly</p>\n</li>\n<li><p>Monitored for unusual activity</p>\n</li>\n</ul>\n<h3 id=\"how-does-orbt-handle-pii-personally-identifiable-information\">How does ORBT handle PII (Personally Identifiable Information)?</h3>\n<p>ORBT:</p>\n<ul>\n<li><p>Stores minimal PII</p>\n</li>\n<li><p>Follows Ncentiva's security standards</p>\n</li>\n<li><p>Complies with data handling regulations</p>\n</li>\n<li><p>Implements encryption for sensitive data</p>\n</li>\n<li><p>Provides audit trails</p>\n</li>\n</ul>\n<hr>\n<h2 id=\"🔧-troubleshooting\">🔧 Troubleshooting</h2>\n<h3 id=\"why-is-an-order-pending\">Why is an order pending?</h3>\n<p><strong>Common Reasons:</strong></p>\n<ul>\n<li><p>Delays from Brand provider</p>\n</li>\n<li><p>Temporary processing queues</p>\n</li>\n<li><p>Payment verification in progress</p>\n</li>\n<li><p>High-volume processing periods</p>\n</li>\n</ul>\n<p><strong>Recommended Action:</strong></p>\n<ul>\n<li><p>Wait 15-30 minutes</p>\n</li>\n<li><p>Check order status</p>\n</li>\n<li><p>Contact support if status doesn't change after 1 hour</p>\n</li>\n</ul>\n<h3 id=\"why-did-an-order-fail\">Why did an order fail?</h3>\n<p><strong>Common Reasons:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Cause</th>\n<th>Solution</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Insufficient funds</td>\n<td>Add funds to wallet</td>\n</tr>\n<tr>\n<td>Incorrect Recipient info</td>\n<td>Verify email address</td>\n</tr>\n<tr>\n<td>Provider-side errors</td>\n<td>Wait and retry</td>\n</tr>\n<tr>\n<td>Temporary system unavailability</td>\n<td>Retry after a few minutes</td>\n</tr>\n<tr>\n<td>Invalid brand selection</td>\n<td>Confirm brand is active</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"how-can-a-partner-resolve-a-failed-order\">How can a Partner resolve a failed order?</h3>\n<p><strong>Step-by-Step:</strong></p>\n<ol>\n<li><p><strong>Retry the order</strong> - Use retry button in Portal</p>\n</li>\n<li><p><strong>Review logs</strong> - Check transaction details</p>\n</li>\n<li><p><strong>Check wallet balances</strong> - Ensure sufficient funds</p>\n</li>\n<li><p><strong>Verify customer details</strong> - Confirm email and currency</p>\n</li>\n<li><p><strong>Contact ORBT Support</strong> - If issue persists</p>\n</li>\n</ol>\n<hr>\n<h2 id=\"❓-faq\">❓ FAQ</h2>\n<h3 id=\"general-questions\">General Questions</h3>\n<p><strong>Q: What is the difference between a Partner and a Consumer?</strong></p>\n<p><strong>A:</strong> A Partner is a business using ORBT to distribute value. A Consumer is an end-user receiving that value.</p>\n<hr>\n<p><strong>Q: Can one email address be used for multiple Consumers?</strong></p>\n<p><strong>A:</strong> No. Each Consumer must have a unique email address per Partner.</p>\n<hr>\n<p><strong>Q: What happens if a Consumer forgets their password?</strong></p>\n<p><strong>A:</strong> They can use the \"Forgot Password\" link to receive a reset email.</p>\n<hr>\n<h3 id=\"technical-questions\">Technical Questions</h3>\n<p><strong>Q: How long is the HMAC signature valid?</strong></p>\n<p><strong>A:</strong> Signatures should be generated fresh for each request. Timestamps older than 5 minutes may be rejected.</p>\n<hr>\n<p><strong>Q: Can I use the same API key for UAT and Production?</strong></p>\n<p><strong>A:</strong> No. UAT and Production have separate credentials for security.</p>\n<hr>\n<p><strong>Q: What's the rate limit for API calls?</strong></p>\n<p><strong>A:</strong> Contact your account manager for specific rate limits based on your tier.</p>\n<hr>\n<h3 id=\"operational-questions\">Operational Questions</h3>\n<p><strong>Q: How quickly are funds reflected in Consumer wallets?</strong></p>\n<p><strong>A:</strong> Immediately upon successful API call or Partner action.</p>\n<hr>\n<p><strong>Q: Can I bulk-create Consumers via API?</strong></p>\n<p><strong>A:</strong> Yes, you can make multiple API calls or use the CSV bulk upload feature.</p>\n<hr>\n<p><strong>Q: What happens to unused Campaign funds?</strong></p>\n<p><strong>A:</strong> They remain in the Campaign budget and can be reallocated or returned to Partner balance.</p>\n<hr>\n<h2 id=\"📞-support\">📞 Support</h2>\n<h3 id=\"need-help\">Need Help?</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Support Type</th>\n<th>Contact</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Technical Support</strong></td>\n<td><a href=\"https://mailto:support@ncentiva.com\">support@ncentiva.com</a></td>\n</tr>\n<tr>\n<td><strong>API Documentation</strong></td>\n<td>Check Partner Portal &gt; API &amp; Security</td>\n</tr>\n<tr>\n<td><strong>Account Management</strong></td>\n<td>Your dedicated account manager</td>\n</tr>\n<tr>\n<td><strong>Emergency</strong></td>\n<td>Contact via Partner Portal help center</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"support-hours\">Support Hours</h3>\n<ul>\n<li><p>🕐 Monday - Friday: 9 AM - 6 PM EST</p>\n</li>\n<li><p>📧 Email support: 24/7 (response within 24 hours)</p>\n</li>\n<li><p>🚨 Critical issues: Immediate escalation</p>\n</li>\n</ul>\n<h3 id=\"before-contacting-support\">Before Contacting Support</h3>\n<p>Please have ready:</p>\n<ul>\n<li><p>Partner ID</p>\n</li>\n<li><p>Consumer ID (if applicable)</p>\n</li>\n<li><p>Transaction ID or Order ID</p>\n</li>\n<li><p>Error messages (screenshots helpful)</p>\n</li>\n<li><p>Steps to reproduce the issue</p>\n</li>\n</ul>\n<hr>\n<h2 id=\"📝-additional-resources\">📝 Additional Resources</h2>\n<ul>\n<li><p>📚 Full API Documentation: Partner Portal</p>\n</li>\n<li><p>🎥 Video Tutorials: Available in Partner Portal</p>\n</li>\n<li><p>📖 Integration Guides: Coming soon</p>\n</li>\n<li><p>💡 Best Practices: Check Partner Resources section</p>\n</li>\n</ul>\n<hr>\n<p><strong>Document Version:</strong> 1.0<br><strong>Last Updated:</strong> February 12, 2026<br><strong>Maintained By:</strong> ORBT Product Team</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"🚀 ORBT API - Complete User Guide & FAQ","slug":"orbt-api-complete-user-guide-faq"}],"owner":"38333563","collectionId":"08d4f669-7edc-4973-81f7-5eb7c86b4b1a","publishedId":"2sBXcBmMRR","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"00B4F0"},"publishDate":"2026-02-12T13:58:40.000Z"},"item":[{"name":"Authenticated Create Customer API","event":[{"listen":"prerequest","script":{"id":"293236c6-c24e-4dfe-9d66-9e7c43231d11","exec":["const method = pm.request.method; // e.g. \"POST\"","const timestamp = new Date().toISOString();","const body = pm.request.data ? (typeof pm.request.data === 'string' ? pm.request.data : JSON.stringify(pm.request.data)) : \"\";","","// Fill in values here:","const apiKey = 'YOUR_API_KEY'; // <-- replace with your API key","const clientId = 'YOUR_API_CLIENT_ID'; // <-- replace with your clientId","const hmacSecret = 'YOUR_HMAC'; // <-- replace with your HMAC secret (plain string)","","const dataToSign = `${method}\\n${timestamp}\\n${clientId}\\n${body}`;","const crypto = require('crypto-js');","","const signature = crypto.HmacSHA256(dataToSign, hmacSecret).toString(crypto.enc.Base64);","","pm.environment.set('x-api-key', apiKey);","pm.environment.set('x-client-id', clientId);","pm.environment.set('x-signature', signature);","pm.environment.set('x-timestamp', timestamp);",""],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"test","script":{"id":"86854db2-5ece-4380-809c-8cbaa58551ed","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"2d982098-a2c6-4a1c-8dd3-cf068beb1da3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"x-api-key","value":"{{x-api-key}}"},{"key":"x-client-id","value":"{{x-client-id}}"},{"key":"x-signature","value":"{{x-signature}}"},{"key":"x-timestamp","value":"{{x-timestamp}}"}],"body":{"mode":"raw","raw":"{\n    \"fullName\": \"User New Test\",\n    \"email\": \"user+api123132138@orbt.com\",\n    \"currency\": \"usd\",\n    \"initialFunds\": 100\n}","options":{"raw":{"language":"json"}}},"url":"https://api.ncentiva.com/api/partner/v1/customer","description":"<p>Generated from cURL: curl --location 'Https://api-staging.ncentiva.com/api/partner/v1/customer' <br />--header 'x-api-key: {{x-api-key}}' <br />--header 'x-client-id: {{x-client-id}}' <br />--header 'x-signature: {{x-signature}}' <br />--header 'x-timestamp: {{x-timestamp}}' <br />--header 'Content-Type: application/json' <br />--data-raw '{\n    \"fullName\": \"White test\",\n    \"email\": \"<a href=\"mailto:amir+api3@ncentiva.com\">amir+api3@ncentiva.com</a>\",\n    \"currency\": \"usd\",\n    \"initialFunds\": 101.50\n}'</p>\n","urlObject":{"protocol":"https","path":["api","partner","v1","customer"],"host":["api","ncentiva","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d982098-a2c6-4a1c-8dd3-cf068beb1da3"}]}