|
Course groups and their participants
|
class_group | Get information on a given group. |
common_groups | Get a list of common classgroups of two users |
group | Get information on a given group. |
groups | Get information on multiple groups. |
is_lecturer | Is user a group lecturer. |
is_participant | Is student participant of the group. |
lecturer | Get public list of groups lectured by given staff member. |
participant | Get groups related to given user's study |
user | Get all groups related to the user. |
services/groups/class_group ¶
|
||||||
https://usosapi.awf.krakow.pl/services/groups/class_group | ||||||
Get information on a given group. | ||||||
course_unit_id | required | ID of course unit | ||||
group_number | required | Group number | ||||
fields | optional |
Default value: course_unit_id|number Selector of result fields you are interested in. The selector may contain any subset of fields, which are described in the returns section. |
||||
format | optional |
Default value: json Format in which to return values. See supported output formats. |
||||
callback | optional |
Required only if you've chosen jsonp as a return format. |
||||
Plus optional standard OAuth Consumer signing arguments: oauth_consumer_key, oauth_nonce, oauth_timestamp, oauth_signature, oauth_signature_method, oauth_version. Plus optional oauth_token for Token authorization. | ||||||
Returned value: A dictionary of selected fields and their values. Available fields:
|
services/groups/common_groups ¶
|
||||||
https://usosapi.awf.krakow.pl/services/groups/common_groups | ||||||
This is a BETA method. We're looking for beta-testers. Until we find them, there's a substantial probability it won't stay backwards-compatible! If you are planning on using this method, please let us know. Then, we will work with you and move it out of beta as soon as we can. Get a list of common classgroups of two users. One of these users is the issuer of your Access Token, the other is the one provided in the user_id parameter. This method will return all the classgroups that these two users have both participated or lectured at. Some extra metadata will be returned along the classgroups (see the returns section). | ||||||
user_id | required | ID of the "other" user | ||||
fields | required |
Selector of result fields you are interested in. The selector may contain any subset of fields, which are described in the returns section. |
||||
format | optional |
Default value: json Format in which to return values. See supported output formats. |
||||
callback | optional |
Required only if you've chosen jsonp as a return format. |
||||
Plus required standard OAuth Consumer signing arguments: oauth_consumer_key, oauth_nonce, oauth_timestamp, oauth_signature, oauth_signature_method, oauth_version. Plus required oauth_token for Token authorization. | ||||||
Returned value: A list of dictionaries. Each dictionary will contain the following fields:
|
services/groups/group ¶
|
||||||
https://usosapi.awf.krakow.pl/services/groups/group | ||||||
Get information on a given group.
| ||||||
course_unit_id | required | ID of a course unit. | ||||
group_number | required | Group number unique with regard to the course unit. | ||||
fields | required | Pipe-separated list of informational fields/sections you're interested in. This must be any subset of keys, which are described in the returns section. | ||||
format | optional |
Default value: json Format in which to return values. See supported output formats. |
||||
callback | optional | Required only if you've chosen jsonp as a return format. | ||||
Plus optional standard OAuth Consumer signing arguments: oauth_consumer_key, oauth_nonce, oauth_timestamp, oauth_signature, oauth_signature_method, oauth_version. Plus optional oauth_token for Token authorization. | ||||||
Returned value: A dictionary of selected result fields and their values. Available fields:
|
services/groups/groups ¶
|
||||||
https://usosapi.awf.krakow.pl/services/groups/groups | ||||||
Get information on multiple groups. This method is similar to the group method, but it works with multiple groups. It also has a limited fields support. | ||||||
group_ids | required | Pipe-separated list of pairs identyfing groups (in the following format: "(course_unit_id,group_number)|..."). | ||||
fields | required | Pipe-separated list of fields (as in the group method). Only primary fields are allowed. | ||||
format | optional |
Default value: json Format in which to return values. See supported output formats. |
||||
callback | optional | Required only if you've chosen jsonp as a return format. | ||||
Plus optional standard OAuth Consumer signing arguments: oauth_consumer_key, oauth_nonce, oauth_timestamp, oauth_signature, oauth_signature_method, oauth_version. Plus optional oauth_token for Token authorization. | ||||||
Returned value: A dictionary: your group_ids will be mapped to dictionary's keys, and each value will contain the description of a group, as defined in the group method. |
services/groups/is_lecturer ¶
|
||||||
https://usosapi.awf.krakow.pl/services/groups/is_lecturer | ||||||
Is user a group lecturer.
| ||||||
course_unit_id | required | ID of a course unit. | ||||
group_number | required | Group number unique with regard to the course unit. | ||||
user_id | optional |
Default value: access token issuer. ID of a user. |
||||
format | optional |
Default value: json Format in which to return values. See supported output formats. |
||||
callback | optional | Required only if you've chosen jsonp as a return format. | ||||
Plus optional standard OAuth Consumer signing arguments: oauth_consumer_key, oauth_nonce, oauth_timestamp, oauth_signature, oauth_signature_method, oauth_version. Plus optional oauth_token for Token authorization. | ||||||
Returned value: Boolean value - true if user corresponds to Access Token is lecturer of the group, false otherwise. |
services/groups/is_participant ¶
|
||||||
https://usosapi.awf.krakow.pl/services/groups/is_participant | ||||||
Is student participant of the group.
| ||||||
course_unit_id | required | ID of a course unit. | ||||
group_number | required | Group number unique with regard to the course unit. | ||||
format | optional |
Default value: json Format in which to return values. See supported output formats. |
||||
callback | optional | Required only if you've chosen jsonp as a return format. | ||||
Plus required standard OAuth Consumer signing arguments: oauth_consumer_key, oauth_nonce, oauth_timestamp, oauth_signature, oauth_signature_method, oauth_version. Plus required oauth_token for Token authorization. | ||||||
Returned value: Boolean value - true if student participates in the group. |
services/groups/lecturer ¶
|
||||||
https://usosapi.awf.krakow.pl/services/groups/lecturer | ||||||
Get public list of groups lectured by given staff member. Public means, that you may
anonymously access such activities of ALL staff members, you don't need their approval for this
(teachers' schedules are publicly available).
| ||||||
fields | required | Pipe-separated list of fields (as in the group method). Only primary fields are allowed. | ||||
user_id | optional |
Default value: access token issuer. ID of a user. |
||||
lang | optional |
Default value: pl Either pl or en - resulting list of groups will be sorted by the course name in the specified language. |
||||
active_terms | optional |
Default value: false Return only these groups which are related to the currently active academic terms. |
||||
format | optional |
Default value: json Format in which to return values. See supported output formats. |
||||
callback | optional | Required only if you've chosen jsonp as a return format. | ||||
Plus optional standard OAuth Consumer signing arguments: oauth_consumer_key, oauth_nonce, oauth_timestamp, oauth_signature, oauth_signature_method, oauth_version. Plus optional oauth_token for Token authorization. | ||||||
Returned value: The same as defined in participant method. |
services/groups/participant ¶
|
||||||
https://usosapi.awf.krakow.pl/services/groups/participant | ||||||
Get groups related to given user's study. This means, that if the user is also a staff member, then this method will NOT include entries related to his staff-activities. | ||||||
fields | required | Pipe-separated list of fields (as in the group method). Only primary fields are allowed. | ||||
lang | optional |
Default value: pl Either pl or en - resulting list of groups will be sorted by the course name in the specified language. |
||||
active_terms | optional |
Default value: false Return only these groups which are related to the currently active academic terms. |
||||
format | optional |
Default value: json Format in which to return values. See supported output formats. |
||||
callback | optional | Required only if you've chosen jsonp as a return format. | ||||
Plus required standard OAuth Consumer signing arguments: oauth_consumer_key, oauth_nonce, oauth_timestamp, oauth_signature, oauth_signature_method, oauth_version. Plus required oauth_token for Token authorization. | ||||||
Returned value: A dictionary with the following fields:
|
services/groups/user ¶
|
||||||
https://usosapi.awf.krakow.pl/services/groups/user | ||||||
Get all groups related to the user. This is like joining
participant and lecturer methods in one.
| ||||||
fields | required | Pipe-separated list of fields (as in the group method). Only primary fields are allowed. | ||||
lang | optional |
Default value: pl Either pl or en - resulting list of groups will be sorted by the course name in the specified language. |
||||
active_terms | optional |
Default value: false Return only these groups which are related to the currently active academic terms. |
||||
format | optional |
Default value: json Format in which to return values. See supported output formats. |
||||
callback | optional | Required only if you've chosen jsonp as a return format. | ||||
Plus optional standard OAuth Consumer signing arguments: oauth_consumer_key, oauth_nonce, oauth_timestamp, oauth_signature, oauth_signature_method, oauth_version. Plus optional oauth_token for Token authorization. | ||||||
Returned value: The same as defined in participant method extended by field relationship_type - which determines the relationship between the token issuer (if available) and this group (allowed values are: participant, or lecturer). |