Stripe

Integration can be tested here.

Stripe can be contacted here.


Example Request

curl --location 'https://api.revopci.co.uk/' \
--header 'X-Session;' \
--header 'X-Auth;' \
--header 'Content-Type: application/json' \
--data '{
    "provider": "stripe",
    "mode": "test",
    "payment": "payment",
    "parameters":
    {
        "transactionType": "SALE" or "TOKEN" or "TOKENSALE",
        "apiKey": "00000000-0000-0000-0000-000000000000"

        //SALE
        "amount": "200",
        "currency": "GBP",
        "shippingName": "Test Test",
        "shippingLine1": "123 Test Street",
        "shippingLine2": "",
        "shippingCity": "Test",
        "shippingState": "Test",
        "shippingPostalCode": "SANTA1",
        "shippingCountry": "Test",
        "description": "This is a test payment",
        "statementDescriptorSuffix": "TEST002"

        //TOKEN
        "billingName": "Test Test",
        "billingLine1": "123 Test Street",
        "billingLine2": "",
        "billingCity": "Test",
        "billingState": "Test",
        "billingPostalCode": "SANTA1",
        "billingCountry": "Test",

        //TOKENSALE
        "paymentMethod": "00000000-0000-0000-0000-000000000000",
        "amount": "200",
        "currency": "GBP",
        "billingName": "Test Test",
        "billingLine1": "123 Test Street",
        "billingLine2": "",
        "billingCity": "Test",
        "billingState": "Test",
        "billingPostalCode": "SANTA1",
        "billingCountry": "Test",
    }
}'