List Access Tags
Retrieve all access tags for the current platform.
Endpoint
GET /api/access-tags
Authentication
Requires admin or creator role.
Response
Returns an array of access tag objects.
[
{
"id": 1,
"title": "Premium Member",
"PlatformId": 35,
"AuthorId": null,
"createdAt": "2024-01-15T10:30:00.000Z",
"updatedAt": "2024-01-15T10:30:00.000Z"
},
{
"id": 2,
"title": "Beta Tester",
"PlatformId": 35,
"AuthorId": 12345,
"createdAt": "2024-02-01T08:00:00.000Z",
"updatedAt": "2024-02-01T08:00:00.000Z"
}
]
Notes
- Results are filtered to the authenticated user's platform.
- Deprecated alias:
GET /api/user-tags