"{\n    \"variable\": [\n        {\n            \"id\": \"baseUrl\",\n            \"key\": \"baseUrl\",\n            \"type\": \"string\",\n            \"name\": \"string\",\n            \"value\": \"http:\\\/\\\/www.cryptopay-panel.com\"\n        }\n    ],\n    \"info\": {\n        \"name\": \"NoderPay Merchant API Documentation\",\n        \"_postman_id\": \"31099c91-35a6-4e84-bf3a-66370895a4e5\",\n        \"description\": \"\",\n        \"schema\": \"https:\\\/\\\/schema.getpostman.com\\\/json\\\/collection\\\/v2.1.0\\\/collection.json\"\n    },\n    \"item\": [\n        {\n            \"name\": \"Endpoints\",\n            \"description\": \"\",\n            \"item\": [\n                {\n                    \"name\": \"Display a listing of the authenticated merchant's stores.\",\n                    \"request\": {\n                        \"url\": {\n                            \"host\": \"{{baseUrl}}\",\n                            \"path\": \"api\\\/v1\\\/stores\",\n                            \"query\": [],\n                            \"raw\": \"{{baseUrl}}\\\/api\\\/v1\\\/stores\"\n                        },\n                        \"method\": \"GET\",\n                        \"header\": [\n                            {\n                                \"key\": \"Content-Type\",\n                                \"value\": \"application\\\/json\"\n                            },\n                            {\n                                \"key\": \"Accept\",\n                                \"value\": \"application\\\/json\"\n                            }\n                        ],\n                        \"body\": null,\n                        \"description\": \"\"\n                    },\n                    \"response\": [\n                        {\n                            \"header\": [\n                                {\n                                    \"key\": \"cache-control\",\n                                    \"value\": \"no-cache, private\"\n                                },\n                                {\n                                    \"key\": \"content-type\",\n                                    \"value\": \"application\\\/json\"\n                                },\n                                {\n                                    \"key\": \"access-control-allow-origin\",\n                                    \"value\": \"*\"\n                                }\n                            ],\n                            \"code\": 401,\n                            \"body\": \"{\\\"message\\\":\\\"Unauthenticated. Invalid API Key.\\\"}\",\n                            \"name\": \"\"\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"Create Invoice\",\n                    \"request\": {\n                        \"url\": {\n                            \"host\": \"{{baseUrl}}\",\n                            \"path\": \"api\\\/v1\\\/stores\\\/:store_id\\\/invoices\",\n                            \"query\": [],\n                            \"raw\": \"{{baseUrl}}\\\/api\\\/v1\\\/stores\\\/:store_id\\\/invoices\",\n                            \"variable\": [\n                                {\n                                    \"id\": \"store_id\",\n                                    \"key\": \"store_id\",\n                                    \"value\": 16,\n                                    \"description\": \"The ID of the store.\"\n                                }\n                            ]\n                        },\n                        \"method\": \"POST\",\n                        \"header\": [\n                            {\n                                \"key\": \"Content-Type\",\n                                \"value\": \"application\\\/json\"\n                            },\n                            {\n                                \"key\": \"Accept\",\n                                \"value\": \"application\\\/json\"\n                            }\n                        ],\n                        \"body\": {\n                            \"mode\": \"raw\",\n                            \"raw\": \"{\\\"amount\\\":0.001,\\\"currency\\\":\\\"BTC\\\",\\\"order_id\\\":\\\"ORD-123\\\",\\\"buyer_email\\\":\\\"jdach@example.org\\\"}\"\n                        },\n                        \"description\": \"Creates a new invoice for the specified store.\\n\\nThis endpoint creates a BTCPay invoice and stores it in the application database.\"\n                    },\n                    \"response\": [\n                        {\n                            \"header\": [],\n                            \"code\": 201,\n                            \"body\": \"{\\n  \\\"success\\\": true,\\n  \\\"data\\\": {\\n    \\\"id\\\": 1,\\n    \\\"invoice_number\\\": \\\"INV-123456\\\",\\n    \\\"amount\\\": 100,\\n    \\\"currency\\\": \\\"USD\\\",\\n    \\\"status\\\": \\\"new\\\"\\n  }\\n}\",\n                            \"name\": \"\"\n                        },\n                        {\n                            \"header\": [],\n                            \"code\": 403,\n                            \"body\": \"{\\n  \\\"success\\\": false,\\n  \\\"message\\\": \\\"You cannot create an invoice.\\\"\\n}\",\n                            \"name\": \"\"\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"Show Invoice\",\n                    \"request\": {\n                        \"url\": {\n                            \"host\": \"{{baseUrl}}\",\n                            \"path\": \"api\\\/v1\\\/invoices\\\/:invoice_id\",\n                            \"query\": [],\n                            \"raw\": \"{{baseUrl}}\\\/api\\\/v1\\\/invoices\\\/:invoice_id\",\n                            \"variable\": [\n                                {\n                                    \"id\": \"invoice_id\",\n                                    \"key\": \"invoice_id\",\n                                    \"value\": 1,\n                                    \"description\": \"The ID of the invoice.\"\n                                },\n                                {\n                                    \"id\": \"invoice\",\n                                    \"key\": \"invoice\",\n                                    \"value\": 25,\n                                    \"description\": \"The invoice ID.\"\n                                }\n                            ]\n                        },\n                        \"method\": \"GET\",\n                        \"header\": [\n                            {\n                                \"key\": \"Content-Type\",\n                                \"value\": \"application\\\/json\"\n                            },\n                            {\n                                \"key\": \"Accept\",\n                                \"value\": \"application\\\/json\"\n                            }\n                        ],\n                        \"body\": null,\n                        \"description\": \"Retrieves details of a specific invoice.\"\n                    },\n                    \"response\": [\n                        {\n                            \"header\": [],\n                            \"code\": 200,\n                            \"body\": \"{\\n  \\\"success\\\": true,\\n  \\\"data\\\": {\\n    \\\"id\\\": 25,\\n    \\\"invoice_number\\\": \\\"INV-123456\\\",\\n    \\\"amount\\\": 100,\\n    \\\"currency\\\": \\\"USD\\\",\\n    \\\"status\\\": \\\"paid\\\"\\n  }\\n}\",\n                            \"name\": \"\"\n                        },\n                        {\n                            \"header\": [],\n                            \"code\": 403,\n                            \"body\": \"{\\n  \\\"message\\\": \\\"This action is unauthorized.\\\"\\n}\",\n                            \"name\": \"\"\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"Display a summary of merchant metrics.\",\n                    \"request\": {\n                        \"url\": {\n                            \"host\": \"{{baseUrl}}\",\n                            \"path\": \"api\\\/v1\\\/balance-or-summary\",\n                            \"query\": [],\n                            \"raw\": \"{{baseUrl}}\\\/api\\\/v1\\\/balance-or-summary\"\n                        },\n                        \"method\": \"GET\",\n                        \"header\": [\n                            {\n                                \"key\": \"Content-Type\",\n                                \"value\": \"application\\\/json\"\n                            },\n                            {\n                                \"key\": \"Accept\",\n                                \"value\": \"application\\\/json\"\n                            }\n                        ],\n                        \"body\": null,\n                        \"description\": \"\"\n                    },\n                    \"response\": [\n                        {\n                            \"header\": [\n                                {\n                                    \"key\": \"cache-control\",\n                                    \"value\": \"no-cache, private\"\n                                },\n                                {\n                                    \"key\": \"content-type\",\n                                    \"value\": \"application\\\/json\"\n                                },\n                                {\n                                    \"key\": \"access-control-allow-origin\",\n                                    \"value\": \"*\"\n                                }\n                            ],\n                            \"code\": 401,\n                            \"body\": \"{\\\"message\\\":\\\"Unauthenticated. Invalid API Key.\\\"}\",\n                            \"name\": \"\"\n                        }\n                    ]\n                },\n                {\n                    \"name\": \"POST api\\\/v1\\\/stores\\\/{store_id}\\\/webhook-test\",\n                    \"request\": {\n                        \"url\": {\n                            \"host\": \"{{baseUrl}}\",\n                            \"path\": \"api\\\/v1\\\/stores\\\/:store_id\\\/webhook-test\",\n                            \"query\": [],\n                            \"raw\": \"{{baseUrl}}\\\/api\\\/v1\\\/stores\\\/:store_id\\\/webhook-test\",\n                            \"variable\": [\n                                {\n                                    \"id\": \"store_id\",\n                                    \"key\": \"store_id\",\n                                    \"value\": 16,\n                                    \"description\": \"The ID of the store.\"\n                                }\n                            ]\n                        },\n                        \"method\": \"POST\",\n                        \"header\": [\n                            {\n                                \"key\": \"Content-Type\",\n                                \"value\": \"application\\\/json\"\n                            },\n                            {\n                                \"key\": \"Accept\",\n                                \"value\": \"application\\\/json\"\n                            }\n                        ],\n                        \"body\": null,\n                        \"description\": \"\"\n                    },\n                    \"response\": []\n                }\n            ]\n        }\n    ],\n    \"auth\": {\n        \"type\": \"bearer\",\n        \"bearer\": [\n            {\n                \"key\": \"Authorization\",\n                \"type\": \"string\"\n            }\n        ]\n    }\n}"