{"info":{"_postman_id":"ac8e6cf4-802a-4aa5-96b8-ad6b2c8dd9de","name":"B2B Global Payments API","description":"<html><head></head><body><h1 id=\"introduction\">Introduction</h1>\n<p>Welcome to the B2B Global Payments API. This API enables you to programmatically access the Orbital platform to manage accounts, execute payments, handle currency conversions, and manage beneficiaries across both fiat and cryptocurrency rails.</p>\n<h2 id=\"base-url\">Base URL</h2>\n<p>All API requests should be made to:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://b2b.getorbital.io\n\n</code></pre><h2 id=\"authentication\">Authentication</h2>\n<p>The Orbital API uses a two-factor authentication approach combining an API key and request signature for maximum security.</p>\n<h3 id=\"api-key\">API Key</h3>\n<p>Every request must include an <code>x-api-key</code> header containing your unique API key. You can obtain an API key from the Orbital Application page on Client Portal.</p>\n<h3 id=\"request-signature\">Request Signature</h3>\n<p>Every request must also include an <code>x-signature</code> header containing an RSA-SHA256 signature, signed with your private key. The corresponding public key is registered with Orbital during Orbital Application setup.</p>\n<p><strong>Signature Generation in this collection:</strong></p>\n<p>We have made a script available in this collection that reads your <strong>private key</strong> as an environment variable <code>privateKey</code> and will attempt to use it to sign your requests so signatures don't need to be generated before every request.</p>\n<p><strong>Signature Generation method:</strong></p>\n<ol>\n<li><p>Construct the signing string by concatenating: <code>HTTP_METHOD</code> + <code>PATH</code> + <code>BODY</code> (+ <code>?QUERY_STRING</code> for requests with query parameters)</p>\n</li>\n<li><p>Sign the resulting string using RSA-SHA256 with your private key</p>\n</li>\n<li><p>Base64-encode the signature</p>\n</li>\n</ol>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>signingString = METHOD + PATH + BODY\nsignature = Base64(RSA-SHA256(privateKey, signingString))\n\n</code></pre><p>For GET requests without a body, omit the body portion (i.e. <code>METHOD + PATH</code>). When query string parameters are present, append them as <code>?key=value&amp;key=value</code>.</p>\n<h3 id=\"example-headers\">Example Headers</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">x-api-key: your-api-key-here\nx-signature: base64-encoded-rsa-signature\nContent-Type: application/json\n\n</code></pre>\n<h2 id=\"rate-limiting\">Rate Limiting</h2>\n<p>API requests are rate-limited to ensure fair usage across all clients. If you exceed the rate limit, you will receive a <code>429 Too Many Requests</code> response. Please implement exponential backoff in your retry logic.</p>\n<h2 id=\"pagination\">Pagination</h2>\n<p>Endpoints that return lists of resources support pagination through the following query parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>page</code></td>\n<td>integer</td>\n<td>Page number (1-indexed). Defaults to 1.</td>\n</tr>\n<tr>\n<td><code>pageSize</code></td>\n<td>integer</td>\n<td>Number of items per page. Defaults to 10, maximum 100.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"idempotency\">Idempotency</h2>\n<p>For payment operations, include an <code>externalId</code> in your request to ensure idempotency. If you retry a request with the same <code>externalId</code>, you will receive the original response rather than creating a duplicate payment.</p>\n<h2 id=\"versioning\">Versioning</h2>\n<p>This API follows semantic versioning. Breaking changes will be communicated in advance and may require migration to a new API version.</p>\n<hr>\n<h2 id=\"accounts\">Accounts</h2>\n<p>Manage your accounts within the Orbital Global Payments platform. Accounts can hold both fiat currencies (USD, EUR, GBP, etc.) and cryptocurrencies (BTC, ETH, USDT, etc.).</p>\n<p>Each account has a unique identifier and contains balance information, account identification details (such as IBAN, account number, or wallet address), and status information.</p>\n<p><strong>Note:</strong> Account attributes vary depending on whether the account is fiat or crypto-based.</p>\n<h2 id=\"transactions\">Transactions</h2>\n<p>Retrieve transactions processed within the Orbital Global Payments platform. Transactions include:</p>\n<ul>\n<li><p><strong>Payments</strong>: Outbound fiat or crypto payments to beneficiaries</p>\n</li>\n<li><p><strong>Currency Conversions</strong>: Exchange between different currencies</p>\n</li>\n<li><p><strong>Internal Transfers</strong>: Movements between your own accounts</p>\n</li>\n<li><p><strong>Inbound Receipts</strong>: Funds received from external sources</p>\n</li>\n</ul>\n<p>Transaction attributes vary depending on the transaction type and whether it involves fiat or cryptocurrency.</p>\n<h2 id=\"payments\">Payments</h2>\n<p>Create and manage payments using the Orbital Global Payments platform. This allows you to initiate payments to beneficiaries from your accounts.</p>\n<p>Payments support both fiat and cryptocurrency transfers, with automatic routing to the appropriate payment rail.</p>\n<p><strong>Key Features:</strong></p>\n<ul>\n<li><p>Idempotent payment creation using <code>externalId</code></p>\n</li>\n<li><p>Support for same-currency payments</p>\n</li>\n<li><p>Real-time payment status tracking via webhooks</p>\n</li>\n</ul>\n<h2 id=\"beneficiaries\">Beneficiaries</h2>\n<p>Manage beneficiaries (payment recipients) within the Orbital Global Payments platform. Beneficiaries can receive both fiat and cryptocurrency payments.</p>\n<p><strong>Beneficiary Types:</strong></p>\n<ul>\n<li><p><strong>Individual</strong>: Personal accounts for individuals</p>\n</li>\n<li><p><strong>Business</strong>: Corporate or business accounts</p>\n</li>\n</ul>\n<p><strong>Beneficiary Status:</strong></p>\n<ul>\n<li><p><code>new</code>: Beneficiary created, pending compliance screening</p>\n</li>\n<li><p><code>approved</code>: Beneficiary passed compliance screening and can receive payments</p>\n</li>\n<li><p><code>rejected</code>: Beneficiary failed compliance screening</p>\n</li>\n</ul>\n<p>All new beneficiaries undergo automatic compliance screening before being approved for payments.</p>\n<h2 id=\"currency-conversions\">Currency Conversions</h2>\n<p>Execute currency conversions between your accounts holding different currencies. The conversion API supports fiat-to-fiat, fiat-to-crypto, crypto-to-fiat, and crypto-to-crypto conversions.</p>\n<p><strong>Conversion Flow:</strong></p>\n<ol>\n<li><p><strong>Get Quote</strong>: Request a conversion quote via <code>POST /conversions/quotes</code></p>\n</li>\n<li><p><strong>Execute Conversion</strong>: Use the <code>quoteId</code> to execute the conversion, or provide account details directly</p>\n</li>\n</ol>\n<p>Quotes are valid for a limited time (indicated in the response) and lock in the exchange rate.</p>\n<p><strong>Instruction Type:</strong><br>Both quote and conversion endpoints accept an optional <code>instructionType</code> parameter:</p>\n<ul>\n<li><p><code>sell</code> (default): The <code>amount</code> represents how much of the source currency you want to sell</p>\n</li>\n<li><p><code>buy</code>: The <code>amount</code> represents how much of the destination currency you want to buy</p>\n</li>\n</ul>\n<h2 id=\"payers\">Payers</h2>\n<p>Manage payers (originators) for Travel Rule compliance when receiving cryptocurrency payments. Payers represent the source of funds for inbound crypto transactions.</p>\n<p>This feature enables compliance with global Travel Rule regulations by capturing and storing originator information for cryptocurrency transactions.</p>\n<p><strong>Use Cases:</strong></p>\n<ul>\n<li><p>Register external crypto wallet owners</p>\n</li>\n<li><p>Link payer information to incoming transactions</p>\n</li>\n<li><p>Maintain Travel Rule compliance records</p>\n</li>\n</ul>\n<h2 id=\"webhooks\">Webhooks</h2>\n<p>Orbital delivers webhooks to the notification URL you configure for your application (for example in the Client Portal). Events are sent as HTTP POST requests to that URL so your integration can react in near real time.</p>\n<h3 id=\"webhook-events\">Webhook Events</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Event</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>BeneficiaryCreated</code></td>\n<td>A new beneficiary has been created</td>\n</tr>\n<tr>\n<td><code>BeneficiaryRemoved</code></td>\n<td>A beneficiary has been deleted</td>\n</tr>\n<tr>\n<td><code>PaymentCreated</code></td>\n<td>A new payment has been initiated</td>\n</tr>\n<tr>\n<td><code>PaymentCompleted</code></td>\n<td>A payment has been successfully settled</td>\n</tr>\n<tr>\n<td><code>PaymentRejected</code></td>\n<td>A payment has been rejected or failed</td>\n</tr>\n<tr>\n<td><code>PaymentInformationRequired</code></td>\n<td>A payment requires additional information (e.g. payer details for Travel Rule)</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"webhook-signature-verification\">Webhook Signature Verification</h3>\n<p>All webhook requests include an <code>X-Orbital-Signature</code> header. Verify this signature to ensure the webhook originated from Orbital:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">const crypto = require('crypto');\nfunction verifyWebhookSignature(webhookSecret, webhookUrl, body, signature) {\n  const data = webhookSecret + webhookUrl + body;\n  const expectedSignature = crypto\n    .createHash('sha256')\n    .update(data)\n    .digest('base64');\n  return crypto.timingSafeEqual(\n    Buffer.from(signature),\n    Buffer.from(expectedSignature)\n  );\n}\n\n</code></pre>\n<h3 id=\"retry-policy\">Retry Policy</h3>\n<p>Failed webhook deliveries are automatically retried up to 4 times with exponential backoff.</p>\n<p>Contact Support:<br>Name: Orbital Support<br>Email: <a href=\"https://mailto:support@getorbital.io\">support@getorbital.io</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Introduction","slug":"introduction"}],"owner":"22453345","collectionId":"ac8e6cf4-802a-4aa5-96b8-ad6b2c8dd9de","publishedId":"2sBXinJBPw","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-03-31T13:36:10.000Z"},"item":[{"name":"transactions","item":[{"name":"{id}","item":[{"name":"Get transaction by ID","id":"650e0790-8c31-4e6b-adb2-e32540ef57ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://b2b.getorbital.io/transactions/:id","description":"<p>Retrieve detailed information about a specific transaction using its unique transaction ID.</p>\n","urlObject":{"path":["transactions",":id"],"host":["https://b2b.getorbital.io"],"query":[],"variable":[{"id":"ef1b2282-d311-47ef-9b68-a54394bfb646","description":{"content":"<p>The unique transaction identifier</p>\n","type":"text/plain"},"type":"any","value":"tx_abc123def456","key":"id"}]}},"response":[{"id":"cdd8c002-3907-4600-970f-a50e8fcc016d","name":"Successfully retrieved the transaction","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/:id","host":["https://b2b.getorbital.io"],"path":["transactions",":id"],"variable":[{"key":"id","value":"tx_abc123def456","description":"The unique transaction identifier"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"transaction\": {\n    \"transactionId\": \"string\",\n    \"creditorAccountId\": \"string\",\n    \"transactionReference\": \"PAY202401151234567890PAYM\",\n    \"debitAmount\": \"string\",\n    \"creditAmount\": \"string\",\n    \"internalPayment\": true,\n    \"sourceCurrency\": \"string\",\n    \"sourceBlockChain\": \"string\",\n    \"targetCurrency\": \"string\",\n    \"targetBlockChain\": \"string\",\n    \"balanceAfterTransaction\": \"string\",\n    \"settledAt\": \"2009-07-01T02:42:04.342Z\",\n    \"remittanceInformation\": \"string\",\n    \"debtorAccount\": \"string\",\n    \"debtor\": {\n      \"debtorName\": \"string\",\n      \"debtorAddress\": {\n        \"buildingNumber\": \"string\",\n        \"buildingName\": \"string\",\n        \"street\": \"string\",\n        \"city\": \"string\",\n        \"postalCode\": \"string\",\n        \"country\": \"string\",\n        \"countryCode\": \"string\",\n        \"address\": \"string\"\n      },\n      \"debtorCountry\": \"string\",\n      \"creditorName\": \"string\",\n      \"creditorAddress\": {\n        \"buildingNumber\": \"string\",\n        \"buildingName\": \"string\",\n        \"street\": \"string\",\n        \"city\": \"string\",\n        \"postalCode\": \"string\",\n        \"country\": \"string\",\n        \"countryCode\": \"string\",\n        \"address\": \"string\"\n      },\n      \"creditorCountry\": \"string\"\n    },\n    \"debtorAgent\": {\n      \"debtorAgentId\": \"string\",\n      \"debtorAgentCountry\": \"string\",\n      \"creditorAgentId\": \"string\",\n      \"creditorAgentCountry\": \"string\"\n    },\n    \"creditorAccount\": \"string\",\n    \"creditor\": {\n      \"debtorName\": \"string\",\n      \"debtorAddress\": {\n        \"buildingNumber\": \"string\",\n        \"buildingName\": \"string\",\n        \"street\": \"string\",\n        \"city\": \"string\",\n        \"postalCode\": \"string\",\n        \"country\": \"string\",\n        \"countryCode\": \"string\",\n        \"address\": \"string\"\n      },\n      \"debtorCountry\": \"string\",\n      \"creditorName\": \"string\",\n      \"creditorAddress\": {\n        \"buildingNumber\": \"string\",\n        \"buildingName\": \"string\",\n        \"street\": \"string\",\n        \"city\": \"string\",\n        \"postalCode\": \"string\",\n        \"country\": \"string\",\n        \"countryCode\": \"string\",\n        \"address\": \"string\"\n      },\n      \"creditorCountry\": \"string\"\n    },\n    \"creditorAgent\": {\n      \"debtorAgentId\": \"string\",\n      \"debtorAgentCountry\": \"string\",\n      \"creditorAgentId\": \"string\",\n      \"creditorAgentCountry\": \"string\"\n    },\n    \"transactionHash\": \"string\",\n    \"fxRate\": \"string\",\n    \"id\": \"string\",\n    \"accountId\": \"string\",\n    \"endToEndReference\": \"string\",\n    \"transactionDirection\": \"credit\",\n    \"createdBy\": {\n      \"source\": \"ops\",\n      \"name\": \"string\"\n    },\n    \"status\": \"cancelled\",\n    \"createdAt\": \"1986-09-23T02:07:28.542Z\",\n    \"updatedAt\": \"1984-06-22T21:10:08.122Z\"\n  }\n}"},{"id":"228e4941-355d-4520-a2ac-dcd5e0bd2dbe","name":"Currency mismatch","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/:id","host":["https://b2b.getorbital.io"],"path":["transactions",":id"],"variable":[{"key":"id","value":"tx_abc123def456","description":"The unique transaction identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Currency mismatch: this endpoint only supports payments between accounts with the same currency\",\n  \"code\": \"CURRENCY_MISMATCH\",\n  \"details\": {\n    \"accountCurrency\": \"USD\",\n    \"beneficiaryCurrency\": \"EUR\"\n  }\n}"},{"id":"01277e8b-4037-4575-9908-79223e0c9124","name":"Insufficient funds","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/:id","host":["https://b2b.getorbital.io"],"path":["transactions",":id"],"variable":[{"key":"id","value":"tx_abc123def456","description":"The unique transaction identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient funds: the payment amount exceeds the available balance\",\n  \"code\": \"INSUFFICIENT_FUNDS\",\n  \"details\": {\n    \"requestedAmount\": 1000,\n    \"availableBalance\": 500,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"9e6169bd-45ed-4ce6-afc7-14e9603c2adb","name":"Account inactive","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/:id","host":["https://b2b.getorbital.io"],"path":["transactions",":id"],"variable":[{"key":"id","value":"tx_abc123def456","description":"The unique transaction identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account is not active\",\n  \"code\": \"ACCOUNT_INACTIVE\",\n  \"details\": {\n    \"accountStatus\": \"suspended\"\n  }\n}"},{"id":"2401cecb-b79c-46d3-a89d-482faa1576ff","name":"Invalid request payload","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/:id","host":["https://b2b.getorbital.io"],"path":["transactions",":id"],"variable":[{"key":"id","value":"tx_abc123def456","description":"The unique transaction identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid request payload\",\n  \"code\": \"INVALID_REQUEST_PAYLOAD\",\n  \"details\": {\n    \"validationErrors\": [\n      {\n        \"path\": [\n          \"amount\"\n        ],\n        \"message\": \"Amount must be a valid positive number\"\n      }\n    ]\n  }\n}"},{"id":"a2024410-f531-4216-89c0-2bccf1ddcfdf","name":"Missing request body","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/:id","host":["https://b2b.getorbital.io"],"path":["transactions",":id"],"variable":[{"key":"id","value":"tx_abc123def456","description":"The unique transaction identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Request body is missing\",\n  \"code\": \"MISSING_REQUEST_BODY\"\n}"},{"id":"48e82d51-18e1-4c69-80cc-054bfecefab5","name":"Beneficiary already exists","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/:id","host":["https://b2b.getorbital.io"],"path":["transactions",":id"],"variable":[{"key":"id","value":"tx_abc123def456","description":"The unique transaction identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary with these details already exists\",\n  \"code\": \"BENEFICIARY_ALREADY_EXISTS\"\n}"},{"id":"d47da125-90e5-4337-81d5-ecb870cef367","name":"Invalid IBAN","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/:id","host":["https://b2b.getorbital.io"],"path":["transactions",":id"],"variable":[{"key":"id","value":"tx_abc123def456","description":"The unique transaction identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid IBAN format\",\n  \"code\": \"INVALID_IBAN\"\n}"},{"id":"83184c51-8d2e-4688-b8b3-243fd8675ee6","name":"Amount below minimum","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/:id","host":["https://b2b.getorbital.io"],"path":["transactions",":id"],"variable":[{"key":"id","value":"tx_abc123def456","description":"The unique transaction identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction amount is below the minimum threshold\",\n  \"code\": \"AMOUNT_BELOW_MINIMUM\",\n  \"details\": {\n    \"minimumAmount\": 1,\n    \"providedAmount\": 0.5,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"e36a5166-9b9b-431a-930d-ce1548cf099b","name":"Duplicate payment","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/:id","host":["https://b2b.getorbital.io"],"path":["transactions",":id"],"variable":[{"key":"id","value":"tx_abc123def456","description":"The unique transaction identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"e82aa73b-55df-435d-95eb-8c101c26c0d8","name":"Missing API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/:id","host":["https://b2b.getorbital.io"],"path":["transactions",":id"],"variable":[{"key":"id","value":"tx_abc123def456","description":"The unique transaction identifier"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-api-key header\",\n  \"code\": \"MISSING_API_KEY\"\n}"},{"id":"ab6b298a-6b81-49a3-b366-15ca37abffe3","name":"Disabled API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/:id","host":["https://b2b.getorbital.io"],"path":["transactions",":id"],"variable":[{"key":"id","value":"tx_abc123def456","description":"The unique transaction identifier"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key has been disabled\",\n  \"code\": \"DISABLED_API_KEY\"\n}"},{"id":"4091c25b-a958-4044-b45d-a4d2c16fa627","name":"Invalid API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/:id","host":["https://b2b.getorbital.io"],"path":["transactions",":id"],"variable":[{"key":"id","value":"tx_abc123def456","description":"The unique transaction identifier"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid API Key\",\n  \"code\": \"INVALID_API_KEY\"\n}"},{"id":"66578d54-d7d9-43c6-ba44-bfd0c509a046","name":"Missing signature","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/:id","host":["https://b2b.getorbital.io"],"path":["transactions",":id"],"variable":[{"key":"id","value":"tx_abc123def456","description":"The unique transaction identifier"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-signature header\",\n  \"code\": \"MISSING_SIGNATURE\"\n}"},{"id":"8038625e-a9b0-44e9-bd8e-1707a1dddbb2","name":"Invalid signature","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/:id","host":["https://b2b.getorbital.io"],"path":["transactions",":id"],"variable":[{"key":"id","value":"tx_abc123def456","description":"The unique transaction identifier"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid signature\",\n  \"code\": \"INVALID_SIGNATURE\"\n}"},{"id":"df02b976-50db-4bf5-9fab-2f2c0e5e2e7f","name":"Transaction not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/:id","host":["https://b2b.getorbital.io"],"path":["transactions",":id"],"variable":[{"key":"id","value":"tx_abc123def456","description":"The unique transaction identifier"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction not found\",\n  \"code\": \"TRANSACTION_NOT_FOUND\"\n}"},{"id":"348e9794-4957-48a4-8a7c-5ffe40e22e17","name":"Internal Server Error - An unexpected error occurred","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/:id","host":["https://b2b.getorbital.io"],"path":["transactions",":id"],"variable":[{"key":"id","value":"tx_abc123def456","description":"The unique transaction identifier"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"}],"_postman_id":"650e0790-8c31-4e6b-adb2-e32540ef57ac"}],"id":"967b2c9d-b430-41da-bf74-ec1c6312f957","_postman_id":"967b2c9d-b430-41da-bf74-ec1c6312f957","description":""},{"name":"reference","item":[{"name":"{reference}","item":[{"name":"Get transaction by reference","id":"9942aa24-3838-4d4a-8971-413256eab40d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://b2b.getorbital.io/transactions/reference/:reference","description":"<p>Retrieve detailed information about a specific transaction using its transaction reference.</p>\n<p>The transaction reference is a human-readable identifier in the format <code>PAY{timestamp}{random}PAYM</code> that can be used when communicating with Orbital support.</p>\n","urlObject":{"path":["transactions","reference",":reference"],"host":["https://b2b.getorbital.io"],"query":[],"variable":[{"id":"1ef30b1b-a4ab-4328-a704-0937a3ad679d","description":{"content":"<p>The transaction reference (e.g., <code>PAY202401151234567890PAYM</code>)</p>\n","type":"text/plain"},"type":"any","value":"PAY202401151234567890PAYM","key":"reference"}]}},"response":[{"id":"ac1ea38a-be0b-48b1-8c99-979f21359075","name":"Successfully retrieved the transaction","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/reference/:reference","host":["https://b2b.getorbital.io"],"path":["transactions","reference",":reference"],"variable":[{"key":"reference","value":"PAY202401151234567890PAYM","description":"The transaction reference (e.g., `PAY202401151234567890PAYM`)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"transaction\": {\n    \"transactionId\": \"string\",\n    \"creditorAccountId\": \"string\",\n    \"transactionReference\": \"PAY202401151234567890PAYM\",\n    \"debitAmount\": \"string\",\n    \"creditAmount\": \"string\",\n    \"internalPayment\": true,\n    \"sourceCurrency\": \"string\",\n    \"sourceBlockChain\": \"string\",\n    \"targetCurrency\": \"string\",\n    \"targetBlockChain\": \"string\",\n    \"balanceAfterTransaction\": \"string\",\n    \"settledAt\": \"2009-07-01T02:42:04.342Z\",\n    \"remittanceInformation\": \"string\",\n    \"debtorAccount\": \"string\",\n    \"debtor\": {\n      \"debtorName\": \"string\",\n      \"debtorAddress\": {\n        \"buildingNumber\": \"string\",\n        \"buildingName\": \"string\",\n        \"street\": \"string\",\n        \"city\": \"string\",\n        \"postalCode\": \"string\",\n        \"country\": \"string\",\n        \"countryCode\": \"string\",\n        \"address\": \"string\"\n      },\n      \"debtorCountry\": \"string\",\n      \"creditorName\": \"string\",\n      \"creditorAddress\": {\n        \"buildingNumber\": \"string\",\n        \"buildingName\": \"string\",\n        \"street\": \"string\",\n        \"city\": \"string\",\n        \"postalCode\": \"string\",\n        \"country\": \"string\",\n        \"countryCode\": \"string\",\n        \"address\": \"string\"\n      },\n      \"creditorCountry\": \"string\"\n    },\n    \"debtorAgent\": {\n      \"debtorAgentId\": \"string\",\n      \"debtorAgentCountry\": \"string\",\n      \"creditorAgentId\": \"string\",\n      \"creditorAgentCountry\": \"string\"\n    },\n    \"creditorAccount\": \"string\",\n    \"creditor\": {\n      \"debtorName\": \"string\",\n      \"debtorAddress\": {\n        \"buildingNumber\": \"string\",\n        \"buildingName\": \"string\",\n        \"street\": \"string\",\n        \"city\": \"string\",\n        \"postalCode\": \"string\",\n        \"country\": \"string\",\n        \"countryCode\": \"string\",\n        \"address\": \"string\"\n      },\n      \"debtorCountry\": \"string\",\n      \"creditorName\": \"string\",\n      \"creditorAddress\": {\n        \"buildingNumber\": \"string\",\n        \"buildingName\": \"string\",\n        \"street\": \"string\",\n        \"city\": \"string\",\n        \"postalCode\": \"string\",\n        \"country\": \"string\",\n        \"countryCode\": \"string\",\n        \"address\": \"string\"\n      },\n      \"creditorCountry\": \"string\"\n    },\n    \"creditorAgent\": {\n      \"debtorAgentId\": \"string\",\n      \"debtorAgentCountry\": \"string\",\n      \"creditorAgentId\": \"string\",\n      \"creditorAgentCountry\": \"string\"\n    },\n    \"transactionHash\": \"string\",\n    \"fxRate\": \"string\",\n    \"id\": \"string\",\n    \"accountId\": \"string\",\n    \"endToEndReference\": \"string\",\n    \"transactionDirection\": \"credit\",\n    \"createdBy\": {\n      \"source\": \"ops\",\n      \"name\": \"string\"\n    },\n    \"status\": \"cancelled\",\n    \"createdAt\": \"1986-09-23T02:07:28.542Z\",\n    \"updatedAt\": \"1984-06-22T21:10:08.122Z\"\n  }\n}"},{"id":"cd80627a-4736-49a9-aea4-bdc9b6765553","name":"Currency mismatch","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/reference/:reference","host":["https://b2b.getorbital.io"],"path":["transactions","reference",":reference"],"variable":[{"key":"reference","value":"PAY202401151234567890PAYM","description":"The transaction reference (e.g., `PAY202401151234567890PAYM`)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Currency mismatch: this endpoint only supports payments between accounts with the same currency\",\n  \"code\": \"CURRENCY_MISMATCH\",\n  \"details\": {\n    \"accountCurrency\": \"USD\",\n    \"beneficiaryCurrency\": \"EUR\"\n  }\n}"},{"id":"3abaccb4-4674-4f1a-b584-d1754c398a73","name":"Insufficient funds","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/reference/:reference","host":["https://b2b.getorbital.io"],"path":["transactions","reference",":reference"],"variable":[{"key":"reference","value":"PAY202401151234567890PAYM","description":"The transaction reference (e.g., `PAY202401151234567890PAYM`)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient funds: the payment amount exceeds the available balance\",\n  \"code\": \"INSUFFICIENT_FUNDS\",\n  \"details\": {\n    \"requestedAmount\": 1000,\n    \"availableBalance\": 500,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"52a6937e-86f1-4243-9bbe-e439af6b0852","name":"Account inactive","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/reference/:reference","host":["https://b2b.getorbital.io"],"path":["transactions","reference",":reference"],"variable":[{"key":"reference","value":"PAY202401151234567890PAYM","description":"The transaction reference (e.g., `PAY202401151234567890PAYM`)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account is not active\",\n  \"code\": \"ACCOUNT_INACTIVE\",\n  \"details\": {\n    \"accountStatus\": \"suspended\"\n  }\n}"},{"id":"8e3fd4af-f85b-496e-98b0-5f90947b7003","name":"Invalid request payload","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/reference/:reference","host":["https://b2b.getorbital.io"],"path":["transactions","reference",":reference"],"variable":[{"key":"reference","value":"PAY202401151234567890PAYM","description":"The transaction reference (e.g., `PAY202401151234567890PAYM`)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid request payload\",\n  \"code\": \"INVALID_REQUEST_PAYLOAD\",\n  \"details\": {\n    \"validationErrors\": [\n      {\n        \"path\": [\n          \"amount\"\n        ],\n        \"message\": \"Amount must be a valid positive number\"\n      }\n    ]\n  }\n}"},{"id":"40f9e701-b16c-4568-bd52-c9d77fe40523","name":"Missing request body","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/reference/:reference","host":["https://b2b.getorbital.io"],"path":["transactions","reference",":reference"],"variable":[{"key":"reference","value":"PAY202401151234567890PAYM","description":"The transaction reference (e.g., `PAY202401151234567890PAYM`)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Request body is missing\",\n  \"code\": \"MISSING_REQUEST_BODY\"\n}"},{"id":"c7a3880c-0fdd-45c1-99f5-cfe75c68a6b0","name":"Beneficiary already exists","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/reference/:reference","host":["https://b2b.getorbital.io"],"path":["transactions","reference",":reference"],"variable":[{"key":"reference","value":"PAY202401151234567890PAYM","description":"The transaction reference (e.g., `PAY202401151234567890PAYM`)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary with these details already exists\",\n  \"code\": \"BENEFICIARY_ALREADY_EXISTS\"\n}"},{"id":"aeb4b663-b0b3-46f4-8c86-f005c7e39758","name":"Invalid IBAN","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/reference/:reference","host":["https://b2b.getorbital.io"],"path":["transactions","reference",":reference"],"variable":[{"key":"reference","value":"PAY202401151234567890PAYM","description":"The transaction reference (e.g., `PAY202401151234567890PAYM`)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid IBAN format\",\n  \"code\": \"INVALID_IBAN\"\n}"},{"id":"a39c1bbf-f4e9-4ffe-885d-259e0194d1d4","name":"Amount below minimum","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/reference/:reference","host":["https://b2b.getorbital.io"],"path":["transactions","reference",":reference"],"variable":[{"key":"reference","value":"PAY202401151234567890PAYM","description":"The transaction reference (e.g., `PAY202401151234567890PAYM`)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction amount is below the minimum threshold\",\n  \"code\": \"AMOUNT_BELOW_MINIMUM\",\n  \"details\": {\n    \"minimumAmount\": 1,\n    \"providedAmount\": 0.5,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"a6b428cf-9a8a-4586-9267-de6663d6c3e7","name":"Duplicate payment","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/reference/:reference","host":["https://b2b.getorbital.io"],"path":["transactions","reference",":reference"],"variable":[{"key":"reference","value":"PAY202401151234567890PAYM","description":"The transaction reference (e.g., `PAY202401151234567890PAYM`)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"be4ac2b7-c383-414c-b2db-56f4d86d7717","name":"Missing API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/reference/:reference","host":["https://b2b.getorbital.io"],"path":["transactions","reference",":reference"],"variable":[{"key":"reference","value":"PAY202401151234567890PAYM","description":"The transaction reference (e.g., `PAY202401151234567890PAYM`)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-api-key header\",\n  \"code\": \"MISSING_API_KEY\"\n}"},{"id":"68c7ee36-77f9-42b4-b6a7-aea114ca7685","name":"Disabled API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/reference/:reference","host":["https://b2b.getorbital.io"],"path":["transactions","reference",":reference"],"variable":[{"key":"reference","value":"PAY202401151234567890PAYM","description":"The transaction reference (e.g., `PAY202401151234567890PAYM`)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key has been disabled\",\n  \"code\": \"DISABLED_API_KEY\"\n}"},{"id":"831a997e-c268-4f7b-9b4e-76da9d40d3f3","name":"Invalid API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/reference/:reference","host":["https://b2b.getorbital.io"],"path":["transactions","reference",":reference"],"variable":[{"key":"reference","value":"PAY202401151234567890PAYM","description":"The transaction reference (e.g., `PAY202401151234567890PAYM`)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid API Key\",\n  \"code\": \"INVALID_API_KEY\"\n}"},{"id":"655407d0-7717-4aee-b15f-7d6a3defab89","name":"Missing signature","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/reference/:reference","host":["https://b2b.getorbital.io"],"path":["transactions","reference",":reference"],"variable":[{"key":"reference","value":"PAY202401151234567890PAYM","description":"The transaction reference (e.g., `PAY202401151234567890PAYM`)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-signature header\",\n  \"code\": \"MISSING_SIGNATURE\"\n}"},{"id":"884709a0-77e2-4d9e-8561-a03de42951c9","name":"Invalid signature","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/reference/:reference","host":["https://b2b.getorbital.io"],"path":["transactions","reference",":reference"],"variable":[{"key":"reference","value":"PAY202401151234567890PAYM","description":"The transaction reference (e.g., `PAY202401151234567890PAYM`)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid signature\",\n  \"code\": \"INVALID_SIGNATURE\"\n}"},{"id":"547da943-3509-44ce-bf8b-760824d9764b","name":"Transaction not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/reference/:reference","host":["https://b2b.getorbital.io"],"path":["transactions","reference",":reference"],"variable":[{"key":"reference","value":"PAY202401151234567890PAYM","description":"The transaction reference (e.g., `PAY202401151234567890PAYM`)"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction not found\",\n  \"code\": \"TRANSACTION_NOT_FOUND\"\n}"},{"id":"4b315e5c-93ed-4ea6-b339-cbeed3c3f0ca","name":"Internal Server Error - An unexpected error occurred","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions/reference/:reference","host":["https://b2b.getorbital.io"],"path":["transactions","reference",":reference"],"variable":[{"key":"reference","value":"PAY202401151234567890PAYM","description":"The transaction reference (e.g., `PAY202401151234567890PAYM`)"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"}],"_postman_id":"9942aa24-3838-4d4a-8971-413256eab40d"}],"id":"a07dd2cb-d412-48c5-abf0-8505a5076edf","_postman_id":"a07dd2cb-d412-48c5-abf0-8505a5076edf","description":""}],"id":"45ee25ac-62cf-43cc-b233-57b134e2dce9","_postman_id":"45ee25ac-62cf-43cc-b233-57b134e2dce9","description":""},{"name":"List transactions","id":"f801ae3c-98a5-4731-b8ea-696f5c4d3aea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","description":"<p>Retrieve a paginated list of transactions for your account. You can filter transactions by date range and status.</p>\n<p>Transactions are returned in descending order by creation date (most recent first).</p>\n","urlObject":{"path":["transactions"],"host":["https://b2b.getorbital.io"],"query":[{"description":{"content":"<p>Filter transactions created on or after this date (ISO 8601 format)</p>\n","type":"text/plain"},"key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":{"content":"<p>Filter transactions created on or before this date (ISO 8601 format)</p>\n","type":"text/plain"},"key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":{"content":"<p>Filter by transaction status</p>\n","type":"text/plain"},"key":"status","value":"completed"},{"description":{"content":"<p>Filter by account ID</p>\n","type":"text/plain"},"key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":{"content":"<p>Page number for pagination (1-indexed)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Number of items per page (maximum 100)</p>\n","type":"text/plain"},"key":"pageSize","value":"10"}],"variable":[]}},"response":[{"id":"b21f125d-73d4-4747-855a-d6182e9fd468","name":"Successfully retrieved transactions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"transactions\": [\n    {\n      \"transactionId\": \"tx_abc123\",\n      \"transactionReference\": \"PAY202401151234567890PAYM\",\n      \"status\": \"completed\",\n      \"transactionDirection\": \"debit\",\n      \"debitAmount\": \"1000.00\",\n      \"sourceCurrency\": \"USD\",\n      \"creditAmount\": \"850.00\",\n      \"targetCurrency\": \"EUR\",\n      \"createdAt\": \"2024-01-15T10:30:00Z\",\n      \"settledAt\": \"2024-01-15T10:35:00Z\"\n    }\n  ]\n}"},{"id":"c1ae2eac-5ed6-4234-900e-ee06704d40f0","name":"Currency mismatch","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Currency mismatch: this endpoint only supports payments between accounts with the same currency\",\n  \"code\": \"CURRENCY_MISMATCH\",\n  \"details\": {\n    \"accountCurrency\": \"USD\",\n    \"beneficiaryCurrency\": \"EUR\"\n  }\n}"},{"id":"decb9ea7-5047-470a-a45b-19b7235a11e2","name":"Insufficient funds","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient funds: the payment amount exceeds the available balance\",\n  \"code\": \"INSUFFICIENT_FUNDS\",\n  \"details\": {\n    \"requestedAmount\": 1000,\n    \"availableBalance\": 500,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"57a02a94-a7e0-47eb-acca-209e8fcd1ac4","name":"Account inactive","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account is not active\",\n  \"code\": \"ACCOUNT_INACTIVE\",\n  \"details\": {\n    \"accountStatus\": \"suspended\"\n  }\n}"},{"id":"55242471-9906-4ddd-941b-697fee11a00e","name":"Invalid request payload","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid request payload\",\n  \"code\": \"INVALID_REQUEST_PAYLOAD\",\n  \"details\": {\n    \"validationErrors\": [\n      {\n        \"path\": [\n          \"amount\"\n        ],\n        \"message\": \"Amount must be a valid positive number\"\n      }\n    ]\n  }\n}"},{"id":"4a620cc8-53de-4d41-be59-baffa580d602","name":"Missing request body","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Request body is missing\",\n  \"code\": \"MISSING_REQUEST_BODY\"\n}"},{"id":"4c06ff00-0079-4924-b7bd-250cf2d6cf7a","name":"Beneficiary already exists","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary with these details already exists\",\n  \"code\": \"BENEFICIARY_ALREADY_EXISTS\"\n}"},{"id":"b318f641-2318-40ac-9872-7268f78f5ec3","name":"Invalid IBAN","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid IBAN format\",\n  \"code\": \"INVALID_IBAN\"\n}"},{"id":"9f5e7976-97d6-4223-8121-fc29eba28272","name":"Amount below minimum","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction amount is below the minimum threshold\",\n  \"code\": \"AMOUNT_BELOW_MINIMUM\",\n  \"details\": {\n    \"minimumAmount\": 1,\n    \"providedAmount\": 0.5,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"db8c7700-0075-4fb8-8937-420107fa50f4","name":"Duplicate payment","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"61c135ba-fe96-4387-9920-d4eefe3dbf48","name":"Missing API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-api-key header\",\n  \"code\": \"MISSING_API_KEY\"\n}"},{"id":"5b8514c8-6beb-4660-b99f-d6678b03ed57","name":"Disabled API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key has been disabled\",\n  \"code\": \"DISABLED_API_KEY\"\n}"},{"id":"302740b0-5784-4a8f-8773-90d4ae12c2b5","name":"Invalid API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid API Key\",\n  \"code\": \"INVALID_API_KEY\"\n}"},{"id":"d31a704d-d3cd-435e-afc0-de9ca6387286","name":"Missing signature","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-signature header\",\n  \"code\": \"MISSING_SIGNATURE\"\n}"},{"id":"7c6cb5b0-d9ab-420a-a3fa-40b429f3d018","name":"Invalid signature","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid signature\",\n  \"code\": \"INVALID_SIGNATURE\"\n}"},{"id":"2fe43210-f34b-48e8-b549-089eee7626e1","name":"Insufficient permissions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key does not have required permissions\",\n  \"code\": \"INSUFFICIENT_PERMISSIONS\"\n}"},{"id":"2f4057e4-d9df-4c88-bc01-066e7aabdbae","name":"Forbidden resource","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access to this resource is forbidden\",\n  \"code\": \"FORBIDDEN\"\n}"},{"id":"6ce5ef68-c061-4b15-a580-22488c04754e","name":"Internal Server Error - An unexpected error occurred","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/transactions?fromDate=2024-01-01T00:00:00Z&toDate=2024-12-31T23:59:59Z&status=completed&accountId=0cb55a48-c7cb-40ab-9192-dd66c1a5eeae&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["transactions"],"query":[{"description":"Filter transactions created on or after this date (ISO 8601 format)","key":"fromDate","value":"2024-01-01T00:00:00Z"},{"description":"Filter transactions created on or before this date (ISO 8601 format)","key":"toDate","value":"2024-12-31T23:59:59Z"},{"description":"Filter by transaction status","key":"status","value":"completed"},{"description":"Filter by account ID","key":"accountId","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"}],"_postman_id":"f801ae3c-98a5-4731-b8ea-696f5c4d3aea"}],"id":"11af512e-4859-40c4-a63f-268fe72343cd","_postman_id":"11af512e-4859-40c4-a63f-268fe72343cd","description":""},{"name":"payments","item":[{"name":"Initiate a payment","id":"43f9fc65-eb24-45e7-8c83-79a1e0e93fb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"beneficiaryId\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n  \"currency\": \"GBP\",\n  \"amount\": \"100.50\",\n  \"remittanceInformation\": \"Invoice #INV-2024-001\",\n  \"externalId\": \"payment-inv-2024-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments","description":"<p>Create a new payment from one of your accounts to a beneficiary.</p>\n<p><strong>Payment Options:</strong>\nYou must specify the payment recipient using one of these options:</p>\n<ul>\n<li><code>beneficiaryId</code>: ID of an existing approved beneficiary</li>\n<li><code>creditorAccountId</code>: ID of another account you own (for internal transfers)</li>\n<li><code>beneficiary</code>: Full beneficiary details for a one-time payment (beneficiary will be created automatically)</li>\n</ul>\n<p><strong>Idempotency:</strong>\nUse the <code>externalId</code> field to ensure idempotency. If you submit the same <code>externalId</code> twice, the second request will return the original payment details rather than creating a duplicate.</p>\n<p><strong>Currency Matching:</strong>\nThe payment currency must match both the source account currency and the beneficiary account currency. For cross-currency payments, use the Currency Conversions API.</p>\n","urlObject":{"path":["payments"],"host":["https://b2b.getorbital.io"],"query":[],"variable":[]}},"response":[{"id":"a5ddc723-e595-447b-8265-016013cda912","name":"Payment to existing beneficiary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"beneficiaryId\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n  \"currency\": \"GBP\",\n  \"amount\": \"100.50\",\n  \"remittanceInformation\": \"Invoice #INV-2024-001\",\n  \"externalId\": \"payment-inv-2024-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"transactionReference\": \"PAY202503201254556468PAYM\",\n  \"fee\": 1.5,\n  \"amount\": 100.5,\n  \"totalAmount\": 102\n}"},{"id":"a4385e4b-a4f5-4e5f-853c-2d1fb678717c","name":"Internal transfer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"creditorAccountId\": \"7b8e3a12-5f6d-4c9a-8b7e-1a2b3c4d5e6f\",\n  \"currency\": \"USD\",\n  \"amount\": \"5000.00\",\n  \"remittanceInformation\": \"Treasury rebalancing\",\n  \"externalId\": \"transfer-treasury-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"transactionReference\": \"PAY202503201254556468PAYM\",\n  \"fee\": 1.5,\n  \"amount\": 100.5,\n  \"totalAmount\": 102\n}"},{"id":"d19f95ba-8354-4af2-ac9d-1e99fb0588b1","name":"Crypto payment with inline beneficiary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"currency\": \"USDT\",\n  \"amount\": \"250.00\",\n  \"remittanceInformation\": \"Vendor payment\",\n  \"externalId\": \"crypto-vendor-001\",\n  \"beneficiary\": {\n    \"accountDetails\": {\n      \"type\": \"business\",\n      \"beneficiaryName\": \"Acme Corp\",\n      \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n      \"blockchain\": \"TRX\",\n      \"currency\": \"USDT\"\n    },\n    \"address\": {\n      \"country\": \"US\",\n      \"city\": \"San Francisco\",\n      \"street\": \"123 Blockchain Ave\",\n      \"zipOrPostalCode\": \"94107\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"transactionReference\": \"PAY202503201254556468PAYM\",\n  \"fee\": 1.5,\n  \"amount\": 100.5,\n  \"totalAmount\": 102\n}"},{"id":"4d66a8a9-7ff3-4e11-a758-a1cfb960a3e5","name":"Currency mismatch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"beneficiaryId\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n  \"currency\": \"GBP\",\n  \"amount\": \"100.50\",\n  \"remittanceInformation\": \"Invoice #INV-2024-001\",\n  \"externalId\": \"payment-inv-2024-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Currency mismatch: this endpoint only supports payments between accounts with the same currency\",\n  \"code\": \"CURRENCY_MISMATCH\",\n  \"details\": {\n    \"accountCurrency\": \"USD\",\n    \"beneficiaryCurrency\": \"EUR\"\n  }\n}"},{"id":"65f29154-692e-47ce-85ec-61465d7b6457","name":"Insufficient funds","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"creditorAccountId\": \"7b8e3a12-5f6d-4c9a-8b7e-1a2b3c4d5e6f\",\n  \"currency\": \"USD\",\n  \"amount\": \"5000.00\",\n  \"remittanceInformation\": \"Treasury rebalancing\",\n  \"externalId\": \"transfer-treasury-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient funds: the payment amount exceeds the available balance\",\n  \"code\": \"INSUFFICIENT_FUNDS\",\n  \"details\": {\n    \"requestedAmount\": 1000,\n    \"availableBalance\": 500,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"27e9a203-4d85-4fbe-b269-f7bf00a69311","name":"Account inactive","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"currency\": \"USDT\",\n  \"amount\": \"250.00\",\n  \"remittanceInformation\": \"Vendor payment\",\n  \"externalId\": \"crypto-vendor-001\",\n  \"beneficiary\": {\n    \"accountDetails\": {\n      \"type\": \"business\",\n      \"beneficiaryName\": \"Acme Corp\",\n      \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n      \"blockchain\": \"TRX\",\n      \"currency\": \"USDT\"\n    },\n    \"address\": {\n      \"country\": \"US\",\n      \"city\": \"San Francisco\",\n      \"street\": \"123 Blockchain Ave\",\n      \"zipOrPostalCode\": \"94107\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account is not active\",\n  \"code\": \"ACCOUNT_INACTIVE\",\n  \"details\": {\n    \"accountStatus\": \"suspended\"\n  }\n}"},{"id":"11e292e3-f2b7-4c63-91c4-a125f489b2d5","name":"Invalid request payload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"beneficiaryId\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n  \"currency\": \"GBP\",\n  \"amount\": \"100.50\",\n  \"remittanceInformation\": \"Invoice #INV-2024-001\",\n  \"externalId\": \"payment-inv-2024-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid request payload\",\n  \"code\": \"INVALID_REQUEST_PAYLOAD\",\n  \"details\": {\n    \"validationErrors\": [\n      {\n        \"path\": [\n          \"amount\"\n        ],\n        \"message\": \"Amount must be a valid positive number\"\n      }\n    ]\n  }\n}"},{"id":"072758ab-1a36-4a62-95b7-aa5a4900910c","name":"Missing request body","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"beneficiaryId\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n  \"currency\": \"GBP\",\n  \"amount\": \"100.50\",\n  \"remittanceInformation\": \"Invoice #INV-2024-001\",\n  \"externalId\": \"payment-inv-2024-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Request body is missing\",\n  \"code\": \"MISSING_REQUEST_BODY\"\n}"},{"id":"95d6f277-ec43-40e0-84a8-5ee83a1c7f47","name":"Beneficiary already exists","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"beneficiaryId\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n  \"currency\": \"GBP\",\n  \"amount\": \"100.50\",\n  \"remittanceInformation\": \"Invoice #INV-2024-001\",\n  \"externalId\": \"payment-inv-2024-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary with these details already exists\",\n  \"code\": \"BENEFICIARY_ALREADY_EXISTS\"\n}"},{"id":"98d58c63-17e5-4e7e-8412-19d2e90ef251","name":"Invalid IBAN","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"beneficiaryId\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n  \"currency\": \"GBP\",\n  \"amount\": \"100.50\",\n  \"remittanceInformation\": \"Invoice #INV-2024-001\",\n  \"externalId\": \"payment-inv-2024-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid IBAN format\",\n  \"code\": \"INVALID_IBAN\"\n}"},{"id":"8c30e7c7-5609-43b6-8e71-59d3f9763d95","name":"Amount below minimum","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"beneficiaryId\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n  \"currency\": \"GBP\",\n  \"amount\": \"100.50\",\n  \"remittanceInformation\": \"Invoice #INV-2024-001\",\n  \"externalId\": \"payment-inv-2024-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction amount is below the minimum threshold\",\n  \"code\": \"AMOUNT_BELOW_MINIMUM\",\n  \"details\": {\n    \"minimumAmount\": 1,\n    \"providedAmount\": 0.5,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"d20adc64-f57c-41cf-b210-9cfcde0b22e3","name":"Duplicate payment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"beneficiaryId\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n  \"currency\": \"GBP\",\n  \"amount\": \"100.50\",\n  \"remittanceInformation\": \"Invoice #INV-2024-001\",\n  \"externalId\": \"payment-inv-2024-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"9cd8470a-3f7a-4733-8e27-7dbd8d7eb81f","name":"Missing API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"beneficiaryId\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n  \"currency\": \"GBP\",\n  \"amount\": \"100.50\",\n  \"remittanceInformation\": \"Invoice #INV-2024-001\",\n  \"externalId\": \"payment-inv-2024-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-api-key header\",\n  \"code\": \"MISSING_API_KEY\"\n}"},{"id":"c480d3f1-75c6-4648-aff2-1faff1e08b42","name":"Disabled API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"creditorAccountId\": \"7b8e3a12-5f6d-4c9a-8b7e-1a2b3c4d5e6f\",\n  \"currency\": \"USD\",\n  \"amount\": \"5000.00\",\n  \"remittanceInformation\": \"Treasury rebalancing\",\n  \"externalId\": \"transfer-treasury-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key has been disabled\",\n  \"code\": \"DISABLED_API_KEY\"\n}"},{"id":"6ea6bd40-b24f-48bd-98dd-2ec17d36290b","name":"Invalid API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"currency\": \"USDT\",\n  \"amount\": \"250.00\",\n  \"remittanceInformation\": \"Vendor payment\",\n  \"externalId\": \"crypto-vendor-001\",\n  \"beneficiary\": {\n    \"accountDetails\": {\n      \"type\": \"business\",\n      \"beneficiaryName\": \"Acme Corp\",\n      \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n      \"blockchain\": \"TRX\",\n      \"currency\": \"USDT\"\n    },\n    \"address\": {\n      \"country\": \"US\",\n      \"city\": \"San Francisco\",\n      \"street\": \"123 Blockchain Ave\",\n      \"zipOrPostalCode\": \"94107\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid API Key\",\n  \"code\": \"INVALID_API_KEY\"\n}"},{"id":"431064e5-cdb7-4a22-bef3-cded40f555ff","name":"Missing signature","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"beneficiaryId\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n  \"currency\": \"GBP\",\n  \"amount\": \"100.50\",\n  \"remittanceInformation\": \"Invoice #INV-2024-001\",\n  \"externalId\": \"payment-inv-2024-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-signature header\",\n  \"code\": \"MISSING_SIGNATURE\"\n}"},{"id":"366c7b32-b1ee-4873-a2de-3064b326772b","name":"Invalid signature","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"beneficiaryId\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n  \"currency\": \"GBP\",\n  \"amount\": \"100.50\",\n  \"remittanceInformation\": \"Invoice #INV-2024-001\",\n  \"externalId\": \"payment-inv-2024-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid signature\",\n  \"code\": \"INVALID_SIGNATURE\"\n}"},{"id":"f62c8adf-625b-4f7c-b7b8-84c56fc98adc","name":"Insufficient permissions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"beneficiaryId\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n  \"currency\": \"GBP\",\n  \"amount\": \"100.50\",\n  \"remittanceInformation\": \"Invoice #INV-2024-001\",\n  \"externalId\": \"payment-inv-2024-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key does not have required permissions\",\n  \"code\": \"INSUFFICIENT_PERMISSIONS\"\n}"},{"id":"d74ea033-2a73-427b-bae6-57a72432ea01","name":"Forbidden resource","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"creditorAccountId\": \"7b8e3a12-5f6d-4c9a-8b7e-1a2b3c4d5e6f\",\n  \"currency\": \"USD\",\n  \"amount\": \"5000.00\",\n  \"remittanceInformation\": \"Treasury rebalancing\",\n  \"externalId\": \"transfer-treasury-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access to this resource is forbidden\",\n  \"code\": \"FORBIDDEN\"\n}"},{"id":"4fbec946-efb6-4249-840b-a26b21a0f675","name":"Crypto payment with inline beneficiary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"currency\": \"USDT\",\n  \"amount\": \"250.00\",\n  \"remittanceInformation\": \"Vendor payment\",\n  \"externalId\": \"crypto-vendor-001\",\n  \"beneficiary\": {\n    \"accountDetails\": {\n      \"type\": \"business\",\n      \"beneficiaryName\": \"Acme Corp\",\n      \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n      \"blockchain\": \"TRX\",\n      \"currency\": \"USDT\"\n    },\n    \"address\": {\n      \"country\": \"US\",\n      \"city\": \"San Francisco\",\n      \"street\": \"123 Blockchain Ave\",\n      \"zipOrPostalCode\": \"94107\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key does not have required permissions\",\n  \"code\": \"INSUFFICIENT_PERMISSIONS\"\n}"},{"id":"4512efcc-9adb-49f4-a2bc-dac4e6641a2b","name":"Payment to existing beneficiary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"beneficiaryId\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n  \"currency\": \"GBP\",\n  \"amount\": \"100.50\",\n  \"remittanceInformation\": \"Invoice #INV-2024-001\",\n  \"externalId\": \"payment-inv-2024-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"58de353e-b45a-4447-8721-869a52b0aaa5","name":"Internal transfer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"creditorAccountId\": \"7b8e3a12-5f6d-4c9a-8b7e-1a2b3c4d5e6f\",\n  \"currency\": \"USD\",\n  \"amount\": \"5000.00\",\n  \"remittanceInformation\": \"Treasury rebalancing\",\n  \"externalId\": \"transfer-treasury-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"ebed088c-8f42-4d75-8c2a-a8250e6a7209","name":"Crypto payment with inline beneficiary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"currency\": \"USDT\",\n  \"amount\": \"250.00\",\n  \"remittanceInformation\": \"Vendor payment\",\n  \"externalId\": \"crypto-vendor-001\",\n  \"beneficiary\": {\n    \"accountDetails\": {\n      \"type\": \"business\",\n      \"beneficiaryName\": \"Acme Corp\",\n      \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n      \"blockchain\": \"TRX\",\n      \"currency\": \"USDT\"\n    },\n    \"address\": {\n      \"country\": \"US\",\n      \"city\": \"San Francisco\",\n      \"street\": \"123 Blockchain Ave\",\n      \"zipOrPostalCode\": \"94107\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"96251d34-7e81-45ed-b0ec-9e1678428a69","name":"Internal server error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"beneficiaryId\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n  \"currency\": \"GBP\",\n  \"amount\": \"100.50\",\n  \"remittanceInformation\": \"Invoice #INV-2024-001\",\n  \"externalId\": \"payment-inv-2024-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"},{"id":"845566ed-e478-4e94-ae3c-475cc98b199c","name":"Internal transfer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"creditorAccountId\": \"7b8e3a12-5f6d-4c9a-8b7e-1a2b3c4d5e6f\",\n  \"currency\": \"USD\",\n  \"amount\": \"5000.00\",\n  \"remittanceInformation\": \"Treasury rebalancing\",\n  \"externalId\": \"transfer-treasury-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"},{"id":"e5731a75-bfc9-4203-af5e-43c82ef36530","name":"Crypto payment with inline beneficiary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"currency\": \"USDT\",\n  \"amount\": \"250.00\",\n  \"remittanceInformation\": \"Vendor payment\",\n  \"externalId\": \"crypto-vendor-001\",\n  \"beneficiary\": {\n    \"accountDetails\": {\n      \"type\": \"business\",\n      \"beneficiaryName\": \"Acme Corp\",\n      \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n      \"blockchain\": \"TRX\",\n      \"currency\": \"USDT\"\n    },\n    \"address\": {\n      \"country\": \"US\",\n      \"city\": \"San Francisco\",\n      \"street\": \"123 Blockchain Ave\",\n      \"zipOrPostalCode\": \"94107\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"},{"id":"0e739469-4871-4fc9-b726-a33ae71d2ffd","name":"External service error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"beneficiaryId\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n  \"currency\": \"GBP\",\n  \"amount\": \"100.50\",\n  \"remittanceInformation\": \"Invoice #INV-2024-001\",\n  \"externalId\": \"payment-inv-2024-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Unable to complete the request due to a downstream service error\",\n  \"code\": \"EXTERNAL_SERVICE_ERROR\"\n}"},{"id":"cd464ae1-8924-4454-8d5b-43ac789074b1","name":"Internal transfer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"creditorAccountId\": \"7b8e3a12-5f6d-4c9a-8b7e-1a2b3c4d5e6f\",\n  \"currency\": \"USD\",\n  \"amount\": \"5000.00\",\n  \"remittanceInformation\": \"Treasury rebalancing\",\n  \"externalId\": \"transfer-treasury-001\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Unable to complete the request due to a downstream service error\",\n  \"code\": \"EXTERNAL_SERVICE_ERROR\"\n}"},{"id":"d1ccf4b1-e0e7-4643-b286-61fd53138d08","name":"Crypto payment with inline beneficiary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"currency\": \"USDT\",\n  \"amount\": \"250.00\",\n  \"remittanceInformation\": \"Vendor payment\",\n  \"externalId\": \"crypto-vendor-001\",\n  \"beneficiary\": {\n    \"accountDetails\": {\n      \"type\": \"business\",\n      \"beneficiaryName\": \"Acme Corp\",\n      \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n      \"blockchain\": \"TRX\",\n      \"currency\": \"USDT\"\n    },\n    \"address\": {\n      \"country\": \"US\",\n      \"city\": \"San Francisco\",\n      \"street\": \"123 Blockchain Ave\",\n      \"zipOrPostalCode\": \"94107\"\n    }\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payments"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Unable to complete the request due to a downstream service error\",\n  \"code\": \"EXTERNAL_SERVICE_ERROR\"\n}"}],"_postman_id":"43f9fc65-eb24-45e7-8c83-79a1e0e93fb1"}],"id":"b4aca3a0-4467-4743-806c-47e5c1d6b8c4","_postman_id":"b4aca3a0-4467-4743-806c-47e5c1d6b8c4","description":""},{"name":"accounts","item":[{"name":"{id}","item":[{"name":"topup","item":[{"name":"Top up account balance (sandbox only)","id":"13075336-3e32-439b-bc41-799e16a5437d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/accounts/:id/topup","description":"<p>Credit funds to a sandbox account for testing purposes. This endpoint is only available in the sandbox environment.</p>\n<p>Use this to simulate incoming deposits so you can test payment flows without waiting for real funds.</p>\n","urlObject":{"path":["accounts",":id","topup"],"host":["https://b2b.getorbital.io"],"query":[],"variable":[{"id":"0df12ff6-7673-4c60-a31f-b69c2fca5612","description":{"content":"<p>The unique account identifier to credit</p>\n","type":"text/plain"},"type":"any","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","key":"id"}]}},"response":[{"id":"efba5c46-c4fc-4d48-912f-1da1933daba8","name":"Account topped up successfully","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"transactionReference\": \"PAY202503201254556468PAYM\",\n  \"fee\": 0,\n  \"amount\": 1000,\n  \"totalAmount\": 1000\n}"},{"id":"fc5943ad-620d-4db9-91e4-aabbb48fee46","name":"Currency mismatch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Currency mismatch: this endpoint only supports payments between accounts with the same currency\",\n  \"code\": \"CURRENCY_MISMATCH\",\n  \"details\": {\n    \"accountCurrency\": \"USD\",\n    \"beneficiaryCurrency\": \"EUR\"\n  }\n}"},{"id":"35e6d664-8285-4e18-b2cb-8c9c5162cbf3","name":"Insufficient funds","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient funds: the payment amount exceeds the available balance\",\n  \"code\": \"INSUFFICIENT_FUNDS\",\n  \"details\": {\n    \"requestedAmount\": 1000,\n    \"availableBalance\": 500,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"ce3fa0a7-d4c6-42b8-8810-fcc172b6ad6b","name":"Account inactive","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account is not active\",\n  \"code\": \"ACCOUNT_INACTIVE\",\n  \"details\": {\n    \"accountStatus\": \"suspended\"\n  }\n}"},{"id":"c7ee17ab-b094-4284-a291-b31dafe3f767","name":"Invalid request payload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid request payload\",\n  \"code\": \"INVALID_REQUEST_PAYLOAD\",\n  \"details\": {\n    \"validationErrors\": [\n      {\n        \"path\": [\n          \"amount\"\n        ],\n        \"message\": \"Amount must be a valid positive number\"\n      }\n    ]\n  }\n}"},{"id":"35b15ca2-0916-4775-b0c1-a4d4b9d3b846","name":"Missing request body","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Request body is missing\",\n  \"code\": \"MISSING_REQUEST_BODY\"\n}"},{"id":"ca0d991e-8bff-4dcf-8742-bf285cde7063","name":"Beneficiary already exists","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary with these details already exists\",\n  \"code\": \"BENEFICIARY_ALREADY_EXISTS\"\n}"},{"id":"415315aa-2ec9-4b07-acc1-4299b11836fc","name":"Invalid IBAN","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid IBAN format\",\n  \"code\": \"INVALID_IBAN\"\n}"},{"id":"0b7d33d6-c478-48b6-8433-500cb9680259","name":"Amount below minimum","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction amount is below the minimum threshold\",\n  \"code\": \"AMOUNT_BELOW_MINIMUM\",\n  \"details\": {\n    \"minimumAmount\": 1,\n    \"providedAmount\": 0.5,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"3d98e85b-7312-4b28-9163-8313e544b9be","name":"Duplicate payment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"7d9e5973-8b96-4eaf-9985-c004c6b1c720","name":"Missing API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-api-key header\",\n  \"code\": \"MISSING_API_KEY\"\n}"},{"id":"94bfd9e4-3eb4-4a63-88fb-a8afe2e2d881","name":"Disabled API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key has been disabled\",\n  \"code\": \"DISABLED_API_KEY\"\n}"},{"id":"08fc9002-d436-467f-9d40-78961c80ef4c","name":"Invalid API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid API Key\",\n  \"code\": \"INVALID_API_KEY\"\n}"},{"id":"06da1d89-4f8c-4734-8343-1a3e13be2750","name":"Missing signature","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-signature header\",\n  \"code\": \"MISSING_SIGNATURE\"\n}"},{"id":"d3f49c8a-4006-4ac3-b846-b98c02ac70ee","name":"Invalid signature","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid signature\",\n  \"code\": \"INVALID_SIGNATURE\"\n}"},{"id":"43e5d578-2914-447c-9c5f-d4bdcc31392c","name":"Insufficient permissions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key does not have required permissions\",\n  \"code\": \"INSUFFICIENT_PERMISSIONS\"\n}"},{"id":"424c7729-5023-41bb-8ac3-aa357cf8586f","name":"Forbidden resource","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access to this resource is forbidden\",\n  \"code\": \"FORBIDDEN\"\n}"},{"id":"83e8509e-aec0-4713-9b80-8a995d44d203","name":"Account not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account not found\",\n  \"code\": \"ACCOUNT_NOT_FOUND\"\n}"},{"id":"bf1c40ef-3e7e-4ad7-81fb-95c4cf274b9f","name":"Internal Server Error - An unexpected error occurred","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"amount\": \"1000.00\",\n  \"remittanceInformation\": \"Test deposit for payment flow\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/accounts/:id/topup","host":["https://b2b.getorbital.io"],"path":["accounts",":id","topup"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier to credit"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"}],"_postman_id":"13075336-3e32-439b-bc41-799e16a5437d"}],"id":"9d209907-ee06-4cf8-b711-4c7e4810057a","_postman_id":"9d209907-ee06-4cf8-b711-4c7e4810057a","description":""},{"name":"Get account by ID","id":"afbb611f-84bd-4f37-95cb-2e5a31102be7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://b2b.getorbital.io/accounts/:id","description":"<p>Retrieve detailed information about a specific account using its unique account ID.</p>\n","urlObject":{"path":["accounts",":id"],"host":["https://b2b.getorbital.io"],"query":[],"variable":[{"id":"e5947a5b-f49f-4a5c-a4d4-1c6d8ce2b9e7","description":{"content":"<p>The unique account identifier (UUID format)</p>\n","type":"text/plain"},"type":"any","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","key":"id"}]}},"response":[{"id":"27219615-d2b8-42a4-b29b-1bfe229a1362","name":"Successfully retrieved the account","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts/:id","host":["https://b2b.getorbital.io"],"path":["accounts",":id"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier (UUID format)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"account\": {\n    \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n    \"currency\": \"USD\",\n    \"availableBalance\": \"125000.00\",\n    \"accountStatus\": \"active\",\n    \"accountName\": \"Operating Account USD\",\n    \"accountIdentification\": {\n      \"accountNumber\": \"string\",\n      \"blockchainName\": \"string\",\n      \"iban\": \"string\",\n      \"bic\": \"string\",\n      \"intermediaryBank\": \"string\",\n      \"accountRegion\": \"string\"\n    }\n  }\n}"},{"id":"1ff222aa-a170-4b9b-8e6d-b0fd965b4729","name":"Currency mismatch","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts/:id","host":["https://b2b.getorbital.io"],"path":["accounts",":id"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Currency mismatch: this endpoint only supports payments between accounts with the same currency\",\n  \"code\": \"CURRENCY_MISMATCH\",\n  \"details\": {\n    \"accountCurrency\": \"USD\",\n    \"beneficiaryCurrency\": \"EUR\"\n  }\n}"},{"id":"b63aad3a-2ee1-47c5-9e2d-ea1ca3eebd3f","name":"Insufficient funds","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts/:id","host":["https://b2b.getorbital.io"],"path":["accounts",":id"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient funds: the payment amount exceeds the available balance\",\n  \"code\": \"INSUFFICIENT_FUNDS\",\n  \"details\": {\n    \"requestedAmount\": 1000,\n    \"availableBalance\": 500,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"1ef668d0-8fbf-464c-99cb-6ef3e885eb72","name":"Account inactive","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts/:id","host":["https://b2b.getorbital.io"],"path":["accounts",":id"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account is not active\",\n  \"code\": \"ACCOUNT_INACTIVE\",\n  \"details\": {\n    \"accountStatus\": \"suspended\"\n  }\n}"},{"id":"7aa46335-86e8-452b-9df9-3e927152a684","name":"Invalid request payload","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts/:id","host":["https://b2b.getorbital.io"],"path":["accounts",":id"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid request payload\",\n  \"code\": \"INVALID_REQUEST_PAYLOAD\",\n  \"details\": {\n    \"validationErrors\": [\n      {\n        \"path\": [\n          \"amount\"\n        ],\n        \"message\": \"Amount must be a valid positive number\"\n      }\n    ]\n  }\n}"},{"id":"278633ec-55a3-45e5-961d-0856f007a374","name":"Missing request body","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts/:id","host":["https://b2b.getorbital.io"],"path":["accounts",":id"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Request body is missing\",\n  \"code\": \"MISSING_REQUEST_BODY\"\n}"},{"id":"58c20bfe-fe4b-4c74-82cb-96ee973406e5","name":"Beneficiary already exists","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts/:id","host":["https://b2b.getorbital.io"],"path":["accounts",":id"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary with these details already exists\",\n  \"code\": \"BENEFICIARY_ALREADY_EXISTS\"\n}"},{"id":"590ff26d-a4e9-4419-b7a1-bf06fb4f3352","name":"Invalid IBAN","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts/:id","host":["https://b2b.getorbital.io"],"path":["accounts",":id"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid IBAN format\",\n  \"code\": \"INVALID_IBAN\"\n}"},{"id":"ae7b3cb5-cd46-4c60-b56b-f1291cdcac4f","name":"Amount below minimum","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts/:id","host":["https://b2b.getorbital.io"],"path":["accounts",":id"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction amount is below the minimum threshold\",\n  \"code\": \"AMOUNT_BELOW_MINIMUM\",\n  \"details\": {\n    \"minimumAmount\": 1,\n    \"providedAmount\": 0.5,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"e2931739-7fc8-4af1-a43d-8134c936e3e9","name":"Duplicate payment","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts/:id","host":["https://b2b.getorbital.io"],"path":["accounts",":id"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"9c96cac1-030d-45b5-b0a1-21c3d75e59b6","name":"Missing API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts/:id","host":["https://b2b.getorbital.io"],"path":["accounts",":id"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier (UUID format)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-api-key header\",\n  \"code\": \"MISSING_API_KEY\"\n}"},{"id":"6707616c-49b0-452c-97a4-818d712a9996","name":"Disabled API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts/:id","host":["https://b2b.getorbital.io"],"path":["accounts",":id"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier (UUID format)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key has been disabled\",\n  \"code\": \"DISABLED_API_KEY\"\n}"},{"id":"32d406e6-3fde-4a0f-84b7-2d6480693798","name":"Invalid API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts/:id","host":["https://b2b.getorbital.io"],"path":["accounts",":id"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier (UUID format)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid API Key\",\n  \"code\": \"INVALID_API_KEY\"\n}"},{"id":"b3664be4-8450-49ce-8656-112266de1288","name":"Missing signature","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts/:id","host":["https://b2b.getorbital.io"],"path":["accounts",":id"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier (UUID format)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-signature header\",\n  \"code\": \"MISSING_SIGNATURE\"\n}"},{"id":"36d1cdcb-6d92-46d3-b835-6ec31486d31f","name":"Invalid signature","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts/:id","host":["https://b2b.getorbital.io"],"path":["accounts",":id"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier (UUID format)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid signature\",\n  \"code\": \"INVALID_SIGNATURE\"\n}"},{"id":"088a37de-22b2-45e3-8743-f7e65ce0ad33","name":"Account not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts/:id","host":["https://b2b.getorbital.io"],"path":["accounts",":id"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier (UUID format)"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account not found\",\n  \"code\": \"ACCOUNT_NOT_FOUND\"\n}"},{"id":"0d59dc9a-2085-4bd1-bf01-4fb1103a1e5b","name":"Internal Server Error - An unexpected error occurred","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts/:id","host":["https://b2b.getorbital.io"],"path":["accounts",":id"],"variable":[{"key":"id","value":"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae","description":"The unique account identifier (UUID format)"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"}],"_postman_id":"afbb611f-84bd-4f37-95cb-2e5a31102be7"}],"id":"c2b7544d-f1fb-459d-97bc-a9b22b340ea1","_postman_id":"c2b7544d-f1fb-459d-97bc-a9b22b340ea1","description":""},{"name":"List accounts","id":"365984a8-f024-45cf-9480-332fa039767f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","description":"<p>Retrieve a paginated list of all accounts associated with your organization.</p>\n<p>Filter accounts by status or currency to find specific accounts.</p>\n","urlObject":{"path":["accounts"],"host":["https://b2b.getorbital.io"],"query":[{"description":{"content":"<p>Filter by account status</p>\n","type":"text/plain"},"key":"status","value":"inactive"},{"description":{"content":"<p>Filter by currency code (e.g., USD, EUR, BTC, USDT)</p>\n","type":"text/plain"},"key":"currency","value":"USD"},{"description":{"content":"<p>Page number for pagination (1-indexed)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Number of items per page (maximum 100)</p>\n","type":"text/plain"},"key":"pageSize","value":"10"}],"variable":[]}},"response":[{"id":"bdccbf0c-20c5-4a01-ba30-66eccbda8f79","name":"Successfully retrieved accounts","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"accounts\": [\n    {\n      \"accountId\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n      \"accountName\": \"Operating Account USD\",\n      \"currency\": \"USD\",\n      \"availableBalance\": \"125000.00\",\n      \"accountStatus\": \"active\",\n      \"accountIdentification\": {\n        \"accountNumber\": \"12345678\",\n        \"iban\": \"GB82WEST12345698765432\",\n        \"bic\": \"WESTGB2L\",\n        \"accountRegion\": \"GB\"\n      }\n    },\n    {\n      \"accountId\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n      \"accountName\": \"USDT Holdings\",\n      \"currency\": \"USDT\",\n      \"availableBalance\": \"50000.00\",\n      \"accountStatus\": \"active\",\n      \"accountIdentification\": {\n        \"accountNumber\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n        \"blockchainName\": \"TRON\"\n      }\n    }\n  ]\n}"},{"id":"1ce61ca5-8dd4-4579-a3fd-9367025c1737","name":"Currency mismatch","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Currency mismatch: this endpoint only supports payments between accounts with the same currency\",\n  \"code\": \"CURRENCY_MISMATCH\",\n  \"details\": {\n    \"accountCurrency\": \"USD\",\n    \"beneficiaryCurrency\": \"EUR\"\n  }\n}"},{"id":"fb11d955-6ad9-4e13-9198-7dfd713f90a4","name":"Insufficient funds","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient funds: the payment amount exceeds the available balance\",\n  \"code\": \"INSUFFICIENT_FUNDS\",\n  \"details\": {\n    \"requestedAmount\": 1000,\n    \"availableBalance\": 500,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"44b9f30b-8971-4bac-b3f3-838e4c9258a7","name":"Account inactive","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account is not active\",\n  \"code\": \"ACCOUNT_INACTIVE\",\n  \"details\": {\n    \"accountStatus\": \"suspended\"\n  }\n}"},{"id":"a0de6737-d876-4d7f-94e9-757a83a88078","name":"Invalid request payload","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid request payload\",\n  \"code\": \"INVALID_REQUEST_PAYLOAD\",\n  \"details\": {\n    \"validationErrors\": [\n      {\n        \"path\": [\n          \"amount\"\n        ],\n        \"message\": \"Amount must be a valid positive number\"\n      }\n    ]\n  }\n}"},{"id":"f5b3af15-6232-4900-b963-458028f39bd1","name":"Missing request body","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Request body is missing\",\n  \"code\": \"MISSING_REQUEST_BODY\"\n}"},{"id":"44da8780-75c3-4996-ac85-bfe89bf9c786","name":"Beneficiary already exists","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary with these details already exists\",\n  \"code\": \"BENEFICIARY_ALREADY_EXISTS\"\n}"},{"id":"37ed54d1-4633-4175-9606-fed8d59f5ec1","name":"Invalid IBAN","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid IBAN format\",\n  \"code\": \"INVALID_IBAN\"\n}"},{"id":"1e126489-396f-41d3-8c75-2a0a433b1df1","name":"Amount below minimum","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction amount is below the minimum threshold\",\n  \"code\": \"AMOUNT_BELOW_MINIMUM\",\n  \"details\": {\n    \"minimumAmount\": 1,\n    \"providedAmount\": 0.5,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"2c14c52d-0006-4f66-82d5-c59b001344db","name":"Duplicate payment","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"f5c2a078-769d-4cd5-bf97-eb79fbaed8a3","name":"Missing API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-api-key header\",\n  \"code\": \"MISSING_API_KEY\"\n}"},{"id":"9098639e-1134-4fad-810d-41513d0bb59c","name":"Disabled API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key has been disabled\",\n  \"code\": \"DISABLED_API_KEY\"\n}"},{"id":"793b8a10-ed72-4390-9498-9c412b4c5ee2","name":"Invalid API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid API Key\",\n  \"code\": \"INVALID_API_KEY\"\n}"},{"id":"9c00b571-abe6-445c-83af-1cdfdb5b9543","name":"Missing signature","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-signature header\",\n  \"code\": \"MISSING_SIGNATURE\"\n}"},{"id":"976228d3-d7cf-4181-a749-e0aa554f5a2a","name":"Invalid signature","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid signature\",\n  \"code\": \"INVALID_SIGNATURE\"\n}"},{"id":"3d733ece-e761-4073-8cb9-6ab283a314b3","name":"Insufficient permissions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key does not have required permissions\",\n  \"code\": \"INSUFFICIENT_PERMISSIONS\"\n}"},{"id":"1f0b2ffe-6105-4d40-96d0-a8cf8f2a6326","name":"Forbidden resource","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access to this resource is forbidden\",\n  \"code\": \"FORBIDDEN\"\n}"},{"id":"b956368c-a522-48e2-8776-d6139bc30f22","name":"Internal Server Error - An unexpected error occurred","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/accounts?status=inactive&currency=USD&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["accounts"],"query":[{"description":"Filter by account status","key":"status","value":"inactive"},{"description":"Filter by currency code (e.g., USD, EUR, BTC, USDT)","key":"currency","value":"USD"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"}],"_postman_id":"365984a8-f024-45cf-9480-332fa039767f"}],"id":"40582213-a6b3-449d-81ee-e920fb39b86e","_postman_id":"40582213-a6b3-449d-81ee-e920fb39b86e","description":""},{"name":"beneficiaries","item":[{"name":"{id}","item":[{"name":"Get beneficiary by ID","id":"ab6f6c26-7a5a-45aa-8eac-6ca343e6e347","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://b2b.getorbital.io/beneficiaries/:id","description":"<p>Retrieve detailed information about a specific beneficiary using their unique ID.</p>\n","urlObject":{"path":["beneficiaries",":id"],"host":["https://b2b.getorbital.io"],"query":[],"variable":[{"id":"5d60ceec-e7ac-4df3-965e-5c70375286d5","description":{"content":"<p>The unique beneficiary identifier (UUID format)</p>\n","type":"text/plain"},"type":"any","value":"e78733bd-0a45-4777-9715-b32221e58f7b","key":"id"}]}},"response":[{"id":"bab3dbf5-b81d-480e-9f03-bda078769e07","name":"Successfully retrieved the beneficiary","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"beneficiary\": {\n    \"id\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n    \"beneficiaryDetails\": {\n      \"type\": \"business\",\n      \"nameOnAccount\": \"string\",\n      \"address\": {\n        \"country\": \"string\",\n        \"buildingNumber\": \"string\",\n        \"city\": \"string\",\n        \"street\": \"string\",\n        \"zipOrPostalCode\": \"string\",\n        \"stateOrProvince\": \"string\"\n      }\n    },\n    \"currency\": \"GBP\",\n    \"status\": \"new\",\n    \"accountDetails\": {\n      \"accountNumber\": \"string\",\n      \"bankCode\": \"string\",\n      \"bankCountry\": \"string\",\n      \"bankName\": \"string\",\n      \"iban\": \"string\",\n      \"intermediaryBank\": \"string\",\n      \"bic\": \"string\"\n    },\n    \"createdAt\": \"1960-12-10T20:01:57.960Z\",\n    \"blockChain\": \"string\"\n  }\n}"},{"id":"d5b52f34-08f3-47b5-b17c-3a53501b0c55","name":"Currency mismatch","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Currency mismatch: this endpoint only supports payments between accounts with the same currency\",\n  \"code\": \"CURRENCY_MISMATCH\",\n  \"details\": {\n    \"accountCurrency\": \"USD\",\n    \"beneficiaryCurrency\": \"EUR\"\n  }\n}"},{"id":"eb1cac69-4ae8-471a-8466-572267a2f7a5","name":"Insufficient funds","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient funds: the payment amount exceeds the available balance\",\n  \"code\": \"INSUFFICIENT_FUNDS\",\n  \"details\": {\n    \"requestedAmount\": 1000,\n    \"availableBalance\": 500,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"e51107b9-8268-4fe1-83ef-4bd35d3c93fc","name":"Account inactive","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account is not active\",\n  \"code\": \"ACCOUNT_INACTIVE\",\n  \"details\": {\n    \"accountStatus\": \"suspended\"\n  }\n}"},{"id":"000aa491-2280-48a9-a89c-7d3b2b6f6ff0","name":"Invalid request payload","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid request payload\",\n  \"code\": \"INVALID_REQUEST_PAYLOAD\",\n  \"details\": {\n    \"validationErrors\": [\n      {\n        \"path\": [\n          \"amount\"\n        ],\n        \"message\": \"Amount must be a valid positive number\"\n      }\n    ]\n  }\n}"},{"id":"15a1e843-fd9e-48d6-9fcb-fc27a0b7ae66","name":"Missing request body","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Request body is missing\",\n  \"code\": \"MISSING_REQUEST_BODY\"\n}"},{"id":"c790bb7d-e987-4a43-869e-c7be9ffeabdf","name":"Beneficiary already exists","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary with these details already exists\",\n  \"code\": \"BENEFICIARY_ALREADY_EXISTS\"\n}"},{"id":"87a9109b-a89d-4982-854a-e279374a2186","name":"Invalid IBAN","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid IBAN format\",\n  \"code\": \"INVALID_IBAN\"\n}"},{"id":"90267681-3e1d-4b18-a290-5c45bc5bb24c","name":"Amount below minimum","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction amount is below the minimum threshold\",\n  \"code\": \"AMOUNT_BELOW_MINIMUM\",\n  \"details\": {\n    \"minimumAmount\": 1,\n    \"providedAmount\": 0.5,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"7bb49ad4-8df9-4639-89d7-5e14cd1d756e","name":"Duplicate payment","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"425cdfc3-6d17-49ea-b774-37f1d89478a2","name":"Missing API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-api-key header\",\n  \"code\": \"MISSING_API_KEY\"\n}"},{"id":"a391dab1-91dd-460e-8563-73a645efda09","name":"Disabled API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key has been disabled\",\n  \"code\": \"DISABLED_API_KEY\"\n}"},{"id":"1aa8cbc0-aedb-4232-aee9-896ac3dba022","name":"Invalid API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid API Key\",\n  \"code\": \"INVALID_API_KEY\"\n}"},{"id":"c93c18e9-88c5-4e59-b71e-e0fe5b388f6a","name":"Missing signature","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-signature header\",\n  \"code\": \"MISSING_SIGNATURE\"\n}"},{"id":"954155e9-0b39-460a-b2db-855c0cda8125","name":"Invalid signature","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid signature\",\n  \"code\": \"INVALID_SIGNATURE\"\n}"},{"id":"428ca637-3643-401c-b57a-3599c60fbd32","name":"Beneficiary not found","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary not found\",\n  \"code\": \"BENEFICIARY_NOT_FOUND\"\n}"},{"id":"a1eb905e-878c-46e0-b893-c1da4b767926","name":"Internal Server Error - An unexpected error occurred","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"}],"_postman_id":"ab6f6c26-7a5a-45aa-8eac-6ca343e6e347"},{"name":"Delete a beneficiary","id":"d4073c1e-9ab3-4870-8203-4721f46ba222","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"}],"url":"https://b2b.getorbital.io/beneficiaries/:id","description":"<p>Delete a beneficiary by their unique ID.</p>\n<p><strong>Warning:</strong> This action cannot be undone. You will need to recreate the beneficiary if you want to send payments to them again.</p>\n","urlObject":{"path":["beneficiaries",":id"],"host":["https://b2b.getorbital.io"],"query":[],"variable":[{"id":"8063b946-0e38-411e-921b-31d1383f9ce5","description":{"content":"<p>The unique beneficiary identifier (UUID format)</p>\n","type":"text/plain"},"type":"any","value":"e78733bd-0a45-4777-9715-b32221e58f7b","key":"id"}]}},"response":[{"id":"7bc71654-5933-4f5d-9ad5-1761c52b4208","name":"Beneficiary successfully deleted","originalRequest":{"method":"DELETE","header":[{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"745975e9-a570-42bd-86ca-8f863057e056","name":"Currency mismatch","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Currency mismatch: this endpoint only supports payments between accounts with the same currency\",\n  \"code\": \"CURRENCY_MISMATCH\",\n  \"details\": {\n    \"accountCurrency\": \"USD\",\n    \"beneficiaryCurrency\": \"EUR\"\n  }\n}"},{"id":"e82dca18-13ad-4b92-98a6-b449720875ee","name":"Insufficient funds","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient funds: the payment amount exceeds the available balance\",\n  \"code\": \"INSUFFICIENT_FUNDS\",\n  \"details\": {\n    \"requestedAmount\": 1000,\n    \"availableBalance\": 500,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"4c7b5314-6af6-48c8-a387-76da6ad3a346","name":"Account inactive","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account is not active\",\n  \"code\": \"ACCOUNT_INACTIVE\",\n  \"details\": {\n    \"accountStatus\": \"suspended\"\n  }\n}"},{"id":"313d3b91-3c5d-412b-aa6c-42dbacd9780e","name":"Invalid request payload","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid request payload\",\n  \"code\": \"INVALID_REQUEST_PAYLOAD\",\n  \"details\": {\n    \"validationErrors\": [\n      {\n        \"path\": [\n          \"amount\"\n        ],\n        \"message\": \"Amount must be a valid positive number\"\n      }\n    ]\n  }\n}"},{"id":"5be09c31-80d2-4f06-9d54-1d3dda61cf79","name":"Missing request body","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Request body is missing\",\n  \"code\": \"MISSING_REQUEST_BODY\"\n}"},{"id":"2600d5f8-4620-48f6-b1db-bd95f0d6a878","name":"Beneficiary already exists","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary with these details already exists\",\n  \"code\": \"BENEFICIARY_ALREADY_EXISTS\"\n}"},{"id":"1d8d0d30-caf8-43c1-bc6a-f356b9708fc7","name":"Invalid IBAN","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid IBAN format\",\n  \"code\": \"INVALID_IBAN\"\n}"},{"id":"23720c42-94f8-40e8-9302-97680da9bb01","name":"Amount below minimum","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction amount is below the minimum threshold\",\n  \"code\": \"AMOUNT_BELOW_MINIMUM\",\n  \"details\": {\n    \"minimumAmount\": 1,\n    \"providedAmount\": 0.5,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"c995e8da-f4c4-47a8-b1d5-259aef02ab81","name":"Duplicate payment","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"e8007791-3c45-421a-8b44-79127b5fad3a","name":"Missing API key","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-api-key header\",\n  \"code\": \"MISSING_API_KEY\"\n}"},{"id":"7f1e3924-021b-44e8-ad1e-fbdd990908c3","name":"Disabled API key","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key has been disabled\",\n  \"code\": \"DISABLED_API_KEY\"\n}"},{"id":"9f03b5c1-044f-4f00-b9de-d5cbf674bc46","name":"Invalid API key","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid API Key\",\n  \"code\": \"INVALID_API_KEY\"\n}"},{"id":"a878e380-35f4-43b7-9422-5f7dfa417738","name":"Missing signature","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-signature header\",\n  \"code\": \"MISSING_SIGNATURE\"\n}"},{"id":"1bee16d5-3824-46db-90f1-6e7dd06a5294","name":"Invalid signature","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid signature\",\n  \"code\": \"INVALID_SIGNATURE\"\n}"},{"id":"42112d5e-c0c8-4864-8291-28465c425224","name":"Insufficient permissions","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key does not have required permissions\",\n  \"code\": \"INSUFFICIENT_PERMISSIONS\"\n}"},{"id":"a15e730c-764b-4639-9391-bc483971aa72","name":"Forbidden resource","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access to this resource is forbidden\",\n  \"code\": \"FORBIDDEN\"\n}"},{"id":"f27c7309-690d-454e-90ee-de0695ba5ec9","name":"Beneficiary not found","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary not found\",\n  \"code\": \"BENEFICIARY_NOT_FOUND\"\n}"},{"id":"e58825e0-dd28-4c90-9710-2a4104805419","name":"Internal Server Error - An unexpected error occurred","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries/:id","host":["https://b2b.getorbital.io"],"path":["beneficiaries",":id"],"variable":[{"key":"id","value":"e78733bd-0a45-4777-9715-b32221e58f7b","description":"The unique beneficiary identifier (UUID format)"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"}],"_postman_id":"d4073c1e-9ab3-4870-8203-4721f46ba222"}],"id":"c81378f3-f3a2-4bb6-982d-f755ee726269","_postman_id":"c81378f3-f3a2-4bb6-982d-f755ee726269","description":""},{"name":"List beneficiaries","id":"b2396bde-cc39-4ac1-adf0-9d7acb23c9b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","description":"<p>Retrieve a paginated list of all beneficiaries associated with your organization.</p>\n<p>Filter beneficiaries by status or currency to find specific recipients.</p>\n","urlObject":{"path":["beneficiaries"],"host":["https://b2b.getorbital.io"],"query":[{"description":{"content":"<p>Filter by beneficiary status</p>\n","type":"text/plain"},"key":"status","value":"approved"},{"description":{"content":"<p>Filter by currency code (e.g., USD, EUR, USDT)</p>\n","type":"text/plain"},"key":"currency","value":"GBP"},{"description":{"content":"<p>Page number for pagination (1-indexed)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Number of items per page (maximum 100)</p>\n","type":"text/plain"},"key":"pageSize","value":"10"}],"variable":[]}},"response":[{"id":"5278ecd9-f4da-407a-83ba-217af49ac380","name":"Successfully retrieved beneficiaries","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"beneficiaries\": [\n    {\n      \"id\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n      \"beneficiaryDetails\": {\n        \"type\": \"business\",\n        \"nameOnAccount\": \"string\",\n        \"address\": {\n          \"country\": \"string\",\n          \"buildingNumber\": \"string\",\n          \"city\": \"string\",\n          \"street\": \"string\",\n          \"zipOrPostalCode\": \"string\",\n          \"stateOrProvince\": \"string\"\n        }\n      },\n      \"currency\": \"GBP\",\n      \"status\": \"rejected\",\n      \"accountDetails\": {\n        \"accountNumber\": \"string\",\n        \"bankCode\": \"string\",\n        \"bankCountry\": \"string\",\n        \"bankName\": \"string\",\n        \"iban\": \"string\",\n        \"intermediaryBank\": \"string\",\n        \"bic\": \"string\"\n      },\n      \"createdAt\": \"2016-02-25T21:24:17.213Z\",\n      \"blockChain\": \"string\"\n    },\n    {\n      \"id\": \"e78733bd-0a45-4777-9715-b32221e58f7b\",\n      \"beneficiaryDetails\": {\n        \"type\": \"individual\",\n        \"nameOnAccount\": \"string\",\n        \"address\": {\n          \"country\": \"string\",\n          \"buildingNumber\": \"string\",\n          \"city\": \"string\",\n          \"street\": \"string\",\n          \"zipOrPostalCode\": \"string\",\n          \"stateOrProvince\": \"string\"\n        }\n      },\n      \"currency\": \"GBP\",\n      \"status\": \"new\",\n      \"accountDetails\": {\n        \"accountNumber\": \"string\",\n        \"bankCode\": \"string\",\n        \"bankCountry\": \"string\",\n        \"bankName\": \"string\",\n        \"iban\": \"string\",\n        \"intermediaryBank\": \"string\",\n        \"bic\": \"string\"\n      },\n      \"createdAt\": \"1999-07-14T18:49:19.929Z\",\n      \"blockChain\": \"string\"\n    }\n  ]\n}"},{"id":"b770f796-086f-4d6c-b271-5633f6fc16cf","name":"Currency mismatch","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Currency mismatch: this endpoint only supports payments between accounts with the same currency\",\n  \"code\": \"CURRENCY_MISMATCH\",\n  \"details\": {\n    \"accountCurrency\": \"USD\",\n    \"beneficiaryCurrency\": \"EUR\"\n  }\n}"},{"id":"27e13442-93ab-4eb3-b93d-7c143de78b5a","name":"Insufficient funds","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient funds: the payment amount exceeds the available balance\",\n  \"code\": \"INSUFFICIENT_FUNDS\",\n  \"details\": {\n    \"requestedAmount\": 1000,\n    \"availableBalance\": 500,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"46923196-2e8a-4077-a756-af011bf717e1","name":"Account inactive","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account is not active\",\n  \"code\": \"ACCOUNT_INACTIVE\",\n  \"details\": {\n    \"accountStatus\": \"suspended\"\n  }\n}"},{"id":"a1d13ef7-bb04-4fe7-8fec-6979c35b2f2b","name":"Invalid request payload","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid request payload\",\n  \"code\": \"INVALID_REQUEST_PAYLOAD\",\n  \"details\": {\n    \"validationErrors\": [\n      {\n        \"path\": [\n          \"amount\"\n        ],\n        \"message\": \"Amount must be a valid positive number\"\n      }\n    ]\n  }\n}"},{"id":"0f83258d-fdc1-4181-af67-113d6f3ba426","name":"Missing request body","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Request body is missing\",\n  \"code\": \"MISSING_REQUEST_BODY\"\n}"},{"id":"e27974e9-b10e-43fd-8ab6-e5c8fe642e7d","name":"Beneficiary already exists","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary with these details already exists\",\n  \"code\": \"BENEFICIARY_ALREADY_EXISTS\"\n}"},{"id":"8f907b33-72a0-4444-9df2-9e6d2e28bc21","name":"Invalid IBAN","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid IBAN format\",\n  \"code\": \"INVALID_IBAN\"\n}"},{"id":"dc877e64-f93f-4dea-9ddb-4444460c8992","name":"Amount below minimum","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction amount is below the minimum threshold\",\n  \"code\": \"AMOUNT_BELOW_MINIMUM\",\n  \"details\": {\n    \"minimumAmount\": 1,\n    \"providedAmount\": 0.5,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"a42648f5-ea89-4505-a711-47492b2dacac","name":"Duplicate payment","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"1969098e-68be-45ab-9301-e861593d6e50","name":"Missing API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-api-key header\",\n  \"code\": \"MISSING_API_KEY\"\n}"},{"id":"f72eea7d-2105-4a2d-a172-039b6c5bae4a","name":"Disabled API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key has been disabled\",\n  \"code\": \"DISABLED_API_KEY\"\n}"},{"id":"069ae5b3-bed3-4860-9053-fa98fc77c517","name":"Invalid API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid API Key\",\n  \"code\": \"INVALID_API_KEY\"\n}"},{"id":"b3b81c1f-19fd-4c16-9c43-9682687e6b50","name":"Missing signature","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-signature header\",\n  \"code\": \"MISSING_SIGNATURE\"\n}"},{"id":"009c2848-b2d1-4b64-be7d-29456fd20eda","name":"Invalid signature","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid signature\",\n  \"code\": \"INVALID_SIGNATURE\"\n}"},{"id":"eac5bcc6-c25c-4fe9-a102-dc6f5e98e6aa","name":"Insufficient permissions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key does not have required permissions\",\n  \"code\": \"INSUFFICIENT_PERMISSIONS\"\n}"},{"id":"d70bc0e7-a751-47ce-81ec-7ed080f84cb8","name":"Forbidden resource","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access to this resource is forbidden\",\n  \"code\": \"FORBIDDEN\"\n}"},{"id":"f7d56fa5-6e2f-4f09-a736-050ebec16806","name":"Internal Server Error - An unexpected error occurred","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/beneficiaries?status=approved&currency=GBP&page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["beneficiaries"],"query":[{"description":"Filter by beneficiary status","key":"status","value":"approved"},{"description":"Filter by currency code (e.g., USD, EUR, USDT)","key":"currency","value":"GBP"},{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"}],"_postman_id":"b2396bde-cc39-4ac1-adf0-9d7acb23c9b0"},{"name":"Create a beneficiary","id":"8e37cf43-338b-4621-8671-2264367e6fa6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"A.J. Whitaker\",\n    \"bankCountry\": \"GB\",\n    \"branchCode\": \"601613\",\n    \"accountNumber\": \"60161331926819\",\n    \"currency\": \"GBP\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Elmwood Street\",\n    \"stateOrProvince\": \"Greater Manchester\",\n    \"city\": \"Manchester\",\n    \"zipOrPostalCode\": \"M20 6JS\",\n    \"country\": \"GB\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries","description":"<p>Create a new beneficiary for receiving payments.</p>\n<p><strong>Beneficiary Types:</strong></p>\n<ul>\n<li><strong>Fiat beneficiaries</strong> require bank account details (account number, IBAN, bank code, etc.)</li>\n<li><strong>Crypto beneficiaries</strong> require a wallet address and blockchain specification</li>\n</ul>\n<p><strong>Compliance Screening:</strong>\nAll new beneficiaries undergo automatic compliance screening. The beneficiary will be created with status <code>new</code> and will transition to <code>approved</code> or <code>rejected</code> after screening completes.</p>\n<p>You will receive a <code>BeneficiaryScreened</code> webhook event when screening is complete. Alternatively, poll <code>GET /beneficiaries/{id}</code> until the status changes from <code>new</code>.</p>\n","urlObject":{"path":["beneficiaries"],"host":["https://b2b.getorbital.io"],"query":[],"variable":[]}},"response":[{"id":"d76a10d3-4cfb-4414-a462-f8519d420333","name":"UK Fiat beneficiary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"A.J. Whitaker\",\n    \"bankCountry\": \"GB\",\n    \"branchCode\": \"601613\",\n    \"accountNumber\": \"60161331926819\",\n    \"currency\": \"GBP\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Elmwood Street\",\n    \"stateOrProvince\": \"Greater Manchester\",\n    \"city\": \"Manchester\",\n    \"zipOrPostalCode\": \"M20 6JS\",\n    \"country\": \"GB\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"string\",\n  \"status\": \"rejected\",\n  \"createdAt\": \"1956-11-19T17:48:54.436Z\",\n  \"updatedAt\": \"1951-11-13T12:16:40.823Z\",\n  \"createdBy\": \"string\",\n  \"accountDetails\": {\n    \"type\": \"business\",\n    \"beneficiaryName\": \"string\",\n    \"currency\": \"string\",\n    \"bankCountry\": \"string\",\n    \"accountNumber\": \"string\",\n    \"branchCode\": \"string\",\n    \"bic\": \"string\",\n    \"iban\": \"string\",\n    \"blockchain\": \"string\",\n    \"walletAddress\": \"string\"\n  },\n  \"address\": {\n    \"country\": \"string\",\n    \"buildingNumber\": \"string\",\n    \"street\": \"string\",\n    \"city\": \"string\",\n    \"stateOrProvince\": \"string\",\n    \"zipOrPostalCode\": \"string\"\n  },\n  \"ownerIdentification\": {\n    \"companyIdentifier\": \"string\",\n    \"identifierType\": \"string\",\n    \"dateOfBirth\": \"string\",\n    \"firstName\": \"string\",\n    \"lastName\": \"string\"\n  }\n}"},{"id":"edb9baec-07e7-4e5c-bbdb-50fa52b0e504","name":"Eurozone beneficiary with IBAN","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"business\",\n    \"beneficiaryName\": \"Acme GmbH\",\n    \"bankCountry\": \"DE\",\n    \"iban\": \"DE89370400440532013000\",\n    \"bic\": \"COBADEFFXXX\",\n    \"currency\": \"EUR\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"15\",\n    \"street\": \"Hauptstraße\",\n    \"city\": \"Berlin\",\n    \"zipOrPostalCode\": \"10115\",\n    \"country\": \"DE\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"string\",\n  \"status\": \"rejected\",\n  \"createdAt\": \"1956-11-19T17:48:54.436Z\",\n  \"updatedAt\": \"1951-11-13T12:16:40.823Z\",\n  \"createdBy\": \"string\",\n  \"accountDetails\": {\n    \"type\": \"business\",\n    \"beneficiaryName\": \"string\",\n    \"currency\": \"string\",\n    \"bankCountry\": \"string\",\n    \"accountNumber\": \"string\",\n    \"branchCode\": \"string\",\n    \"bic\": \"string\",\n    \"iban\": \"string\",\n    \"blockchain\": \"string\",\n    \"walletAddress\": \"string\"\n  },\n  \"address\": {\n    \"country\": \"string\",\n    \"buildingNumber\": \"string\",\n    \"street\": \"string\",\n    \"city\": \"string\",\n    \"stateOrProvince\": \"string\",\n    \"zipOrPostalCode\": \"string\"\n  },\n  \"ownerIdentification\": {\n    \"companyIdentifier\": \"string\",\n    \"identifierType\": \"string\",\n    \"dateOfBirth\": \"string\",\n    \"firstName\": \"string\",\n    \"lastName\": \"string\"\n  }\n}"},{"id":"3ddbd84e-88cd-4650-bfe6-91a39c0e0b36","name":"Crypto beneficiary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"Satoshi Nakamoto\",\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"blockchain\": \"TRX\",\n    \"currency\": \"USDT\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"8\",\n    \"street\": \"Blockchain Avenue\",\n    \"stateOrProvince\": \"California\",\n    \"city\": \"San Francisco\",\n    \"zipOrPostalCode\": \"94107\",\n    \"country\": \"US\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"string\",\n  \"status\": \"rejected\",\n  \"createdAt\": \"1956-11-19T17:48:54.436Z\",\n  \"updatedAt\": \"1951-11-13T12:16:40.823Z\",\n  \"createdBy\": \"string\",\n  \"accountDetails\": {\n    \"type\": \"business\",\n    \"beneficiaryName\": \"string\",\n    \"currency\": \"string\",\n    \"bankCountry\": \"string\",\n    \"accountNumber\": \"string\",\n    \"branchCode\": \"string\",\n    \"bic\": \"string\",\n    \"iban\": \"string\",\n    \"blockchain\": \"string\",\n    \"walletAddress\": \"string\"\n  },\n  \"address\": {\n    \"country\": \"string\",\n    \"buildingNumber\": \"string\",\n    \"street\": \"string\",\n    \"city\": \"string\",\n    \"stateOrProvince\": \"string\",\n    \"zipOrPostalCode\": \"string\"\n  },\n  \"ownerIdentification\": {\n    \"companyIdentifier\": \"string\",\n    \"identifierType\": \"string\",\n    \"dateOfBirth\": \"string\",\n    \"firstName\": \"string\",\n    \"lastName\": \"string\"\n  }\n}"},{"id":"ece3a6dd-0ca5-4ec3-a065-2f2d6756640c","name":"Currency mismatch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"A.J. Whitaker\",\n    \"bankCountry\": \"GB\",\n    \"branchCode\": \"601613\",\n    \"accountNumber\": \"60161331926819\",\n    \"currency\": \"GBP\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Elmwood Street\",\n    \"stateOrProvince\": \"Greater Manchester\",\n    \"city\": \"Manchester\",\n    \"zipOrPostalCode\": \"M20 6JS\",\n    \"country\": \"GB\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Currency mismatch: this endpoint only supports payments between accounts with the same currency\",\n  \"code\": \"CURRENCY_MISMATCH\",\n  \"details\": {\n    \"accountCurrency\": \"USD\",\n    \"beneficiaryCurrency\": \"EUR\"\n  }\n}"},{"id":"1fa4929c-a3f7-477d-ab9a-8a6d72cf535b","name":"Insufficient funds","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"business\",\n    \"beneficiaryName\": \"Acme GmbH\",\n    \"bankCountry\": \"DE\",\n    \"iban\": \"DE89370400440532013000\",\n    \"bic\": \"COBADEFFXXX\",\n    \"currency\": \"EUR\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"15\",\n    \"street\": \"Hauptstraße\",\n    \"city\": \"Berlin\",\n    \"zipOrPostalCode\": \"10115\",\n    \"country\": \"DE\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient funds: the payment amount exceeds the available balance\",\n  \"code\": \"INSUFFICIENT_FUNDS\",\n  \"details\": {\n    \"requestedAmount\": 1000,\n    \"availableBalance\": 500,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"ba161056-1069-4c10-8fe8-97bd56cd63c5","name":"Account inactive","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"Satoshi Nakamoto\",\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"blockchain\": \"TRX\",\n    \"currency\": \"USDT\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"8\",\n    \"street\": \"Blockchain Avenue\",\n    \"stateOrProvince\": \"California\",\n    \"city\": \"San Francisco\",\n    \"zipOrPostalCode\": \"94107\",\n    \"country\": \"US\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account is not active\",\n  \"code\": \"ACCOUNT_INACTIVE\",\n  \"details\": {\n    \"accountStatus\": \"suspended\"\n  }\n}"},{"id":"774276c9-cc7d-41a6-81fc-b74cd72960b3","name":"Invalid request payload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"A.J. Whitaker\",\n    \"bankCountry\": \"GB\",\n    \"branchCode\": \"601613\",\n    \"accountNumber\": \"60161331926819\",\n    \"currency\": \"GBP\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Elmwood Street\",\n    \"stateOrProvince\": \"Greater Manchester\",\n    \"city\": \"Manchester\",\n    \"zipOrPostalCode\": \"M20 6JS\",\n    \"country\": \"GB\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid request payload\",\n  \"code\": \"INVALID_REQUEST_PAYLOAD\",\n  \"details\": {\n    \"validationErrors\": [\n      {\n        \"path\": [\n          \"amount\"\n        ],\n        \"message\": \"Amount must be a valid positive number\"\n      }\n    ]\n  }\n}"},{"id":"7878e136-175d-4368-81a3-be7607106f97","name":"Missing request body","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"A.J. Whitaker\",\n    \"bankCountry\": \"GB\",\n    \"branchCode\": \"601613\",\n    \"accountNumber\": \"60161331926819\",\n    \"currency\": \"GBP\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Elmwood Street\",\n    \"stateOrProvince\": \"Greater Manchester\",\n    \"city\": \"Manchester\",\n    \"zipOrPostalCode\": \"M20 6JS\",\n    \"country\": \"GB\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Request body is missing\",\n  \"code\": \"MISSING_REQUEST_BODY\"\n}"},{"id":"0401b329-a48b-4d68-9920-4f0d3b1f1872","name":"Beneficiary already exists","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"A.J. Whitaker\",\n    \"bankCountry\": \"GB\",\n    \"branchCode\": \"601613\",\n    \"accountNumber\": \"60161331926819\",\n    \"currency\": \"GBP\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Elmwood Street\",\n    \"stateOrProvince\": \"Greater Manchester\",\n    \"city\": \"Manchester\",\n    \"zipOrPostalCode\": \"M20 6JS\",\n    \"country\": \"GB\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary with these details already exists\",\n  \"code\": \"BENEFICIARY_ALREADY_EXISTS\"\n}"},{"id":"80a32ddb-4eb5-48ac-bcba-bdcc3cb17363","name":"Invalid IBAN","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"A.J. Whitaker\",\n    \"bankCountry\": \"GB\",\n    \"branchCode\": \"601613\",\n    \"accountNumber\": \"60161331926819\",\n    \"currency\": \"GBP\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Elmwood Street\",\n    \"stateOrProvince\": \"Greater Manchester\",\n    \"city\": \"Manchester\",\n    \"zipOrPostalCode\": \"M20 6JS\",\n    \"country\": \"GB\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid IBAN format\",\n  \"code\": \"INVALID_IBAN\"\n}"},{"id":"205c6548-6253-4e00-be22-6801a3add2fc","name":"Amount below minimum","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"A.J. Whitaker\",\n    \"bankCountry\": \"GB\",\n    \"branchCode\": \"601613\",\n    \"accountNumber\": \"60161331926819\",\n    \"currency\": \"GBP\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Elmwood Street\",\n    \"stateOrProvince\": \"Greater Manchester\",\n    \"city\": \"Manchester\",\n    \"zipOrPostalCode\": \"M20 6JS\",\n    \"country\": \"GB\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction amount is below the minimum threshold\",\n  \"code\": \"AMOUNT_BELOW_MINIMUM\",\n  \"details\": {\n    \"minimumAmount\": 1,\n    \"providedAmount\": 0.5,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"2412668c-385b-46bc-b707-91c7e23701e7","name":"Duplicate payment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"A.J. Whitaker\",\n    \"bankCountry\": \"GB\",\n    \"branchCode\": \"601613\",\n    \"accountNumber\": \"60161331926819\",\n    \"currency\": \"GBP\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Elmwood Street\",\n    \"stateOrProvince\": \"Greater Manchester\",\n    \"city\": \"Manchester\",\n    \"zipOrPostalCode\": \"M20 6JS\",\n    \"country\": \"GB\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"7b0011ca-5970-469c-9bbe-1ffa6f3972cc","name":"Missing API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"A.J. Whitaker\",\n    \"bankCountry\": \"GB\",\n    \"branchCode\": \"601613\",\n    \"accountNumber\": \"60161331926819\",\n    \"currency\": \"GBP\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Elmwood Street\",\n    \"stateOrProvince\": \"Greater Manchester\",\n    \"city\": \"Manchester\",\n    \"zipOrPostalCode\": \"M20 6JS\",\n    \"country\": \"GB\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-api-key header\",\n  \"code\": \"MISSING_API_KEY\"\n}"},{"id":"93c549a8-78b0-4c0a-85a8-3d521a5842bc","name":"Disabled API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"business\",\n    \"beneficiaryName\": \"Acme GmbH\",\n    \"bankCountry\": \"DE\",\n    \"iban\": \"DE89370400440532013000\",\n    \"bic\": \"COBADEFFXXX\",\n    \"currency\": \"EUR\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"15\",\n    \"street\": \"Hauptstraße\",\n    \"city\": \"Berlin\",\n    \"zipOrPostalCode\": \"10115\",\n    \"country\": \"DE\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key has been disabled\",\n  \"code\": \"DISABLED_API_KEY\"\n}"},{"id":"e6dee8d7-81d8-4b7c-814d-05210df1241b","name":"Invalid API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"Satoshi Nakamoto\",\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"blockchain\": \"TRX\",\n    \"currency\": \"USDT\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"8\",\n    \"street\": \"Blockchain Avenue\",\n    \"stateOrProvince\": \"California\",\n    \"city\": \"San Francisco\",\n    \"zipOrPostalCode\": \"94107\",\n    \"country\": \"US\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid API Key\",\n  \"code\": \"INVALID_API_KEY\"\n}"},{"id":"d2103298-9650-4404-8ec5-86896c3654cc","name":"Missing signature","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"A.J. Whitaker\",\n    \"bankCountry\": \"GB\",\n    \"branchCode\": \"601613\",\n    \"accountNumber\": \"60161331926819\",\n    \"currency\": \"GBP\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Elmwood Street\",\n    \"stateOrProvince\": \"Greater Manchester\",\n    \"city\": \"Manchester\",\n    \"zipOrPostalCode\": \"M20 6JS\",\n    \"country\": \"GB\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-signature header\",\n  \"code\": \"MISSING_SIGNATURE\"\n}"},{"id":"5c2839f0-0851-4aa0-8ecb-998fd9257855","name":"Invalid signature","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"A.J. Whitaker\",\n    \"bankCountry\": \"GB\",\n    \"branchCode\": \"601613\",\n    \"accountNumber\": \"60161331926819\",\n    \"currency\": \"GBP\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Elmwood Street\",\n    \"stateOrProvince\": \"Greater Manchester\",\n    \"city\": \"Manchester\",\n    \"zipOrPostalCode\": \"M20 6JS\",\n    \"country\": \"GB\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid signature\",\n  \"code\": \"INVALID_SIGNATURE\"\n}"},{"id":"1a3694f0-6766-496b-9009-fddbdde12ac0","name":"Insufficient permissions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"A.J. Whitaker\",\n    \"bankCountry\": \"GB\",\n    \"branchCode\": \"601613\",\n    \"accountNumber\": \"60161331926819\",\n    \"currency\": \"GBP\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Elmwood Street\",\n    \"stateOrProvince\": \"Greater Manchester\",\n    \"city\": \"Manchester\",\n    \"zipOrPostalCode\": \"M20 6JS\",\n    \"country\": \"GB\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key does not have required permissions\",\n  \"code\": \"INSUFFICIENT_PERMISSIONS\"\n}"},{"id":"e639d7a8-6581-45f5-9460-007b73bf5d9f","name":"Forbidden resource","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"business\",\n    \"beneficiaryName\": \"Acme GmbH\",\n    \"bankCountry\": \"DE\",\n    \"iban\": \"DE89370400440532013000\",\n    \"bic\": \"COBADEFFXXX\",\n    \"currency\": \"EUR\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"15\",\n    \"street\": \"Hauptstraße\",\n    \"city\": \"Berlin\",\n    \"zipOrPostalCode\": \"10115\",\n    \"country\": \"DE\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access to this resource is forbidden\",\n  \"code\": \"FORBIDDEN\"\n}"},{"id":"a969aba1-18c4-4a8b-82bd-fe5d16586109","name":"Crypto beneficiary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"Satoshi Nakamoto\",\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"blockchain\": \"TRX\",\n    \"currency\": \"USDT\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"8\",\n    \"street\": \"Blockchain Avenue\",\n    \"stateOrProvince\": \"California\",\n    \"city\": \"San Francisco\",\n    \"zipOrPostalCode\": \"94107\",\n    \"country\": \"US\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key does not have required permissions\",\n  \"code\": \"INSUFFICIENT_PERMISSIONS\"\n}"},{"id":"aa7427e9-efa0-4237-9429-07ac33961c06","name":"UK Fiat beneficiary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"A.J. Whitaker\",\n    \"bankCountry\": \"GB\",\n    \"branchCode\": \"601613\",\n    \"accountNumber\": \"60161331926819\",\n    \"currency\": \"GBP\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Elmwood Street\",\n    \"stateOrProvince\": \"Greater Manchester\",\n    \"city\": \"Manchester\",\n    \"zipOrPostalCode\": \"M20 6JS\",\n    \"country\": \"GB\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bank not found\",\n  \"code\": \"BANK_NOT_FOUND\"\n}"},{"id":"50b434eb-c016-4ee5-990d-d6ccd32604aa","name":"Eurozone beneficiary with IBAN","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"business\",\n    \"beneficiaryName\": \"Acme GmbH\",\n    \"bankCountry\": \"DE\",\n    \"iban\": \"DE89370400440532013000\",\n    \"bic\": \"COBADEFFXXX\",\n    \"currency\": \"EUR\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"15\",\n    \"street\": \"Hauptstraße\",\n    \"city\": \"Berlin\",\n    \"zipOrPostalCode\": \"10115\",\n    \"country\": \"DE\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bank not found\",\n  \"code\": \"BANK_NOT_FOUND\"\n}"},{"id":"ead67d40-9cc0-49f7-a556-442e6f806859","name":"Crypto beneficiary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"Satoshi Nakamoto\",\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"blockchain\": \"TRX\",\n    \"currency\": \"USDT\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"8\",\n    \"street\": \"Blockchain Avenue\",\n    \"stateOrProvince\": \"California\",\n    \"city\": \"San Francisco\",\n    \"zipOrPostalCode\": \"94107\",\n    \"country\": \"US\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Bank not found\",\n  \"code\": \"BANK_NOT_FOUND\"\n}"},{"id":"cf6f32e2-c5aa-4d65-b9d9-064357b29530","name":"Internal server error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"A.J. Whitaker\",\n    \"bankCountry\": \"GB\",\n    \"branchCode\": \"601613\",\n    \"accountNumber\": \"60161331926819\",\n    \"currency\": \"GBP\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Elmwood Street\",\n    \"stateOrProvince\": \"Greater Manchester\",\n    \"city\": \"Manchester\",\n    \"zipOrPostalCode\": \"M20 6JS\",\n    \"country\": \"GB\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"},{"id":"b881ca81-51c9-40cf-8218-c3ba853f0ef2","name":"Eurozone beneficiary with IBAN","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"business\",\n    \"beneficiaryName\": \"Acme GmbH\",\n    \"bankCountry\": \"DE\",\n    \"iban\": \"DE89370400440532013000\",\n    \"bic\": \"COBADEFFXXX\",\n    \"currency\": \"EUR\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"15\",\n    \"street\": \"Hauptstraße\",\n    \"city\": \"Berlin\",\n    \"zipOrPostalCode\": \"10115\",\n    \"country\": \"DE\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"},{"id":"867677c8-47c7-4d8d-bc1b-99253ff00076","name":"Crypto beneficiary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"Satoshi Nakamoto\",\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"blockchain\": \"TRX\",\n    \"currency\": \"USDT\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"8\",\n    \"street\": \"Blockchain Avenue\",\n    \"stateOrProvince\": \"California\",\n    \"city\": \"San Francisco\",\n    \"zipOrPostalCode\": \"94107\",\n    \"country\": \"US\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"},{"id":"a849cef8-054b-4e86-9c6a-085f28f09c93","name":"External service error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"A.J. Whitaker\",\n    \"bankCountry\": \"GB\",\n    \"branchCode\": \"601613\",\n    \"accountNumber\": \"60161331926819\",\n    \"currency\": \"GBP\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Elmwood Street\",\n    \"stateOrProvince\": \"Greater Manchester\",\n    \"city\": \"Manchester\",\n    \"zipOrPostalCode\": \"M20 6JS\",\n    \"country\": \"GB\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Unable to complete the request due to a downstream service error\",\n  \"code\": \"EXTERNAL_SERVICE_ERROR\"\n}"},{"id":"623a6345-5b50-4812-837c-78714f1e50b4","name":"Eurozone beneficiary with IBAN","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"business\",\n    \"beneficiaryName\": \"Acme GmbH\",\n    \"bankCountry\": \"DE\",\n    \"iban\": \"DE89370400440532013000\",\n    \"bic\": \"COBADEFFXXX\",\n    \"currency\": \"EUR\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"15\",\n    \"street\": \"Hauptstraße\",\n    \"city\": \"Berlin\",\n    \"zipOrPostalCode\": \"10115\",\n    \"country\": \"DE\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Unable to complete the request due to a downstream service error\",\n  \"code\": \"EXTERNAL_SERVICE_ERROR\"\n}"},{"id":"f28f4771-0ab6-486a-afd6-830ec999a553","name":"Crypto beneficiary","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"type\": \"individual\",\n    \"beneficiaryName\": \"Satoshi Nakamoto\",\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"blockchain\": \"TRX\",\n    \"currency\": \"USDT\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"8\",\n    \"street\": \"Blockchain Avenue\",\n    \"stateOrProvince\": \"California\",\n    \"city\": \"San Francisco\",\n    \"zipOrPostalCode\": \"94107\",\n    \"country\": \"US\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/beneficiaries"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Unable to complete the request due to a downstream service error\",\n  \"code\": \"EXTERNAL_SERVICE_ERROR\"\n}"}],"_postman_id":"8e37cf43-338b-4621-8671-2264367e6fa6"}],"id":"c005aef2-ab72-40f6-b3f9-c77dfba0ad5c","_postman_id":"c005aef2-ab72-40f6-b3f9-c77dfba0ad5c","description":""},{"name":"conversions","item":[{"name":"quotes","item":[{"name":"Get conversion quote","id":"05681002-4fa3-4aa1-b8f7-41d40a34cd57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes","description":"<p>Request a quote for converting currency between two of your accounts.</p>\n<p>The quote includes:</p>\n<ul>\n<li>Exchange rate</li>\n<li>Destination amount after conversion</li>\n<li>Validity period</li>\n</ul>\n<p><strong>Quote Expiration:</strong>\nQuotes are valid for a limited time (typically 30 seconds). Use the quote before expiration to lock in the rate.</p>\n<p><strong>Instruction Type:</strong>\nUse <code>instructionType</code> to control whether the <code>amount</code> represents the source or destination side:</p>\n<ul>\n<li><code>sell</code> (default): The <code>amount</code> is the source amount you are selling</li>\n<li><code>buy</code>: The <code>amount</code> is the destination amount you want to buy</li>\n</ul>\n<p><strong>Requirements:</strong></p>\n<ul>\n<li>Both accounts must belong to your organization</li>\n<li>Source and destination currencies must be different</li>\n<li>Amount must be a positive number</li>\n</ul>\n","urlObject":{"path":["conversions","quotes"],"host":["https://b2b.getorbital.io"],"query":[],"variable":[]}},"response":[{"id":"175a42ac-da41-4be0-8ba2-cf265682bc5f","name":"USD to EUR conversion quote (sell)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"sourceCurrency\": \"USD\",\n  \"destinationCurrency\": \"EUR\",\n  \"sourceAmount\": 10000,\n  \"destinationAmount\": 9250.5,\n  \"fee\": {\n    \"amount\": 25,\n    \"currency\": \"USD\"\n  },\n  \"rate\": 0.92505\n}"},{"id":"fa9a39ac-dcc5-4032-8280-3a80a4bd44d9","name":"USD to USDT conversion quote","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"2b3c4d5e-6f70-8901-bcde-f12345678901\",\n  \"amount\": \"5000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"sourceCurrency\": \"USD\",\n  \"destinationCurrency\": \"EUR\",\n  \"sourceAmount\": 10000,\n  \"destinationAmount\": 9250.5,\n  \"fee\": {\n    \"amount\": 25,\n    \"currency\": \"USD\"\n  },\n  \"rate\": 0.92505\n}"},{"id":"cf9a60e9-5920-4384-93b2-1ee8c245b562","name":"Buy exactly 9000 EUR","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"9000.00\",\n  \"instructionType\": \"buy\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"sourceCurrency\": \"USD\",\n  \"destinationCurrency\": \"EUR\",\n  \"sourceAmount\": 10000,\n  \"destinationAmount\": 9250.5,\n  \"fee\": {\n    \"amount\": 25,\n    \"currency\": \"USD\"\n  },\n  \"rate\": 0.92505\n}"},{"id":"a3fe2644-ed42-40cf-be60-0bbc12891ec8","name":"Currency mismatch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Currency mismatch: this endpoint only supports payments between accounts with the same currency\",\n  \"code\": \"CURRENCY_MISMATCH\",\n  \"details\": {\n    \"accountCurrency\": \"USD\",\n    \"beneficiaryCurrency\": \"EUR\"\n  }\n}"},{"id":"38f4dade-8539-4fc3-853e-4d4680a4e93e","name":"Insufficient funds","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"2b3c4d5e-6f70-8901-bcde-f12345678901\",\n  \"amount\": \"5000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient funds: the payment amount exceeds the available balance\",\n  \"code\": \"INSUFFICIENT_FUNDS\",\n  \"details\": {\n    \"requestedAmount\": 1000,\n    \"availableBalance\": 500,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"499b7377-7489-44d6-9cde-b2e66b88c830","name":"Account inactive","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"9000.00\",\n  \"instructionType\": \"buy\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account is not active\",\n  \"code\": \"ACCOUNT_INACTIVE\",\n  \"details\": {\n    \"accountStatus\": \"suspended\"\n  }\n}"},{"id":"c7c08ba9-cd06-43c2-9ca3-3933012e7d31","name":"Invalid request payload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid request payload\",\n  \"code\": \"INVALID_REQUEST_PAYLOAD\",\n  \"details\": {\n    \"validationErrors\": [\n      {\n        \"path\": [\n          \"amount\"\n        ],\n        \"message\": \"Amount must be a valid positive number\"\n      }\n    ]\n  }\n}"},{"id":"93d2c7b2-874c-4c49-96cc-ec6cad96862a","name":"Missing request body","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Request body is missing\",\n  \"code\": \"MISSING_REQUEST_BODY\"\n}"},{"id":"0d04e6a1-9c21-47cc-8817-fc9f90228550","name":"Beneficiary already exists","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary with these details already exists\",\n  \"code\": \"BENEFICIARY_ALREADY_EXISTS\"\n}"},{"id":"ec3a7818-bfdb-410e-a8bc-3d65ead55e46","name":"Invalid IBAN","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid IBAN format\",\n  \"code\": \"INVALID_IBAN\"\n}"},{"id":"63846fae-b6dc-4174-9403-cd15c572366b","name":"Amount below minimum","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction amount is below the minimum threshold\",\n  \"code\": \"AMOUNT_BELOW_MINIMUM\",\n  \"details\": {\n    \"minimumAmount\": 1,\n    \"providedAmount\": 0.5,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"63ff7f1c-a936-455a-b7ad-41cdf00e0b6b","name":"Duplicate payment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"e5742cde-4ba0-45d8-8541-9b254e8d4d92","name":"Missing API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-api-key header\",\n  \"code\": \"MISSING_API_KEY\"\n}"},{"id":"68430ecc-ade3-457b-97cb-7e360f56668b","name":"Disabled API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"2b3c4d5e-6f70-8901-bcde-f12345678901\",\n  \"amount\": \"5000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key has been disabled\",\n  \"code\": \"DISABLED_API_KEY\"\n}"},{"id":"2bb3715d-b7cb-4503-b9ac-b8e7f7eae50c","name":"Invalid API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"9000.00\",\n  \"instructionType\": \"buy\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid API Key\",\n  \"code\": \"INVALID_API_KEY\"\n}"},{"id":"be15df10-d723-4ea8-ae3e-c06c147a5906","name":"Missing signature","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-signature header\",\n  \"code\": \"MISSING_SIGNATURE\"\n}"},{"id":"d116d815-6619-4d78-8b2d-c4382233a7be","name":"Invalid signature","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid signature\",\n  \"code\": \"INVALID_SIGNATURE\"\n}"},{"id":"7450754b-3cad-4d23-b3b1-213aef5f362d","name":"Insufficient permissions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key does not have required permissions\",\n  \"code\": \"INSUFFICIENT_PERMISSIONS\"\n}"},{"id":"73e0f976-d586-4250-a6e6-48e6cb3ed386","name":"Forbidden resource","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"2b3c4d5e-6f70-8901-bcde-f12345678901\",\n  \"amount\": \"5000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access to this resource is forbidden\",\n  \"code\": \"FORBIDDEN\"\n}"},{"id":"9b82f648-9502-44fd-8567-e15bcc0c6fd0","name":"Buy exactly 9000 EUR","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"9000.00\",\n  \"instructionType\": \"buy\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key does not have required permissions\",\n  \"code\": \"INSUFFICIENT_PERMISSIONS\"\n}"},{"id":"b68b0cff-54b5-4a03-bb93-a5544748870c","name":"Internal server error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"},{"id":"5c901221-647c-460c-89f6-e3a1c8f52358","name":"USD to USDT conversion quote","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"2b3c4d5e-6f70-8901-bcde-f12345678901\",\n  \"amount\": \"5000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"},{"id":"5cb40546-33e6-47d8-88a3-29b45b53e345","name":"Buy exactly 9000 EUR","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"9000.00\",\n  \"instructionType\": \"buy\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"},{"id":"fd965e50-24af-43ce-9970-9764b688efc1","name":"External service error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Unable to complete the request due to a downstream service error\",\n  \"code\": \"EXTERNAL_SERVICE_ERROR\"\n}"},{"id":"6cb22d03-255a-43ce-a68b-90ca03715dff","name":"USD to USDT conversion quote","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"2b3c4d5e-6f70-8901-bcde-f12345678901\",\n  \"amount\": \"5000.00\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Unable to complete the request due to a downstream service error\",\n  \"code\": \"EXTERNAL_SERVICE_ERROR\"\n}"},{"id":"ef39d0b9-ccbd-46c5-ac7c-1c81ec8a5506","name":"Buy exactly 9000 EUR","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"9000.00\",\n  \"instructionType\": \"buy\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions/quotes"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Unable to complete the request due to a downstream service error\",\n  \"code\": \"EXTERNAL_SERVICE_ERROR\"\n}"}],"_postman_id":"05681002-4fa3-4aa1-b8f7-41d40a34cd57"}],"id":"bfcf9dc3-89b9-4628-ae12-c3889099c2e2","_postman_id":"bfcf9dc3-89b9-4628-ae12-c3889099c2e2","description":""},{"name":"Execute conversion","id":"6041eebe-2aef-4467-a5ae-44a490879ca6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions","description":"<p>Execute a currency conversion between two of your accounts.</p>\n<p><strong>Two execution modes:</strong></p>\n<ol>\n<li><p><strong>With Quote ID</strong> (recommended):</p>\n<ul>\n<li>First obtain a quote using <code>POST /conversions/quotes</code></li>\n<li>Execute using the <code>quoteId</code> to lock in the quoted rate</li>\n</ul>\n</li>\n<li><p><strong>Without Quote ID</strong>:</p>\n<ul>\n<li>Provide <code>fromAccount</code>, <code>toAccount</code>, and <code>amount</code> directly</li>\n<li>A quote will be created and executed immediately at the current market rate</li>\n</ul>\n</li>\n</ol>\n<p><strong>Quote-based execution</strong> is recommended for predictable rates, especially for large amounts.</p>\n<p><strong>Instruction Type:</strong>\nUse <code>instructionType</code> to control whether the <code>amount</code> represents the source or destination side:</p>\n<ul>\n<li><code>sell</code> (default): The <code>amount</code> is the source amount you are selling</li>\n<li><code>buy</code>: The <code>amount</code> is the destination amount you want to buy</li>\n</ul>\n","urlObject":{"path":["conversions"],"host":["https://b2b.getorbital.io"],"query":[],"variable":[]}},"response":[{"id":"6258f4ee-a239-4162-937f-19a58d145803","name":"Execute with existing quote","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"transactionReference\": \"CNV202401151234567890CONV\"\n}"},{"id":"d2f495cc-8ed5-4801-b905-ed2405ce12fa","name":"Execute at market rate (sell)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"transactionReference\": \"CNV202401151234567890CONV\"\n}"},{"id":"1bc02346-86bc-43d2-b799-cb20893e0a77","name":"Execute at market rate (buy)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"5000.00\",\n  \"instructionType\": \"buy\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"transactionReference\": \"CNV202401151234567890CONV\"\n}"},{"id":"222a6b2c-878d-400b-bddb-b2de2b47a836","name":"Currency mismatch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Currency mismatch: this endpoint only supports payments between accounts with the same currency\",\n  \"code\": \"CURRENCY_MISMATCH\",\n  \"details\": {\n    \"accountCurrency\": \"USD\",\n    \"beneficiaryCurrency\": \"EUR\"\n  }\n}"},{"id":"301b05a8-5230-4a06-a2df-4f655f882d46","name":"Insufficient funds","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient funds: the payment amount exceeds the available balance\",\n  \"code\": \"INSUFFICIENT_FUNDS\",\n  \"details\": {\n    \"requestedAmount\": 1000,\n    \"availableBalance\": 500,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"8c20aa4b-0317-4ecb-8368-3abed00ffe38","name":"Account inactive","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"5000.00\",\n  \"instructionType\": \"buy\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account is not active\",\n  \"code\": \"ACCOUNT_INACTIVE\",\n  \"details\": {\n    \"accountStatus\": \"suspended\"\n  }\n}"},{"id":"b07bbde0-238f-4e21-a755-a4aaec675547","name":"Invalid request payload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid request payload\",\n  \"code\": \"INVALID_REQUEST_PAYLOAD\",\n  \"details\": {\n    \"validationErrors\": [\n      {\n        \"path\": [\n          \"amount\"\n        ],\n        \"message\": \"Amount must be a valid positive number\"\n      }\n    ]\n  }\n}"},{"id":"1211e3b6-9e1d-4598-bc63-c9751e1cf8cd","name":"Missing request body","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Request body is missing\",\n  \"code\": \"MISSING_REQUEST_BODY\"\n}"},{"id":"11180ec5-7c7a-4c26-8e9b-7fac29f59ba8","name":"Beneficiary already exists","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary with these details already exists\",\n  \"code\": \"BENEFICIARY_ALREADY_EXISTS\"\n}"},{"id":"db04b5c0-1afe-44a9-85ec-b508ab8950eb","name":"Invalid IBAN","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid IBAN format\",\n  \"code\": \"INVALID_IBAN\"\n}"},{"id":"5d6e2bbd-425b-4d18-ab3a-db69bf0ce294","name":"Amount below minimum","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction amount is below the minimum threshold\",\n  \"code\": \"AMOUNT_BELOW_MINIMUM\",\n  \"details\": {\n    \"minimumAmount\": 1,\n    \"providedAmount\": 0.5,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"8a43b43f-4fab-4ec0-ac70-617a9425da02","name":"Duplicate payment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"af69d40b-cf47-49a5-a697-7fd15e3bcf9d","name":"Missing API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-api-key header\",\n  \"code\": \"MISSING_API_KEY\"\n}"},{"id":"b2a2b32d-ebc5-4ecb-bfaf-3b9b37043167","name":"Disabled API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key has been disabled\",\n  \"code\": \"DISABLED_API_KEY\"\n}"},{"id":"f63d1de3-dd1c-479a-a323-bbf5dd9429ad","name":"Invalid API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"5000.00\",\n  \"instructionType\": \"buy\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid API Key\",\n  \"code\": \"INVALID_API_KEY\"\n}"},{"id":"81ebc6b9-a0bf-439c-b9c3-48f683b12631","name":"Missing signature","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-signature header\",\n  \"code\": \"MISSING_SIGNATURE\"\n}"},{"id":"62a71934-3599-4fc1-b0fd-9d352e907ed7","name":"Invalid signature","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid signature\",\n  \"code\": \"INVALID_SIGNATURE\"\n}"},{"id":"5f0d51ae-ddc7-49c4-9e24-b38d032e8833","name":"Insufficient permissions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key does not have required permissions\",\n  \"code\": \"INSUFFICIENT_PERMISSIONS\"\n}"},{"id":"aaf5b730-5b44-4802-ab69-1eb207f9fc84","name":"Forbidden resource","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access to this resource is forbidden\",\n  \"code\": \"FORBIDDEN\"\n}"},{"id":"9129bf11-7b07-4135-8ef0-1f0f61745342","name":"Execute at market rate (buy)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"5000.00\",\n  \"instructionType\": \"buy\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key does not have required permissions\",\n  \"code\": \"INSUFFICIENT_PERMISSIONS\"\n}"},{"id":"53fd2077-dcbd-4b2e-a6f1-951f35e04385","name":"Internal server error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"},{"id":"2662fa51-2b1c-4301-bf1b-f7971dfc6719","name":"Execute at market rate (sell)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"},{"id":"1524aa85-320a-4a96-b294-69635ce05b94","name":"Execute at market rate (buy)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"5000.00\",\n  \"instructionType\": \"buy\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"},{"id":"39851350-56cf-4dbb-af15-035dae720a03","name":"External service error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"quoteId\": \"quote_abc123def456\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Unable to complete the request due to a downstream service error\",\n  \"code\": \"EXTERNAL_SERVICE_ERROR\"\n}"},{"id":"0f7803fc-fa98-48d5-b1fd-6b98cb4d54d5","name":"Execute at market rate (sell)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"10000.00\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Unable to complete the request due to a downstream service error\",\n  \"code\": \"EXTERNAL_SERVICE_ERROR\"\n}"},{"id":"7af54f7d-8b51-4541-9e52-709eee453214","name":"Execute at market rate (buy)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"fromAccount\": \"0cb55a48-c7cb-40ab-9192-dd66c1a5eeae\",\n  \"toAccount\": \"1a2b3c4d-5e6f-7890-abcd-ef1234567890\",\n  \"amount\": \"5000.00\",\n  \"instructionType\": \"buy\",\n  \"remittanceInformation\": \"FX conversion for treasury\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/conversions"},"status":"Bad Gateway","code":502,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Unable to complete the request due to a downstream service error\",\n  \"code\": \"EXTERNAL_SERVICE_ERROR\"\n}"}],"_postman_id":"6041eebe-2aef-4467-a5ae-44a490879ca6"}],"id":"86325c0d-adaf-4a29-831f-1b1ce499e0b9","_postman_id":"86325c0d-adaf-4a29-831f-1b1ce499e0b9","description":""},{"name":"payers","item":[{"name":"link","item":[{"name":"Link payer to transaction","id":"7375a1d5-4f05-40fa-ac81-6c2097765ee9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link","description":"<p>Link a registered payer to an inbound cryptocurrency transaction for Travel Rule compliance.</p>\n<p>This endpoint associates originator information with an incoming transaction, fulfilling regulatory requirements for cryptocurrency transfers.</p>\n<p><strong>Requirements:</strong></p>\n<ul>\n<li>The transaction must exist and belong to your organization</li>\n<li>The payer must be registered in your organization</li>\n<li>The transaction must not already have a linked payer</li>\n</ul>\n","urlObject":{"path":["payers","link"],"host":["https://b2b.getorbital.io"],"query":[],"variable":[]}},"response":[{"id":"642b9558-1cf4-465f-b059-390b8b3b0c7e","name":"Successfully linked payer to transaction","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"transactionReference\": \"string\",\n  \"payerId\": \"string\",\n  \"linkedAt\": \"2011-07-09T06:12:25.684Z\"\n}"},{"id":"d8c44fde-9ca9-4c97-8739-b8c2a0922d46","name":"Currency mismatch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Currency mismatch: this endpoint only supports payments between accounts with the same currency\",\n  \"code\": \"CURRENCY_MISMATCH\",\n  \"details\": {\n    \"accountCurrency\": \"USD\",\n    \"beneficiaryCurrency\": \"EUR\"\n  }\n}"},{"id":"e3fb1825-e31c-468e-80cf-a4f2a3345b71","name":"Insufficient funds","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient funds: the payment amount exceeds the available balance\",\n  \"code\": \"INSUFFICIENT_FUNDS\",\n  \"details\": {\n    \"requestedAmount\": 1000,\n    \"availableBalance\": 500,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"c7ea8947-e98f-40bb-bc0f-a0464dc461ec","name":"Account inactive","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account is not active\",\n  \"code\": \"ACCOUNT_INACTIVE\",\n  \"details\": {\n    \"accountStatus\": \"suspended\"\n  }\n}"},{"id":"13f25e75-efb9-4e41-895e-8b896021f2c7","name":"Invalid request payload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid request payload\",\n  \"code\": \"INVALID_REQUEST_PAYLOAD\",\n  \"details\": {\n    \"validationErrors\": [\n      {\n        \"path\": [\n          \"amount\"\n        ],\n        \"message\": \"Amount must be a valid positive number\"\n      }\n    ]\n  }\n}"},{"id":"387e7c0e-f3c2-4927-82c7-80c31c687f02","name":"Missing request body","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Request body is missing\",\n  \"code\": \"MISSING_REQUEST_BODY\"\n}"},{"id":"6acc0514-0560-42ed-974e-5db33d091794","name":"Beneficiary already exists","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary with these details already exists\",\n  \"code\": \"BENEFICIARY_ALREADY_EXISTS\"\n}"},{"id":"9ae73a23-e543-4ef9-ab1a-2d320142003b","name":"Invalid IBAN","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid IBAN format\",\n  \"code\": \"INVALID_IBAN\"\n}"},{"id":"70257173-6110-4fe0-93a2-7db27c354b60","name":"Amount below minimum","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction amount is below the minimum threshold\",\n  \"code\": \"AMOUNT_BELOW_MINIMUM\",\n  \"details\": {\n    \"minimumAmount\": 1,\n    \"providedAmount\": 0.5,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"26024f9c-2bd3-47e3-be60-5b7575dbd473","name":"Duplicate payment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"973844c4-ba2f-4ed5-ae62-2718a91e4362","name":"Missing API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-api-key header\",\n  \"code\": \"MISSING_API_KEY\"\n}"},{"id":"0232810e-efdf-49a8-88b3-33a2dfcdd40e","name":"Disabled API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key has been disabled\",\n  \"code\": \"DISABLED_API_KEY\"\n}"},{"id":"dd8f185f-17fe-4bb0-8b37-f4ee9ceb5551","name":"Invalid API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid API Key\",\n  \"code\": \"INVALID_API_KEY\"\n}"},{"id":"d602c034-dfaf-4286-ad5d-87565d7c4e3b","name":"Missing signature","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-signature header\",\n  \"code\": \"MISSING_SIGNATURE\"\n}"},{"id":"3b593aee-3585-43b3-9327-0cf0d2255c13","name":"Invalid signature","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid signature\",\n  \"code\": \"INVALID_SIGNATURE\"\n}"},{"id":"7d1264b0-cfc3-44e4-9bd4-49ba74c7733f","name":"Insufficient permissions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key does not have required permissions\",\n  \"code\": \"INSUFFICIENT_PERMISSIONS\"\n}"},{"id":"535af9f9-9278-4a37-9f1f-3b9d0902478e","name":"Forbidden resource","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access to this resource is forbidden\",\n  \"code\": \"FORBIDDEN\"\n}"},{"id":"a27e9e9d-b5c9-4860-b6d5-d88e43943cd1","name":"Transaction or payer not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"string\",\n  \"code\": \"INVALID_REQUEST\",\n  \"details\": {}\n}"},{"id":"131b0909-d21a-48c0-95cf-5a3bde77c356","name":"Internal Server Error - An unexpected error occurred","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"transactionReference\": \"PAY202401151234567890PAYM\",\n  \"payerId\": \"payer_abc123def456\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/link"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"}],"_postman_id":"7375a1d5-4f05-40fa-ac81-6c2097765ee9"}],"id":"0bcdd6ce-8858-4770-b5e8-282e821297a3","_postman_id":"0bcdd6ce-8858-4770-b5e8-282e821297a3","description":""},{"name":"{id}","item":[{"name":"accounts","item":[{"name":"Add account to payer","id":"44230fbe-fcb9-46d8-916c-79201bb45751","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers/:id/accounts","description":"<p>Add a new wallet account to an existing payer (originator).</p>\n<p>This allows associating multiple cryptocurrency wallet addresses with a single payer for Travel Rule compliance across different blockchains or currencies.</p>\n","urlObject":{"path":["payers",":id","accounts"],"host":["https://b2b.getorbital.io"],"query":[],"variable":[{"id":"8447a9eb-0729-41ff-9498-90ee0468835d","description":{"content":"<p>The unique payer identifier</p>\n","type":"text/plain"},"type":"any","value":"payer_abc123def456","key":"id"}]}},"response":[{"id":"8252c6a6-80e6-401f-af9c-4fc5b37197eb","name":"Successfully added account to payer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"acct_xyz789\",\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\",\n  \"createdAt\": \"2024-01-15T10:30:00Z\"\n}"},{"id":"e1360e57-c633-4d5a-a740-efaf8856f1ea","name":"Currency mismatch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Currency mismatch: this endpoint only supports payments between accounts with the same currency\",\n  \"code\": \"CURRENCY_MISMATCH\",\n  \"details\": {\n    \"accountCurrency\": \"USD\",\n    \"beneficiaryCurrency\": \"EUR\"\n  }\n}"},{"id":"a66dca3f-2545-44f8-bb6a-cff2cad825b4","name":"Insufficient funds","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient funds: the payment amount exceeds the available balance\",\n  \"code\": \"INSUFFICIENT_FUNDS\",\n  \"details\": {\n    \"requestedAmount\": 1000,\n    \"availableBalance\": 500,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"d15c55f2-e239-4f2b-af01-620865f78fe5","name":"Account inactive","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account is not active\",\n  \"code\": \"ACCOUNT_INACTIVE\",\n  \"details\": {\n    \"accountStatus\": \"suspended\"\n  }\n}"},{"id":"02842638-397e-443d-967c-d6e125cfee64","name":"Invalid request payload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid request payload\",\n  \"code\": \"INVALID_REQUEST_PAYLOAD\",\n  \"details\": {\n    \"validationErrors\": [\n      {\n        \"path\": [\n          \"amount\"\n        ],\n        \"message\": \"Amount must be a valid positive number\"\n      }\n    ]\n  }\n}"},{"id":"ee2a9cbc-1735-471a-9067-f998f12ac2e0","name":"Missing request body","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Request body is missing\",\n  \"code\": \"MISSING_REQUEST_BODY\"\n}"},{"id":"05bf2256-1f8c-4341-bcde-dffe132be9c2","name":"Beneficiary already exists","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary with these details already exists\",\n  \"code\": \"BENEFICIARY_ALREADY_EXISTS\"\n}"},{"id":"c99d87cd-7e1d-49c7-a43f-7de96b421c6e","name":"Invalid IBAN","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid IBAN format\",\n  \"code\": \"INVALID_IBAN\"\n}"},{"id":"6ce05097-38e3-42ae-b357-07620ddd5118","name":"Amount below minimum","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction amount is below the minimum threshold\",\n  \"code\": \"AMOUNT_BELOW_MINIMUM\",\n  \"details\": {\n    \"minimumAmount\": 1,\n    \"providedAmount\": 0.5,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"bb4c695e-9994-4b42-8dec-2222d5305d89","name":"Duplicate payment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"97a54ebf-4e86-4ad2-9697-40cca71c64d1","name":"Missing API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-api-key header\",\n  \"code\": \"MISSING_API_KEY\"\n}"},{"id":"9474cace-69eb-4f4f-a102-6b5fb22b6610","name":"Disabled API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key has been disabled\",\n  \"code\": \"DISABLED_API_KEY\"\n}"},{"id":"8427ae75-7b8a-46b3-9e40-af425fbe5b23","name":"Invalid API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid API Key\",\n  \"code\": \"INVALID_API_KEY\"\n}"},{"id":"4ab8b2b0-209f-4634-b18b-18056af899a0","name":"Missing signature","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-signature header\",\n  \"code\": \"MISSING_SIGNATURE\"\n}"},{"id":"569c7e3b-7ed2-42f3-b474-11afd62fec40","name":"Invalid signature","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid signature\",\n  \"code\": \"INVALID_SIGNATURE\"\n}"},{"id":"f56b6e87-b222-4ef7-b608-cbc2639ee398","name":"Insufficient permissions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key does not have required permissions\",\n  \"code\": \"INSUFFICIENT_PERMISSIONS\"\n}"},{"id":"07e1a4ae-5f9a-4bc8-a36c-a081c0c6a8aa","name":"Forbidden resource","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access to this resource is forbidden\",\n  \"code\": \"FORBIDDEN\"\n}"},{"id":"e28a1950-5cf9-4ed5-9d82-d25fd2f0a566","name":"Payer not found","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Payer not found\",\n  \"code\": \"PAYER_NOT_FOUND\"\n}"},{"id":"e312fd3e-1ad5-4263-b962-c0f39829b569","name":"Internal Server Error - An unexpected error occurred","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n  \"currency\": \"USDC\",\n  \"blockchain\": \"ETH\"\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":{"raw":"https://b2b.getorbital.io/payers/:id/accounts","host":["https://b2b.getorbital.io"],"path":["payers",":id","accounts"],"variable":[{"key":"id","value":"payer_abc123def456","description":"The unique payer identifier"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"}],"_postman_id":"44230fbe-fcb9-46d8-916c-79201bb45751"}],"id":"4c21a0ad-9dc9-4b70-8073-5a42220a9313","_postman_id":"4c21a0ad-9dc9-4b70-8073-5a42220a9313","description":""}],"id":"941cece6-5659-49b6-ac58-ee4e511abe4f","_postman_id":"941cece6-5659-49b6-ac58-ee4e511abe4f","description":""},{"name":"List payers","id":"42abb161-21cf-4706-ac25-4dc71a9927d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"}],"url":"https://b2b.getorbital.io/payers?page=1&pageSize=10","description":"<p>Retrieve a paginated list of all payers (originators) registered for Travel Rule compliance.</p>\n<p>Payers represent the source of funds for inbound cryptocurrency transactions.</p>\n","urlObject":{"path":["payers"],"host":["https://b2b.getorbital.io"],"query":[{"description":{"content":"<p>Page number for pagination (1-indexed)</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>Number of items per page (maximum 100)</p>\n","type":"text/plain"},"key":"pageSize","value":"10"}],"variable":[]}},"response":[{"id":"7388ab67-77ae-4348-b7db-a03f6e1bff8a","name":"Successfully retrieved payers","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"payers\": [\n    {\n      \"id\": \"payer_abc123\",\n      \"address\": {\n        \"buildingNumber\": \"100\",\n        \"street\": \"Innovation Drive\",\n        \"city\": \"London\",\n        \"stateOrProvince\": \"Greater London\",\n        \"postalCode\": \"EC1A 1BB\",\n        \"country\": \"GB\"\n      },\n      \"payerDetails\": {\n        \"type\": \"company\",\n        \"registeredName\": \"TechCorp Ltd\",\n        \"companyIdentifier\": \"12345678\",\n        \"companyIdentifierType\": \"companyRegistrationNumber\"\n      },\n      \"accounts\": [\n        {\n          \"id\": \"acct_xyz789\",\n          \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n          \"currency\": \"USDT\",\n          \"blockchain\": \"TRX\",\n          \"createdAt\": \"2024-01-15T10:00:00Z\"\n        }\n      ],\n      \"createdAt\": \"2024-01-15T10:00:00Z\",\n      \"updatedAt\": \"2024-01-15T10:00:00Z\"\n    }\n  ]\n}"},{"id":"37659649-af74-478f-9ad9-a562e93dd774","name":"Currency mismatch","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Currency mismatch: this endpoint only supports payments between accounts with the same currency\",\n  \"code\": \"CURRENCY_MISMATCH\",\n  \"details\": {\n    \"accountCurrency\": \"USD\",\n    \"beneficiaryCurrency\": \"EUR\"\n  }\n}"},{"id":"343adff6-6460-412a-bea6-51b87e130384","name":"Insufficient funds","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient funds: the payment amount exceeds the available balance\",\n  \"code\": \"INSUFFICIENT_FUNDS\",\n  \"details\": {\n    \"requestedAmount\": 1000,\n    \"availableBalance\": 500,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"7721411e-1f5d-4f50-97a2-1e88e6a85226","name":"Account inactive","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account is not active\",\n  \"code\": \"ACCOUNT_INACTIVE\",\n  \"details\": {\n    \"accountStatus\": \"suspended\"\n  }\n}"},{"id":"50423bc2-6f6e-4a8e-bcbd-4bfa05b5193d","name":"Invalid request payload","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid request payload\",\n  \"code\": \"INVALID_REQUEST_PAYLOAD\",\n  \"details\": {\n    \"validationErrors\": [\n      {\n        \"path\": [\n          \"amount\"\n        ],\n        \"message\": \"Amount must be a valid positive number\"\n      }\n    ]\n  }\n}"},{"id":"fcc09d1b-7737-4a3c-a3e8-65e1f1b2f28f","name":"Missing request body","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Request body is missing\",\n  \"code\": \"MISSING_REQUEST_BODY\"\n}"},{"id":"b041a1e7-fed4-4e8a-bf80-adae12aa5580","name":"Beneficiary already exists","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary with these details already exists\",\n  \"code\": \"BENEFICIARY_ALREADY_EXISTS\"\n}"},{"id":"314fe7e7-a2c2-4322-b306-d01a29a628f5","name":"Invalid IBAN","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid IBAN format\",\n  \"code\": \"INVALID_IBAN\"\n}"},{"id":"e1540ea3-de0a-4571-9b73-ef571a64dbea","name":"Amount below minimum","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction amount is below the minimum threshold\",\n  \"code\": \"AMOUNT_BELOW_MINIMUM\",\n  \"details\": {\n    \"minimumAmount\": 1,\n    \"providedAmount\": 0.5,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"6c6c8037-cff6-4282-8958-b05f1ce12013","name":"Duplicate payment","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"0a053e5d-7641-4193-a9f9-d4fd02d7940a","name":"Missing API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-api-key header\",\n  \"code\": \"MISSING_API_KEY\"\n}"},{"id":"bffd9d01-9069-4377-845e-81689cee7425","name":"Disabled API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key has been disabled\",\n  \"code\": \"DISABLED_API_KEY\"\n}"},{"id":"588c3d12-28b4-4a9c-80cc-19c3881d5202","name":"Invalid API key","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid API Key\",\n  \"code\": \"INVALID_API_KEY\"\n}"},{"id":"f94b751d-9075-49dd-b5a1-6c5c9f5d0e5e","name":"Missing signature","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-signature header\",\n  \"code\": \"MISSING_SIGNATURE\"\n}"},{"id":"f4f9cb85-a30e-49c9-b28a-35cb5a93dcc8","name":"Invalid signature","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid signature\",\n  \"code\": \"INVALID_SIGNATURE\"\n}"},{"id":"0a47f394-ceaf-4ea2-b01e-57d3c564e6d5","name":"Insufficient permissions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key does not have required permissions\",\n  \"code\": \"INSUFFICIENT_PERMISSIONS\"\n}"},{"id":"d7e5b442-7411-4636-b74b-3b50d5c2e10b","name":"Forbidden resource","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access to this resource is forbidden\",\n  \"code\": \"FORBIDDEN\"\n}"},{"id":"ef7813ec-5d83-424b-96fc-e05cb06dfe99","name":"Internal Server Error - An unexpected error occurred","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"url":{"raw":"https://b2b.getorbital.io/payers?page=1&pageSize=10","host":["https://b2b.getorbital.io"],"path":["payers"],"query":[{"description":"Page number for pagination (1-indexed)","key":"page","value":"1"},{"description":"Number of items per page (maximum 100)","key":"pageSize","value":"10"}]}},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"}],"_postman_id":"42abb161-21cf-4706-ac25-4dc71a9927d4"},{"name":"Create a payer","id":"f6014c74-ad90-42d0-a46d-bc8e3d8b91b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"{{apiKey}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"currency\": \"USDT\",\n    \"blockchain\": \"TRX\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"state\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers","description":"<p>Register a new payer (originator) for Travel Rule compliance.</p>\n<p><strong>Payer Types:</strong></p>\n<ul>\n<li><strong>Company</strong>: Business entities with company registration details</li>\n<li><strong>Individual</strong>: Individuals with personal identification details</li>\n</ul>\n<p><strong>Identification Requirements:</strong></p>\n<p>For <strong>companies</strong>:</p>\n<ul>\n<li>Legal Entity Identifier (LEI), or</li>\n<li>Company Registration Number, or</li>\n<li>Business Registration Number</li>\n</ul>\n<p>For <strong>individuals</strong>, one of the following identification methods:</p>\n<ul>\n<li>Country of birth</li>\n<li>Date and country of birth</li>\n<li>Customer identification number</li>\n<li>National registration document</li>\n</ul>\n","urlObject":{"path":["payers"],"host":["https://b2b.getorbital.io"],"query":[],"variable":[]}},"response":[{"id":"9407c7a9-76f6-42d2-a617-e8a65c97f8e0","name":"Company payer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"currency\": \"USDT\",\n    \"blockchain\": \"TRX\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"state\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"payer_abc123def456\",\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"stateOrProvince\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  },\n  \"accounts\": [\n    {\n      \"id\": \"acct_xyz789\",\n      \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n      \"currency\": \"USDT\",\n      \"blockchain\": \"TRX\",\n      \"createdAt\": \"2024-01-15T10:30:00Z\"\n    }\n  ],\n  \"createdAt\": \"2024-01-15T10:30:00Z\",\n  \"updatedAt\": \"2024-01-15T10:30:00Z\"\n}"},{"id":"f5cc737d-978e-4b19-8720-d48b3c25506d","name":"Individual payer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n    \"currency\": \"USDC\",\n    \"blockchain\": \"ETH\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Crypto Lane\",\n    \"city\": \"New York\",\n    \"state\": \"NY\",\n    \"postalCode\": \"10001\",\n    \"country\": \"US\"\n  },\n  \"payerDetails\": {\n    \"type\": \"individual\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"identificationType\": \"dateAndCountryOfBirth\",\n    \"dateOfBirth\": \"1985-03-15\",\n    \"countryOfBirth\": \"US\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"payer_abc123def456\",\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"stateOrProvince\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  },\n  \"accounts\": [\n    {\n      \"id\": \"acct_xyz789\",\n      \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n      \"currency\": \"USDT\",\n      \"blockchain\": \"TRX\",\n      \"createdAt\": \"2024-01-15T10:30:00Z\"\n    }\n  ],\n  \"createdAt\": \"2024-01-15T10:30:00Z\",\n  \"updatedAt\": \"2024-01-15T10:30:00Z\"\n}"},{"id":"95b1d29f-ece4-4216-8be2-06d67dc878a1","name":"Currency mismatch","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"currency\": \"USDT\",\n    \"blockchain\": \"TRX\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"state\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Currency mismatch: this endpoint only supports payments between accounts with the same currency\",\n  \"code\": \"CURRENCY_MISMATCH\",\n  \"details\": {\n    \"accountCurrency\": \"USD\",\n    \"beneficiaryCurrency\": \"EUR\"\n  }\n}"},{"id":"1226dd4b-d39c-4cb2-befd-49f770395a2f","name":"Insufficient funds","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n    \"currency\": \"USDC\",\n    \"blockchain\": \"ETH\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Crypto Lane\",\n    \"city\": \"New York\",\n    \"state\": \"NY\",\n    \"postalCode\": \"10001\",\n    \"country\": \"US\"\n  },\n  \"payerDetails\": {\n    \"type\": \"individual\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"identificationType\": \"dateAndCountryOfBirth\",\n    \"dateOfBirth\": \"1985-03-15\",\n    \"countryOfBirth\": \"US\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Insufficient funds: the payment amount exceeds the available balance\",\n  \"code\": \"INSUFFICIENT_FUNDS\",\n  \"details\": {\n    \"requestedAmount\": 1000,\n    \"availableBalance\": 500,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"4d7b84cc-74d6-41db-8a30-0fa65c0b7f2a","name":"Account inactive","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"currency\": \"USDT\",\n    \"blockchain\": \"TRX\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"state\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Account is not active\",\n  \"code\": \"ACCOUNT_INACTIVE\",\n  \"details\": {\n    \"accountStatus\": \"suspended\"\n  }\n}"},{"id":"506aaf7d-09f2-4201-9da3-cd21919c1b98","name":"Invalid request payload","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"currency\": \"USDT\",\n    \"blockchain\": \"TRX\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"state\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid request payload\",\n  \"code\": \"INVALID_REQUEST_PAYLOAD\",\n  \"details\": {\n    \"validationErrors\": [\n      {\n        \"path\": [\n          \"amount\"\n        ],\n        \"message\": \"Amount must be a valid positive number\"\n      }\n    ]\n  }\n}"},{"id":"55a5457a-8570-426c-9c36-d152b9f08768","name":"Missing request body","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"currency\": \"USDT\",\n    \"blockchain\": \"TRX\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"state\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Request body is missing\",\n  \"code\": \"MISSING_REQUEST_BODY\"\n}"},{"id":"643a1669-feaf-40e8-8ea8-fc0aa9d03d66","name":"Beneficiary already exists","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"currency\": \"USDT\",\n    \"blockchain\": \"TRX\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"state\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Beneficiary with these details already exists\",\n  \"code\": \"BENEFICIARY_ALREADY_EXISTS\"\n}"},{"id":"bfa47eb2-21db-4b57-b95c-b23c2dd1fd06","name":"Invalid IBAN","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"currency\": \"USDT\",\n    \"blockchain\": \"TRX\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"state\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid IBAN format\",\n  \"code\": \"INVALID_IBAN\"\n}"},{"id":"27392d00-3936-4631-86c1-9cf6a3b81e62","name":"Amount below minimum","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"currency\": \"USDT\",\n    \"blockchain\": \"TRX\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"state\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Transaction amount is below the minimum threshold\",\n  \"code\": \"AMOUNT_BELOW_MINIMUM\",\n  \"details\": {\n    \"minimumAmount\": 1,\n    \"providedAmount\": 0.5,\n    \"currency\": \"USD\"\n  }\n}"},{"id":"0438d9c9-9197-4563-badf-455f87eb2137","name":"Duplicate payment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"currency\": \"USDT\",\n    \"blockchain\": \"TRX\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"state\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"A payment with this external ID already exists\",\n  \"code\": \"DUPLICATE_PAYMENT\",\n  \"details\": {\n    \"transactionReference\": \"PAY202503201254556468PAYM\"\n  }\n}"},{"id":"d6f43b21-b316-48cd-8a20-a191396c6bb2","name":"Missing API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"currency\": \"USDT\",\n    \"blockchain\": \"TRX\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"state\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-api-key header\",\n  \"code\": \"MISSING_API_KEY\"\n}"},{"id":"dd13601b-0165-4e1a-ba48-9a4250aac8bf","name":"Disabled API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n    \"currency\": \"USDC\",\n    \"blockchain\": \"ETH\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Crypto Lane\",\n    \"city\": \"New York\",\n    \"state\": \"NY\",\n    \"postalCode\": \"10001\",\n    \"country\": \"US\"\n  },\n  \"payerDetails\": {\n    \"type\": \"individual\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"identificationType\": \"dateAndCountryOfBirth\",\n    \"dateOfBirth\": \"1985-03-15\",\n    \"countryOfBirth\": \"US\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key has been disabled\",\n  \"code\": \"DISABLED_API_KEY\"\n}"},{"id":"541dc00c-ee81-4647-82b2-e5bae69412ca","name":"Invalid API key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"currency\": \"USDT\",\n    \"blockchain\": \"TRX\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"state\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid API Key\",\n  \"code\": \"INVALID_API_KEY\"\n}"},{"id":"d886da78-adc7-45b7-a966-d176ead89357","name":"Missing signature","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"currency\": \"USDT\",\n    \"blockchain\": \"TRX\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"state\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Missing x-signature header\",\n  \"code\": \"MISSING_SIGNATURE\"\n}"},{"id":"fc85cad1-3305-4ce2-b1cd-7f94d72cca08","name":"Invalid signature","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"currency\": \"USDT\",\n    \"blockchain\": \"TRX\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"state\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Invalid signature\",\n  \"code\": \"INVALID_SIGNATURE\"\n}"},{"id":"b69d1041-fbca-406e-87e4-b5b127eb0f6d","name":"Insufficient permissions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"currency\": \"USDT\",\n    \"blockchain\": \"TRX\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"state\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"API Key does not have required permissions\",\n  \"code\": \"INSUFFICIENT_PERMISSIONS\"\n}"},{"id":"01cdbf4c-71b0-4f2d-8654-bb35278fec85","name":"Forbidden resource","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n    \"currency\": \"USDC\",\n    \"blockchain\": \"ETH\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Crypto Lane\",\n    \"city\": \"New York\",\n    \"state\": \"NY\",\n    \"postalCode\": \"10001\",\n    \"country\": \"US\"\n  },\n  \"payerDetails\": {\n    \"type\": \"individual\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"identificationType\": \"dateAndCountryOfBirth\",\n    \"dateOfBirth\": \"1985-03-15\",\n    \"countryOfBirth\": \"US\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Access to this resource is forbidden\",\n  \"code\": \"FORBIDDEN\"\n}"},{"id":"d23a0b0e-32b3-4391-b54b-8e44fe02de63","name":"Internal server error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"TDEFBpYnSoWzuuQRuPhBzP3ENKQgE8Mw3i\",\n    \"currency\": \"USDT\",\n    \"blockchain\": \"TRX\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"100\",\n    \"street\": \"Innovation Drive\",\n    \"city\": \"London\",\n    \"state\": \"Greater London\",\n    \"postalCode\": \"EC1A 1BB\",\n    \"country\": \"GB\"\n  },\n  \"payerDetails\": {\n    \"type\": \"company\",\n    \"registeredName\": \"TechCorp Ltd\",\n    \"companyIdentifier\": \"12345678\",\n    \"companyIdentifierType\": \"companyRegistrationNumber\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"},{"id":"7fccadb0-91ac-46a0-9dc6-2ddca6572866","name":"Individual payer","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"},{"description":"Added as a part of security scheme: apikey","key":"x-api-key","value":"<API Key>"}],"body":{"mode":"raw","raw":"{\n  \"accountDetails\": {\n    \"walletAddress\": \"0x742d35Cc6634C0532925a3b844Bc9e7595f0bE85\",\n    \"currency\": \"USDC\",\n    \"blockchain\": \"ETH\"\n  },\n  \"address\": {\n    \"buildingNumber\": \"42\",\n    \"street\": \"Crypto Lane\",\n    \"city\": \"New York\",\n    \"state\": \"NY\",\n    \"postalCode\": \"10001\",\n    \"country\": \"US\"\n  },\n  \"payerDetails\": {\n    \"type\": \"individual\",\n    \"firstName\": \"John\",\n    \"lastName\": \"Doe\",\n    \"identificationType\": \"dateAndCountryOfBirth\",\n    \"dateOfBirth\": \"1985-03-15\",\n    \"countryOfBirth\": \"US\"\n  }\n}","options":{"raw":{"headerFamily":"json","language":"json"}}},"url":"https://b2b.getorbital.io/payers"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"error\": \"Could not process request, please reach out to customer support\",\n  \"code\": \"INTERNAL_SERVER_ERROR\",\n  \"details\": {\n    \"requestId\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"}],"_postman_id":"f6014c74-ad90-42d0-a46d-bc8e3d8b91b8"}],"id":"fa3cb8f3-2f64-4d86-b52f-76efbd13b814","_postman_id":"fa3cb8f3-2f64-4d86-b52f-76efbd13b814","description":""}],"event":[{"listen":"prerequest","script":{"id":"8dc79a5f-b228-4f7b-8f1d-373b7de2be15","type":"text/javascript","packages":{},"requests":{},"exec":["const privateKey = pm.environment.get(\"privateKey\");","const httpMethod = pm.request.method.toUpperCase();","const fullPath = pm.request.url.getPathWithQuery();","","function generateSignature() {","    eval(pm.globals.get('jsrsasign-js'));","","    let fullStringToSign = `${httpMethod}${fullPath}`;","","    console.log(fullStringToSign)","","    if (httpMethod === \"POST\") {","        const requestBody = pm.request.body ? pm.request.body.toString() : \"\";","        fullStringToSign += requestBody;","    }","","    const sig = new KJUR.crypto.Signature({ alg: 'SHA256withRSA' });","    sig.init(privateKey);","    sig.updateString(fullStringToSign);","    const signedSignature = sig.sign();","","    const base64Signature = hextob64(signedSignature);","","    pm.request.headers.add({ key: 'x-signature', value: base64Signature });","","    console.log('Generated Signature:', base64Signature);","}","","const navigator = {};","const window = {};","","pm.sendRequest('https://kjur.github.io/jsrsasign/jsrsasign-all-min.js', function (err, res) {","    if (err) {","        console.log(err);","    } else {","        pm.globals.set('jsrsasign-js', res.text());","        generateSignature();","    }","});",""]}},{"listen":"test","script":{"id":"4276bab0-d419-4088-a664-032636e77984","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"variable":[{"key":"baseUrl","value":"https://b2b.getorbital.io"}]}