Get All Affiliates

Get all the affiliates of an app

GET https://platform.shoffi.app/API/affiliate/getAll

Request Body

[
    {
        "affiliateDetails": {
            "email": "[email protected]",
            "firstName": "Tobias",
            "lastName": "Lütke",
            "nickName": "tobi"
        }
    },
    {
        "affiliateDetails": {
            "email": "[email protected]",
            "firstName": "Harley",
            "lastName": "Finkelstein",
            "nickName": "President"
        }
    }
]
curl -X POST \
  https://platform.shoffi.app/API/affiliate/getAll \
  -H 'Content-Type: application/json' \
  -d '{
    "apiKey": "YourKey",
    "appId": 00000000
  }'

Response example

200 OK
Content-Type: application/json
[
    {
        "affiliateDetails": {
            "email": "[email protected]",
            "firstName": "Tobias",
            "lastName": "Lütke",
            "nickName": "tobi"
        }
    },
    {
        "affiliateDetails": {
            "email": "[email protected]",
            "firstName": "Harley",
            "lastName": "Finkelstein",
            "nickName": "President"
        }
    }
]

Last updated