JSON API » conferences » conferences/notifications/list

Gets the fields of all notifications for a conference.

Input parameters

Requires authentication and the user role privilege.

NameTypeDescriptionRequiredDefault value
auth_usernameStringAuthentication username.Yes
auth_passwordStringAuthentication password.Yes
conferenceIntegerID of conference.Yes, unless code is specified.0
codeStringCode of conference.Yes, unless conference is specified.Empty string.

Specify conference or code, but not both.

Responses

CodeDescription
200Success.
401The authentication details provided are invalid.
402Your role does not allow this.
404The conference does not exist, or you do not have permission to view it.

Data returned

An array of fields, corresponding to the rows of the conference_notifications table in the database.

Example: With required parameters

http://enswitch.example.com/api/json/conferences/notifications/list/?auth_username=user;auth_password=password;conference=123

{ "responses":[ { "code":"200", "key":"", "message":"OK" } ], "data":[ { "conference":123, "type":"number", ... }, { "conference":123, "type":"email", ... } ] }

Change history

VersionChanges
3.13Function added.