{
    "item": [
        {
            "name": "OAuth2 Access Token",
            "description": "",
            "item": [
                {
                    "id": "92b56883-18bb-4ca3-8ecb-180ccc595b07",
                    "name": "Generate OAuth2 Access Token",
                    "request": {
                        "name": "Generate OAuth2 Access Token",
                        "description": {
                            "content": "Use the OAuth2 client credentials flow to obtain an access token. You need to provide the `client_id`, `client_secret`, `grant_type` and `scope` in the request body. For `grant_type`, use `client_credentials`. The `scope` should be `crypto`. The `client_id` and `client_secret` are provided to you during onboarding.",
                            "type": "text/plain"
                        },
                        "url": {
                            "path": [
                                "oauth2",
                                "auth",
                                "realms",
                                "paysafe",
                                "v1",
                                "token"
                            ],
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "query": [],
                            "variable": []
                        },
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/x-www-form-urlencoded"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "method": "POST",
                        "body": {
                            "mode": "urlencoded",
                            "urlencoded": [
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "(Required) ",
                                        "type": "text/plain"
                                    },
                                    "key": "scope",
                                    "value": "<string>"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "(Required) ",
                                        "type": "text/plain"
                                    },
                                    "key": "grant_type",
                                    "value": "<string>"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "(Required) ",
                                        "type": "text/plain"
                                    },
                                    "key": "client_id",
                                    "value": "<string>"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "(Required) ",
                                        "type": "text/plain"
                                    },
                                    "key": "client_secret",
                                    "value": "<string>"
                                }
                            ]
                        },
                        "auth": null
                    },
                    "response": [
                        {
                            "id": "d4238706-00f2-446f-9a94-df9b3abb9672",
                            "name": "Access token response",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "oauth2",
                                        "auth",
                                        "realms",
                                        "paysafe",
                                        "v1",
                                        "token"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application/x-www-form-urlencoded"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "method": "POST",
                                "body": {
                                    "mode": "urlencoded",
                                    "urlencoded": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ",
                                                "type": "text/plain"
                                            },
                                            "key": "scope",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ",
                                                "type": "text/plain"
                                            },
                                            "key": "grant_type",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ",
                                                "type": "text/plain"
                                            },
                                            "key": "client_id",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ",
                                                "type": "text/plain"
                                            },
                                            "key": "client_secret",
                                            "value": "<string>"
                                        }
                                    ]
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"access_token\": \"<string>\",\n  \"token_type\": \"<string>\",\n  \"expires_in\": \"<integer>\",\n  \"scope\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "3ef43ee4-200e-4844-9c63-3dc95ea78e20",
                            "name": "Bad Request",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "oauth2",
                                        "auth",
                                        "realms",
                                        "paysafe",
                                        "v1",
                                        "token"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application/x-www-form-urlencoded"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    }
                                ],
                                "method": "POST",
                                "body": {
                                    "mode": "urlencoded",
                                    "urlencoded": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ",
                                                "type": "text/plain"
                                            },
                                            "key": "scope",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ",
                                                "type": "text/plain"
                                            },
                                            "key": "grant_type",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ",
                                                "type": "text/plain"
                                            },
                                            "key": "client_id",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ",
                                                "type": "text/plain"
                                            },
                                            "key": "client_secret",
                                            "value": "<string>"
                                        }
                                    ]
                                }
                            },
                            "status": "Bad Request",
                            "code": 400,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"error\": {\n    \"code\": \"<string>\",\n    \"message\": \"<string>\",\n    \"details\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"fieldErrors\": [\n      {\n        \"field\": \"<string>\",\n        \"error\": \"<string>\"\n      },\n      {\n        \"field\": \"<string>\",\n        \"error\": \"<string>\"\n      }\n    ]\n  }\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        }
                    ],
                    "event": [],
                    "protocolProfileBehavior": {
                        "disableBodyPruning": true
                    }
                }
            ]
        },
        {
            "name": "Supported Countries",
            "description": "",
            "item": [
                {
                    "id": "26ed17fb-9691-4b9e-8c76-38493703aeaf",
                    "name": "Get Supported Countries",
                    "request": {
                        "name": "Get Supported Countries",
                        "description": {
                            "content": "Provide supported countries with their corresponding payment options and limits",
                            "type": "text/plain"
                        },
                        "url": {
                            "path": [
                                "api",
                                "crypto-purchase",
                                "v2",
                                "supported-countries"
                            ],
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "query": [
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "The country ISO-3 code to fetch configuration for",
                                        "type": "text/plain"
                                    },
                                    "key": "countryId",
                                    "value": "<string>"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "The payment method to fetch configuration for (This can only be one of CARD,BALANCE)",
                                        "type": "text/plain"
                                    },
                                    "key": "paymentMethod",
                                    "value": "CARD"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "The currency to calculate limits for. This parameter will not be taken into account if `includeLimits` is set to `false`.",
                                        "type": "text/plain"
                                    },
                                    "key": "limitsCurrency",
                                    "value": "<string>"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "Should include limits in the response. Default value is `true`.",
                                        "type": "text/plain"
                                    },
                                    "key": "includeLimits",
                                    "value": "<boolean>"
                                }
                            ],
                            "variable": []
                        },
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "method": "GET",
                        "body": {},
                        "auth": {
                            "type": "oauth2",
                            "oauth2": [
                                {
                                    "key": "scope",
                                    "value": "crypto"
                                },
                                {
                                    "key": "accessTokenUrl",
                                    "value": "https://crypto-onramp.skrill.com/oauth2/auth/realms/paysafe/v1/token"
                                },
                                {
                                    "key": "grant_type",
                                    "value": "client_credentials"
                                }
                            ]
                        }
                    },
                    "response": [
                        {
                            "id": "12cf6ff5-8a33-4e77-be42-200f1c8e33f2",
                            "name": "OK",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "api",
                                        "crypto-purchase",
                                        "v2",
                                        "supported-countries"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "The country ISO-3 code to fetch configuration for",
                                                "type": "text/plain"
                                            },
                                            "key": "countryId",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "The payment method to fetch configuration for (This can only be one of CARD,BALANCE)",
                                                "type": "text/plain"
                                            },
                                            "key": "paymentMethod",
                                            "value": "CARD"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "The currency to calculate limits for. This parameter will not be taken into account if `includeLimits` is set to `false`.",
                                                "type": "text/plain"
                                            },
                                            "key": "limitsCurrency",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "Should include limits in the response. Default value is `true`.",
                                                "type": "text/plain"
                                            },
                                            "key": "includeLimits",
                                            "value": "<boolean>"
                                        }
                                    ],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: oauth2",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"countries\": [\n    {\n      \"code\": \"<string>\",\n      \"alpha2Code\": \"<string>\",\n      \"name\": \"<string>\",\n      \"paymentOptions\": [\n        {\n          \"name\": \"<string>\",\n          \"paymentMethod\": \"CARD\",\n          \"description\": \"<string>\",\n          \"limits\": [\n            {\n              \"currency\": \"<string>\",\n              \"minAmount\": \"<number>\",\n              \"maxAmount\": \"<number>\"\n            },\n            {\n              \"currency\": \"<string>\",\n              \"minAmount\": \"<number>\",\n              \"maxAmount\": \"<number>\"\n            }\n          ],\n          \"sourceCurrencies\": [\n            \"<string>\",\n            \"<string>\"\n          ]\n        },\n        {\n          \"name\": \"<string>\",\n          \"paymentMethod\": \"BALANCE\",\n          \"description\": \"<string>\",\n          \"limits\": [\n            {\n              \"currency\": \"<string>\",\n              \"minAmount\": \"<number>\",\n              \"maxAmount\": \"<number>\"\n            },\n            {\n              \"currency\": \"<string>\",\n              \"minAmount\": \"<number>\",\n              \"maxAmount\": \"<number>\"\n            }\n          ],\n          \"sourceCurrencies\": [\n            \"<string>\",\n            \"<string>\"\n          ]\n        }\n      ]\n    },\n    {\n      \"code\": \"<string>\",\n      \"alpha2Code\": \"<string>\",\n      \"name\": \"<string>\",\n      \"paymentOptions\": [\n        {\n          \"name\": \"<string>\",\n          \"paymentMethod\": \"CARD\",\n          \"description\": \"<string>\",\n          \"limits\": [\n            {\n              \"currency\": \"<string>\",\n              \"minAmount\": \"<number>\",\n              \"maxAmount\": \"<number>\"\n            },\n            {\n              \"currency\": \"<string>\",\n              \"minAmount\": \"<number>\",\n              \"maxAmount\": \"<number>\"\n            }\n          ],\n          \"sourceCurrencies\": [\n            \"<string>\",\n            \"<string>\"\n          ]\n        },\n        {\n          \"name\": \"<string>\",\n          \"paymentMethod\": \"CARD\",\n          \"description\": \"<string>\",\n          \"limits\": [\n            {\n              \"currency\": \"<string>\",\n              \"minAmount\": \"<number>\",\n              \"maxAmount\": \"<number>\"\n            },\n            {\n              \"currency\": \"<string>\",\n              \"minAmount\": \"<number>\",\n              \"maxAmount\": \"<number>\"\n            }\n          ],\n          \"sourceCurrencies\": [\n            \"<string>\",\n            \"<string>\"\n          ]\n        }\n      ]\n    }\n  ]\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "54c0a944-635c-4c86-bee7-715651336af6",
                            "name": "Unauthorized",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "api",
                                        "crypto-purchase",
                                        "v2",
                                        "supported-countries"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "The country ISO-3 code to fetch configuration for",
                                                "type": "text/plain"
                                            },
                                            "key": "countryId",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "The payment method to fetch configuration for (This can only be one of CARD,BALANCE)",
                                                "type": "text/plain"
                                            },
                                            "key": "paymentMethod",
                                            "value": "CARD"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "The currency to calculate limits for. This parameter will not be taken into account if `includeLimits` is set to `false`.",
                                                "type": "text/plain"
                                            },
                                            "key": "limitsCurrency",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "Should include limits in the response. Default value is `true`.",
                                                "type": "text/plain"
                                            },
                                            "key": "includeLimits",
                                            "value": "<boolean>"
                                        }
                                    ],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: oauth2",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "Unauthorized",
                            "code": 401,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"error\": {\n    \"code\": \"<string>\",\n    \"message\": \"<string>\",\n    \"details\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"fieldErrors\": [\n      {\n        \"field\": \"<string>\",\n        \"error\": \"<string>\"\n      },\n      {\n        \"field\": \"<string>\",\n        \"error\": \"<string>\"\n      }\n    ]\n  }\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        }
                    ],
                    "event": [],
                    "protocolProfileBehavior": {
                        "disableBodyPruning": true
                    }
                }
            ]
        },
        {
            "name": "Supported Crypto Assets",
            "description": "",
            "item": [
                {
                    "id": "ee4f021d-d0db-470c-8837-7af36592565d",
                    "name": "Get Supported Crypto Assets",
                    "request": {
                        "name": "Get Supported Crypto Assets",
                        "description": {
                            "content": "Get all of the supported crypto assets along with their corresponding networks and additional information",
                            "type": "text/plain"
                        },
                        "url": {
                            "path": [
                                "api",
                                "crypto-purchase",
                                "v2",
                                "supported-crypto-assets"
                            ],
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "query": [],
                            "variable": []
                        },
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "method": "GET",
                        "body": {},
                        "auth": {
                            "type": "oauth2",
                            "oauth2": [
                                {
                                    "key": "scope",
                                    "value": "crypto"
                                },
                                {
                                    "key": "accessTokenUrl",
                                    "value": "https://crypto-onramp.skrill.com/oauth2/auth/realms/paysafe/v1/token"
                                },
                                {
                                    "key": "grant_type",
                                    "value": "client_credentials"
                                }
                            ]
                        }
                    },
                    "response": [
                        {
                            "id": "0c385252-0d60-4839-b1d3-a04670365f70",
                            "name": "OK",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "api",
                                        "crypto-purchase",
                                        "v2",
                                        "supported-crypto-assets"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: oauth2",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"cryptoAssets\": [\n    {\n      \"currencyName\": \"<string>\",\n      \"currencyCode\": \"<string>\",\n      \"network\": \"<string>\",\n      \"supportsWalletAddressTag\": \"<boolean>\",\n      \"notAllowedCountries\": [\n        \"<string>\",\n        \"<string>\"\n      ]\n    },\n    {\n      \"currencyName\": \"<string>\",\n      \"currencyCode\": \"<string>\",\n      \"network\": \"<string>\",\n      \"supportsWalletAddressTag\": \"<boolean>\",\n      \"notAllowedCountries\": [\n        \"<string>\",\n        \"<string>\"\n      ]\n    }\n  ]\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "de29a45f-04cc-4426-9fa3-effa2983d434",
                            "name": "Unauthorized",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "api",
                                        "crypto-purchase",
                                        "v2",
                                        "supported-crypto-assets"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: oauth2",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "Unauthorized",
                            "code": 401,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"error\": {\n    \"code\": \"<string>\",\n    \"message\": \"<string>\",\n    \"details\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"fieldErrors\": [\n      {\n        \"field\": \"<string>\",\n        \"error\": \"<string>\"\n      },\n      {\n        \"field\": \"<string>\",\n        \"error\": \"<string>\"\n      }\n    ]\n  }\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        }
                    ],
                    "event": [],
                    "protocolProfileBehavior": {
                        "disableBodyPruning": true
                    }
                }
            ]
        },
        {
            "name": "Generate Quotes",
            "description": "",
            "item": [
                {
                    "id": "d790e489-4964-4570-8220-4749a46c8ec6",
                    "name": "Get Quotes",
                    "request": {
                        "name": "Get Quotes",
                        "description": {
                            "content": "Generates basic quote for the end customer based on partner's default fees configuration upon the provided parameters - source and destination currency, preferred payment method, etc.",
                            "type": "text/plain"
                        },
                        "url": {
                            "path": [
                                "api",
                                "crypto-purchase",
                                "v2",
                                "quotes"
                            ],
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "query": [
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "(Required) The source currency in which the customer wants to make the payment for the crypto",
                                        "type": "text/plain"
                                    },
                                    "key": "sourceCurrency",
                                    "value": "<string>"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "(Required) The source amount the customer wants to spend to purchase crypto",
                                        "type": "text/plain"
                                    },
                                    "key": "sourceAmount",
                                    "value": "<number>"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "(Required) The destination currency the customer wants to purchase",
                                        "type": "text/plain"
                                    },
                                    "key": "destinationCurrency",
                                    "value": "<string>"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "(Required) Name of the network that is being used to calculate the quote",
                                        "type": "text/plain"
                                    },
                                    "key": "network",
                                    "value": "<string>"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "The payment method the customer wants to use for the payment",
                                        "type": "text/plain"
                                    },
                                    "key": "paymentMethod",
                                    "value": "<string>"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "The ISO-3 code of the customer's country",
                                        "type": "text/plain"
                                    },
                                    "key": "countryId",
                                    "value": "<string>"
                                }
                            ],
                            "variable": []
                        },
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "method": "GET",
                        "body": {},
                        "auth": {
                            "type": "oauth2",
                            "oauth2": [
                                {
                                    "key": "scope",
                                    "value": "crypto"
                                },
                                {
                                    "key": "accessTokenUrl",
                                    "value": "https://crypto-onramp.skrill.com/oauth2/auth/realms/paysafe/v1/token"
                                },
                                {
                                    "key": "grant_type",
                                    "value": "client_credentials"
                                }
                            ]
                        }
                    },
                    "response": [
                        {
                            "id": "5d29b49d-88ea-4c48-8e38-ccd46bd95898",
                            "name": "OK",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "api",
                                        "crypto-purchase",
                                        "v2",
                                        "quotes"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) The source currency in which the customer wants to make the payment for the crypto",
                                                "type": "text/plain"
                                            },
                                            "key": "sourceCurrency",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) The source amount the customer wants to spend to purchase crypto",
                                                "type": "text/plain"
                                            },
                                            "key": "sourceAmount",
                                            "value": "<number>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) The destination currency the customer wants to purchase",
                                                "type": "text/plain"
                                            },
                                            "key": "destinationCurrency",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) Name of the network that is being used to calculate the quote",
                                                "type": "text/plain"
                                            },
                                            "key": "network",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "The payment method the customer wants to use for the payment",
                                                "type": "text/plain"
                                            },
                                            "key": "paymentMethod",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "The ISO-3 code of the customer's country",
                                                "type": "text/plain"
                                            },
                                            "key": "countryId",
                                            "value": "<string>"
                                        }
                                    ],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: oauth2",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"sourceDetails\": {\n    \"amount\": \"<number>\",\n    \"currency\": \"<string>\",\n    \"paymentMethod\": \"BALANCE\"\n  },\n  \"destinationDetails\": {\n    \"amount\": \"<number>\",\n    \"currency\": \"<string>\",\n    \"network\": \"<string>\"\n  },\n  \"sourceToDestinationRate\": \"<number>\",\n  \"destinationToSourceRate\": \"<number>\",\n  \"fees\": [\n    {\n      \"type\": \"PARTNER\",\n      \"amount\": \"<number>\",\n      \"currency\": \"<string>\"\n    },\n    {\n      \"type\": \"FX\",\n      \"amount\": \"<number>\",\n      \"currency\": \"<string>\"\n    }\n  ],\n  \"totalSpend\": \"<number>\",\n  \"totalSpendCurrency\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "5638c48b-bafc-4e4c-b703-8480f6f17281",
                            "name": "Bad Request",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "api",
                                        "crypto-purchase",
                                        "v2",
                                        "quotes"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) The source currency in which the customer wants to make the payment for the crypto",
                                                "type": "text/plain"
                                            },
                                            "key": "sourceCurrency",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) The source amount the customer wants to spend to purchase crypto",
                                                "type": "text/plain"
                                            },
                                            "key": "sourceAmount",
                                            "value": "<number>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) The destination currency the customer wants to purchase",
                                                "type": "text/plain"
                                            },
                                            "key": "destinationCurrency",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) Name of the network that is being used to calculate the quote",
                                                "type": "text/plain"
                                            },
                                            "key": "network",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "The payment method the customer wants to use for the payment",
                                                "type": "text/plain"
                                            },
                                            "key": "paymentMethod",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "The ISO-3 code of the customer's country",
                                                "type": "text/plain"
                                            },
                                            "key": "countryId",
                                            "value": "<string>"
                                        }
                                    ],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: oauth2",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "Bad Request",
                            "code": 400,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "de32fdb7-1b35-436c-98d5-2f9213984b80",
                            "name": "Unauthorized",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "api",
                                        "crypto-purchase",
                                        "v2",
                                        "quotes"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) The source currency in which the customer wants to make the payment for the crypto",
                                                "type": "text/plain"
                                            },
                                            "key": "sourceCurrency",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) The source amount the customer wants to spend to purchase crypto",
                                                "type": "text/plain"
                                            },
                                            "key": "sourceAmount",
                                            "value": "<number>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) The destination currency the customer wants to purchase",
                                                "type": "text/plain"
                                            },
                                            "key": "destinationCurrency",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) Name of the network that is being used to calculate the quote",
                                                "type": "text/plain"
                                            },
                                            "key": "network",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "The payment method the customer wants to use for the payment",
                                                "type": "text/plain"
                                            },
                                            "key": "paymentMethod",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "The ISO-3 code of the customer's country",
                                                "type": "text/plain"
                                            },
                                            "key": "countryId",
                                            "value": "<string>"
                                        }
                                    ],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: oauth2",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "Unauthorized",
                            "code": 401,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"error\": {\n    \"code\": \"<string>\",\n    \"message\": \"<string>\",\n    \"details\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"fieldErrors\": [\n      {\n        \"field\": \"<string>\",\n        \"error\": \"<string>\"\n      },\n      {\n        \"field\": \"<string>\",\n        \"error\": \"<string>\"\n      }\n    ]\n  }\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "21497457-cd93-4c3f-90f5-3757c2f9f92c",
                            "name": "General Error",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "api",
                                        "crypto-purchase",
                                        "v2",
                                        "quotes"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) The source currency in which the customer wants to make the payment for the crypto",
                                                "type": "text/plain"
                                            },
                                            "key": "sourceCurrency",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) The source amount the customer wants to spend to purchase crypto",
                                                "type": "text/plain"
                                            },
                                            "key": "sourceAmount",
                                            "value": "<number>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) The destination currency the customer wants to purchase",
                                                "type": "text/plain"
                                            },
                                            "key": "destinationCurrency",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) Name of the network that is being used to calculate the quote",
                                                "type": "text/plain"
                                            },
                                            "key": "network",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "The payment method the customer wants to use for the payment",
                                                "type": "text/plain"
                                            },
                                            "key": "paymentMethod",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "The ISO-3 code of the customer's country",
                                                "type": "text/plain"
                                            },
                                            "key": "countryId",
                                            "value": "<string>"
                                        }
                                    ],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: oauth2",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "Internal Server Error",
                            "code": 500,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        }
                    ],
                    "event": [],
                    "protocolProfileBehavior": {
                        "disableBodyPruning": true
                    }
                }
            ]
        },
        {
            "name": "Payment Session",
            "description": "",
            "item": [
                {
                    "id": "e8d7526a-6c4d-412b-8a5a-a062fcb34b10",
                    "name": "Initialize Payment Session",
                    "request": {
                        "name": "Initialize Payment Session",
                        "description": {
                            "content": "Initialize a payment session for the customer to purchase crypto with fiat currency. A redirect URL is returned to the partner to redirect the customer to the Skrill Crypto On-ramp page.",
                            "type": "text/plain"
                        },
                        "url": {
                            "path": [
                                "api",
                                "crypto-purchase",
                                "v2",
                                "payment-session"
                            ],
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "query": [],
                            "variable": []
                        },
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "method": "POST",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n  \"partnerName\": \"<string>\",\n  \"sourceDetails\": {\n    \"amount\": \"<number>\",\n    \"currency\": \"<string>\",\n    \"preferredPaymentMethod\": \"BALANCE\"\n  },\n  \"allowWalletAddressChange\": \"<boolean>\",\n  \"destinationDetails\": [\n    {\n      \"currency\": \"<string>\",\n      \"network\": \"<string>\",\n      \"walletAddress\": \"<string>\",\n      \"walletAddressTag\": \"<string>\"\n    },\n    {\n      \"currency\": \"<string>\",\n      \"network\": \"<string>\",\n      \"walletAddress\": \"<string>\",\n      \"walletAddressTag\": \"<string>\"\n    }\n  ],\n  \"externalReferenceId\": \"<string>\",\n  \"webhookUrl\": \"<string>\",\n  \"returnUrl\": {\n    \"success\": \"<string>\",\n    \"failure\": \"<string>\",\n    \"default\": \"<string>\"\n  },\n  \"countryId\": \"<string>\",\n  \"language\": \"<string>\"\n}",
                            "options": {
                                "raw": {
                                    "headerFamily": "json",
                                    "language": "json"
                                }
                            }
                        },
                        "auth": {
                            "type": "oauth2",
                            "oauth2": [
                                {
                                    "key": "scope",
                                    "value": "crypto"
                                },
                                {
                                    "key": "accessTokenUrl",
                                    "value": "https://crypto-onramp.skrill.com/oauth2/auth/realms/paysafe/v1/token"
                                },
                                {
                                    "key": "grant_type",
                                    "value": "client_credentials"
                                }
                            ]
                        }
                    },
                    "response": [
                        {
                            "id": "aae42d50-9dd2-47e6-bc50-0f272c81c175",
                            "name": "OK",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "api",
                                        "crypto-purchase",
                                        "v2",
                                        "payment-session"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: oauth2",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                    }
                                ],
                                "method": "POST",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"partnerName\": \"<string>\",\n  \"sourceDetails\": {\n    \"amount\": \"<number>\",\n    \"currency\": \"<string>\",\n    \"preferredPaymentMethod\": \"BALANCE\"\n  },\n  \"allowWalletAddressChange\": \"<boolean>\",\n  \"destinationDetails\": [\n    {\n      \"currency\": \"<string>\",\n      \"network\": \"<string>\",\n      \"walletAddress\": \"<string>\",\n      \"walletAddressTag\": \"<string>\"\n    },\n    {\n      \"currency\": \"<string>\",\n      \"network\": \"<string>\",\n      \"walletAddress\": \"<string>\",\n      \"walletAddressTag\": \"<string>\"\n    }\n  ],\n  \"externalReferenceId\": \"<string>\",\n  \"webhookUrl\": \"<string>\",\n  \"returnUrl\": {\n    \"success\": \"<string>\",\n    \"failure\": \"<string>\",\n    \"default\": \"<string>\"\n  },\n  \"countryId\": \"<string>\",\n  \"language\": \"<string>\"\n}",
                                    "options": {
                                        "raw": {
                                            "headerFamily": "json",
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"sessionId\": \"<string>\",\n  \"redirectUrl\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "aa579fb4-a5de-4bdc-8e75-0bcd1d89d1d2",
                            "name": "Unauthorized",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "api",
                                        "crypto-purchase",
                                        "v2",
                                        "payment-session"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: oauth2",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                    }
                                ],
                                "method": "POST",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"partnerName\": \"<string>\",\n  \"sourceDetails\": {\n    \"amount\": \"<number>\",\n    \"currency\": \"<string>\",\n    \"preferredPaymentMethod\": \"BALANCE\"\n  },\n  \"allowWalletAddressChange\": \"<boolean>\",\n  \"destinationDetails\": [\n    {\n      \"currency\": \"<string>\",\n      \"network\": \"<string>\",\n      \"walletAddress\": \"<string>\",\n      \"walletAddressTag\": \"<string>\"\n    },\n    {\n      \"currency\": \"<string>\",\n      \"network\": \"<string>\",\n      \"walletAddress\": \"<string>\",\n      \"walletAddressTag\": \"<string>\"\n    }\n  ],\n  \"externalReferenceId\": \"<string>\",\n  \"webhookUrl\": \"<string>\",\n  \"returnUrl\": {\n    \"success\": \"<string>\",\n    \"failure\": \"<string>\",\n    \"default\": \"<string>\"\n  },\n  \"countryId\": \"<string>\",\n  \"language\": \"<string>\"\n}",
                                    "options": {
                                        "raw": {
                                            "headerFamily": "json",
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Unauthorized",
                            "code": 401,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"error\": {\n    \"code\": \"<string>\",\n    \"message\": \"<string>\",\n    \"details\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"fieldErrors\": [\n      {\n        \"field\": \"<string>\",\n        \"error\": \"<string>\"\n      },\n      {\n        \"field\": \"<string>\",\n        \"error\": \"<string>\"\n      }\n    ]\n  }\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "eb0c31bb-a362-4b6d-8cf0-915fed26eeba",
                            "name": "Conflict - duplicated data",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "api",
                                        "crypto-purchase",
                                        "v2",
                                        "payment-session"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: oauth2",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                    }
                                ],
                                "method": "POST",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"partnerName\": \"<string>\",\n  \"sourceDetails\": {\n    \"amount\": \"<number>\",\n    \"currency\": \"<string>\",\n    \"preferredPaymentMethod\": \"BALANCE\"\n  },\n  \"allowWalletAddressChange\": \"<boolean>\",\n  \"destinationDetails\": [\n    {\n      \"currency\": \"<string>\",\n      \"network\": \"<string>\",\n      \"walletAddress\": \"<string>\",\n      \"walletAddressTag\": \"<string>\"\n    },\n    {\n      \"currency\": \"<string>\",\n      \"network\": \"<string>\",\n      \"walletAddress\": \"<string>\",\n      \"walletAddressTag\": \"<string>\"\n    }\n  ],\n  \"externalReferenceId\": \"<string>\",\n  \"webhookUrl\": \"<string>\",\n  \"returnUrl\": {\n    \"success\": \"<string>\",\n    \"failure\": \"<string>\",\n    \"default\": \"<string>\"\n  },\n  \"countryId\": \"<string>\",\n  \"language\": \"<string>\"\n}",
                                    "options": {
                                        "raw": {
                                            "headerFamily": "json",
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Conflict",
                            "code": 409,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"details\": [\n    \"<string>\",\n    \"<string>\"\n  ],\n  \"fieldErrors\": [\n    {\n      \"field\": \"<string>\",\n      \"error\": \"<string>\"\n    },\n    {\n      \"field\": \"<string>\",\n      \"error\": \"<string>\"\n    }\n  ]\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        }
                    ],
                    "event": [],
                    "protocolProfileBehavior": {
                        "disableBodyPruning": true
                    }
                }
            ]
        },
        {
            "name": "Payment Details",
            "description": "",
            "item": [
                {
                    "id": "c373d882-6c44-4337-81ed-28521e32c2d9",
                    "name": "Get Payment Details",
                    "request": {
                        "name": "Get Payment Details",
                        "description": {
                            "content": "This endpoint retrieves the details of payments based on a list of external reference IDs (partner transaction IDs),list of session IDs, time period, and list of transaction statuses. If no params are provided, the last 10 payments will be returned. Payment details will appear in descending order of the creation date. The endpoint supports pagination. The default page size is 10, and the maximum page size is 20. Maximum retrieval period is 84 months.",
                            "type": "text/plain"
                        },
                        "url": {
                            "path": [
                                "api",
                                "crypto-purchase",
                                "v2",
                                "payments"
                            ],
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "query": [
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "Page number for pagination.",
                                        "type": "text/plain"
                                    },
                                    "key": "page",
                                    "value": "1"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "Number of records per page (page size).",
                                        "type": "text/plain"
                                    },
                                    "key": "size",
                                    "value": "10"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "List of unique identifiers of crypto purchase session",
                                        "type": "text/plain"
                                    },
                                    "key": "sessionIds",
                                    "value": "<string>"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "List of unique identifiers of crypto purchase session",
                                        "type": "text/plain"
                                    },
                                    "key": "sessionIds",
                                    "value": "<string>"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "List of unique external reference IDs for the payment (transaction ID from the partner's system)",
                                        "type": "text/plain"
                                    },
                                    "key": "externalReferenceIds",
                                    "value": "<string>"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "List of unique external reference IDs for the payment (transaction ID from the partner's system)",
                                        "type": "text/plain"
                                    },
                                    "key": "externalReferenceIds",
                                    "value": "<string>"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "List of transaction statuses, based on which the partner transactions will be retrieved",
                                        "type": "text/plain"
                                    },
                                    "key": "statuses",
                                    "value": "PAYABLE"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "List of transaction statuses, based on which the partner transactions will be retrieved",
                                        "type": "text/plain"
                                    },
                                    "key": "statuses",
                                    "value": "COMPLETED"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "Start date and time of the transaction in ISO 8601 format (e.g., 2022-08-04T00:00:00+00:00 or 2022-08-04T00:00:00Z). [Learn more](https://en.wikipedia.org/wiki/ISO_8601#Time_zone_designators)",
                                        "type": "text/plain"
                                    },
                                    "key": "startDate",
                                    "value": "<dateTime>"
                                },
                                {
                                    "disabled": false,
                                    "description": {
                                        "content": "End date and time of the transaction in ISO 8601 format (e.g., 2022-08-04T00:00:00+00:00 or 2022-08-04T00:00:00Z). [Learn more](https://en.wikipedia.org/wiki/ISO_8601#Time_zone_designators)",
                                        "type": "text/plain"
                                    },
                                    "key": "endDate",
                                    "value": "<dateTime>"
                                }
                            ],
                            "variable": []
                        },
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "method": "GET",
                        "body": {},
                        "auth": {
                            "type": "oauth2",
                            "oauth2": [
                                {
                                    "key": "scope",
                                    "value": "crypto"
                                },
                                {
                                    "key": "accessTokenUrl",
                                    "value": "https://crypto-onramp.skrill.com/oauth2/auth/realms/paysafe/v1/token"
                                },
                                {
                                    "key": "grant_type",
                                    "value": "client_credentials"
                                }
                            ]
                        }
                    },
                    "response": [
                        {
                            "id": "0ed39331-a959-4487-a5c0-4678344168fc",
                            "name": "OK",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "api",
                                        "crypto-purchase",
                                        "v2",
                                        "payments"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "Page number for pagination.",
                                                "type": "text/plain"
                                            },
                                            "key": "page",
                                            "value": "1"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "Number of records per page (page size).",
                                                "type": "text/plain"
                                            },
                                            "key": "size",
                                            "value": "10"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "List of unique identifiers of crypto purchase session",
                                                "type": "text/plain"
                                            },
                                            "key": "sessionIds",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "List of unique external reference IDs for the payment (transaction ID from the partner's system)",
                                                "type": "text/plain"
                                            },
                                            "key": "externalReferenceIds",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "List of transaction statuses, based on which the partner transactions will be retrieved",
                                                "type": "text/plain"
                                            },
                                            "key": "statuses",
                                            "value": "COMPLETED"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "Start date and time of the transaction in ISO 8601 format (e.g., 2022-08-04T00:00:00+00:00 or 2022-08-04T00:00:00Z). [Learn more](https://en.wikipedia.org/wiki/ISO_8601#Time_zone_designators)",
                                                "type": "text/plain"
                                            },
                                            "key": "startDate",
                                            "value": "<dateTime>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "End date and time of the transaction in ISO 8601 format (e.g., 2022-08-04T00:00:00+00:00 or 2022-08-04T00:00:00Z). [Learn more](https://en.wikipedia.org/wiki/ISO_8601#Time_zone_designators)",
                                                "type": "text/plain"
                                            },
                                            "key": "endDate",
                                            "value": "<dateTime>"
                                        }
                                    ],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: oauth2",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"content\": [\n    {\n      \"sessionId\": \"<string>\",\n      \"externalReferenceId\": \"<string>\",\n      \"sourceDetails\": {\n        \"amount\": \"<number>\",\n        \"currency\": \"<string>\",\n        \"paymentMethod\": \"CARD\"\n      },\n      \"destinationDetails\": {\n        \"amount\": \"<number>\",\n        \"currency\": \"<string>\",\n        \"network\": \"<string>\",\n        \"walletAddress\": \"<string>\",\n        \"walletAddressTag\": \"<string>\"\n      },\n      \"totalSpend\": \"<number>\",\n      \"totalSpendCurrency\": \"<string>\",\n      \"destinationToSourceRate\": \"<number>\",\n      \"transactionHash\": \"<string>\",\n      \"fees\": [\n        {\n          \"type\": \"TRANSACTION\",\n          \"amount\": \"<number>\",\n          \"currency\": \"<string>\"\n        },\n        {\n          \"type\": \"NETWORK\",\n          \"amount\": \"<number>\",\n          \"currency\": \"<string>\"\n        }\n      ],\n      \"status\": \"CRYPTO_TRANSFER_PENDING\",\n      \"substatus\": \"COUNTRY_NOT_ENABLED\"\n    },\n    {\n      \"sessionId\": \"<string>\",\n      \"externalReferenceId\": \"<string>\",\n      \"sourceDetails\": {\n        \"amount\": \"<number>\",\n        \"currency\": \"<string>\",\n        \"paymentMethod\": \"BALANCE\"\n      },\n      \"destinationDetails\": {\n        \"amount\": \"<number>\",\n        \"currency\": \"<string>\",\n        \"network\": \"<string>\",\n        \"walletAddress\": \"<string>\",\n        \"walletAddressTag\": \"<string>\"\n      },\n      \"totalSpend\": \"<number>\",\n      \"totalSpendCurrency\": \"<string>\",\n      \"destinationToSourceRate\": \"<number>\",\n      \"transactionHash\": \"<string>\",\n      \"fees\": [\n        {\n          \"type\": \"NETWORK\",\n          \"amount\": \"<number>\",\n          \"currency\": \"<string>\"\n        },\n        {\n          \"type\": \"TRANSACTION\",\n          \"amount\": \"<number>\",\n          \"currency\": \"<string>\"\n        }\n      ],\n      \"status\": \"FAILED\",\n      \"substatus\": \"EXPIRED\"\n    }\n  ],\n  \"page\": \"<integer>\",\n  \"totalPages\": \"<integer>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "b6986acb-3440-485b-a92e-b9291fa6c7de",
                            "name": "Bad Request",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "api",
                                        "crypto-purchase",
                                        "v2",
                                        "payments"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "Page number for pagination.",
                                                "type": "text/plain"
                                            },
                                            "key": "page",
                                            "value": "1"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "Number of records per page (page size).",
                                                "type": "text/plain"
                                            },
                                            "key": "size",
                                            "value": "10"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "List of unique identifiers of crypto purchase session",
                                                "type": "text/plain"
                                            },
                                            "key": "sessionIds",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "List of unique external reference IDs for the payment (transaction ID from the partner's system)",
                                                "type": "text/plain"
                                            },
                                            "key": "externalReferenceIds",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "List of transaction statuses, based on which the partner transactions will be retrieved",
                                                "type": "text/plain"
                                            },
                                            "key": "statuses",
                                            "value": "COMPLETED"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "Start date and time of the transaction in ISO 8601 format (e.g., 2022-08-04T00:00:00+00:00 or 2022-08-04T00:00:00Z). [Learn more](https://en.wikipedia.org/wiki/ISO_8601#Time_zone_designators)",
                                                "type": "text/plain"
                                            },
                                            "key": "startDate",
                                            "value": "<dateTime>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "End date and time of the transaction in ISO 8601 format (e.g., 2022-08-04T00:00:00+00:00 or 2022-08-04T00:00:00Z). [Learn more](https://en.wikipedia.org/wiki/ISO_8601#Time_zone_designators)",
                                                "type": "text/plain"
                                            },
                                            "key": "endDate",
                                            "value": "<dateTime>"
                                        }
                                    ],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: oauth2",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "Bad Request",
                            "code": 400,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"error\": {\n    \"code\": \"<string>\",\n    \"message\": \"<string>\",\n    \"details\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"fieldErrors\": [\n      {\n        \"field\": \"<string>\",\n        \"error\": \"<string>\"\n      },\n      {\n        \"field\": \"<string>\",\n        \"error\": \"<string>\"\n      }\n    ]\n  }\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "de5f5d61-dc33-46d6-9e4f-a0a4c6c73355",
                            "name": "Unauthorized",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "api",
                                        "crypto-purchase",
                                        "v2",
                                        "payments"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "Page number for pagination.",
                                                "type": "text/plain"
                                            },
                                            "key": "page",
                                            "value": "1"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "Number of records per page (page size).",
                                                "type": "text/plain"
                                            },
                                            "key": "size",
                                            "value": "10"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "List of unique identifiers of crypto purchase session",
                                                "type": "text/plain"
                                            },
                                            "key": "sessionIds",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "List of unique external reference IDs for the payment (transaction ID from the partner's system)",
                                                "type": "text/plain"
                                            },
                                            "key": "externalReferenceIds",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "List of transaction statuses, based on which the partner transactions will be retrieved",
                                                "type": "text/plain"
                                            },
                                            "key": "statuses",
                                            "value": "COMPLETED"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "Start date and time of the transaction in ISO 8601 format (e.g., 2022-08-04T00:00:00+00:00 or 2022-08-04T00:00:00Z). [Learn more](https://en.wikipedia.org/wiki/ISO_8601#Time_zone_designators)",
                                                "type": "text/plain"
                                            },
                                            "key": "startDate",
                                            "value": "<dateTime>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "End date and time of the transaction in ISO 8601 format (e.g., 2022-08-04T00:00:00+00:00 or 2022-08-04T00:00:00Z). [Learn more](https://en.wikipedia.org/wiki/ISO_8601#Time_zone_designators)",
                                                "type": "text/plain"
                                            },
                                            "key": "endDate",
                                            "value": "<dateTime>"
                                        }
                                    ],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: oauth2",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "Unauthorized",
                            "code": 401,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"error\": {\n    \"code\": \"<string>\",\n    \"message\": \"<string>\",\n    \"details\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"fieldErrors\": [\n      {\n        \"field\": \"<string>\",\n        \"error\": \"<string>\"\n      },\n      {\n        \"field\": \"<string>\",\n        \"error\": \"<string>\"\n      }\n    ]\n  }\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "fb2eeb12-2678-41c3-9e96-4e4fad05e1da",
                            "name": "General Error",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "api",
                                        "crypto-purchase",
                                        "v2",
                                        "payments"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "Page number for pagination.",
                                                "type": "text/plain"
                                            },
                                            "key": "page",
                                            "value": "1"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "Number of records per page (page size).",
                                                "type": "text/plain"
                                            },
                                            "key": "size",
                                            "value": "10"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "List of unique identifiers of crypto purchase session",
                                                "type": "text/plain"
                                            },
                                            "key": "sessionIds",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "List of unique external reference IDs for the payment (transaction ID from the partner's system)",
                                                "type": "text/plain"
                                            },
                                            "key": "externalReferenceIds",
                                            "value": "<string>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "List of transaction statuses, based on which the partner transactions will be retrieved",
                                                "type": "text/plain"
                                            },
                                            "key": "statuses",
                                            "value": "COMPLETED"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "Start date and time of the transaction in ISO 8601 format (e.g., 2022-08-04T00:00:00+00:00 or 2022-08-04T00:00:00Z). [Learn more](https://en.wikipedia.org/wiki/ISO_8601#Time_zone_designators)",
                                                "type": "text/plain"
                                            },
                                            "key": "startDate",
                                            "value": "<dateTime>"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "End date and time of the transaction in ISO 8601 format (e.g., 2022-08-04T00:00:00+00:00 or 2022-08-04T00:00:00Z). [Learn more](https://en.wikipedia.org/wiki/ISO_8601#Time_zone_designators)",
                                                "type": "text/plain"
                                            },
                                            "key": "endDate",
                                            "value": "<dateTime>"
                                        }
                                    ],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: oauth2",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "<token>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "Internal Server Error",
                            "code": 500,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"error\": {\n    \"code\": \"<string>\",\n    \"message\": \"<string>\",\n    \"details\": [\n      \"<string>\",\n      \"<string>\"\n    ],\n    \"fieldErrors\": [\n      {\n        \"field\": \"<string>\",\n        \"error\": \"<string>\"\n      },\n      {\n        \"field\": \"<string>\",\n        \"error\": \"<string>\"\n      }\n    ]\n  }\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        }
                    ],
                    "event": [],
                    "protocolProfileBehavior": {
                        "disableBodyPruning": true
                    }
                }
            ]
        }
    ],
    "event": [],
    "variable": [
        {
            "key": "baseUrl",
            "value": "https://crypto-onramp.skrill.com"
        }
    ],
    "info": {
        "_postman_id": "aaa6261b-68e7-44e2-b1fc-a63a5f3d80f9",
        "name": "Skrill Crypto On-Ramp API",
        "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
        "description": {
            "content": "## Introduction\n\nEmpower your consumers to purchase cryptocurrencies with fiat currencies on Skrill.    \nClick [here](/docs/crypto-on-ramp/overview) to learn more about Crypto On-Ramp.",
            "type": "text/plain"
        }
    }
}