Get all the affiliates of an app
curl -X POST \
https://platform.shoffi.app/API/affiliate/getAll \
-H 'Content-Type: application/json' \
-d '{
"apiKey": "YourKey",
"appId": 00000000
}'
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"
}
}
]