Sorry, you need to enable JavaScript to visit this website.

1 Create Order

Action

Using your clientID and clientSecret (which you obtained when you created an application), you will make a Post request using the endpoint and values below to create order.

Method POST
Endpoint https://b2b-api.nedbank.co.za/apimarket/b2b-sb/cashout/v1/orders
Request
Headers
Header Value Description
x-ibm-client-id <YOUR CLIENT ID> The client ID you received when creating the app on the portal.
x-ibm-client-secret <YOUR CLIENT SECRET> The client secret you received when creating the app on the portal.
x-idempotency-key <RANDOM INTEGER> Random integer. Must be unique for every call.
x-jws-signature <RANDOM INTEGER> Replace with random value.
x-fapi-financial-id OB/2017/001 Financial ID.
x-fapi-customer-ip-address 101.12.212.99 Customer IP address.
x-fapi-interaction-id <RANDOM GUID> Replace with random GUID.
Content-Type application/json The data type being sent to the endpoint.

Body JSON
                                
{
    "Data": {
        "Initiation": {
            "InstructionIdentification": "REPLACE WITH RANDOM UNIQUE STRING",
            "InstructedAmount": {
                "Amount": "AMOUNT VALUE SHOULD BE IN MULTIPLES OF 10",
                "Currency": "ZAR"
            },
            "DebtorAccount": {
                "SchemeName": "account",
                "Identification": "1009000675",
                "Name": "MyRefOnceOffQATrx",
                "SecondaryIdentification": "1"
            },
            "CreditorAccount": {
                "SchemeName": "recipient",
                "Identification": "0710000000",
                "Name": "MyRefOnceOffQATrx",
                "SecondaryIdentification": "1"
            }
        },
        "ExpirationDateTime": "2024-04-04T17:31:51.477Z"
    },
    "Risk": {
        "OrderCreateReference": "REPLACE WITH RANDOM UNIQUE GUID",
        "OrderDateTime": "REPLACE WITH CURRENT DATE"
    }
}
                                
                                
Response JSON
                            
{
    "Data": {
        "OrderId": "951f868c-e5f0-4d16-88f5-866ffce300c6",
        "Status": "PENDING"
    },
    "Links": {
        "Self": "https://api.nedbank.co.za/apimarket/sandbox/cashout/v1/orders"
    },
    "Meta": {
        
    }
}