All selected endpoints require authentication. Include your authorization token in the request headers:Authorization: Bearer your-auth-token
Note: Before creating a user selected platform, first get the list of available platforms using the /api/platform endpoint.
Get selected platforms for the authenticated user
{
id: number;
name: string;
}Create selected platform for the authenticated user
{
id: number;
name: string;
}Note: Before creating a user selected genre, first get the list of available genres using the /api/genre endpoint.
Get selected genres for the authenticated user
{
id: number;
name: string;
}Create selected genre for the authenticated user
{
id: number;
name: string;
}Note: Before creating a user selected selector, first get the list of available selectors using the /api/selector endpoint.
Get selected selectors for the authenticated user
{
selectorId: number;
name: string;
}Create selected selector for the authenticated user
{
selectorId: number;
name: string;
}