Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Name

Description

userId

The ID of the timetable

timetableId

The ID of the timetable

...

GROUPS

...

/api/user/group/:zid

Request type: GET

Description

Get the information of a group given a group ID.

Code

Format

200

Code Block
languagejson
{
    "status": Success message for creation of group.
    "data": {
      "groups": [
        ...Groups
      ]
    }
}

404

Code Block
languagejson
{
    "timestamp": An ISOString format timestamp of when error encountered.
    "path": The url path that cause this error to occur.
    "data": Can't find user!.
}

Path Parameters

Name

Description

zid

The zid of the user.

Group object:

Code Block
"id": The id of the group created.
"name": The name of the group created.
"visibility": The group visibility, the default is private groups.
"timetableIDs": The list of all the selected timetables for users in the group.
"memberIDs": The list of all members in the group.
"groupAdmins": The list of all the group admins.
"groupImageURL": The image URL for the group.

/api/group/:id

Request type: GET

Description

Get the information of a group given a group ID.

Code

Format

200

Code Block
languagejson
{
    "status": Success message for creation of group.
    "data": {
      "id": The id of the group created.
      "name": The name of the group created.
      "visibility": The group visibility, the default is private groups.
      "timetableIDs": The list of all the selected timetables for users in the group.
      "memberIDs": The list of all members in the group.
      "groupAdmins": The list of all the group admins.
      "groupImageURL": The image URL for the group.
    }
}

404

Code Block
languagejson
{
    "timestamp": An ISOString format timestamp of when error encountered.
    "path": The url path that cause this error to occur.
    "data": Can't find group!.
}

Path Parameters

Name

Description

id

The ID of the group.

/api/group

Request type: POST

Description

Create a new group.

Result

...

/api/group

Request type: PUT

Description

Updates the information of a group given a group ID.

...

/api/group

Request type: DELETE

Description

Delete a group given the group ID.

...