Find Affiliate by ID
Prod Env
Prod Env
GET
/affiliates/{id}
affiliates
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
string
required
Example:
ap_kgoLDRy3J9DkluA4pYmrdW2V
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/affiliates/ap_kgoLDRy3J9DkluA4pYmrdW2V'
Responses
🟢200OK
application/json
Body
id
string
required
code
string
required
conversions_count
integer
optional
created_at
string <date-time>
optional
email
string <email>
required
first_name
string
required
last_name
string
required
payouts_count
integer
optional
paypal_email
string <email>
optional
referrals_count
integer
optional
signups_count
integer
optional
source
string
optional
status
enum<string>
required
Allowed values:
pendingapprovedrejected
total_commission_cents
integer
optional
total_payout_cents
integer
optional
total_profit_cents
integer
optional
total_revenue_cents
integer
optional
updated_at
string <date-time>
optional
visits_count
integer
optional
wise_email
string <email>
optional
Example
{
"id": "ap_kgoLDRy3J9DkluA4pYmrdW2V",
"code": "DJ0ASLVZ",
"conversions_count": 0,
"created_at": "2024-08-09 00:00:00 UTC",
"email": "aff0@aff.com",
"first_name": "Maximo",
"last_name": "Bednar",
"payouts_count": 25,
"paypal_email": "aff0@aff.com",
"referrals_count": 8,
"signups_count": 0,
"source": "program_page",
"status": "pending",
"total_commission_cents": 383430,
"total_payout_cents": 1156300,
"total_profit_cents": 894670,
"total_revenue_cents": 1278100,
"updated_at": "2024-08-09 15:34:17 UTC",
"visits_count": 1,
"wise_email": "aff0@aff.com"
}
🟠404Record not found
🟠400Invalid input
Modified at 2024-11-10 14:57:57