GET /v2/tags_users
Return all the tags users
GET /v2/users/:user_id/tags_users
Return all the tags users of the given User
GET /v2/cursus/:cursus_id/tags_users
Return all the tags users of the given Cursus
GET /v2/campus/:campus_id/tags_users
Return all the tags users of the given Campus
GET /v2/tags/:tag_id/tags_users
Return all the tags users of the given Tag
live_help Notes
chrome_reader_mode
This resource is paginated by 30 items
settings Params
| Param name | Description |
|---|---|
| user_id |
optional
. Must be String
The user id or slug |
| cursus_id |
optional
. Must be String
The cursus id or slug |
| campus_id |
optional
. Must be String
The campus id or slug |
| tag_id |
optional
. Must be String
The tag id |
| sort |
optional
. Must be one of: id, tag_id, user_id, created_at, updated_at, campus_id.
The sort field. Sorted by id asc by default. MoreExample:To sort on tags users on the fields updated_at on a descending order and campus_id on a ascending order: ...&sort=-updated_at,campus_id |
| filter |
optional
. Must be one of: id, tag_id, user_id, created_at, updated_at, campus_id, cursus_id.
Filtering on one or more fields MoreExample:
To filter on tags users with the
...&filter[id]=a_value,another_value Filterable fields:
|
| range |
optional
. Must be one of: id, tag_id, user_id, created_at, updated_at, campus_id.
Select on a particular range MoreExample:
To range on tags users with the
...&range[campus_id]=min_value,max_value Rangeable fields:
|
| page |
optional
. Must be a Hash
The pagination params, as a hash |
| page[number] |
optional
. Must be Fixnum
The current page |
| page[size] |
optional
. Must be Fixnum
The number of items per page, defaults to 30, maximum 100 |