Returns the distinct creators of the resellers visible to the caller, for the created_by filter on GET /api/resellers. Respects RBAC.
GET
/filters/resellers
curl \
--request GET 'https://api.your-domain.com/api/filters/resellers' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"code": 200,
"message": "reseller filters retrieved successfully",
"data": {
"created_by": [
{
"user_id": "kyfy0tlnlk3l",
"name": "Sviluppo - Integrazioni Esterne",
"email": "sviluppo+integrazioni@nethesis.it"
}
]
}
}
Response examples (401)
{
"code": 401,
"message": "invalid token",
"data": {}
}
Response examples (403)
{
"code": 403,
"message": "insufficient permissions",
"data": {}
}