Documentation
Beneficiaries
Serbia Beneficiary

Serbia Beneficiary

Before making a payment to a Serbia bank account, you must add the account as a beneficiary. Note that payments to Serbia beneficiaries are via SWIFT.

Below is a sample request for creating a SWIFT beneficiary in Serbia:

cURL
curl --location '{{baseURL}}/beneficiaries' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {{APIKEY}}' \
--data '{
    "reference": "<samplereference>",
    "customerEmail": "ray.jon@mail.com",
    "callbackUrl": "https://webhook.site/38a9e6b0-3388-4399-89d4-3ceafa000001",
    "country": "RS",
    "currency": "USD",
    "destination": {
        "type": "SWIFT",
        "accountName": "Milan Petrovic",
        "accountNumber": "RS35260005601001611379",
        "swiftCode": "RZBSRSBG",
        "bankName": "Raiffeisen Bank Serbia",
        "bankAddress": "Djordja Stanojevica 16",
        "bankCity": "Belgrade",
        "bankPostCode": "11070",
        "bankCountry": "RS",
        "remittancePurpose": "FAMILY_SUPPORT",
        "beneficiary": {
            "type": "INDIVIDUAL",
            "country": "RS",
            "city": "Belgrade",
            "state": "Belgrade",
            "postCode": "11000",
            "address": "Knez Mihailova 5",
            "phoneNumber": "+15551234567",
            "nationality": "RS",
            "idType": "PASSPORT",
            "idNumber": "P1234567",
            "idExpiration": "2030-01-15",
            "gender": "MALE",
            "dateOfBirth": "1990-05-20"
        },
        "sender": {
            "type": "INDIVIDUAL",
            "accountName": "Jane Doe",
            "country": "US",
            "city": "New York",
            "state": "NY",
            "address": "123 Main St",
            "postCode": "10001",
            "phoneNumber": "+12125550123",
            "email": "jane.doe@example.com",
            "gender": "FEMALE",
            "idType": "PASSPORT",
            "idNumber": "US1234567",
            "idIssueDate": "2020-06-01",
            "dateOfBirth": "1990-01-15",
            "countryOfBirth": "US",
            "complianceDocument": {
                "proofOfIdentity": "<document-reference>"
            }
        }
    }
}'

The parameters for adding Serbia SWIFT beneficiaries are:

ParameterDescriptionRequired
typeThis is the payment type. It must be SWIFT✅
accountNameName on the receiving bank account✅
accountNumberAccount number or IBAN of the receiving account✅
swiftCodeSWIFT/BIC of the receiving bank (8 or 11 characters)✅
bankNameName of the receiving bank✅
bankAddressStreet address of the receiving bank✅
bankCityCity of the receiving bank✅
bankPostCodePost code of the receiving bank✅
bankCountryCountry of the receiving bank. Must be RS✅
remittancePurposePurpose of the transfer. See the SWIFT guide for accepted values✅
beneficiaryAccount holder details. See the SWIFT guide✅
senderSender details including complianceDocument. See the SWIFT guide✅
📘

The beneficiary and sender objects, the sender complianceDocument, the optional bankState and intermediaryBank fields and every accepted enumeration value are documented in the SWIFT Beneficiary guide.