Get Referrals
Developing
Prod Env
Prod Env
GET
/referrals
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.sweetref.com/referrals'
Responses
🟢200Success
application/json
Body
array of:
id
stringÂ
required
first_name
stringÂ
required
last_name
stringÂ
required
email
stringÂ
required
conversion_date
stringÂ
required
affiliate_id
stringÂ
required
total_commission
integerÂ
required
created_at
stringÂ
required
updated_at
stringÂ
required
Example
[
{
"id": "string",
"first_name": "string",
"last_name": "string",
"email": "string",
"conversion_date": "string",
"affiliate_id": "string",
"total_commission": 0,
"created_at": "string",
"updated_at": "string"
}
]
Modified at 2024-11-10 14:58:07