List Affiliates
GET
/admin/affiliates
const url = 'http://localhost:9000/admin/affiliates';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:9000/admin/affiliatesResponses
Section titled “ Responses ”OK
Media type application/json
object
affiliates
Array<object>
object
id
string
name
string
email
string
phone
string
status
string
currency_code
string
created_at
string format: date-time
*addresses
string
count
integer
limit
integer
offset
integer
Example generated
{ "affiliates": [ { "id": "example", "name": "example", "email": "example", "phone": "example", "status": "example", "currency_code": "example", "created_at": "2026-04-15T12:00:00Z", "*addresses": "example" } ], "count": 1, "limit": 1, "offset": 1}