NAV
shell ruby python csharp php

MeetingTime

The MeetingTime object

The MeetingTime object looks like this in JSON:

{
    "object": "meeting_time",
    "id": 6,
    "name": "Main Lecture",
    "start_time": "08:00AM",
    "end_time": "09:00AM",
    "weekdays": [
        "mo",
        "we",
        "fr"
    ],
    "recurrence_interval": 1,
    "url": null,
    "notes": null,
    "building": [],
    "sandbox": true,
    "api_version": null
}
Attribute Required Data Type
id Yes int
name Yes text (45)
start_time No --
end_time No --
weekdays Yes set (su, mo, tu, we, th, fr, sa)
recurrence_interval Yes int
url No text (2100)
notes No --
building No --
sandbox No bool
api_version No --

index

Example code to call this method:

curl "https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes" \
-H "Content-Type: application/json" \ 
-H "Authorization: Bearer YOUR_POPULI_API_KEY" \ 
-X GET
require 'httparty'
response = HTTParty.get(
 'https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes',
 headers: {
  'Authorization' => 'Bearer YOUR_POPULI_API_KEY'
 },
)
puts response.body
import requests
response = requests.get(
 'https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes',
 headers={
  'Authorization': 'Bearer YOUR_POPULI_API_KEY'
 },
)
print(response.json())
using Newtonsoft.Json;
using RestSharp;
var client = new RestClient();
var request = new RestRequest(new Uri("https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes"), Method.Get);
request.AddHeader("Authorization", "Bearer YOUR_POPULI_API_KEY");
var response = client.Execute(request);
var response_object = JsonConvert.DeserializeObject(response.Content);
Console.Write(response_object);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes');
curl_setopt($curl, CURLOPT_HTTPHEADER, ['Authorization: Bearer YOUR_POPULI_API_KEY']);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'GET');
$response = curl_exec($curl);
$response_decoded = json_decode($response);
var_dump($response_decoded);

Example response:

{
    "object": "list",
    "count": 2,
    "results": 2,
    "results_per_page": null,
    "pages": 1,
    "page": 1,
    "offset": 0,
    "has_more": false,
    "data": [
        {
            "object": "meeting_time",
            "id": 6,
            "name": "Main Lecture",
            "start_time": "08:00AM",
            "end_time": "09:00AM",
            "weekdays": [
                "mo",
                "we",
                "fr"
            ],
            "recurrence_interval": 1,
            "url": null,
            "notes": null,
            "building": []
        }
    ],
    "sandbox": true,
    "api_version": "2026-07-13"
}

Retrieves all MeetingTime objects tied to a specific Courseoffering.

HTTP Request

GET /courseofferings/(courseoffering)/meetingtimes

Parameters

None

Permissions

One of the following roles is required to call this method:

create

Example code to call this method:

curl "https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes" \
-H "Content-Type: application/json" \ 
-H "Authorization: Bearer YOUR_POPULI_API_KEY" \ 
-X POST
-d '{
    "weekdays": "[\"sa\"]",
    "name": "Saturday Lab",
    "start_time": "08:00AM",
    "end_time": "09:00AM",
    "recurrence_interval": 1,
    "room_id": 1,
    "url": "https:\/\/example.com",
    "notes": "Saturday lab session",
    "notify_attendees": "false"
}' \ 
require 'httparty'
response = HTTParty.post(
 'https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes',
 headers: {
  'Authorization' => 'Bearer YOUR_POPULI_API_KEY'
 },
 body: {
  :weekdays => ["sa"],
  :start_time => '08:00AM',
  :end_time => '09:00AM'
 }.to_json
)
puts response.body
import requests
response = requests.post(
 'https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes',
 headers={
  'Authorization': 'Bearer YOUR_POPULI_API_KEY'
 },
 json={
  'weekdays': ["sa"],
  'start_time': '08:00AM',
  'end_time': '09:00AM'
 }
)
print(response.json())
using Newtonsoft.Json;
using RestSharp;
var client = new RestClient();
var request = new RestRequest(new Uri("https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes"), Method.Post);
request.AddHeader("Authorization", "Bearer YOUR_POPULI_API_KEY");
request.AddJsonBody(new {
  weekdays = ["sa"],
  start_time = "08:00AM",
  end_time = "09:00AM"
});
var response = client.Execute(request);
var response_object = JsonConvert.DeserializeObject(response.Content);
Console.Write(response_object);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes');
curl_setopt($curl, CURLOPT_HTTPHEADER, ['Authorization: Bearer YOUR_POPULI_API_KEY']);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode([
  'weekdays' => ["sa"],
  'start_time' => '08:00AM',
  'end_time' => '09:00AM'
]));
$response = curl_exec($curl);
$response_decoded = json_decode($response);
var_dump($response_decoded);

Example response:

{
    "object": "meeting_time",
    "id": 8,
    "name": "Saturday Lab",
    "start_time": "08:00AM",
    "end_time": "09:00AM",
    "weekdays": [
        "sa"
    ],
    "recurrence_interval": 1,
    "url": "https:\/\/example.com",
    "notes": "Saturday lab session",
    "building": [],
    "sandbox": true,
    "api_version": "2026-07-13"
}

Creates a new MeetingTime object.

HTTP Request

POST /courseofferings/(courseoffering)/meetingtimes

Parameters

Name Required Data Type Description
weekdays Yes array of weekday codes
name No string
start_time Yes string
end_time Yes string
recurrence_interval No integer
room_id No integer
url No string
notes No string
notify_attendees No bool Default is false

Permissions

One of the following roles is required to call this method:

show

Example code to call this method:

curl "https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes/(meetingtime)" \
-H "Content-Type: application/json" \ 
-H "Authorization: Bearer YOUR_POPULI_API_KEY" \ 
-X GET
require 'httparty'
response = HTTParty.get(
 'https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes/(meetingtime)',
 headers: {
  'Authorization' => 'Bearer YOUR_POPULI_API_KEY'
 },
)
puts response.body
import requests
response = requests.get(
 'https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes/(meetingtime)',
 headers={
  'Authorization': 'Bearer YOUR_POPULI_API_KEY'
 },
)
print(response.json())
using Newtonsoft.Json;
using RestSharp;
var client = new RestClient();
var request = new RestRequest(new Uri("https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes/(meetingtime)"), Method.Get);
request.AddHeader("Authorization", "Bearer YOUR_POPULI_API_KEY");
var response = client.Execute(request);
var response_object = JsonConvert.DeserializeObject(response.Content);
Console.Write(response_object);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes/(meetingtime)');
curl_setopt($curl, CURLOPT_HTTPHEADER, ['Authorization: Bearer YOUR_POPULI_API_KEY']);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'GET');
$response = curl_exec($curl);
$response_decoded = json_decode($response);
var_dump($response_decoded);

Example response:

{
    "object": "meeting_time",
    "id": 6,
    "name": "Main Lecture",
    "start_time": "08:00AM",
    "end_time": "09:00AM",
    "weekdays": [
        "mo",
        "we",
        "fr"
    ],
    "recurrence_interval": 1,
    "url": null,
    "notes": null,
    "building": [],
    "sandbox": true,
    "api_version": "2026-07-13"
}

Retrieves a specific MeetingTime object.

HTTP Request

GET /courseofferings/(courseoffering)/meetingtimes/(meetingtime)

Parameters

No additional parameters are needed beyond the ID of the object being requested that appears in the URL.

Permissions

One of the following roles is required to call this method:

update

Example code to call this method:

curl "https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes/(meetingtime)" \
-H "Content-Type: application/json" \ 
-H "Authorization: Bearer YOUR_POPULI_API_KEY" \ 
-X PUT
-d '{
    "weekdays": "[\"sa\"]",
    "name": "Updated Saturday Lab",
    "start_time": "10:00AM",
    "end_time": "11:00AM",
    "recurrence_interval": 1,
    "room_id": 1,
    "url": "https:\/\/example.com",
    "notes": "Updated Saturday lab session",
    "notify_attendees": "false"
}' \ 
require 'httparty'
response = HTTParty.put(
 'https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes/(meetingtime)',
 headers: {
  'Authorization' => 'Bearer YOUR_POPULI_API_KEY'
 },
)
puts response.body
import requests
response = requests.put(
 'https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes/(meetingtime)',
 headers={
  'Authorization': 'Bearer YOUR_POPULI_API_KEY'
 },
)
print(response.json())
using Newtonsoft.Json;
using RestSharp;
var client = new RestClient();
var request = new RestRequest(new Uri("https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes/(meetingtime)"), Method.Put);
request.AddHeader("Authorization", "Bearer YOUR_POPULI_API_KEY");
var response = client.Execute(request);
var response_object = JsonConvert.DeserializeObject(response.Content);
Console.Write(response_object);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes/(meetingtime)');
curl_setopt($curl, CURLOPT_HTTPHEADER, ['Authorization: Bearer YOUR_POPULI_API_KEY']);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'PUT');
$response = curl_exec($curl);
$response_decoded = json_decode($response);
var_dump($response_decoded);

Example response:

{
    "object": "meeting_time",
    "id": 6,
    "name": "Updated Saturday Lab",
    "start_time": "10:00AM",
    "end_time": "11:00AM",
    "weekdays": [
        "sa"
    ],
    "recurrence_interval": 1,
    "url": "https:\/\/example.com",
    "notes": "Updated Saturday lab session",
    "building": [],
    "sandbox": true,
    "api_version": "2026-07-13"
}

Updates an existing MeetingTime object.

HTTP Request

PUT /courseofferings/(courseoffering)/meetingtimes/(meetingtime)

Parameters

Name Required Data Type Description
weekdays No array of weekday codes
name No string
start_time No string
end_time No string
recurrence_interval No integer
room_id No integer
url No string
notes No string
notify_attendees No bool Default is false

Permissions

One of the following roles is required to call this method:

delete

Example code to call this method:

curl "https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes/(meetingtime)" \
-H "Content-Type: application/json" \ 
-H "Authorization: Bearer YOUR_POPULI_API_KEY" \ 
-X DELETE
require 'httparty'
response = HTTParty.delete(
 'https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes/(meetingtime)',
 headers: {
  'Authorization' => 'Bearer YOUR_POPULI_API_KEY'
 },
)
puts response.body
import requests
response = requests.delete(
 'https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes/(meetingtime)',
 headers={
  'Authorization': 'Bearer YOUR_POPULI_API_KEY'
 },
)
print(response.json())
using Newtonsoft.Json;
using RestSharp;
var client = new RestClient();
var request = new RestRequest(new Uri("https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes/(meetingtime)"), Method.Delete);
request.AddHeader("Authorization", "Bearer YOUR_POPULI_API_KEY");
var response = client.Execute(request);
var response_object = JsonConvert.DeserializeObject(response.Content);
Console.Write(response_object);
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://yourschool.populiweb.com/api2/courseofferings/(courseoffering)/meetingtimes/(meetingtime)');
curl_setopt($curl, CURLOPT_HTTPHEADER, ['Authorization: Bearer YOUR_POPULI_API_KEY']);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'DELETE');
$response = curl_exec($curl);
$response_decoded = json_decode($response);
var_dump($response_decoded);

Example response:

{
    "object": "meeting_time",
    "id": 7,
    "deleted": true
}

Deletes an existing MeetingTime object.

HTTP Request

DELETE /courseofferings/(courseoffering)/meetingtimes/(meetingtime)

Parameters

No additional parameters are needed beyond the ID of the object to delete that appears in the URL.

Permissions

One of the following roles is required to call this method: