{
    "variables": [],
    "info": {
        "name": "Local-CryptoCoin.pro API",
        "_postman_id": "1521e0ee-bb5d-4889-adb7-efab58ae28b9",
        "description": "",
        "schema": "https:\/\/schema.getpostman.com\/json\/collection\/v2.0.0\/collection.json"
    },
    "item": [
        {
            "name": "Authentication",
            "description": "",
            "item": [
                {
                    "name": "User Authenticate via Platform",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/authenticate-jwt\/:platform",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Token",
                                "value": "{jwt-token}"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to authenticate an user with a Platform\n\n<aside class=\"success\">Use either user <b>email<\/b> or user <b>id<\/b> in JWT payload<\/aside>\n\n###Headers:\n{\n  Content-Type: application-json,\n  Token: jwt-token\n}\n\nJWT Payload { email|id: string, expire: required|timestamp|after_or_equal:now }\n\n - email: the user email\n - id: the user id\n - expire: timestamp in future\n\nEncription RS512\n\n<aside class=\"info\">Use received Token to handle authentication endpoints via header <b>Authorization: Bearer {token}<\/b><\/aside>",
                        "response": []
                    }
                },
                {
                    "name": "User Authenticate",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/authenticate",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"email\": \"email@gmail.com\",\n    \"password\": \"12345678\"\n}"
                        },
                        "description": "Use this endpoint to authenticate as an user\n\n<aside class=\"info\">Use received Token to handle authentication endpoints via header <b>Authorization: Bearer {token}<\/b><\/aside>",
                        "response": []
                    }
                },
                {
                    "name": "User Logout",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/logout",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to logout an user.\nIt is used to destroy tokens for both types of authentication.",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Bank",
            "description": "\nAPIs for managing user banks",
            "item": [
                {
                    "name": "Bank Create",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/bank",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"bankName\": \"ING Bank\",\n    \"iban\": \"RO020NGB00009999002858000\",\n    \"swift\": \"123456\",\n    \"currency\": \"EUR\"\n}"
                        },
                        "description": "Use this endpoint to create user bank.",
                        "response": []
                    }
                },
                {
                    "name": "Bank Index",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/bank",
                            "query": [
                                {
                                    "key": "status",
                                    "value": "confirmed",
                                    "description": "Field to sort by Status. Available values: confirmed,rejected,pending.",
                                    "disabled": false
                                },
                                {
                                    "key": "currency",
                                    "value": "EUR",
                                    "description": "Field to sort by Currency. Available values: EUR, USD, etc.",
                                    "disabled": false
                                }
                            ],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get user banks.",
                        "response": []
                    }
                },
                {
                    "name": "Bank Show",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/bank\/:bank",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "bank",
                                    "key": "bank",
                                    "value": "aa7a66a2-fbb5-422e-bc52-7912fa2c96f9",
                                    "description": "The bank ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get user specific bank.",
                        "response": []
                    }
                },
                {
                    "name": "Bank Destroy",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/bank\/:bank",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "bank",
                                    "key": "bank",
                                    "value": "aa7a66a2-fbb5-422e-bc52-7912fa2c96f9",
                                    "description": "The bank ID."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to destroy user bank.\n\n<aside class=\"notice\">You can delete any user bank data only is that record has not been used in any checkout, quote or order action.<\/aside>",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Card",
            "description": "\nAPIs for managing user cards",
            "item": [
                {
                    "name": "Card Create",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/card",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"cardImage1\": \"File\",\n    \"cardImage2\": \"File\",\n    \"holderName\": \"Alin Ionut\",\n    \"expirationDate\": \"10\\\/19\",\n    \"lastFourDigits\": \"1234\",\n    \"alias\": \"MyFavoriteCard\"\n}"
                        },
                        "description": "Use this endpoint to create a user card.\n\n<aside class=\"notice\">Any file type property can also be replaced with a user UUID temporary file!<\/aside>",
                        "response": []
                    }
                },
                {
                    "name": "Card Index",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/card",
                            "query": [
                                {
                                    "key": "status",
                                    "value": "confirmed",
                                    "description": "Field to sort by Status. Available values: confirmed,rejected,pending.",
                                    "disabled": false
                                }
                            ],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get user cards.",
                        "response": []
                    }
                },
                {
                    "name": "Card Show",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/card\/:card",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "card",
                                    "key": "card",
                                    "value": "5d482936-d7b4-4ef2-bef7-a230ca712a4b",
                                    "description": "The card ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get a user card.",
                        "response": []
                    }
                },
                {
                    "name": "Card Update",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/card\/:card",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "card",
                                    "key": "card",
                                    "value": "5d482936-d7b4-4ef2-bef7-a230ca712a4b",
                                    "description": "The card ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"cardImage1\": \"File\",\n    \"cardImage2\": \"File\",\n    \"holderName\": \"Alin Ionut\",\n    \"expirationDate\": \"10\\\/19\",\n    \"lastFourDigits\": \"1234\",\n    \"alias\": \"MyFavoriteCard\"\n}"
                        },
                        "description": "Use this endpoint to update a user card.\n\n<aside class=\"notice\">Any file type property can also be replaced with a user UUID temporary file!<\/aside>\n\n<aside class=\"warning\">If the Card is expired, all fields are mandatory. otherwise only alias is required.<\/aside>",
                        "response": []
                    }
                },
                {
                    "name": "Card Destroy",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/card\/:card",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "card",
                                    "key": "card",
                                    "value": "5d482936-d7b4-4ef2-bef7-a230ca712a4b",
                                    "description": "The card ID."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to destroy user bank.\n\n<aside class=\"notice\">You can delete any user card data only is that record has not been used in any checkout, quote or order action.<\/aside>",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Checkout",
            "description": "\nAPIs for managing checkout",
            "item": [
                {
                    "name": "Checkout Index",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/checkout",
                            "query": [
                                {
                                    "key": "status",
                                    "value": "created",
                                    "description": "Field to sort by Status. Available values: created,processing,finished.",
                                    "disabled": false
                                }
                            ],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get user checkouts.",
                        "response": []
                    }
                },
                {
                    "name": "Checkout Show",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/checkout\/:checkout",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "checkout",
                                    "key": "checkout",
                                    "value": "fc0388dc-63c5-4fbe-bc53-c11ba3bdb94e",
                                    "description": "The checkout ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get a user checkout.",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Country",
            "description": "\nAPIs for managing countries",
            "item": [
                {
                    "name": "Country Index",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/countries",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all available platform Countries.",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Currency",
            "description": "\nAPIs for managing currencies",
            "item": [
                {
                    "name": "Currency Index",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/currencies\/:asset",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all available platform Currencies.",
                        "response": []
                    }
                },
                {
                    "name": "Currency History",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/currencies\/:asset\/history\/:period",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "asset",
                                    "key": "asset",
                                    "value": "ETH",
                                    "description": "The asset Symbol."
                                },
                                {
                                    "id": "period",
                                    "key": "period",
                                    "value": "day%7Cweek%7Cmonth%7Cquarter%7Csemester%7Cyear",
                                    "description": "The history period value."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all available platform Currencies Histories.",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Deposit",
            "description": "\nAPIs for managing deposits",
            "item": [
                {
                    "name": "Deposit Store",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/deposit",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"type\": \"coin\",\n    \"symbol\": \"ETH\",\n    \"amount\": \"100\",\n    \"wallet\": \"0x500cab8a5706bf41352534a4754baab87b24a45e\",\n    \"txID\": \"0xccb5d3e14b73a10708839f9d4fb9a733696b0bd10a84782cd52fc70d13595a25\"\n}"
                        },
                        "description": "Use this endpoint to store a user deposit order.",
                        "response": []
                    }
                },
                {
                    "name": "Deposit Address",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/deposit\/address",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"asset\": \"ETH\",\n    \"destination\": \"broker\"\n}"
                        },
                        "description": "Use this endpoint to get a user deposit address.",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Documentation",
            "description": "\nAPIs for managing documentation",
            "item": [
                {
                    "name": "Categories Index",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/documentation\/categories",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all Categories.",
                        "response": []
                    }
                },
                {
                    "name": "Categories show",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/documentation\/categories\/:slug",
                            "query": [],
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "lorem-ipsum",
                                    "description": "The slug of category."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get specific Category.",
                        "response": []
                    }
                },
                {
                    "name": "Documentation Index",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/documentation",
                            "query": []
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all documentation.",
                        "response": []
                    }
                },
                {
                    "name": "Documentation Show",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/documentation\/:slug",
                            "query": [
                                {
                                    "key": "type",
                                    "value": "html",
                                    "description": "string How to display the content (nullable\\|in:html,markdown).",
                                    "disabled": false
                                }
                            ],
                            "variable": [
                                {
                                    "id": "slug",
                                    "key": "slug",
                                    "value": "lorem-ipsum",
                                    "description": "The slug of document."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get documentation with specific slug.",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "KYC",
            "description": "\nAPIs for managing user KYC",
            "item": [
                {
                    "name": "KYC Show",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/kyc",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get user KYC.",
                        "response": []
                    }
                },
                {
                    "name": "KYC Create",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/kyc",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"country\": \"RO\",\n    \"city\": \"Pitesti\",\n    \"zip\": \"123456\",\n    \"street\": \"Street name Nr. 1\",\n    \"documents\": {\n        \"governmentIdFront\": \"image\",\n        \"governmentIdBack\": \"image\",\n        \"passport\": \"image\",\n        \"utilityBill\": \"image\",\n        \"selfieWithId\": \"image\"\n    },\n    \"edd\": {\n        \"transactionsPurpose\": \"investments\",\n        \"transactionsPurposeOther\": \"any desired purpose here\",\n        \"transactionsNatureValue\": 1,\n        \"transactionsNatureFrequency\": 1,\n        \"fundsSource\": \"1\",\n        \"fundsSourceOther\": \"any source of funds here\",\n        \"fundsSourceFile\": \"image\",\n        \"fundsOrigin\": \"personal_savings\",\n        \"fundsOriginOther\": \"any origin of funds here\",\n        \"fundsOriginFile\": \"image\"\n    }\n}"
                        },
                        "description": "Use this endpoint to create user full KYC.\n\n<aside class=\"notice\">The EDD is mandatory only from a specific user balance point. From first kyc submit, it can be ignored.<\/aside>\n\n<aside class=\"notice\">Any file type property can also be replaced with a user UUID temporary file!<\/aside>",
                        "response": []
                    }
                },
                {
                    "name": "KYC Create Personal Data",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/kyc\/personal-data",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"firstName\": \"Alin\",\n    \"lastName\": \"Ionut\",\n    \"dateOfBirth\": \"1900-12-31\"\n}"
                        },
                        "description": "Use this endpoint to update an existing User model.",
                        "response": []
                    }
                },
                {
                    "name": "KYC Create Address",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/kyc\/address",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"country\": \"RO\",\n    \"city\": \"Pitesti\",\n    \"zip\": \"123456\",\n    \"street\": \"Street name Nr. 1\",\n    \"utilityBill\": \"image\"\n}"
                        },
                        "description": "Use this endpoint to create user KYC Address.\n\n<aside class=\"notice\">Any file type property can also be replaced with a user UUID temporary file!<\/aside>",
                        "response": []
                    }
                },
                {
                    "name": "KYC Create Document",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/kyc\/document",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"type\": \"governmentIdFront\",\n    \"file\": \"File\"\n}"
                        },
                        "description": "Use this endpoint to create user KYC document.\n\n<aside class=\"notice\">If type field is not provided, the file will be stored temporarry for you to further attach to a desired resource. Also, response will be a FileResource:<\/aside>\n\n<aside class=\"notice\">{\"data\":{\"id\":\"c6eba22d-19dc-43d5-b1f1-8eb5e62f5ff4\",\"url\":\"http:\\\/\\\/dev-api-checkout.cryptocoin-app.test\\\/api\\\/v1\\\/user\\\/0e6cbc2e-ee3b-4144-8114-0c6b3545c889\\\/download\\\/file\\\/2098?expires=1561707478&signature=17db973c374df94bb971e40635f275a9c10f46fd769bd223e21b803b9f67e1ec\",\"createdAt\":1561705678,\"validUntil\":1564297678}}<\/aside>\n\n<aside class=\"warning\">Temporary files are stored for one month.<\/aside>",
                        "response": []
                    }
                },
                {
                    "name": "KYC Create Video",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/kyc\/video",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"date\": \"2020-12-30 12:00:00\"\n}"
                        },
                        "description": "Use this endpoint to create user KYC Video.",
                        "response": []
                    }
                },
                {
                    "name": "KYC Create EDD",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/kyc\/edd",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"transactionsPurpose\": \"investments\",\n    \"transactionsPurposeOther\": \"any desired purpose here\",\n    \"transactionsNatureValue\": 1,\n    \"transactionsNatureFrequency\": 1,\n    \"fundsSource\": \"1\",\n    \"fundsSourceOther\": \"any source of funds here\",\n    \"fundsSourceFile\": \"image\",\n    \"fundsOrigin\": \"personal_savings\",\n    \"fundsOriginOther\": \"any origin of funds here\",\n    \"fundsOriginFile\": \"image\"\n}"
                        },
                        "description": "Use this endpoint to create user KYC EDD.\n\n<aside class=\"notice\">Any file type property can also be replaced with a user UUID temporary file!<\/aside>",
                        "response": []
                    }
                },
                {
                    "name": "KYC Phone Create",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/kyc\/phone\/add",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"phone\": \"40700000000\"\n}"
                        },
                        "description": "Use this endpoint to add user Phones.",
                        "response": []
                    }
                },
                {
                    "name": "KYC Phone Verify",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/kyc\/phone\/verify",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"code\": \"111111\",\n    \"phone\": \"40700000000\"\n}"
                        },
                        "description": "Use this endpoint to verify SMS code.",
                        "response": []
                    }
                },
                {
                    "name": "KYC Phone Reverify",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/kyc\/phone\/reverify",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"phone\": \"40700000000\"\n}"
                        },
                        "description": "Use this endpoint to reverify SMS code.",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Notification",
            "description": "\nAPIs for managing notifications",
            "item": [
                {
                    "name": "Notification Permanently",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/notifications\/permanently",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all user permanently Notifications.",
                        "response": []
                    }
                },
                {
                    "name": "Notification Temporary",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/notifications\/temporary\/:notification_id",
                            "query": [
                                {
                                    "key": "type",
                                    "value": "unread",
                                    "description": "Field to sort by unread on read notifications. Available values: read,unread.",
                                    "disabled": false
                                }
                            ],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all user temporary Notifications.\n\n<aside class=\"notice\">Accessing a temporary notification will mark it as read.<\/aside>",
                        "response": []
                    }
                },
                {
                    "name": "Notification Temporary Mark As Read",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/notifications\/temporary\/mark-as-read",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to mark as read all temporary notifications",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Order",
            "description": "\nAPIs for managing orders",
            "item": [
                {
                    "name": "Order Index",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/order",
                            "query": [
                                {
                                    "key": "status",
                                    "value": "APPROVED",
                                    "description": "Field to sort by Status. Available values: APPROVED,REJECTED,PROCESSING_PAYMENT,PAYMENT_WAITING.",
                                    "disabled": false
                                },
                                {
                                    "key": "typeOperationName",
                                    "value": "buy_with_fiat",
                                    "description": "Field to sort by TypeOperationName. Available values: deposit,buy_with_fiat,buy_with_crypto,sell_to_fiat,sell_to_crypto,withdraw,withdrawIco.",
                                    "disabled": false
                                },
                                {
                                    "key": "asset",
                                    "value": "ETH",
                                    "description": "Field to sort by Asset. Available values: ETH,XBT,IPSX,etc.",
                                    "disabled": false
                                }
                            ],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get user order history.",
                        "response": []
                    }
                },
                {
                    "name": "Order Coin Index",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/order\/coin",
                            "query": [
                                {
                                    "key": "status",
                                    "value": "APPROVED",
                                    "description": "Field to sort by Status. Available values: APPROVED,REJECTED,PROCESSING_PAYMENT,PAYMENT_WAITING.",
                                    "disabled": false
                                },
                                {
                                    "key": "typeOperationName",
                                    "value": "buy_with_fiat",
                                    "description": "Field to sort by TypeOperationName. Available values: deposit,buy_with_fiat,buy_with_crypto,sell_to_fiat,sell_to_crypto,withdraw,withdrawIco.",
                                    "disabled": false
                                },
                                {
                                    "key": "asset",
                                    "value": "ETH",
                                    "description": "Field to sort by Asset. Available values: ETH,XBT,IPSX,etc.",
                                    "disabled": false
                                }
                            ],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get user order coin history.",
                        "response": []
                    }
                },
                {
                    "name": "Order Token Index",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/order\/token",
                            "query": [
                                {
                                    "key": "status",
                                    "value": "APPROVED",
                                    "description": "Field to sort by Status. Available values: APPROVED,REJECTED,PROCESSING_PAYMENT,PAYMENT_WAITING.",
                                    "disabled": false
                                },
                                {
                                    "key": "typeOperationName",
                                    "value": "buy_with_fiat",
                                    "description": "Field to sort by TypeOperationName. Available values: deposit,buy_with_fiat,buy_with_crypto,sell_to_fiat,sell_to_crypto,withdraw,withdrawIco.",
                                    "disabled": false
                                },
                                {
                                    "key": "asset",
                                    "value": "ETH",
                                    "description": "Field to sort by Asset. Available values: ETH,XBT,IPSX,etc.",
                                    "disabled": false
                                }
                            ],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get user order token history.",
                        "response": []
                    }
                },
                {
                    "name": "Order Show",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/order\/:order",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "order",
                                    "key": "order",
                                    "value": "f7cd7280-b75c-45ac-ac26-193162e74fc1",
                                    "description": "The order ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get a user order coin.",
                        "response": []
                    }
                },
                {
                    "name": "Order Upload Proof Of Payment",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/order\/:order\/payment-confirmation",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "order",
                                    "key": "order",
                                    "value": "f7cd7280-b75c-45ac-ac26-193162e74fc1",
                                    "description": "The order ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"file\": \"image\"\n}"
                        },
                        "description": "Use this endpoint to upload proof of payment for a order.",
                        "response": []
                    }
                },
                {
                    "name": "Order OTC Confirmation",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/order\/:order\/otc-confirmation",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "order",
                                    "key": "order",
                                    "value": "f7cd7280-b75c-45ac-ac26-193162e74fc1",
                                    "description": "The order ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"action\": \"accept\",\n    \"observation\": \"I like this offer, thanks.\"\n}"
                        },
                        "description": "Use this endpoint to responde a OTC offer.",
                        "response": []
                    }
                },
                {
                    "name": "Order Wallet Confirmation",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/order\/:order\/wallet-confirmation",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "order",
                                    "key": "order",
                                    "value": "f7cd7280-b75c-45ac-ac26-193162e74fc1",
                                    "description": "The order ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to responde a Wallet change.",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Phone",
            "description": "\nAPIs for managing phones",
            "item": [
                {
                    "name": "Phone Index",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/phone",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get user phones.",
                        "response": []
                    }
                },
                {
                    "name": "Phone Show",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/phone\/:phone",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "phone",
                                    "key": "phone",
                                    "value": "aa7a66a2-fbb5-422e-bc52-7912fa2c96f9",
                                    "description": "The phone ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get user specific phone.",
                        "response": []
                    }
                },
                {
                    "name": "Phone Set Default",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/phone\/:phone\/set-default",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "phone",
                                    "key": "phone",
                                    "value": "e1f151a5-a45f-4936-8feb-f5e8fad15056",
                                    "description": "The phone ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to set a phone as default.",
                        "response": []
                    }
                },
                {
                    "name": "Phone Destroy",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/phone\/:phone",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "phone",
                                    "key": "phone",
                                    "value": "5d482936-d7b4-4ef2-bef7-a230ca712a4b",
                                    "description": "The phone ID."
                                }
                            ]
                        },
                        "method": "DELETE",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to destroy user phone.\n\n<aside class=\"notice\">You can delete any user phone that is not set as default.<\/aside>",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Platform",
            "description": "\nAPIs for managing platform",
            "item": [
                {
                    "name": "Platform Show",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/platform\/:platform",
                            "query": [],
                            "variable": [
                                {
                                    "id": "platform",
                                    "key": "platform",
                                    "value": "5f374d03-be0d-4dd2-b6ef-112a2bec5963",
                                    "description": "The platform ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Token",
                                "value": "{jwt-token}"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get platform details.\n\n###Headers\n\nRequired header\n{\n  \"Token\": \"jwt-token\"\n}\n\njwt-token = RS512 encoded jwt with payload { platform: required|string|in:{platformUUId}, expire: required|timestamp|after_or_equal:now }",
                        "response": []
                    }
                },
                {
                    "name": "Platform Update",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/platform\/:platform",
                            "query": [],
                            "variable": [
                                {
                                    "id": "platform",
                                    "key": "platform",
                                    "value": "5f374d03-be0d-4dd2-b6ef-112a2bec5963",
                                    "description": "The platform ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Token",
                                "value": "{jwt-token}"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"name\": \"Google\",\n    \"baseUrl\": \"https:\\\/\\\/google.com\\\/\",\n    \"ienUrl\": \"https:\\\/\\\/google.com\\\/\",\n    \"ienType\": \"jwt\",\n    \"colorCode\": \"#ffffff\"\n}"
                        },
                        "description": "Use this endpoint to update platform details.\n\n###Headers\n\nRequired header\n{\n  \"Token\": \"jwt-token\"\n}\n\njwt-token = RS512 encoded jwt with payload { platform: required|string|in:{platformUUId}, expire: required|timestamp|after_or_equal:now }",
                        "response": []
                    }
                },
                {
                    "name": "Platform Staff",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/platform\/:platform\/staff",
                            "query": [],
                            "variable": [
                                {
                                    "id": "platform",
                                    "key": "platform",
                                    "value": "5f374d03-be0d-4dd2-b6ef-112a2bec5963",
                                    "description": "The platform ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Token",
                                "value": "{jwt-token}"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all platform's staff members.\n\n###Headers\n\nRequired header\n{\n  \"Token\": \"jwt-token\"\n}\n\njwt-token = RS512 encoded jwt with payload { platform: required|string|in:{platformUUId}, expire: required|timestamp|after_or_equal:now }",
                        "response": []
                    }
                },
                {
                    "name": "Platform Users",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/platform\/:platform\/user",
                            "query": [],
                            "variable": [
                                {
                                    "id": "platform",
                                    "key": "platform",
                                    "value": "5f374d03-be0d-4dd2-b6ef-112a2bec5963",
                                    "description": "The platform ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Token",
                                "value": "{jwt-token}"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all users attached to platform.\n\n###Headers\n\nRequired header\n{\n  \"Token\": \"jwt-token\"\n}\n\njwt-token = RS512 encoded jwt with payload { platform: required|string|in:{platformUUId}, expire: required|timestamp|after_or_equal:now }",
                        "response": []
                    }
                },
                {
                    "name": "Platform Orders",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/platform\/:platform\/order",
                            "query": [],
                            "variable": [
                                {
                                    "id": "platform",
                                    "key": "platform",
                                    "value": "5f374d03-be0d-4dd2-b6ef-112a2bec5963",
                                    "description": "The platform ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Token",
                                "value": "{jwt-token}"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all orders made by platform users.\n\n###Headers\n\nRequired header\n{\n  \"Token\": \"jwt-token\"\n}\n\njwt-token = RS512 encoded jwt with payload { platform: required|string|in:{platformUUId}, expire: required|timestamp|after_or_equal:now }",
                        "response": []
                    }
                },
                {
                    "name": "Platform Quotes",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/platform\/:platform\/quote",
                            "query": [],
                            "variable": [
                                {
                                    "id": "platform",
                                    "key": "platform",
                                    "value": "5f374d03-be0d-4dd2-b6ef-112a2bec5963",
                                    "description": "The platform ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Token",
                                "value": "{jwt-token}"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all quotes made by platform users.\n\n###Headers\n\nRequired header\n{\n  \"Token\": \"jwt-token\"\n}\n\njwt-token = RS512 encoded jwt with payload { platform: required|string|in:{platformUUId}, expire: required|timestamp|after_or_equal:now }",
                        "response": []
                    }
                },
                {
                    "name": "Platform Checkouts",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/platform\/:platform\/checkout",
                            "query": [],
                            "variable": [
                                {
                                    "id": "platform",
                                    "key": "platform",
                                    "value": "5f374d03-be0d-4dd2-b6ef-112a2bec5963",
                                    "description": "The platform ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Token",
                                "value": "{jwt-token}"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all checkouts made by platform users.\n\n###Headers\n\nRequired header\n{\n  \"Token\": \"jwt-token\"\n}\n\njwt-token = RS512 encoded jwt with payload { platform: required|string|in:{platformUUId}, expire: required|timestamp|after_or_equal:now }",
                        "response": []
                    }
                },
                {
                    "name": "Platform Transfers",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/platform\/:platform\/transfer",
                            "query": [],
                            "variable": [
                                {
                                    "id": "platform",
                                    "key": "platform",
                                    "value": "5f374d03-be0d-4dd2-b6ef-112a2bec5963",
                                    "description": "The platform ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Token",
                                "value": "{jwt-token}"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all transfers made by platform users.\n\n###Headers\n\nRequired header\n{\n  \"Token\": \"jwt-token\"\n}\n\njwt-token = RS512 encoded jwt with payload { platform: required|string|in:{platformUUId}, expire: required|timestamp|after_or_equal:now }",
                        "response": []
                    }
                },
                {
                    "name": "Platform Lock",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/platform\/:platform\/lock",
                            "query": [],
                            "variable": [
                                {
                                    "id": "platform",
                                    "key": "platform",
                                    "value": "5f374d03-be0d-4dd2-b6ef-112a2bec5963",
                                    "description": "The platform ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Token",
                                "value": "{jwt-token}"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to lock platform.\n\n###Headers\n\nRequired header\n{\n  \"Token\": \"jwt-token\"\n}\n\njwt-token = RS512 encoded jwt with payload { platform: required|string|in:{platformUUId}, expire: required|timestamp|after_or_equal:now }",
                        "response": []
                    }
                },
                {
                    "name": "Platform Securities",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/platform\/:platform\/securities",
                            "query": [],
                            "variable": [
                                {
                                    "id": "platform",
                                    "key": "platform",
                                    "value": "5f374d03-be0d-4dd2-b6ef-112a2bec5963",
                                    "description": "The platform ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Token",
                                "value": "{jwt-token}"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all API securities made by platform.\n\n###Headers\n\nRequired header\n{\n  \"Token\": \"jwt-token\"\n}\n\njwt-token = RS512 encoded jwt with payload { platform: required|string|in:{platformUUId}, expire: required|timestamp|after_or_equal:now }",
                        "response": []
                    }
                },
                {
                    "name": "Platform IEN Requests",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/platform\/:platform\/ien-requests",
                            "query": [],
                            "variable": [
                                {
                                    "id": "platform",
                                    "key": "platform",
                                    "value": "5f374d03-be0d-4dd2-b6ef-112a2bec5963",
                                    "description": "The platform ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Token",
                                "value": "{jwt-token}"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all IEN Requests made by platform.\n\n###Headers\n\nRequired header\n{\n  \"Token\": \"jwt-token\"\n}\n\njwt-token = RS512 encoded jwt with payload { platform: required|string|in:{platformUUId}, expire: required|timestamp|after_or_equal:now }",
                        "response": []
                    }
                },
                {
                    "name": "Platform API Requests",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/platform\/:platform\/api-requests",
                            "query": [],
                            "variable": [
                                {
                                    "id": "platform",
                                    "key": "platform",
                                    "value": "5f374d03-be0d-4dd2-b6ef-112a2bec5963",
                                    "description": "The platform ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Token",
                                "value": "{jwt-token}"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all API Requests made by platform.\n\n###Headers\n\nRequired header\n{\n  \"Token\": \"jwt-token\"\n}\n\njwt-token = RS512 encoded jwt with payload { platform: required|string|in:{platformUUId}, expire: required|timestamp|after_or_equal:now }",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Quote",
            "description": "\nAPIs for managing quotes",
            "item": [
                {
                    "name": "Quote Create",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/quote",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "ebf8e81e-fdfd-4da9-84e4-b5172b6f14f3s",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"type\": \"coin\",\n    \"orderType\": \"buy_with_crypto\",\n    \"secondOrderType\": \"withdraw\",\n    \"orderAmount\": \"1.0010\",\n    \"orderSymbol\": \"ETH\",\n    \"orderPaymentSymbol\": \"EUR\",\n    \"orderPaymentMethod\": \"11b73ec1-5b19-4844-a5c9-42bd177b64c3\",\n    \"orderPaymentType\": \"bank\",\n    \"wallet\": \"1ca2361d-ba5c-4d11-8640-0eca9f25e85f\"\n}"
                        },
                        "description": "Use this endpoint to create a user quote.\n\n<aside class=\"notice\"><b>orderPaymentSymbol<\/b> is dinamically required depending of <b>orderType<\/b>, as following:<\/aside>\n<aside class=\"notice\">If orderType = buy_with_crypto and type = coin, orderPaymentSymbol can be only a pseudocoin symbol accepted, like USDT.<\/aside>\n<aside class=\"notice\">If orderType = buy_with_crypto and type = token, orderPaymentSymbol can be any coin and pseudocoin accepted, like: ETH, USDT.<\/aside>\n<aside class=\"notice\">If orderType = buy_with_fiat and type = coin|token, orderPaymentSymbol can be any fiat accepted, like: EUR.<\/aside>\n<aside class=\"notice\">If orderType = sell_to_crypto, orderPaymentSymbol can be only a pseudocoin symbol accepted, like USDT. You can't sell token to crypto!<\/aside>\n<aside class=\"notice\">If orderType = sell_to_fiat and type = coin|token, orderPaymentSymbol can be any fiat accepted, like: EUR.<\/aside>\n<aside class=\"warning\">If orderType = buy_with_fiat|buy_with_crypto, and wallet is present, platform will automatically send the required funds to that address. If wallet is not provided, the funds will be keept in platform wallet.<\/aside>",
                        "response": []
                    }
                },
                {
                    "name": "Quote Index",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/quote",
                            "query": [
                                {
                                    "key": "status",
                                    "value": "available",
                                    "description": "Field to sort by Status. Available values: available,completed,expired.",
                                    "disabled": false
                                },
                                {
                                    "key": "type",
                                    "value": "buy_with_fiat",
                                    "description": "Field to sort by Type. Available values: buy_with_fiat,buy_with_crypto,sell_to_fiat,sell_to_crypto,withdraw,withdrawIco.",
                                    "disabled": false
                                },
                                {
                                    "key": "asset",
                                    "value": "ETH",
                                    "description": "Field to sort by Asset. Available values: ETH,XBT,IPSX,etc.",
                                    "disabled": false
                                }
                            ],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get user quotes.",
                        "response": []
                    }
                },
                {
                    "name": "Quote Show",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/quote\/:quote",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "quote",
                                    "key": "quote",
                                    "value": "fc0388dc-63c5-4fbe-bc53-c11ba3bdb94e",
                                    "description": "The quote ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get a user quote.",
                        "response": []
                    }
                },
                {
                    "name": "Quote Confirmation",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/quote\/:quote",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "quote",
                                    "key": "quote",
                                    "value": "e4c9dc01-5b65-4186-a149-cd31aaae3603",
                                    "description": "The quote ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"orderPaymentMethod\": \"f2b87ccc-0fc4-4d18-9a5d-dcf73f899016\",\n    \"wallet\": \"0x9c4f891c18b2be79f971f57a8237865dab240dd2\"\n}"
                        },
                        "description": "Use this endpoint to finalize a user quote as order.\n\n<aside class=\"notice\">Depending of operation settings, a email could be sent to user containing quote details and a temporary signed URL, in order to confirm the quote request (same action as this endpoint).<\/aside>\n\n<aside class=\"success\">On success confirmation, endpoint returns <b>Order Resource<\/b>.<\/aside>",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Rates",
            "description": "\nAPIs for retrieving rates",
            "item": [
                {
                    "name": "Rate Buy",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/price\/buy\/:from\/:to",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get a buy price\n\n###Path Params\n- from: string | in: (EUR, USD, USDT,,,) - the coin\/fiat symbol that is desired to pay with\n- to: string | in: (USDT, XBT, ETH...) - the coin symbol that is desired to receive\n\n###Query params\n- from_amount: decimal | the amount of the coin\/fiat you want to pay with\n- to_amount: decimal | the amount of the  coin you want to receive\n\nIf `from_amount` is present on query, the endpoint will return the `to_amount`\n\nIf `to_amount` is present on query, the endpoint will return the `from_amount`\n\nIf `to_amount` and `from_amount` are both present the endpoint will return an error\n\nIf no query parameters present then the endpoint will return the rate\n\nCommissions and discounts may be applied",
                        "response": []
                    }
                },
                {
                    "name": "Rate Sell",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/price\/sell\/:from\/:to",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get a sell price\n\n###Path Params\n- from: string | in: (USDT, XBT, ETH...) - the coin\/fiat symbol that is desired to sell\n- to:  string | in: (EUR, USD, USDT...) - the coin symbol that is desired to receive\n\n###Query params\n- from_amount: decimal | the amount of the coin\/fiat you want to sell\n- to_amount: decimal | the amount of the  coin you want to receive\n\nIf `from_amount` is present on query, the endpoint will return the `to_amount`\n\nIf `to_amount` is present on query, the endpoint will return the `from_amount`\n\nIf `to_amount` and `from_amount` are both present the endpoint will return an error\n\nIf no query parameters present then the endpoint will return the rate\n\nCommissions and discounts may be applied",
                        "response": []
                    }
                },
                {
                    "name": "Rate Withdraw",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/price\/withdraw\/:from\/:to",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get a withdraw price\n\n###Path Params\n- from: string | in: (USDT, XBT, ETH...) - the coin\/fiat symbol that is desired to withdraw\n- to:  string | in: (EUR, USD, USDT...) - the coin symbol that is desired to receive\n\n###Query params\n- from_amount: decimal | the amount of the coin\/fiat you want to withdraw\n- to_amount: decimal | the amount of the  coin you want to receive\n\nIf `from_amount` is present on query, the endpoint will return the `to_amount`\n\nIf `to_amount` is present on query, the endpoint will return the `from_amount`\n\nIf `to_amount` and `from_amount` are both present the endpoint will return an error\n\nIf no query parameters present then the endpoint will return the rate\n\nCommissions and discounts may be applied",
                        "response": []
                    }
                },
                {
                    "name": "Rate WithdrawIco",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/price\/withdraw-ico\/:from\/:to",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get a withdrawIco price\n\n###Path Params\n- from: string | in: (USDT, XBT, ETH...) - the coin\/fiat symbol that is desired to withdraw\n- to:  string | in: (EUR, USD, USDT...) - the coin symbol that is desired to receive\n\n###Query params\n- from_amount: decimal | the amount of the coin\/fiat you want to withdraw\n- to_amount: decimal | the amount of the  coin you want to receive\n\nIf `from_amount` is present on query, the endpoint will return the `to_amount`\n\nIf `to_amount` is present on query, the endpoint will return the `from_amount`\n\nIf `to_amount` and `from_amount` are both present the endpoint will return an error\n\nIf no query parameters present then the endpoint will return the rate\n\nCommissions and discounts may be applied",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Security",
            "description": "\nAPIs for managing securities",
            "item": [
                {
                    "name": "Security Index",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/securities",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all user Securities.",
                        "response": []
                    }
                },
                {
                    "name": "Security Access Tokens",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/securities\/access",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all user Acess Tokens.",
                        "response": []
                    }
                },
                {
                    "name": "Security API Requests",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/securities\/api-requests",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all user API Requests.",
                        "response": []
                    }
                },
                {
                    "name": "Security Change Password",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/securities\/change-password",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"current_password\": \"password\",\n    \"new_password\": \"password\"\n}"
                        },
                        "description": "Use this endpoint to change user password.",
                        "response": []
                    }
                },
                {
                    "name": "Security Set Password",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/securities\/set-password",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"password\": \"password\"\n}"
                        },
                        "description": "Use this endpoint to set user password.",
                        "response": []
                    }
                },
                {
                    "name": "Security Access Token Invalidate",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/securities\/invalidate\/:token",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "token",
                                    "key": "token",
                                    "value": "14bb7a50a5ede4XXXXXXXXXXXXXXXXXXXXXXXX",
                                    "description": "The token."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to delete user access token.",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Transfer",
            "description": "\nAPIs for managing user asset transfers\n\n<aside class=\"notice\">In order to manage the <b>Transfer Store<\/b> and <b>Transfer Confirm<\/b> endpoints, users involved in transfer must be KYC Approved.<\/aside>",
            "item": [
                {
                    "name": "Transfer Index",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/transfer",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all user transfer in with is involved.",
                        "response": []
                    }
                },
                {
                    "name": "Transfer Store",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/transfer",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"action\": \"send\",\n    \"amount\": \"1.2345\",\n    \"type\": \"coin\",\n    \"symbol\": \"ETH\",\n    \"user\": \"alinionutmusat+1@gmail.com\"\n}"
                        },
                        "description": "Use this endpoint to create a transfer.",
                        "response": []
                    }
                },
                {
                    "name": "Transfer By",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/transfer\/by",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all user transfer created by him.",
                        "response": []
                    }
                },
                {
                    "name": "Transfer From",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/transfer\/from",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all user transfer from him.",
                        "response": []
                    }
                },
                {
                    "name": "Transfer To",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/transfer\/to",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get all user transfer to him.",
                        "response": []
                    }
                },
                {
                    "name": "Transfer Show",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/transfer\/:transfer",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "transfer",
                                    "key": "transfer",
                                    "value": "3290f292-d36d-45f8-a320-81c74e5d7ba8",
                                    "description": "The transfer ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get a user transfer in with is involved.",
                        "response": []
                    }
                },
                {
                    "name": "Transfer Confirm",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/transfer\/:transfer",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "transfer",
                                    "key": "transfer",
                                    "value": "3290f292-d36d-45f8-a320-81c74e5d7ba8",
                                    "description": "The transfer ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"wallet\": \"0x01234567890123456789\"\n}"
                        },
                        "description": "Use this endpoint to confirm a transfer.\n\n<aside class=\"notice\"><b>Transfer Confirm<\/b> action is possible only for the second user involved in transfer. (Not the user that created the transfer request)<\/aside>",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "User",
            "description": "\nAPIs for managing users",
            "item": [
                {
                    "name": "User Forgot Password",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/forgot-password",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"email\": \"john@doe.com\",\n    \"type\": \"link\"\n}"
                        },
                        "description": "Use this endpoint to trigger password reset for a user when he forgets his password.",
                        "response": []
                    }
                },
                {
                    "name": "User Reset Password",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/reset-password",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"email\": \"john@doe.com\",\n    \"token\": \"123456789\",\n    \"password\": \"newPassword\"\n}"
                        },
                        "description": "Use this endpoint to change the user's password by passing the reset token, email and password.",
                        "response": []
                    }
                },
                {
                    "name": "User Create",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"email\": \"email@gmail.com\",\n    \"password\": \"12345678\",\n    \"firstName\": \"Alin\",\n    \"lastName\": \"Ionut\",\n    \"dateOfBirth\": \"1900-12-31\",\n    \"phone\": \"40730000000\",\n    \"address\": {\n        \"country\": \"RO\",\n        \"city\": \"Pitesti\",\n        \"zip\": \"112233\",\n        \"street\": \"Some Street name Nr. 1\"\n    },\n    \"platform\": {\n        \"id\": \"64b4f8d1-c2bd-4bba-8b1b-332a58176734\",\n        \"userId\": \"123456\",\n        \"email\": \"email@gmail.com\",\n        \"username\": \"username\",\n        \"referralId\": \"123456\"\n    },\n    \"redirectTo\": \"http:\\\/\\\/www.google.com\"\n}"
                        },
                        "description": "Use this endpoint to create a new User model.\n\n<aside class=\"notice\">If redirectTo is null, email confirmation will contain a code, that will be use in email verify endpoint. Otherwise, email confirmation will contain a url that will handle user activation and then redirect to user {redirectTo}<\/aside>",
                        "response": []
                    }
                },
                {
                    "name": "User Email Verify",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/verify",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"id\": \"1e6d61cc-be30-4de8-9bbf-cbb097b4767b\",\n    \"email\": \"email@cryptocoin.pro\",\n    \"code\": \"aplphanumrandom\"\n}"
                        },
                        "description": "Use this endpoint to verify email of a new User model.",
                        "response": []
                    }
                },
                {
                    "name": "User Email Reverify",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/reverify",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"id\": \"1e6d61cc-be30-4de8-9bbf-cbb097b4767b\",\n    \"email\": \"email@cryptocoin.pro\"\n}"
                        },
                        "description": "Use this endpoint to resubmit verification email of a new User model.",
                        "response": []
                    }
                },
                {
                    "name": "User Profile",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get an existing User model Profile data.",
                        "response": []
                    }
                },
                {
                    "name": "User Balances",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/balances\/:asset",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get User model balances.",
                        "response": []
                    }
                },
                {
                    "name": "User Self Delete Initiate",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/account\/close\/initiate",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"password\": \"mystrongpass\",\n    \"type\": \"link\"\n}"
                        },
                        "description": "Use this endpoint to place in initiate Self Delete Queue for User.",
                        "response": []
                    }
                },
                {
                    "name": "User Self Delete Confirm",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/account\/close\/confirm",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"code\": \"8f8e8VZlfRJq4iEE4xDn\"\n}"
                        },
                        "description": "Use this endpoint to confirm soft delete by passing the email code.",
                        "response": []
                    }
                },
                {
                    "name": "User Self Delete Abort",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/account\/close\/abort",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to abort Self Delete Queue for User if initiated.",
                        "response": []
                    }
                },
                {
                    "name": "User Change Email",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/change-email\/initiate",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"new_email\": \"john@doe.com\",\n    \"type\": \"link\"\n}"
                        },
                        "description": "Use this endpoint to trigger email change.",
                        "response": []
                    }
                },
                {
                    "name": "User Confirm Email Change",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/change-email\/confirm",
                            "query": []
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"current_email_code\": \"d286KVZlfRJq4iEE4xDn\",\n    \"new_email_code\": \"8f8e8VZlfRJq4iEE4xDn\"\n}"
                        },
                        "description": "Use this endpoint to confirm email change by passing the old email code and new email code.",
                        "response": []
                    }
                }
            ]
        },
        {
            "name": "Wallet",
            "description": "\nAPIs for managing user wallets",
            "item": [
                {
                    "name": "Wallet Index",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/wallet",
                            "query": [
                                {
                                    "key": "status",
                                    "value": "confirmed",
                                    "description": "Field to sort by Status. Available values: confirmed,rejected,pending.",
                                    "disabled": false
                                },
                                {
                                    "key": "coin",
                                    "value": "ETH",
                                    "description": "Field to sort by Coin. Available values: XBT, ETH, etc.",
                                    "disabled": false
                                }
                            ],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get wallet index.",
                        "response": []
                    }
                },
                {
                    "name": "Wallet Create",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/wallet",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"address\": \"0xEfC0c81abd46941766E2Ae9a30c57DF75b161111\",\n    \"alias\": \"Thanos\",\n    \"coin\": \"ETH\"\n}"
                        },
                        "description": "Use this endpoint to create a wallet.",
                        "response": []
                    }
                },
                {
                    "name": "Wallet Shows",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/wallet\/:wallet",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "wallet",
                                    "key": "wallet",
                                    "value": "0b5d1b5c-a84e-459d-86d1-df2c0619f4e6",
                                    "description": "The wallet ID."
                                }
                            ]
                        },
                        "method": "GET",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "[]"
                        },
                        "description": "Use this endpoint to get a wallet.",
                        "response": []
                    }
                },
                {
                    "name": "Wallet Update",
                    "request": {
                        "url": {
                            "protocol": "https",
                            "host": "appapi-public.cryptocoin.pro",
                            "path": "api\/v1\/user\/:user\/wallet\/:wallet",
                            "query": [],
                            "variable": [
                                {
                                    "id": "user",
                                    "key": "user",
                                    "value": "66de494e-6791-4290-996c-32f42041fbf4",
                                    "description": "The user ID."
                                },
                                {
                                    "id": "wallet",
                                    "key": "wallet",
                                    "value": "0b5d1b5c-a84e-459d-86d1-df2c0619f4e6",
                                    "description": "The wallet ID."
                                }
                            ]
                        },
                        "method": "POST",
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application\/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application\/json"
                            },
                            {
                                "key": "Authorization",
                                "value": "Bearer {token}"
                            }
                        ],
                        "body": {
                            "mode": "raw",
                            "raw": "{\n    \"alias\": \"Thanos\"\n}"
                        },
                        "description": "Use this endpoint to update a wallet.",
                        "response": []
                    }
                }
            ]
        }
    ]
}