Integration with Rewards4 Fast Track Enrolment API


1.0 Introduction


Version 5.0
9th July 2025

1.1 Introduction to SOAP

Rewards4 Fast Track Enrolment provides a standard API for automatic data integration with applications. The format used is “Standard Object Access Protocol” (SOAP).

1.2 Reward4 Fast Track Enrolment API Overview (RFTE)

RFTE API provides a standard, secure way for applications to automatically:

  • Register new members with the Reward4 program
  • Allocate / deduct points for selected members

1.3 Authentication

All API calls include a user ID and password. For simple use, this must be a Rewards4 account with the appropriate level of permission to carry out the function involved. Both ID and password must be passed in the SOAP header as in the example below:

A high level of security is enforced by using Secure Sockets Layer (SSL) for exchanging the information between the client and the API over the network.

<soap:Header>
    <AuthorizationHeader xmlns="https://soapservices.rewards4sport.com/>
        <ID>int</ID>
        <Password>string</Password>
    </AuthorizationHeader>
</soap:Header>

The parameters must be passed in the SOAP body:

<soap:Body>
    <RegisterMember xmlns="https://soapservices.rewards4sport.com/">
        <sSourceID>string</sSourceID>
        <sEmail>string</sEmail>
        <sTitle>string</sTitle>
        <sFirstname>string</sFirstname>
    </RegisterMember>
</soap:Body>

Test and Live Credentials (ID and password) will be provided for each individual Rewards4 partner.

2.0 API Operations


WSDL - https://soapservices.rewards4sport.com/soap.asmx?WSDL

2.1 Allocate Points as Currency
2.2 Deduct Points as Currency
2.3 Redeem Points as Currency
2.4 Reverse Redemption as Currency
2.5 Register Member with IP Address
2.6 Get Member Details By Email Address Or Source ID