{
    "item": [
        {
            "name": "Payments",
            "description": "Payment operations",
            "item": [
                {
                    "id": "c89144af-7186-4f8c-abfb-01cec257e139",
                    "name": "InitiatePayment",
                    "request": {
                        "name": "InitiatePayment",
                        "description": {
                            "content": "Upon successful execution of this request, the payment status transitions to INITIATED.\n\nThe optional HTTP header Correlation-ID can be used to define a custom identifier that becomes part of the generated payment id.\n\nThe Correlation-ID must:\n- contain only the following characters: a-z, A-Z, 0-9, -, _\n- not exceed 41 characters in length\n- be unique per MID\n\nAfter the payment has been created, the customer must be redirected to the auth_url returned in the response.\n\nOnce the customer authorizes the payment, the payment status transitions to AUTHORIZED, and the customer is redirected to the configured success_url.\n\nIn addition to the customer redirect, a server-to-server notification is sent to the configured notification_url.\n\nOnce the payment reaches the AUTHORIZED state, it can be captured to finalize the transaction.",
                            "type": "text/plain"
                        },
                        "url": {
                            "path": [
                                "payments"
                            ],
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "query": [],
                            "variable": []
                        },
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "method": "POST",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n  \"type\": \"<string>\",\n  \"amount\": \"<float>\",\n  \"currency\": \"<string>\",\n  \"redirect\": {\n    \"success_url\": \"<uri>\",\n    \"failure_url\": \"<uri>\"\n  },\n  \"notification_url\": \"<uri>\",\n  \"customer\": {\n    \"id\": \"<string>\",\n    \"min_age\": \"<number>\",\n    \"kyc_level\": \"FULL\",\n    \"country_restriction\": \"<string>\"\n  },\n  \"submerchant_id\": \"<string>\",\n  \"shop_id\": \"<string>\"\n}",
                            "options": {
                                "raw": {
                                    "headerFamily": "json",
                                    "language": "json"
                                }
                            }
                        },
                        "auth": {
                            "type": "basic",
                            "basic": [
                                {
                                    "key": "username",
                                    "value": "{{basicAuthUsername}}"
                                },
                                {
                                    "key": "password",
                                    "value": "{{basicAuthPassword}}"
                                }
                            ]
                        }
                    },
                    "response": [
                        {
                            "id": "49474cbd-8238-47e2-9ed8-e15af2900742",
                            "name": "Payment created successfully",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payments"
                                    ],
                                    "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: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"type\": \"<string>\",\n  \"amount\": \"<float>\",\n  \"currency\": \"<string>\",\n  \"redirect\": {\n    \"success_url\": \"<uri>\",\n    \"failure_url\": \"<uri>\"\n  },\n  \"notification_url\": \"<uri>\",\n  \"customer\": {\n    \"id\": \"<string>\",\n    \"min_age\": \"<number>\",\n    \"kyc_level\": \"FULL\",\n    \"country_restriction\": \"<string>\"\n  },\n  \"submerchant_id\": \"<string>\",\n  \"shop_id\": \"<string>\"\n}",
                                    "options": {
                                        "raw": {
                                            "headerFamily": "json",
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"object\": \"<string>\",\n  \"id\": \"<string>\",\n  \"created\": \"<long>\",\n  \"updated\": \"<long>\",\n  \"currency\": \"<string>\",\n  \"status\": \"<string>\",\n  \"type\": \"<string>\",\n  \"redirect\": {\n    \"success_url\": \"<uri>\",\n    \"failure_url\": \"<uri>\",\n    \"auth_url\": \"<uri>\"\n  },\n  \"customer\": {\n    \"id\": \"<string>\"\n  },\n  \"amount\": \"<float>\",\n  \"notification_url\": \"<uri>\",\n  \"submerchant_id\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "da027ae2-ceb6-4f57-a77f-71b6d358b5cb",
                            "name": "Bad request - invalid input or merchant not found",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payments"
                                    ],
                                    "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: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"type\": \"<string>\",\n  \"amount\": \"<float>\",\n  \"currency\": \"<string>\",\n  \"redirect\": {\n    \"success_url\": \"<uri>\",\n    \"failure_url\": \"<uri>\"\n  },\n  \"notification_url\": \"<uri>\",\n  \"customer\": {\n    \"id\": \"<string>\",\n    \"min_age\": \"<number>\",\n    \"kyc_level\": \"FULL\",\n    \"country_restriction\": \"<string>\"\n  },\n  \"submerchant_id\": \"<string>\",\n  \"shop_id\": \"<string>\"\n}",
                                    "options": {
                                        "raw": {
                                            "headerFamily": "json",
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Bad Request",
                            "code": 400,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        }
                    ],
                    "event": [],
                    "protocolProfileBehavior": {
                        "disableBodyPruning": true
                    }
                },
                {
                    "id": "ce0255fe-5e7b-4948-afb5-8ee0865ce9c5",
                    "name": "RetrievePaymentDetails",
                    "request": {
                        "name": "RetrievePaymentDetails",
                        "description": {
                            "content": "Retrieves details of a specific payment using its ID.",
                            "type": "text/plain"
                        },
                        "url": {
                            "path": [
                                "payments",
                                ":id"
                            ],
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "query": [],
                            "variable": [
                                {
                                    "type": "any",
                                    "value": "<string>",
                                    "key": "id",
                                    "disabled": false,
                                    "description": {
                                        "content": "(Required) Unique identifier of the payment returned in the InitiatePayment call",
                                        "type": "text/plain"
                                    }
                                }
                            ]
                        },
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "method": "GET",
                        "body": {},
                        "auth": {
                            "type": "basic",
                            "basic": [
                                {
                                    "key": "username",
                                    "value": "{{basicAuthUsername}}"
                                },
                                {
                                    "key": "password",
                                    "value": "{{basicAuthPassword}}"
                                }
                            ]
                        }
                    },
                    "response": [
                        {
                            "id": "b2fef666-bd13-4ee4-b049-1f3319d7cf4a",
                            "name": "Payment retrieved successfully",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payments",
                                        ":id"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) Unique identifier of the payment returned in the InitiatePayment call",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"object\": \"<string>\",\n  \"id\": \"<string>\",\n  \"created\": \"<long>\",\n  \"updated\": \"<long>\",\n  \"currency\": \"<string>\",\n  \"status\": \"<string>\",\n  \"type\": \"<string>\",\n  \"redirect\": {\n    \"success_url\": \"<uri>\",\n    \"failure_url\": \"<uri>\",\n    \"auth_url\": \"<uri>\"\n  },\n  \"customer\": {\n    \"id\": \"<string>\",\n    \"ip\": \"<string>\",\n    \"email\": \"<email>\",\n    \"psc_id\": \"<long>\",\n    \"first_name\": \"<string>\",\n    \"last_name\": \"<string>\",\n    \"date_of_birth\": \"<date>\",\n    \"account_created\": \"<string>\"\n  },\n  \"amount\": \"<float>\",\n  \"notification_url\": \"<uri>\",\n  \"status_before_expiration\": \"<string>\",\n  \"payment_instrument\": \"<string>\",\n  \"payment_instrument_subtype\": \"<string>\",\n  \"submerchant_id\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "eb9840b8-344b-4a24-9005-9eda4c0e7ff3",
                            "name": "Transaction not found",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payments",
                                        ":id"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) Unique identifier of the payment returned in the InitiatePayment call",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "Not Found",
                            "code": 404,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        }
                    ],
                    "event": [],
                    "protocolProfileBehavior": {
                        "disableBodyPruning": true
                    }
                },
                {
                    "id": "29639db7-eea0-49fd-a552-06bce6af2bab",
                    "name": "CancelPayment",
                    "request": {
                        "name": "CancelPayment",
                        "description": {
                            "content": "Cancels a payment that has been authorized(paid) by the customer",
                            "type": "text/plain"
                        },
                        "url": {
                            "path": [
                                "payments",
                                ":id"
                            ],
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "query": [],
                            "variable": [
                                {
                                    "type": "any",
                                    "value": "<string>",
                                    "key": "id",
                                    "disabled": false,
                                    "description": {
                                        "content": "(Required) Unique identifier of the payment returned in the InitiatePayment call",
                                        "type": "text/plain"
                                    }
                                }
                            ]
                        },
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "method": "DELETE",
                        "body": {},
                        "auth": {
                            "type": "basic",
                            "basic": [
                                {
                                    "key": "username",
                                    "value": "{{basicAuthUsername}}"
                                },
                                {
                                    "key": "password",
                                    "value": "{{basicAuthPassword}}"
                                }
                            ]
                        }
                    },
                    "response": [
                        {
                            "id": "21ce7933-1893-4fcb-ae5a-f924c7fb0b32",
                            "name": "Payment cancelled successfully. The status of the payment will change to CANCELED_MERCHANT",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payments",
                                        ":id"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) Unique identifier of the payment returned in the InitiatePayment call",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "DELETE",
                                "body": {}
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"object\": \"<string>\",\n  \"id\": \"<string>\",\n  \"created\": \"<long>\",\n  \"updated\": \"<long>\",\n  \"currency\": \"<string>\",\n  \"status\": \"<string>\",\n  \"type\": \"<string>\",\n  \"redirect\": {\n    \"success_url\": \"<uri>\",\n    \"failure_url\": \"<uri>\"\n  },\n  \"customer\": {\n    \"id\": \"<string>\",\n    \"ip\": \"<string>\"\n  },\n  \"amount\": \"<float>\",\n  \"notification_url\": \"<uri>\",\n  \"card_details\": {\n    \"serial\": \"<number>\",\n    \"currency\": \"<string>\",\n    \"type\": \"<string>\",\n    \"country\": \"<string>\",\n    \"amount\": 2925.8488011564186\n  },\n  \"submerchant_id\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "889dfd2a-7319-41eb-9665-9b7a137197b4",
                            "name": "Transaction not found",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payments",
                                        ":id"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) Unique identifier of the payment returned in the InitiatePayment call",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "DELETE",
                                "body": {}
                            },
                            "status": "Not Found",
                            "code": 404,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        }
                    ],
                    "event": [],
                    "protocolProfileBehavior": {
                        "disableBodyPruning": true
                    }
                },
                {
                    "id": "386a3f7a-7097-40db-9be7-96c5e6adc5d4",
                    "name": "CapturePayment",
                    "request": {
                        "name": "CapturePayment",
                        "description": {
                            "content": "Captures an already AUTHORIZED (successfully paid by customer) payment.",
                            "type": "text/plain"
                        },
                        "url": {
                            "path": [
                                "payments",
                                ":id",
                                "capture"
                            ],
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "query": [],
                            "variable": [
                                {
                                    "type": "any",
                                    "value": "<string>",
                                    "key": "id",
                                    "disabled": false,
                                    "description": {
                                        "content": "(Required) Unique identifier of the payment returned in the InitiatePayment call",
                                        "type": "text/plain"
                                    }
                                }
                            ]
                        },
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "method": "POST",
                        "body": {},
                        "auth": {
                            "type": "basic",
                            "basic": [
                                {
                                    "key": "username",
                                    "value": "{{basicAuthUsername}}"
                                },
                                {
                                    "key": "password",
                                    "value": "{{basicAuthPassword}}"
                                }
                            ]
                        }
                    },
                    "response": [
                        {
                            "id": "7f34314b-3d60-4051-820c-f7cfc0fbf3b6",
                            "name": "Payment captured successfully",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payments",
                                        ":id",
                                        "capture"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) Unique identifier of the payment returned in the InitiatePayment call",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {}
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"object\": \"<string>\",\n  \"id\": \"<string>\",\n  \"created\": \"<long>\",\n  \"updated\": \"<long>\",\n  \"currency\": \"<string>\",\n  \"status\": \"<string>\",\n  \"type\": \"<string>\",\n  \"redirect\": {\n    \"success_url\": \"<uri>\",\n    \"failure_url\": \"<uri>\"\n  },\n  \"customer\": {\n    \"id\": \"<string>\",\n    \"ip\": \"<string>\"\n  },\n  \"amount\": \"<float>\",\n  \"notification_url\": \"<uri>\",\n  \"card_details\": {\n    \"serial\": \"<number>\",\n    \"currency\": \"<string>\",\n    \"type\": \"<string>\",\n    \"country\": \"<string>\",\n    \"amount\": false\n  },\n  \"submerchant_id\": \"<string>\",\n  \"payment_instrument\": \"<string>\",\n  \"payment_instrument_subtype\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "1047cadb-3368-453f-8939-6edfe73e38a4",
                            "name": "Transaction not found",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payments",
                                        ":id",
                                        "capture"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) Unique identifier of the payment returned in the InitiatePayment call",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {}
                            },
                            "status": "Not Found",
                            "code": 404,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        }
                    ],
                    "event": [],
                    "protocolProfileBehavior": {
                        "disableBodyPruning": true
                    }
                }
            ]
        },
        {
            "name": "Payout API Calls",
            "description": "REST API calls used to validate, capture, and retrieve PaysafeCard payouts.",
            "item": [
                {
                    "id": "506d8496-8c87-4b0f-8cc7-ac1b7b247812",
                    "name": "Validate a New Payout",
                    "request": {
                        "name": "Validate a New Payout",
                        "description": {
                            "content": "Validates a new payout without transferring funds.\n\nSet `capture` to `false` to validate the payout. After successful\nvalidation, the payout status changes to `VALIDATION_SUCCESSFUL`.\n\nThe payout `id` returned in the response can be used in a subsequent\n`/payouts/{id}/capture` request to execute the validated payout.\n",
                            "type": "text/plain"
                        },
                        "url": {
                            "path": [
                                "payouts"
                            ],
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "query": [],
                            "variable": []
                        },
                        "header": [
                            {
                                "disabled": false,
                                "description": {
                                    "content": "Optional merchant-provided correlation identifier.",
                                    "type": "text/plain"
                                },
                                "key": "Correlation-ID",
                                "value": "DB"
                            },
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "method": "POST",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n  \"type\": \"PAYSAFECARD\",\n  \"capture\": false,\n  \"amount\": \"<double>\",\n  \"currency\": \"PCR\",\n  \"customer\": {\n    \"email\": true\n  },\n  \"submerchant_id\": \"kYnGcfRm\",\n  \"comment\": \"<string>\"\n}",
                            "options": {
                                "raw": {
                                    "headerFamily": "json",
                                    "language": "json"
                                }
                            }
                        },
                        "auth": {
                            "type": "basic",
                            "basic": [
                                {
                                    "key": "username",
                                    "value": "{{basicAuthUsername}}"
                                },
                                {
                                    "key": "password",
                                    "value": "{{basicAuthPassword}}"
                                }
                            ]
                        }
                    },
                    "response": [
                        {
                            "id": "e777ed6c-e187-4fe3-a4b1-4486fb08d9c4",
                            "name": "Payout validated successfully.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payouts"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "disabled": false,
                                        "description": {
                                            "content": "Optional merchant-provided correlation identifier.",
                                            "type": "text/plain"
                                        },
                                        "key": "Correlation-ID",
                                        "value": "DB"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"type\": \"PAYSAFECARD\",\n  \"capture\": false,\n  \"amount\": \"<double>\",\n  \"currency\": \"PCR\",\n  \"customer\": {\n    \"email\": true\n  },\n  \"submerchant_id\": \"kYnGcfRm\",\n  \"comment\": \"<string>\"\n}",
                                    "options": {
                                        "raw": {
                                            "headerFamily": "json",
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"object\": \"payout\",\n  \"id\": \"<string>\",\n  \"created\": \"<long>\",\n  \"updated\": \"<long>\",\n  \"currency\": \"<string>\",\n  \"amount\": \"<double>\",\n  \"customer\": {\n    \"id\": \"<string>\",\n    \"email\": \"<email>\"\n  },\n  \"status\": \"VALIDATION_SUCCESSFUL\",\n  \"submerchant_id\": \"<string>\",\n  \"customer_currency\": \"<string>\",\n  \"customer_amount\": \"<double>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "049a7293-062c-4836-8421-a245e07824a5",
                            "name": "Invalid payout validation request.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payouts"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "disabled": false,
                                        "description": {
                                            "content": "Optional merchant-provided correlation identifier.",
                                            "type": "text/plain"
                                        },
                                        "key": "Correlation-ID",
                                        "value": "DB"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"type\": \"PAYSAFECARD\",\n  \"capture\": false,\n  \"amount\": \"<double>\",\n  \"currency\": \"PCR\",\n  \"customer\": {\n    \"email\": true\n  },\n  \"submerchant_id\": \"kYnGcfRm\",\n  \"comment\": \"<string>\"\n}",
                                    "options": {
                                        "raw": {
                                            "headerFamily": "json",
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Bad Request",
                            "code": 400,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "e435c30a-3515-4512-806b-b6d5a4bbefcd",
                            "name": "Authentication failed.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payouts"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "disabled": false,
                                        "description": {
                                            "content": "Optional merchant-provided correlation identifier.",
                                            "type": "text/plain"
                                        },
                                        "key": "Correlation-ID",
                                        "value": "DB"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"type\": \"PAYSAFECARD\",\n  \"capture\": false,\n  \"amount\": \"<double>\",\n  \"currency\": \"PCR\",\n  \"customer\": {\n    \"email\": true\n  },\n  \"submerchant_id\": \"kYnGcfRm\",\n  \"comment\": \"<string>\"\n}",
                                    "options": {
                                        "raw": {
                                            "headerFamily": "json",
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Unauthorized",
                            "code": 401,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "fe52fd6a-f8b6-47fb-8696-ca88d31ba79a",
                            "name": "Internal server error.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payouts"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": []
                                },
                                "header": [
                                    {
                                        "disabled": false,
                                        "description": {
                                            "content": "Optional merchant-provided correlation identifier.",
                                            "type": "text/plain"
                                        },
                                        "key": "Correlation-ID",
                                        "value": "DB"
                                    },
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"type\": \"PAYSAFECARD\",\n  \"capture\": false,\n  \"amount\": \"<double>\",\n  \"currency\": \"PCR\",\n  \"customer\": {\n    \"email\": true\n  },\n  \"submerchant_id\": \"kYnGcfRm\",\n  \"comment\": \"<string>\"\n}",
                                    "options": {
                                        "raw": {
                                            "headerFamily": "json",
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Internal Server Error",
                            "code": 500,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        }
                    ],
                    "event": [],
                    "protocolProfileBehavior": {
                        "disableBodyPruning": true
                    }
                },
                {
                    "id": "8c1cb37d-6a07-4480-a448-9ac179456ffa",
                    "name": "Capture a Prevalidated Payout",
                    "request": {
                        "name": "Capture a Prevalidated Payout",
                        "description": {
                            "content": "Captures a payout that was previously validated successfully.\n\nThe supplied `id` must identify a payout with status\n`VALIDATION_SUCCESSFUL`. After successful capture, the payout status\nchanges to `SUCCESS`.\n",
                            "type": "text/plain"
                        },
                        "url": {
                            "path": [
                                "payouts",
                                ":id",
                                "capture"
                            ],
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "query": [],
                            "variable": [
                                {
                                    "type": "any",
                                    "value": "<string>",
                                    "key": "id",
                                    "disabled": false,
                                    "description": {
                                        "content": "(Required) ID of the previously validated payout.",
                                        "type": "text/plain"
                                    }
                                }
                            ]
                        },
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "method": "POST",
                        "body": {},
                        "auth": {
                            "type": "basic",
                            "basic": [
                                {
                                    "key": "username",
                                    "value": "{{basicAuthUsername}}"
                                },
                                {
                                    "key": "password",
                                    "value": "{{basicAuthPassword}}"
                                }
                            ]
                        }
                    },
                    "response": [
                        {
                            "id": "723242ca-eeb8-48b2-869e-8bf05429bf5f",
                            "name": "Prevalidated payout captured successfully.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payouts",
                                        ":id",
                                        "capture"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of the previously validated payout.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {}
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"object\": \"payout\",\n  \"id\": \"<string>\",\n  \"created\": \"<long>\",\n  \"updated\": \"<long>\",\n  \"currency\": \"<string>\",\n  \"amount\": \"<double>\",\n  \"customer\": {\n    \"id\": \"<string>\",\n    \"email\": \"<email>\"\n  },\n  \"status\": \"VALIDATION_SUCCESSFUL\",\n  \"submerchant_id\": \"<string>\",\n  \"customer_currency\": \"<string>\",\n  \"customer_amount\": \"<double>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "61d64f39-738d-4221-a9a6-01a5069c22d7",
                            "name": "The payout cannot be captured in its current state.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payouts",
                                        ":id",
                                        "capture"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of the previously validated payout.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {}
                            },
                            "status": "Bad Request",
                            "code": 400,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "9cf3fdf7-db5b-4153-ba70-076070dc239c",
                            "name": "Authentication failed.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payouts",
                                        ":id",
                                        "capture"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of the previously validated payout.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {}
                            },
                            "status": "Unauthorized",
                            "code": 401,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "ad50f1ee-e361-429f-a4f2-c7c7d98e957c",
                            "name": "Payout not found.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payouts",
                                        ":id",
                                        "capture"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of the previously validated payout.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {}
                            },
                            "status": "Not Found",
                            "code": 404,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "e9f6953e-8d5e-4984-a39b-24b672a4740c",
                            "name": "Internal server error.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payouts",
                                        ":id",
                                        "capture"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of the previously validated payout.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {}
                            },
                            "status": "Internal Server Error",
                            "code": 500,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        }
                    ],
                    "event": [],
                    "protocolProfileBehavior": {
                        "disableBodyPruning": true
                    }
                },
                {
                    "id": "42287c6b-c374-45a9-ab08-7becebf18a1e",
                    "name": "Retrieve a Payout",
                    "request": {
                        "name": "Retrieve a Payout",
                        "description": {
                            "content": "Retrieves an existing payout by its payout ID.\n\nThe `id` can identify either a prevalidated payout or a captured payout.\n",
                            "type": "text/plain"
                        },
                        "url": {
                            "path": [
                                "payouts",
                                ":id"
                            ],
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "query": [],
                            "variable": [
                                {
                                    "type": "any",
                                    "value": "<string>",
                                    "key": "id",
                                    "disabled": false,
                                    "description": {
                                        "content": "(Required) ID of a prevalidated or captured payout.",
                                        "type": "text/plain"
                                    }
                                }
                            ]
                        },
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "method": "GET",
                        "body": {},
                        "auth": {
                            "type": "basic",
                            "basic": [
                                {
                                    "key": "username",
                                    "value": "{{basicAuthUsername}}"
                                },
                                {
                                    "key": "password",
                                    "value": "{{basicAuthPassword}}"
                                }
                            ]
                        }
                    },
                    "response": [
                        {
                            "id": "44fa049d-cde4-4db9-87cf-72c34a4a6b89",
                            "name": "Payout retrieved successfully.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payouts",
                                        ":id"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of a prevalidated or captured payout.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"object\": \"payout\",\n  \"id\": \"<string>\",\n  \"created\": \"<long>\",\n  \"updated\": \"<long>\",\n  \"currency\": \"<string>\",\n  \"amount\": \"<double>\",\n  \"customer\": {\n    \"id\": \"<string>\",\n    \"email\": \"<email>\"\n  },\n  \"status\": \"VALIDATION_SUCCESSFUL\",\n  \"submerchant_id\": \"<string>\",\n  \"customer_currency\": \"<string>\",\n  \"customer_amount\": \"<double>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "1a711051-7a5d-4c0c-948e-cffcf1275d88",
                            "name": "Authentication failed.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payouts",
                                        ":id"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of a prevalidated or captured payout.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "Unauthorized",
                            "code": 401,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "9b8021e6-f36b-4a22-b9df-fcbf63b88d51",
                            "name": "Payout not found.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payouts",
                                        ":id"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of a prevalidated or captured payout.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "Not Found",
                            "code": 404,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "3c3b64d9-3aa9-4fa7-bbcf-034d656a5f11",
                            "name": "Internal server error.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payouts",
                                        ":id"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of a prevalidated or captured payout.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "Internal Server Error",
                            "code": 500,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        }
                    ],
                    "event": [],
                    "protocolProfileBehavior": {
                        "disableBodyPruning": true
                    }
                },
                {
                    "id": "e4ae1d00-4df1-42e5-9e3c-e7ee32e05eb4",
                    "name": "Retrieve Limits",
                    "request": {
                        "name": "Retrieve Limits",
                        "description": {
                            "content": "Retrieves payout-limit information for a specified currency.\n\nThe `currency` must be provided as a three-letter ISO 4217 currency\ncode.\n",
                            "type": "text/plain"
                        },
                        "url": {
                            "path": [
                                "payouts",
                                "limits",
                                ":currency"
                            ],
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "query": [],
                            "variable": [
                                {
                                    "type": "any",
                                    "value": "QKE",
                                    "key": "currency",
                                    "disabled": false,
                                    "description": {
                                        "content": "(Required) Three-letter ISO 4217 currency code.",
                                        "type": "text/plain"
                                    }
                                }
                            ]
                        },
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "method": "GET",
                        "body": {},
                        "auth": {
                            "type": "basic",
                            "basic": [
                                {
                                    "key": "username",
                                    "value": "{{basicAuthUsername}}"
                                },
                                {
                                    "key": "password",
                                    "value": "{{basicAuthPassword}}"
                                }
                            ]
                        }
                    },
                    "response": [
                        {
                            "id": "faa75e5d-3b42-457f-b792-011622595237",
                            "name": "Payout-limit information retrieved successfully.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payouts",
                                        "limits",
                                        ":currency"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) Three-letter ISO 4217 currency code.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "QKE",
                                            "key": "currency"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "OK",
                            "code": 200,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"currency\": \"IIN\",\n  \"mid\": \"<string>\",\n  \"credit_line\": \"<double>\",\n  \"daily_payout_amount\": \"<double>\",\n  \"daily_payout_balance\": \"<double>\",\n  \"daily_payout_limit\": \"<double>\",\n  \"total_payment_amount\": \"<double>\",\n  \"total_payout_amount\": \"<double>\",\n  \"total_payout_balance\": \"<double>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "bf0975d4-cb8f-4953-94c6-27c822e1254b",
                            "name": "Invalid currency or payout-limit request.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payouts",
                                        "limits",
                                        ":currency"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) Three-letter ISO 4217 currency code.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "QKE",
                                            "key": "currency"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "Bad Request",
                            "code": 400,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "1a8474c1-823c-4378-a636-5b8eee14ea13",
                            "name": "Authentication failed.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payouts",
                                        "limits",
                                        ":currency"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) Three-letter ISO 4217 currency code.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "QKE",
                                            "key": "currency"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "Unauthorized",
                            "code": 401,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "8377df03-0493-4cbe-9d0b-75defe05f125",
                            "name": "Internal server error.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payouts",
                                        "limits",
                                        ":currency"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) Three-letter ISO 4217 currency code.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "QKE",
                                            "key": "currency"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "GET",
                                "body": {}
                            },
                            "status": "Internal Server Error",
                            "code": 500,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        }
                    ],
                    "event": [],
                    "protocolProfileBehavior": {
                        "disableBodyPruning": true
                    }
                }
            ]
        },
        {
            "name": "Refund API Calls",
            "description": "REST API calls used to validate, capture, and retrieve PaysafeCard refunds.",
            "item": [
                {
                    "id": "50309558-fe8d-4176-827c-24869816c309",
                    "name": "Validating a New Refund",
                    "request": {
                        "name": "Validating a New Refund",
                        "description": {
                            "content": "Validates a new refund against an existing payment without executing\nthe refund.\n\nSet `capture` to `false` to validate the refund. At least one of\n`email`, `phone_number`, or `psc_id` must be provided for the customer.\n\nA pending refund can be created for a customer who does not yet have\nan eligible PaysafeCard account. For this flow, provide `language`,\n`country_code`, and `notification_url`.\n\nThe customer receives instructions for creating the account, and refund\nstatus notifications are sent to the supplied `notification_url`.\n",
                            "type": "text/plain"
                        },
                        "url": {
                            "path": [
                                "payments",
                                ":id",
                                "refunds"
                            ],
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "query": [],
                            "variable": [
                                {
                                    "type": "any",
                                    "value": "<string>",
                                    "key": "id",
                                    "disabled": false,
                                    "description": {
                                        "content": "(Required) ID of the payment transaction that will be refunded.",
                                        "type": "text/plain"
                                    }
                                }
                            ]
                        },
                        "header": [
                            {
                                "key": "Content-Type",
                                "value": "application/json"
                            },
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "method": "POST",
                        "body": {
                            "mode": "raw",
                            "raw": "{\n  \"type\": \"PAYSAFECARD\",\n  \"capture\": true,\n  \"amount\": \"<double>\",\n  \"currency\": \"LUS\",\n  \"customer\": {\n    \"email\": false\n  },\n  \"submerchant_id\": \"NnsWI5\",\n  \"comment\": \"<string>\",\n  \"language\": \"WJ\",\n  \"country_code\": \"AD\",\n  \"notification_url\": \"<uri>\"\n}",
                            "options": {
                                "raw": {
                                    "headerFamily": "json",
                                    "language": "json"
                                }
                            }
                        },
                        "auth": {
                            "type": "basic",
                            "basic": [
                                {
                                    "key": "username",
                                    "value": "{{basicAuthUsername}}"
                                },
                                {
                                    "key": "password",
                                    "value": "{{basicAuthPassword}}"
                                }
                            ]
                        }
                    },
                    "response": [
                        {
                            "id": "c66a5683-8805-445a-89a0-e83d517a74c2",
                            "name": "Refund validated successfully.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payments",
                                        ":id",
                                        "refunds"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of the payment transaction that will be refunded.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"type\": \"PAYSAFECARD\",\n  \"capture\": true,\n  \"amount\": \"<double>\",\n  \"currency\": \"LUS\",\n  \"customer\": {\n    \"email\": false\n  },\n  \"submerchant_id\": \"NnsWI5\",\n  \"comment\": \"<string>\",\n  \"language\": \"WJ\",\n  \"country_code\": \"AD\",\n  \"notification_url\": \"<uri>\"\n}",
                                    "options": {
                                        "raw": {
                                            "headerFamily": "json",
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"object\": \"refund\",\n  \"id\": \"<string>\",\n  \"created\": \"<long>\",\n  \"updated\": \"<long>\",\n  \"currency\": \"CBK\",\n  \"amount\": \"<double>\",\n  \"customer\": {\n    \"id\": \"<string>\",\n    \"email\": \"<email>\"\n  },\n  \"status\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "0fb4a962-efb1-4fc3-890d-7b016ddfc2cf",
                            "name": "Invalid refund validation request.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payments",
                                        ":id",
                                        "refunds"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of the payment transaction that will be refunded.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"type\": \"PAYSAFECARD\",\n  \"capture\": true,\n  \"amount\": \"<double>\",\n  \"currency\": \"LUS\",\n  \"customer\": {\n    \"email\": false\n  },\n  \"submerchant_id\": \"NnsWI5\",\n  \"comment\": \"<string>\",\n  \"language\": \"WJ\",\n  \"country_code\": \"AD\",\n  \"notification_url\": \"<uri>\"\n}",
                                    "options": {
                                        "raw": {
                                            "headerFamily": "json",
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Bad Request",
                            "code": 400,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "db3519e8-0e53-4113-b492-2e7888c01434",
                            "name": "Authentication failed.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payments",
                                        ":id",
                                        "refunds"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of the payment transaction that will be refunded.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"type\": \"PAYSAFECARD\",\n  \"capture\": true,\n  \"amount\": \"<double>\",\n  \"currency\": \"LUS\",\n  \"customer\": {\n    \"email\": false\n  },\n  \"submerchant_id\": \"NnsWI5\",\n  \"comment\": \"<string>\",\n  \"language\": \"WJ\",\n  \"country_code\": \"AD\",\n  \"notification_url\": \"<uri>\"\n}",
                                    "options": {
                                        "raw": {
                                            "headerFamily": "json",
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Unauthorized",
                            "code": 401,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "cefb9371-4f34-472b-acff-bd4d24097896",
                            "name": "Payment transaction not found.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payments",
                                        ":id",
                                        "refunds"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of the payment transaction that will be refunded.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"type\": \"PAYSAFECARD\",\n  \"capture\": true,\n  \"amount\": \"<double>\",\n  \"currency\": \"LUS\",\n  \"customer\": {\n    \"email\": false\n  },\n  \"submerchant_id\": \"NnsWI5\",\n  \"comment\": \"<string>\",\n  \"language\": \"WJ\",\n  \"country_code\": \"AD\",\n  \"notification_url\": \"<uri>\"\n}",
                                    "options": {
                                        "raw": {
                                            "headerFamily": "json",
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Not Found",
                            "code": 404,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "2c9815ea-2534-4179-a6bd-b7622bf486e8",
                            "name": "Internal server error.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payments",
                                        ":id",
                                        "refunds"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of the payment transaction that will be refunded.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "id"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Content-Type",
                                        "value": "application/json"
                                    },
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {
                                    "mode": "raw",
                                    "raw": "{\n  \"type\": \"PAYSAFECARD\",\n  \"capture\": true,\n  \"amount\": \"<double>\",\n  \"currency\": \"LUS\",\n  \"customer\": {\n    \"email\": false\n  },\n  \"submerchant_id\": \"NnsWI5\",\n  \"comment\": \"<string>\",\n  \"language\": \"WJ\",\n  \"country_code\": \"AD\",\n  \"notification_url\": \"<uri>\"\n}",
                                    "options": {
                                        "raw": {
                                            "headerFamily": "json",
                                            "language": "json"
                                        }
                                    }
                                }
                            },
                            "status": "Internal Server Error",
                            "code": 500,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        }
                    ],
                    "event": [],
                    "protocolProfileBehavior": {
                        "disableBodyPruning": true
                    }
                },
                {
                    "id": "df9d2bbc-34c5-44ba-9568-a692e1572f05",
                    "name": "Capturing a Prevalidated Refund",
                    "request": {
                        "name": "Capturing a Prevalidated Refund",
                        "description": {
                            "content": "Captures a refund that was successfully validated in a previous refund\nrequest.\n\nUse the refund `id` returned by the validation response as `refundid`.\n\nThis operation does not require a request body.\n",
                            "type": "text/plain"
                        },
                        "url": {
                            "path": [
                                "payments",
                                ":paymentid",
                                "refunds",
                                ":refundid",
                                "capture"
                            ],
                            "host": [
                                "{{baseUrl}}"
                            ],
                            "query": [],
                            "variable": [
                                {
                                    "type": "any",
                                    "value": "<string>",
                                    "key": "paymentid",
                                    "disabled": false,
                                    "description": {
                                        "content": "(Required) ID of the original payment transaction.",
                                        "type": "text/plain"
                                    }
                                },
                                {
                                    "type": "any",
                                    "value": "<string>",
                                    "key": "refundid",
                                    "disabled": false,
                                    "description": {
                                        "content": "(Required) ID of the successfully prevalidated refund.",
                                        "type": "text/plain"
                                    }
                                }
                            ]
                        },
                        "header": [
                            {
                                "key": "Accept",
                                "value": "application/json"
                            }
                        ],
                        "method": "POST",
                        "body": {},
                        "auth": {
                            "type": "basic",
                            "basic": [
                                {
                                    "key": "username",
                                    "value": "{{basicAuthUsername}}"
                                },
                                {
                                    "key": "password",
                                    "value": "{{basicAuthPassword}}"
                                }
                            ]
                        }
                    },
                    "response": [
                        {
                            "id": "9c99eb87-f74f-4687-8fd4-d2a5a96784d4",
                            "name": "Prevalidated refund captured successfully.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payments",
                                        ":paymentid",
                                        "refunds",
                                        ":refundid",
                                        "capture"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of the original payment transaction.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "paymentid"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of the successfully prevalidated refund.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "refundid"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {}
                            },
                            "status": "Created",
                            "code": 201,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"object\": \"refund\",\n  \"id\": \"<string>\",\n  \"created\": \"<long>\",\n  \"updated\": \"<long>\",\n  \"currency\": \"CBK\",\n  \"amount\": \"<double>\",\n  \"customer\": {\n    \"id\": \"<string>\",\n    \"email\": \"<email>\"\n  },\n  \"status\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        },
                        {
                            "id": "ca478b62-52e5-48db-b41d-37e37c662611",
                            "name": "The refund cannot be captured in its current state.",
                            "originalRequest": {
                                "url": {
                                    "path": [
                                        "payments",
                                        ":paymentid",
                                        "refunds",
                                        ":refundid",
                                        "capture"
                                    ],
                                    "host": [
                                        "{{baseUrl}}"
                                    ],
                                    "query": [],
                                    "variable": [
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of the original payment transaction.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "paymentid"
                                        },
                                        {
                                            "disabled": false,
                                            "description": {
                                                "content": "(Required) ID of the successfully prevalidated refund.",
                                                "type": "text/plain"
                                            },
                                            "type": "any",
                                            "value": "<string>",
                                            "key": "refundid"
                                        }
                                    ]
                                },
                                "header": [
                                    {
                                        "key": "Accept",
                                        "value": "application/json"
                                    },
                                    {
                                        "description": {
                                            "content": "Added as a part of security scheme: basic",
                                            "type": "text/plain"
                                        },
                                        "key": "Authorization",
                                        "value": "Basic <credentials>"
                                    }
                                ],
                                "method": "POST",
                                "body": {}
                            },
                            "status": "Bad Request",
                            "code": 400,
                            "header": [
                                {
                                    "key": "Content-Type",
                                    "value": "application/json"
                                }
                            ],
                            "body": "{\n  \"code\": \"<string>\",\n  \"message\": \"<string>\",\n  \"number\": \"<integer>\",\n  \"param\": \"<string>\"\n}",
                            "cookie": [],
                            "_postman_previewlanguage": "json"
                        }
                    ],
                    "event": [],
                    "protocolProfileBehavior": {
                        "disableBodyPruning": true
                    }
                }
            ]
        }
    ],
    "event": [],
    "variable": [
        {
            "key": "baseUrl",
            "value": "https://apitest.paysafecard.com/v1"
        }
    ],
    "info": {
        "_postman_id": "517c9f6e-d708-4e8e-bdaa-b3d9216cf9b8",
        "name": "PaysafeCard REST API Calls",
        "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
        "description": {
            "content": "## Overview\n\nThis API allows merchants to create Paysafecard payments.\n\n## Authentication\n\nAuthentication is performed using HTTP Basic Authentication.\n\nThe Authorization header must contain a Base64-encoded value of the provided `API Key`\n\ni.e.: the provided API Key is `psc_8oJu3x6IYttbIusxpBUG7XNFohhBpjw`\n\nThe value that needs to be provided in the Authorization Header is:\n\n```\nBasic cHNjXzhvSnUzeDZJWXR0Ykl1c3hwQlVHN1hORm9oaEJwanc=\n```",
            "type": "text/plain"
        }
    }
}