{"info":{"_postman_id":"57e4a4b2-11e5-4fe0-a919-e9262081683b","name":"100Pay Developers Documentation","description":"<html><head></head><body><p>Developer API documentation for 100pay platform.</p>\n<p>Befoer you can start accepting crypto payments with 100Pay checkout, you will need a 100Pay account and your account api keys. If you don't have one yet, please click on the link below to create one.</p>\n<p>💻 <a href=\"https://app.100pay.co\">Create a 100Pay Account</a></p>\n<p>🥤 <a href=\"https://www.npmjs.com/package/@100pay-hq/checkout\">Inline Checkout - Popup</a></p>\n<p>💸 <a href=\"https://100pay.co/blog/how-to-verify-crypto-payments-on-100-pay\">Verify Payments</a></p>\n<p>🔔 <a href=\"https://100pay.co/blog/subscribing-to-webhooks-on-your-100-pay-account\">Webhook Notifications</a></p>\n<p>One you've created your account, provide your business information and then click on settings. Scroll down to API keys section and select your public keys.</p>\n<p>Step One:</p>\n<img src=\"https://content.pstmn.io/d8b49155-1ab2-4f00-821d-7d0723a85255/U2NyZWVuc2hvdCAyMDIzLTAzLTIzIGF0IDA5LjUwLjA2LnBuZw==\">\n\n<p>Step Two:</p>\n<img src=\"https://content.pstmn.io/08196b13-ecc8-4427-bf98-0392dbd7a2ab/U2NyZWVuc2hvdCAyMDIzLTAzLTIzIGF0IDA5LjUwLjIzLnBuZw==\">\n\n<p>You will need to provide this keys in your your request headers.</p>\n<p>the required field is \"api-key\" and can either be your public or secret key depending on which endpoint you're calling. Always ensure you never call our api endpoints with your private keys from the browser or your front end. Anyone with your secret keys can move funds from your account.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"13045730","collectionId":"57e4a4b2-11e5-4fe0-a919-e9262081683b","publishedId":"2s93RMUatE","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2023-03-23T08:58:31.000Z"},"item":[{"name":"Create Payment Charge","id":"c726bf60-5d0e-4657-ba1f-1bfacc448523","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"api-key","value":"LIVE;PK;","type":"text"}],"body":{"mode":"raw","raw":"{\n\"ref_id\": \"012232\",\n\"customer\": {\n    \"user_id\": \"111\",\n    \"name\": \"Brainy Josh\",\n    \"phone\": \"80123456789\",\n    \"email\": \"user@site.com\"\n},\n\"billing\": {\n    \"description\": \"MY TEST PAYMENT\",\n    \"amount\": \"10000\",\n    \"country\": \"NG\",\n    \"currency\": \"NGN\",\n    \"vat\": \"10\",\n    \"pricing_type\": \"fixed_or_partial_price\"\n},\n\"metadata\": {\n    \"is_approved\": \"yes\"\n},\n\"call_back_url\": \"http://localhost:8000/verify-payment\",\n\"userId\": \"6143bfb7fe85e0020bf243f9\",\n\"charge_source\": \"api\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.100pay.co/api/v1/pay/charge","description":"<p>The first step to accepting crypto payments with 100Pay Checkout is to create a payment Charge. The charge will include the customer details and the billing information.</p>\n<p>It's important to know how the status response field works.</p>\n<p>The context field is an Object that includes two fields: \"status\" and \"value\". The status fields is the payment status and the value field is the amount the user paid. If the status is \"underpaid\", then it returns how much the was underpaid so you can use this in a case of refund. If the status is \"overpaid\", it will return how much was overpaid and if it is \"unpaid\" or \"notpaid\", it returns a zero value (0).</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">    \"status\": {\n        \"context\": {\n            \"status\": \"notpaid\", // paid, unpaid, overpaid, underpaid\n            \"value\": 0\n        },\n        \"value\": \"unpaid\" // paid, unpaid, overpaid, underpaid\n},\n\n</code></pre>\n<p>Required Fields:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>customer</td>\n<td>Object</td>\n<td>Easily identify your customers by passing their basic information to the customer object.  <br />  <br />\"customer\": {  <br />\"user_id\": \"111\",  <br />\"name\": \"Brainy Josh\",  <br />\"phone\": \"80123456789\",  <br />\"email\": \"<a href=\"mailto:user@site.com\">user@site.com</a>\"  <br />},</td>\n</tr>\n<tr>\n<td>billing</td>\n<td>Object</td>\n<td>\"billing\": {  <br />\"currency\": \"NGN\", // the currency you wish to charge the customer in  <br />\"vat\": 10, // not required, you can calculate this yourself  <br />\"pricing_type\": \"fixed_or_partial_price\", // set to \"fixed\" if you're expecting an exact amount or \"partial\" if you're expecting a partial payment.  <br />\"description\": \"MY TEST PAYMENT\", // help the customer know what he's paying for.  <br />\"amount\": \"10000\", // The amount you're charging the customer  <br />\"country\": \"NG\" // The billing Country.  <br />},</td>\n</tr>\n<tr>\n<td>metadata</td>\n<td>Object</td>\n<td>This can include any field. In most cases, you will need extra fields to store information about the customer or the payment itself that you would need later to give value to the customer. you will be able to access this information later in the request sent to your webhook when new payments arrive.</td>\n</tr>\n<tr>\n<td>ref_id</td>\n<td>String</td>\n<td>Generate something random you can request from the customer later if you need to resolve an issue.</td>\n</tr>\n<tr>\n<td>call_back_url</td>\n<td>String</td>\n<td>this is mostly used when you are using the 100pay hosted checkout and need to redirect the user to a webpage later. so you can pass anything to it.</td>\n</tr>\n<tr>\n<td>userId</td>\n<td>String</td>\n<td>use this field to store your userId incase you ned it later.</td>\n</tr>\n<tr>\n<td>charge_sourse</td>\n<td>String</td>\n<td>use \"api\" if you're calling 100Pay checkout from your backend. And \"checkout\" if you're using the 100pay checkout payment modal.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"57e4a4b2-11e5-4fe0-a919-e9262081683b","id":"57e4a4b2-11e5-4fe0-a919-e9262081683b","name":"100Pay Developers Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v1","pay","charge"],"host":["api","100pay","co"],"query":[],"variable":[]}},"response":[{"id":"add8072b-8bf7-4021-ae18-3536534bbec5","name":"Create Charge Example Response","originalRequest":{"method":"POST","header":[{"key":"api-key","value":"LIVE;PK;eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhcHBJZCI6IjYyZWU1ZGJmYjAyOWI3MDAyZDViNzQ1MyIsInVzZXJJZCI6IjYyOGIyMjhiMTlhYzUyMDAyYzU4ODUyNSIsImlhdCI6MTY1OTc4ODczNX0.wGyE9qfgsmsOLVTQQ9GrTFZ28moPB31I2eZw7uwd7Gw","type":"text"}],"body":{"mode":"raw","raw":"{\n\"ref_id\": \"012232\",\n\"customer\": {\n    \"user_id\": \"111\",\n    \"name\": \"Brainy Josh\",\n    \"phone\": \"80123456789\",\n    \"email\": \"user@site.com\"\n},\n\"billing\": {\n    \"description\": \"MY TEST PAYMENT\",\n    \"amount\": \"10000\",\n    \"country\": \"NG\",\n    \"currency\": \"NGN\",\n    \"vat\": \"10\",\n    \"pricing_type\": \"fixed_or_partial_price\"\n},\n\"metadata\": {\n    \"is_approved\": \"yes\"\n},\n\"call_back_url\": \"http://localhost:8000/verify-payment\",\n\"userId\": \"6143bfb7fe85e0020bf243f9\",\n\"charge_source\": \"api\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.100pay.co/api/v1/pay/charge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 19 Mar 2023 23:56:08 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"2b4-oOjwtHYmFgvTNM+itW6C8cl8UOA\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=q%2B6q%2FSPobPcbZAbwZai45PAznGJIxQSz2rA5OD4ZIoTPZVyiV5kltgV%2FlcRyygjpzPUAi5EW9w%2Bwl6MKbNzMxBLyQwVSEAg%2FrKbxxqu9nfMIJq1Fm8NOvpnDd2cxw8Rz\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7aa9a676d8a90e74-AMS"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"billing\": {\n        \"currency\": \"NGN\",\n        \"vat\": 10,\n        \"pricing_type\": \"fixed_or_partial_price\",\n        \"description\": \"MY TEST PAYMENT\",\n        \"amount\": \"10000\",\n        \"country\": \"NG\"\n    },\n    \"status\": {\n        \"context\": {\n            \"status\": \"notpaid\",\n            \"value\": 0\n        },\n        \"value\": \"unpaid\"\n    },\n    \"ref_id\": \"012232\",\n    \"charge_source\": \"api\",\n    \"createdAt\": \"2023-03-12T20:15:30.107Z\",\n    \"_id\": \"6417a11887aae400371762c7\",\n    \"customer\": {\n        \"user_id\": \"111\",\n        \"name\": \"Brainy Josh\",\n        \"phone\": \"80123456789\",\n        \"email\": \"user@site.com\"\n    },\n    \"metadata\": {\n        \"is_approved\": \"yes\"\n    },\n    \"call_back_url\": \"http://localhost:8000/verify-payment\",\n    \"userId\": \"628b228b19ac52002c588525\",\n    \"app_id\": \"62ee5dbfb029b7002d5b7453\",\n    \"chargeId\": \"6417a11887aae400371762c7\",\n    \"__v\": 0,\n    \"hosted_url\": \"https://pay.100pay.co/pay/6417a11887aae400371762c7\"\n}"},{"id":"13ebe2d9-023a-45f4-982c-75375e72df2a","name":"Create Charge Example Response","originalRequest":{"method":"POST","header":[{"key":"api-key","value":"LIVE;PK;eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhcHBJZCI6IjYyZWU1ZGJmYjAyOWI3MDAyZDViNzQ1MyIsInVzZXJJZCI6IjYyOGIyMjhiMTlhYzUyMDAyYzU4ODUyNSIsImlhdCI6MTY1OTc4ODczNX0.wGyE9qfgsmsOLVTQQ9GrTFZ28moPB31I2eZw7uwd7Gw","type":"text"}],"body":{"mode":"raw","raw":"{\n\"ref_id\": \"012232\",\n\"customer\": {\n    \"user_id\": \"111\",\n    \"name\": \"Brainy Josh\",\n    \"phone\": \"80123456789\",\n    \"email\": \"user@site.com\"\n},\n\"billing\": {\n    \"description\": \"MY TEST PAYMENT\",\n    \"amount\": \"10000\",\n    \"country\": \"NG\",\n    \"currency\": \"NGN\",\n    \"vat\": \"10\",\n    \"pricing_type\": \"fixed_or_partial_price\"\n},\n\"metadata\": {\n    \"is_approved\": \"yes\"\n},\n\"call_back_url\": \"http://localhost:8000/verify-payment\",\n\"userId\": \"6143bfb7fe85e0020bf243f9\",\n\"charge_source\": \"api\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.100pay.co/api/v1/pay/charge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 20 Mar 2023 00:00:13 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"2b4-dt2ahcPIL6bBMcW9AewZoFc6PCc\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=qt4rv4sFHbAylDFGvDF1tpJF%2BkuQvxmY4XXqZ%2FIuXlsSEy7LDiFdLZWHG9haJfXxslYXZIR3zjHSDtIGZA9myGlT8dJYEfxJnePOoNJwWaVAvoj3c1E0J9yRZd712XAr\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7aa9ac715b5f0e74-AMS"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"billing\": {\n        \"currency\": \"NGN\",\n        \"vat\": 10,\n        \"pricing_type\": \"fixed_or_partial_price\",\n        \"description\": \"MY TEST PAYMENT\",\n        \"amount\": \"10000\",\n        \"country\": \"NG\"\n    },\n    \"status\": {\n        \"context\": {\n            \"status\": \"notpaid\",\n            \"value\": 0\n        },\n        \"value\": \"unpaid\"\n    },\n    \"ref_id\": \"012232\",\n    \"charge_source\": \"api\",\n    \"createdAt\": \"2023-03-12T20:15:30.107Z\",\n    \"_id\": \"6417a20d87aae400371762cb\",\n    \"customer\": {\n        \"user_id\": \"111\",\n        \"name\": \"Brainy Josh\",\n        \"phone\": \"80123456789\",\n        \"email\": \"user@site.com\"\n    },\n    \"metadata\": {\n        \"is_approved\": \"yes\"\n    },\n    \"call_back_url\": \"http://localhost:8000/verify-payment\",\n    \"userId\": \"628b228b19ac52002c588525\",\n    \"app_id\": \"62ee5dbfb029b7002d5b7453\",\n    \"chargeId\": \"6417a20d87aae400371762cb\",\n    \"__v\": 0,\n    \"hosted_url\": \"https://pay.100pay.co/pay/6417a20d87aae400371762cb\"\n}"}],"_postman_id":"c726bf60-5d0e-4657-ba1f-1bfacc448523"},{"name":"Get Payment Charge","id":"da1ee8c5-5b8e-4e62-b5a8-09bbdc654306","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"api-key","value":"LIVE;PK;","type":"text"}],"url":"https://api.100pay.co/api/v1/pay/charge/6417a20d87aae400371762cb","description":"<p>Retrieve previously created Charge Details</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"57e4a4b2-11e5-4fe0-a919-e9262081683b","id":"57e4a4b2-11e5-4fe0-a919-e9262081683b","name":"100Pay Developers Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v1","pay","charge","6417a20d87aae400371762cb"],"host":["api","100pay","co"],"query":[],"variable":[]}},"response":[{"id":"28b43ba8-f90b-4c80-a6f5-1cf417775ba1","name":"Get Charge Example Response","originalRequest":{"method":"GET","header":[{"key":"","value":"","type":"text","disabled":true},{"key":"api-key","value":"LIVE;PK;eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhcHBJZCI6IjYyZWU1ZGJmYjAyOWI3MDAyZDViNzQ1MyIsInVzZXJJZCI6IjYyOGIyMjhiMTlhYzUyMDAyYzU4ODUyNSIsImlhdCI6MTY1OTc4ODczNX0.wGyE9qfgsmsOLVTQQ9GrTFZ28moPB31I2eZw7uwd7Gw","type":"text"}],"url":"https://api.100pay.co/api/v1/pay/charge/6417a20d87aae400371762cb"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 20 Mar 2023 00:02:10 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"272-2vFk3lSf7n+TT1GHuven/6Hqh4A\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WlbNhDW7E9YQairmDoK263X3aOBnxIZTS2D9WAwkDtuU1161R4HWIgPqz6QFiELpNde%2BhlBolbgalI%2BrQDmVZ7n61YbbVsq537sKTpbidUBt2FPDbwFkqQWGlk%2Fwilqb\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7aa9af521ffd0e74-AMS"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"customer\": {\n        \"user_id\": \"111\",\n        \"name\": \"Brainy Josh\",\n        \"phone\": \"80123456789\",\n        \"email\": \"user@site.com\"\n    },\n    \"billing\": {\n        \"currency\": \"NGN\",\n        \"vat\": 10,\n        \"pricing_type\": \"fixed_or_partial_price\",\n        \"description\": \"MY TEST PAYMENT\",\n        \"amount\": \"10000\",\n        \"country\": \"NG\"\n    },\n    \"status\": {\n        \"context\": {\n            \"status\": \"notpaid\",\n            \"value\": 0\n        },\n        \"value\": \"unpaid\"\n    },\n    \"ref_id\": \"012232\",\n    \"charge_source\": \"api\",\n    \"createdAt\": \"2023-03-12T20:15:30.107Z\",\n    \"_id\": \"6417a20d87aae400371762cb\",\n    \"metadata\": {\n        \"is_approved\": \"yes\"\n    },\n    \"call_back_url\": \"http://localhost:8000/verify-payment\",\n    \"userId\": \"628b228b19ac52002c588525\",\n    \"app_id\": \"62ee5dbfb029b7002d5b7453\",\n    \"chargeId\": \"6417a20d87aae400371762cb\",\n    \"__v\": 0\n}"},{"id":"8eb65347-8a23-4e02-8b9b-bce76d0dbd73","name":"Get Charge Example Response","originalRequest":{"method":"GET","header":[{"key":"","value":"","type":"text","disabled":true},{"key":"api-key","value":"LIVE;PK;eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhcHBJZCI6IjYyZWU1ZGJmYjAyOWI3MDAyZDViNzQ1MyIsInVzZXJJZCI6IjYyOGIyMjhiMTlhYzUyMDAyYzU4ODUyNSIsImlhdCI6MTY1OTc4ODczNX0.wGyE9qfgsmsOLVTQQ9GrTFZ28moPB31I2eZw7uwd7Gw","type":"text"}],"url":"https://api.100pay.co/api/v1/pay/charge/6417a20d87aae400371762cb"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 20 Mar 2023 00:02:10 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"272-2vFk3lSf7n+TT1GHuven/6Hqh4A\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=WlbNhDW7E9YQairmDoK263X3aOBnxIZTS2D9WAwkDtuU1161R4HWIgPqz6QFiELpNde%2BhlBolbgalI%2BrQDmVZ7n61YbbVsq537sKTpbidUBt2FPDbwFkqQWGlk%2Fwilqb\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7aa9af521ffd0e74-AMS"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"customer\": {\n        \"user_id\": \"111\",\n        \"name\": \"Brainy Josh\",\n        \"phone\": \"80123456789\",\n        \"email\": \"user@site.com\"\n    },\n    \"billing\": {\n        \"currency\": \"NGN\",\n        \"vat\": 10,\n        \"pricing_type\": \"fixed_or_partial_price\",\n        \"description\": \"MY TEST PAYMENT\",\n        \"amount\": \"10000\",\n        \"country\": \"NG\"\n    },\n    \"status\": {\n        \"context\": {\n            \"status\": \"notpaid\",\n            \"value\": 0\n        },\n        \"value\": \"unpaid\"\n    },\n    \"ref_id\": \"012232\",\n    \"charge_source\": \"api\",\n    \"createdAt\": \"2023-03-12T20:15:30.107Z\",\n    \"_id\": \"6417a20d87aae400371762cb\",\n    \"metadata\": {\n        \"is_approved\": \"yes\"\n    },\n    \"call_back_url\": \"http://localhost:8000/verify-payment\",\n    \"userId\": \"628b228b19ac52002c588525\",\n    \"app_id\": \"62ee5dbfb029b7002d5b7453\",\n    \"chargeId\": \"6417a20d87aae400371762cb\",\n    \"__v\": 0\n}"}],"_postman_id":"da1ee8c5-5b8e-4e62-b5a8-09bbdc654306"},{"name":"Create crypto Charge","id":"ef560fe3-9767-4dd5-984b-623b24f415f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"api-key","value":"LIVE;PK;","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.100pay.co/api/v1/pay/crypto/6417a20d87aae400371762cb","description":"<p>After creating a payment charge you will need to call the create crypto charge endpoint. This will return a response that includes wallet addresses and a payments field that includes all payments made by the customer.</p>\n<p>Please note that you must activate these wallets by calling the <a href=\"https://documenter.getpostman.com/view/13045730/2s93RMUatE#7e733eab-5a69-4c45-81f2-59bc2eb07117\">convert endpoint</a> else payments sent to the generated addresses will not be recorded.</p>\n<p>The convert endpoint handles all the conversions for you so you don't need to worry about price conversions.</p>\n<p>Required Parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Field</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>charge id</td>\n<td>You need to provide the charge id returned by the create payment charge endpoint when calling the create crypto charge endpoint.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Check the Example response to see an example response.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"57e4a4b2-11e5-4fe0-a919-e9262081683b","id":"57e4a4b2-11e5-4fe0-a919-e9262081683b","name":"100Pay Developers Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v1","pay","crypto","6417a20d87aae400371762cb"],"host":["api","100pay","co"],"query":[],"variable":[]}},"response":[{"id":"7321e28e-7173-4a99-bbf7-c592f8c8f1a5","name":"Create crypto Charge","originalRequest":{"method":"POST","header":[{"key":"api-key","value":"LIVE;PK;eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhcHBJZCI6IjYyZWU1ZGJmYjAyOWI3MDAyZDViNzQ1MyIsInVzZXJJZCI6IjYyOGIyMjhiMTlhYzUyMDAyYzU4ODUyNSIsImlhdCI6MTY1OTc4ODczNX0.wGyE9qfgsmsOLVTQQ9GrTFZ28moPB31I2eZw7uwd7Gw","type":"text"}],"body":{"mode":"raw","raw":""},"url":"https://api.100pay.co/api/v1/pay/crypto/6417a20d87aae400371762cb"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 20 Mar 2023 00:03:33 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"2cdd-ZhT8oDholcAyn7gnKAeAh8Nr/G4\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=Co6PHA3hqUIbSCtktTQYtlP7pkeLDv2G3oi66QmMH2R1ewZucnccR4KTi7VxT5ywega4C68UGBImRgGlq%2FboAXo0I1RzhnXOcjhuJgbogD2RIS0zcnjbEAXeKQPfDAni\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7aa9b154e9c60e74-AMS"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"is_cancelled\": false,\n    \"_id\": \"6417a2d587aae400371762da\",\n    \"charge_id\": \"6417a20d87aae400371762cb\",\n    \"app_id\": \"62ee5dbfb029b7002d5b7453\",\n    \"code\": \"LfEWnv03UMpV73Fb\",\n    \"wallet\": {\n        \"addresses\": [\n            {\n                \"name\": \"Tether Usdt\",\n                \"symbol\": \"USDT\",\n                \"currency\": \"USDT\",\n                \"convert_id\": \"825\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644943779/coins/usdt_imbfgw.jpg\",\n                \"networks\": [\n                    {\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0x55d398326f99059ff775485246999027b3197955\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"name\": \"ethereum\",\n                        \"contract_address\": \"0xdac17f958d2ee523a2206206994597c13d831ec7\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Ethereum\",\n                \"network\": \"ethereum\",\n                \"chart\": \"cmc\",\n                \"currency\": \"ETH\",\n                \"convert_id\": \"1027\",\n                \"symbol\": \"ETH\",\n                \"account\": {\n                    \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\"\n                },\n                \"isToken\": false,\n                \"isMultiChain\": false,\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\"\n            },\n            {\n                \"name\": \"Binance BUSD\",\n                \"symbol\": \"BUSD\",\n                \"currency\": \"busd\",\n                \"convert_id\": \"4687\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": false,\n                \"isToken\": true,\n                \"network\": \"bsc\",\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"contract_address\": \"0xe9e7cea3dedca5984780bafc599bd69add087d56\",\n                \"account\": {\n                    \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\"\n                },\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644943778/coins/busd_qntsvx.png\"\n            },\n            {\n                \"name\": \"BNB\",\n                \"network\": \"bsc\",\n                \"chart\": \"cmc\",\n                \"currency\": \"bnb\",\n                \"convert_id\": \"1839\",\n                \"symbol\": \"BNB\",\n                \"account\": {\n                    \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\"\n                },\n                \"isToken\": false,\n                \"isMultiChain\": false,\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\"\n            },\n            {\n                \"name\": \"USDC Coin\",\n                \"symbol\": \"USDC\",\n                \"currency\": \"USDC\",\n                \"convert_id\": \"3408\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644942852/coins/USDC_fsfzvv.png\",\n                \"networks\": [\n                    {\n                        \"name\": \"algorand\",\n                        \"asset_id\": \"31566704\",\n                        \"account\": {\n                            \"address\": \"TC563KBUEVJTFNFXLVT7C3BGKC6PUNJEVX7CQ26KGJOJ6TE4CSH3FJJRFM\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644943778/coins/algorand_gwlohi.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"name\": \"ethereum\",\n                        \"contract_address\": \"0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Dai Stable Coin\",\n                \"symbol\": \"DAI\",\n                \"currency\": \"DAI\",\n                \"convert_id\": \"4943\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644942851/coins/DAI_udwmxu.svg\",\n                \"networks\": [\n                    {\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"name\": \"ethereum\",\n                        \"contract_address\": \"0x6b175474e89094c44da98b954eedeac495271d0f\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Algorand Algo\",\n                \"network\": \"algorand\",\n                \"chart\": \"cmc\",\n                \"symbol\": \"ALGO\",\n                \"currency\": \"ALGO\",\n                \"convert_id\": \"4030\",\n                \"account\": {\n                    \"address\": \"TC563KBUEVJTFNFXLVT7C3BGKC6PUNJEVX7CQ26KGJOJ6TE4CSH3FJJRFM\"\n                },\n                \"isToken\": false,\n                \"isMultiChain\": false,\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644943778/coins/algorand_gwlohi.png\"\n            },\n            {\n                \"name\": \"XRP\",\n                \"symbol\": \"XRP\",\n                \"currency\": \"XRP\",\n                \"convert_id\": \"52\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645181783/coins/52_ttxctb.png\",\n                \"networks\": [\n                    {\n                        \"name\": \"bsc\",\n                        \"network\": \"bsc\",\n                        \"contract_address\": \"0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Cardano\",\n                \"symbol\": \"ADA\",\n                \"currency\": \"ADA\",\n                \"convert_id\": \"2010\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645181471/coins/2010_cvxrzy.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"bsc\",\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0x3ee2200efb3400fabb9aacf31297cbdd1d435d47\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Polkadot\",\n                \"symbol\": \"DOT\",\n                \"currency\": \"DOT\",\n                \"convert_id\": \"6636\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645181959/coins/6636_tqvvd3.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"bsc\",\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0x7083609fce4d1d8dc0c979aab8c869ea2c873402\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Polygon\",\n                \"symbol\": \"MATIC\",\n                \"currency\": \"MATIC\",\n                \"convert_id\": \"3890\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645192881/coins/3890_xyid9z.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"polygon\",\n                        \"name\": \"polygon\",\n                        \"contract_address\": \"0x0000000000000000000000000000000000001010\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645192881/coins/3890_xyid9z.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"network\": \"bsc\",\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0xcc42724c6683b7e57334c4e856f4c9965ed682bd\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"network\": \"ethereum\",\n                        \"name\": \"ethereum\",\n                        \"contract_address\": \"0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Avalanche\",\n                \"symbol\": \"AVAX\",\n                \"currency\": \"AVAX\",\n                \"convert_id\": \"5805\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645183288/coins/5805_zldxja.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"bsc\",\n                        \"name\": \"bsc\",\n                        \"isDisabled\": false,\n                        \"contract_address\": \"0x1ce0c2827e2ef14d5c4f29a091d735a204794041\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\"\n                    }\n                ]\n            },\n            {\n                \"name\": \"Wrapped Bitcoin\",\n                \"symbol\": \"WBTC\",\n                \"currency\": \"WBTC\",\n                \"convert_id\": \"3717\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645183707/coins/3717_sprt3w.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"ethereum\",\n                        \"name\": \"ethereum\",\n                        \"isDisabled\": false,\n                        \"contract_address\": \"0x2260fac5e5542a773aa44fbcfedf7c193bc2c599\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\"\n                    }\n                ]\n            },\n            {\n                \"name\": \"Uniswap\",\n                \"symbol\": \"UNI\",\n                \"currency\": \"UNI\",\n                \"convert_id\": \"7083\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645190602/coins/7083_n7izmy.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"bsc\",\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0xbf5140a22578168fd562dccf235e5d43a02ce9b1\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"network\": \"ethereum\",\n                        \"name\": \"ethereum\",\n                        \"contract_address\": \"0x1f9840a85d5af5bf1d1762f925bdaddc4201f984\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Chainlink\",\n                \"symbol\": \"LINK\",\n                \"currency\": \"LINK\",\n                \"convert_id\": \"1975\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645190834/coins/1975_zxkf8x.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"bsc\",\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"network\": \"ethereum\",\n                        \"name\": \"ethereum\",\n                        \"contract_address\": \"0x514910771af9ca656af840dff83e8264ecf986ca\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Decentraland\",\n                \"symbol\": \"MANA\",\n                \"currency\": \"MANA\",\n                \"convert_id\": \"1966\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645400624/1966_bjmzk6.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"ethereum\",\n                        \"name\": \"ethereum\",\n                        \"isDisabled\": false,\n                        \"contract_address\": \"0x0f5d2fb29fb7d3cfee444a200298f468908cc942\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\"\n                    }\n                ]\n            },\n            {\n                \"name\": \"Fantom\",\n                \"symbol\": \"FTM\",\n                \"currency\": \"FTM\",\n                \"convert_id\": \"3513\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645402057/3513_pmuuk9.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"bsc\",\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0xad29abb318791d579433d831ed122afeaf29dcfe\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"network\": \"ethereum\",\n                        \"name\": \"ethereum\",\n                        \"contract_address\": \"0x4e15361fd6b4bb609fa63c81a2be19d873717870\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\",\n                        \"isDisabled\": false\n                    }\n                ]\n            }\n        ],\n        \"payments\": [],\n        \"code\": \"LfEWnv03UMpV73Fb\",\n        \"metadata\": {\n            \"chargeID\": \"6417a20d87aae400371762cb\",\n            \"app_id\": \"62ee5dbfb029b7002d5b7453\"\n        },\n        \"local_price\": {\n            \"amount\": \"10000\",\n            \"currency\": \"NGN\"\n        }\n    },\n    \"created_at\": \"Mon Mar 20 2023 00:03:33 GMT+0000 (Coordinated Universal Time)\",\n    \"expires_at\": \"Mon Mar 20 2023 00:08:33 GMT+0000 (Coordinated Universal Time)\",\n    \"__v\": 0\n}"}],"_postman_id":"ef560fe3-9767-4dd5-984b-623b24f415f5"},{"name":"Get  Crypto Charge","id":"d59b6e6d-c906-4329-a97c-1825633babdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"api-key","value":"LIVE;PK;","type":"text"}],"url":"https://api.100pay.co/api/v1/pay/crypto/6417a2d587aae400371762da","description":"<p>Retrieve a previously created crypto charge for a payment charge.</p>\n<p>You will need to call this endpoint to verify payments before giving the user value.</p>\n<p>Whenever your webhook receive a request, first verify the payment by calling the Get Crypto Charge endpoint and look in the wallet-&gt;payments field to see if the payment is included there.</p>\n<p>Check in the example response to see an example response data.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"57e4a4b2-11e5-4fe0-a919-e9262081683b","id":"57e4a4b2-11e5-4fe0-a919-e9262081683b","name":"100Pay Developers Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v1","pay","crypto","6417a2d587aae400371762da"],"host":["api","100pay","co"],"query":[],"variable":[]}},"response":[{"id":"65094f9b-53c9-4669-904a-e9a39329514b","name":"Get Crypto Charge Example Response","originalRequest":{"method":"GET","header":[{"key":"api-key","value":"LIVE;PK;eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhcHBJZCI6IjYyOGIyMzdlMTlhYzUyMDAyYzU4ODU0ZCIsInVzZXJJZCI6IjYyOGIyMjhiMTlhYzUyMDAyYzU4ODUyNSIsImlhdCI6MTY1MzI4NTc1OH0.xbsD89ZxDffd6oTslQncQkIs0zAfGaiz8tOkCjLdgFs","type":"text"}],"url":"https://api.100pay.co/api/v1/pay/crypto/6417a2d587aae400371762da"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Mar 2023 06:27:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"2dc7-qotav570MgUyA9ECevGV8oqTfEw\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=5Ikeyct7CRlH0%2BDAIZC9DGwi3UqXEOkbLrACzwwGnoAB0yHPFp1hrBZSCqSDvZt4VqiBFs90wIL61xdUT9KRxCLLvU%2BzvlErrorpLxXiKRGtGiLFwJGHHTWp0Upn6rUg\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7ac49c4e6c4a426c-AMS"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"is_cancelled\": false,\n    \"_id\": \"6417a2d587aae400371762da\",\n    \"charge_id\": \"6417a20d87aae400371762cb\",\n    \"app_id\": \"62ee5dbfb029b7002d5b7453\",\n    \"code\": \"LfEWnv03UMpV73Fb\",\n    \"wallet\": {\n        \"addresses\": [\n            {\n                \"name\": \"Tether Usdt\",\n                \"symbol\": \"USDT\",\n                \"currency\": \"USDT\",\n                \"convert_id\": \"825\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644943779/coins/usdt_imbfgw.jpg\",\n                \"networks\": [\n                    {\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0x55d398326f99059ff775485246999027b3197955\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"name\": \"ethereum\",\n                        \"contract_address\": \"0xdac17f958d2ee523a2206206994597c13d831ec7\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Ethereum\",\n                \"network\": \"ethereum\",\n                \"chart\": \"cmc\",\n                \"currency\": \"ETH\",\n                \"convert_id\": \"1027\",\n                \"symbol\": \"ETH\",\n                \"account\": {\n                    \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\",\n                    \"key\": \"\"\n                },\n                \"isToken\": false,\n                \"isMultiChain\": false,\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\"\n            },\n            {\n                \"name\": \"Binance BUSD\",\n                \"symbol\": \"BUSD\",\n                \"currency\": \"busd\",\n                \"convert_id\": \"4687\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": false,\n                \"isToken\": true,\n                \"network\": \"bsc\",\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"contract_address\": \"0xe9e7cea3dedca5984780bafc599bd69add087d56\",\n                \"account\": {\n                    \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\",\n                    \"key\": \"\"\n                },\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644943778/coins/busd_qntsvx.png\"\n            },\n            {\n                \"name\": \"BNB\",\n                \"network\": \"bsc\",\n                \"chart\": \"cmc\",\n                \"currency\": \"bnb\",\n                \"convert_id\": \"1839\",\n                \"symbol\": \"BNB\",\n                \"account\": {\n                    \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\",\n                    \"key\": \"\"\n                },\n                \"isToken\": false,\n                \"isMultiChain\": false,\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\"\n            },\n            {\n                \"name\": \"USDC Coin\",\n                \"symbol\": \"USDC\",\n                \"currency\": \"USDC\",\n                \"convert_id\": \"3408\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644942852/coins/USDC_fsfzvv.png\",\n                \"networks\": [\n                    {\n                        \"name\": \"algorand\",\n                        \"asset_id\": \"31566704\",\n                        \"account\": {\n                            \"address\": \"TC563KBUEVJTFNFXLVT7C3BGKC6PUNJEVX7CQ26KGJOJ6TE4CSH3FJJRFM\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644943778/coins/algorand_gwlohi.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"name\": \"ethereum\",\n                        \"contract_address\": \"0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Dai Stable Coin\",\n                \"symbol\": \"DAI\",\n                \"currency\": \"DAI\",\n                \"convert_id\": \"4943\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644942851/coins/DAI_udwmxu.svg\",\n                \"networks\": [\n                    {\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0x1af3f329e8be154074d8769d1ffa4ee058b1dbc3\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"name\": \"ethereum\",\n                        \"contract_address\": \"0x6b175474e89094c44da98b954eedeac495271d0f\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Algorand Algo\",\n                \"network\": \"algorand\",\n                \"chart\": \"cmc\",\n                \"symbol\": \"ALGO\",\n                \"currency\": \"ALGO\",\n                \"convert_id\": \"4030\",\n                \"account\": {\n                    \"address\": \"TC563KBUEVJTFNFXLVT7C3BGKC6PUNJEVX7CQ26KGJOJ6TE4CSH3FJJRFM\",\n                    \"key\": \"\"\n                },\n                \"isToken\": false,\n                \"isMultiChain\": false,\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644943778/coins/algorand_gwlohi.png\"\n            },\n            {\n                \"name\": \"XRP\",\n                \"symbol\": \"XRP\",\n                \"currency\": \"XRP\",\n                \"convert_id\": \"52\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645181783/coins/52_ttxctb.png\",\n                \"networks\": [\n                    {\n                        \"name\": \"bsc\",\n                        \"network\": \"bsc\",\n                        \"contract_address\": \"0x1d2f0da169ceb9fc7b3144628db156f3f6c60dbe\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Cardano\",\n                \"symbol\": \"ADA\",\n                \"currency\": \"ADA\",\n                \"convert_id\": \"2010\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645181471/coins/2010_cvxrzy.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"bsc\",\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0x3ee2200efb3400fabb9aacf31297cbdd1d435d47\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Polkadot\",\n                \"symbol\": \"DOT\",\n                \"currency\": \"DOT\",\n                \"convert_id\": \"6636\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645181959/coins/6636_tqvvd3.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"bsc\",\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0x7083609fce4d1d8dc0c979aab8c869ea2c873402\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Polygon\",\n                \"symbol\": \"MATIC\",\n                \"currency\": \"MATIC\",\n                \"convert_id\": \"3890\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645192881/coins/3890_xyid9z.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"polygon\",\n                        \"name\": \"polygon\",\n                        \"contract_address\": \"0x0000000000000000000000000000000000001010\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645192881/coins/3890_xyid9z.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"network\": \"bsc\",\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0xcc42724c6683b7e57334c4e856f4c9965ed682bd\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"network\": \"ethereum\",\n                        \"name\": \"ethereum\",\n                        \"contract_address\": \"0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Avalanche\",\n                \"symbol\": \"AVAX\",\n                \"currency\": \"AVAX\",\n                \"convert_id\": \"5805\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645183288/coins/5805_zldxja.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"bsc\",\n                        \"name\": \"bsc\",\n                        \"isDisabled\": false,\n                        \"contract_address\": \"0x1ce0c2827e2ef14d5c4f29a091d735a204794041\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\"\n                    }\n                ]\n            },\n            {\n                \"name\": \"Wrapped Bitcoin\",\n                \"symbol\": \"WBTC\",\n                \"currency\": \"WBTC\",\n                \"convert_id\": \"3717\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645183707/coins/3717_sprt3w.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"ethereum\",\n                        \"name\": \"ethereum\",\n                        \"isDisabled\": false,\n                        \"contract_address\": \"0x2260fac5e5542a773aa44fbcfedf7c193bc2c599\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\"\n                    }\n                ]\n            },\n            {\n                \"name\": \"Uniswap\",\n                \"symbol\": \"UNI\",\n                \"currency\": \"UNI\",\n                \"convert_id\": \"7083\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645190602/coins/7083_n7izmy.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"bsc\",\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0xbf5140a22578168fd562dccf235e5d43a02ce9b1\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"network\": \"ethereum\",\n                        \"name\": \"ethereum\",\n                        \"contract_address\": \"0x1f9840a85d5af5bf1d1762f925bdaddc4201f984\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Chainlink\",\n                \"symbol\": \"LINK\",\n                \"currency\": \"LINK\",\n                \"convert_id\": \"1975\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645190834/coins/1975_zxkf8x.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"bsc\",\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0xf8a0bf9cf54bb92f17374d9e9a321e6a111a51bd\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"network\": \"ethereum\",\n                        \"name\": \"ethereum\",\n                        \"contract_address\": \"0x514910771af9ca656af840dff83e8264ecf986ca\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\",\n                        \"isDisabled\": false\n                    }\n                ]\n            },\n            {\n                \"name\": \"Decentraland\",\n                \"symbol\": \"MANA\",\n                \"currency\": \"MANA\",\n                \"convert_id\": \"1966\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645400624/1966_bjmzk6.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"ethereum\",\n                        \"name\": \"ethereum\",\n                        \"isDisabled\": false,\n                        \"contract_address\": \"0x0f5d2fb29fb7d3cfee444a200298f468908cc942\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\"\n                    }\n                ]\n            },\n            {\n                \"name\": \"Fantom\",\n                \"symbol\": \"FTM\",\n                \"currency\": \"FTM\",\n                \"convert_id\": \"3513\",\n                \"isFeaturd\": false,\n                \"isMultiChain\": true,\n                \"isToken\": true,\n                \"chart\": \"cmc\",\n                \"isDisabled\": false,\n                \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1645402057/3513_pmuuk9.png\",\n                \"networks\": [\n                    {\n                        \"network\": \"bsc\",\n                        \"name\": \"bsc\",\n                        \"contract_address\": \"0xad29abb318791d579433d831ed122afeaf29dcfe\",\n                        \"account\": {\n                            \"address\": \"0x555CaEA6B098Ec413639735a094012937c25802F\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644945649/coins/bnb_ihf6sq.png\",\n                        \"isDisabled\": false\n                    },\n                    {\n                        \"network\": \"ethereum\",\n                        \"name\": \"ethereum\",\n                        \"contract_address\": \"0x4e15361fd6b4bb609fa63c81a2be19d873717870\",\n                        \"account\": {\n                            \"address\": \"0x6b3202D7EDD3b8482E2e2eC1033Ad3Cfbf9e9366\",\n                            \"key\": \"\"\n                        },\n                        \"logo\": \"https://res.cloudinary.com/estaterally/image/upload/v1644944094/coins/ethereum-eth_ujhxnq.svg\",\n                        \"isDisabled\": false\n                    }\n                ]\n            }\n        ],\n        \"payments\": [],\n        \"code\": \"LfEWnv03UMpV73Fb\",\n        \"metadata\": {\n            \"chargeID\": \"6417a20d87aae400371762cb\",\n            \"app_id\": \"62ee5dbfb029b7002d5b7453\"\n        },\n        \"local_price\": {\n            \"amount\": \"10000\",\n            \"currency\": \"NGN\"\n        }\n    },\n    \"created_at\": \"Mon Mar 20 2023 00:03:33 GMT+0000 (Coordinated Universal Time)\",\n    \"expires_at\": \"Mon Mar 20 2023 00:08:33 GMT+0000 (Coordinated Universal Time)\",\n    \"__v\": 0\n}"}],"_postman_id":"d59b6e6d-c906-4329-a97c-1825633babdc"},{"name":"Cancel Crypto Charge","id":"0c0df355-69fa-4d5a-bcac-50f76080bafc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"api-key","value":"LIVE;PK;","type":"text"}],"url":"https://api.100pay.co/api/v1/pay/crypto/cancel/6417a2d587aae400371762da","description":"<p>Cancel a previously created charge</p>\n<p>When you cancel a previously created Crypto Payment Charge, you're saying we should disregarded all payments sent to the generated addresses forever.</p>\n<p>Also Note that: Payments sent previously are not affected as they were already credited into your account, and in a case of refund, you will need to refund your customer as 100Pay does not handle refunds for you.</p>\n<p>Required Params:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Param</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Crypto Charge id</td>\n<td>the _id returned by the Create Crypto Charge endpoint.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"57e4a4b2-11e5-4fe0-a919-e9262081683b","id":"57e4a4b2-11e5-4fe0-a919-e9262081683b","name":"100Pay Developers Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v1","pay","crypto","cancel","6417a2d587aae400371762da"],"host":["api","100pay","co"],"query":[],"variable":[]}},"response":[{"id":"50cf5e90-8a15-42be-b830-801e587110b2","name":"Cancel Crypto Charge Example Response","originalRequest":{"method":"POST","header":[{"key":"api-key","value":"{{api-key}}","type":"text"}],"url":"https://api.100pay.co/api/v1/pay/crypto/cancel/6417a2d587aae400371762da"},"status":"OK","code":200,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Thu, 23 Mar 2023 06:30:21 GMT"},{"key":"Content-Type","value":"text/html; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=dXs6RQO1bWFNWWYU5QFTL3pXtbq5peo99Axbx4tz4L%2BWFyupC%2BK4HIXpiMojqQVNQ4DmcSVd0zr9HrmpjBzVxDED024vrFF88Dv3ANko9rlsQFnQ0SK9UfGnIkk3uR3p\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7ac4a011892b426c-AMS"},{"key":"Content-Encoding","value":"br"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"charge canceled"}],"_postman_id":"0c0df355-69fa-4d5a-bcac-50f76080bafc"},{"name":"Convert Checkout Asset and watch for payment","id":"7e733eab-5a69-4c45-81f2-59bc2eb07117","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"api-key","value":"LIVE;PK;","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"wallet\": {\n        \"symbol\": \"USDT\",\n        \"convert_id\": \"825\",\n        \"chart\": \"cmc\"\n \n    },\n    \"local\": {\n        \"amount\": \"20\",\n        \"currency\": \"USD\"\n    },\n    \"_id\": \"641bf59387aae40037176543\",\n    \"network\": \"bsc\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.100pay.co/api/v1/pay/crypto/convert","description":"<p>This Endpoint will do the price conversion for you. Failure to call this endpoint with the required fields will result in a permanent lost of all funds sent to the generated address.</p>\n<p>The customer needs to know exactly how many units of an asset to send. In our example response, we are converting $20 USD to USDT.</p>\n<p>This is possible with the 100Pay Checkout conversion endpoint.</p>\n<p>Send a post request with the required fields. Please note that the \"_id\" field is the Crypto Charge Id.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>field</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>wallet</td>\n<td>Object</td>\n<td>\"wallet\": {  <br />\"symbol\": \"USDT\", // String  <br />\"convert_id\": \"825\", // String  <br />\"chart\": \"cmc\" // String. Value must be \"cmc\"  <br />  <br />}</td>\n</tr>\n<tr>\n<td>local</td>\n<td>Object</td>\n<td>\"local\": {  <br />\"amount\": \"20\", // String  <br />\"currency\": \"USD\" // String  <br />}</td>\n</tr>\n<tr>\n<td>_id</td>\n<td>String</td>\n<td>The Crypto charge id returned when you made a post to the Create Crypto Charge endpoint</td>\n</tr>\n<tr>\n<td>network</td>\n<td>String</td>\n<td>The Network to watch for payments.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"57e4a4b2-11e5-4fe0-a919-e9262081683b","id":"57e4a4b2-11e5-4fe0-a919-e9262081683b","name":"100Pay Developers Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v1","pay","crypto","convert"],"host":["api","100pay","co"],"query":[],"variable":[]}},"response":[{"id":"86aa93ce-904c-4e0e-8587-275b5d9b35cb","name":"Convert Checkout Asset and watch for payment Example Response","originalRequest":{"method":"POST","header":[{"key":"api-key","value":"{{api-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"wallet\": {\n        \"symbol\": \"USDT\",\n        \"convert_id\": \"825\",\n        \"chart\": \"cmc\"\n \n    },\n    \"local\": {\n        \"amount\": \"20\",\n        \"currency\": \"USD\"\n    },\n    \"_id\": \"641bf59387aae40037176543\",\n    \"network\": \"bsc\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.100pay.co/api/v1/pay/crypto/convert"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 23 Mar 2023 07:09:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"47"},{"key":"Connection","value":"keep-alive"},{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"2f-1ly+1Asc9i6rVZ/ZyPLyiofbZrw\""},{"key":"CF-Cache-Status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v3?s=a733G7sg6C90WS2FD6KZw3WmT4b7hN54gPXxI54imTTFgjkQQ20ylhr8s7sh3QbvZkquqI8LBDCCqPzJAhPJ7Vup6i%2FhVNKrZNIu5qPZDzIJMwqT%2BO4nKNnfZMcExBYy\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"7ac4d8da5f9b4563-ATL"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400, h3-29=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"amount\": 19.950009004592847,\n    \"currency\": \"USDT\"\n}"}],"_postman_id":"7e733eab-5a69-4c45-81f2-59bc2eb07117"},{"name":"Verify Payments","id":"5bd746cd-50be-4974-8b4d-04000faf4723","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"api-key","value":"ACCOUNT-API-KEY","type":"text"}],"url":"https://api.100pay.co/api/v1/pay/crypto/payment/642c4a119fdaad002df0b09f","description":"<p>To verify a payment, you will need to pass the payment id as a parameter.</p>\n<p>For a more detailed guide on how to do this. There's a detailed Article by Brainy Josh here 👉 <a href=\"https://100pay.co/blog/how-to-verify-crypto-payments-on-100-pay\">How to Verify Crypto Payments on 100Pay</a></p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[]},"isInherited":true,"source":{"_postman_id":"57e4a4b2-11e5-4fe0-a919-e9262081683b","id":"57e4a4b2-11e5-4fe0-a919-e9262081683b","name":"100Pay Developers Documentation","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v1","pay","crypto","payment","642c4a119fdaad002df0b09f"],"host":["api","100pay","co"],"query":[],"variable":[]}},"response":[{"id":"86eaa5e1-6cc6-448e-9e4b-e7176708d677","name":"Verify Payments Example Response","originalRequest":{"method":"POST","header":[{"key":"api-key","value":"ACCOUNT-API-KEY","type":"text"}],"url":"https://api.100pay.co/api/v1/pay/crypto/payment/642c4a119fdaad002df0b09f"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Powered-By","value":"Express"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1786"},{"key":"ETag","value":"W/\"6fa-E+xOtbu9MJuTJGq6DqKqnNQFoLo\""},{"key":"Date","value":"Tue, 04 Apr 2023 16:09:59 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=300"}],"cookie":[],"responseTime":null,"body":"{\n    \"retries\": 0,\n    \"acknowledged\": false,\n    \"dispatched\": true,\n    \"createdAt\": \"2023-04-04T16:00:29.134Z\",\n    \"_id\": \"642c4a119fdaad002df0b09f\",\n    \"chargeId\": \"642c49eb9fdaad002df0b07f\",\n    \"reference\": \"JyHvSJHsWD9Lv9gW\",\n    \"data\": {\n        \"network\": \"algorand\",\n        \"transaction_id\": \"OILDR43H2D7SBTRFRFJHLVQHEK2CKANJ3JMMS432DV6BRIGN7NQA\",\n        \"status\": \"CONFIRMED\",\n        \"timestamp\": \"2023-04-04T16:02:25.619Z\",\n        \"value\": {\n            \"local\": {\n                \"amount\": 16.52,\n                \"currency\": \"NGN\"\n            },\n            \"crypto\": {\n                \"amount\": 0.1,\n                \"currency\": \"ALGO\"\n            }\n        },\n        \"block\": {\n            \"hash\": \"OILDR43H2D7SBTRFRFJHLVQHEK2CKANJ3JMMS432DV6BRIGN7NQA\"\n        },\n        \"charge\": {\n            \"customer\": {\n                \"user_id\": \"1\",\n                \"name\": \"Brainy Josh\",\n                \"phone\": \"08066427168\",\n                \"email\": \"joshuabrendan5@gmail.com\"\n            },\n            \"billing\": {\n                \"currency\": \"NGN\",\n                \"vat\": 0,\n                \"pricing_type\": \"fixed_price\",\n                \"amount\": \"600\",\n                \"description\": \"Payment for your Shop100 Order\",\n                \"country\": \"NG\"\n            },\n            \"status\": {\n                \"context\": {\n                    \"status\": \"underpaid\",\n                    \"value\": 16.52\n                },\n                \"value\": \"underpaid\",\n                \"total_paid\": 16.52\n            },\n            \"ref_id\": \"560932461\",\n            \"payments\": [\n                {\n                    \"network\": \"algorand\",\n                    \"transaction_id\": \"OILDR43H2D7SBTRFRFJHLVQHEK2CKANJ3JMMS432DV6BRIGN7NQA\",\n                    \"status\": \"CONFIRMED\",\n                    \"timestamp\": \"2023-04-04T16:02:25.619Z\",\n                    \"value\": {\n                        \"local\": {\n                            \"amount\": 16.52,\n                            \"currency\": \"NGN\"\n                        },\n                        \"crypto\": {\n                            \"amount\": 0.1,\n                            \"currency\": \"ALGO\"\n                        }\n                    },\n                    \"block\": {\n                        \"height\": null,\n                        \"hash\": \"OILDR43H2D7SBTRFRFJHLVQHEK2CKANJ3JMMS432DV6BRIGN7NQA\"\n                    }\n                }\n            ],\n            \"charge_source\": \"external\",\n            \"createdAt\": \"2023-04-04T16:00:27.943Z\",\n            \"_id\": \"642c49eb9fdaad002df0b07f\",\n            \"metadata\": {\n                \"order_id\": \"642c49eb841ef60040d2b778\",\n                \"charge_ref\": \"642c49eb841ef60040d2b778\",\n                \"customer_id\": \"622f8f67f8c81600420d7769\",\n                \"store_id\": \"62bee01ccbec51004d585ee1\",\n                \"store_email\": \"joshuabrendan5@gmail.com\"\n            },\n            \"call_back_url\": \"https://web.shop100.store/thank-you-page/\",\n            \"app_id\": \"642367e95f09730038029f87\",\n            \"userId\": \"642366ba5f09730038029f55\",\n            \"chargeId\": \"642c49eb9fdaad002df0b07f\",\n            \"__v\": 0\n        }\n    },\n    \"cryptoChargeId\": \"642c49f09fdaad002df0b08e\",\n    \"__v\": 0\n}"}],"_postman_id":"5bd746cd-50be-4974-8b4d-04000faf4723"}],"auth":{"type":"apikey","apikey":{"basicConfig":[]}},"variable":[{"key":"baseUrl","value":"base"},{"key":"baseapi","value":"baseApi"},{"key":"auth-token","value":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJfaWQiOiI2MDI0YTc5MzY0YTA2ZjA3YjY0ZWQzNGYiLCJpYXQiOjE2MTMwNjc4MDJ9.yU9_CpuAwb_Zq6kJtlUtPc__0j1WPIbyg6d88819P6o"}]}