API Documentation

All paid plans include API access.

Our API uses a simple REST method, and we recommend using POST instead of GET. HTML data is only allowed for specified fields. You must also send requests with a User-Agent in the headers, as Sched filters out requests with no User-Agent. Limit your API usage to a rate lower than 30 calls per minute (cumulative and sustained). Failure to comply will result in a temporary revocation of your API key. Watch an introduction video here.

API MethodDescription
Site: SyncEvent info (dates, venues, types, css).
Session: AddAdd a new session.
Session: ModifyEdit an existing session.
Session: DeleteDelete a session.
Session: ListList of sessions.
Session: ExportList of sessions without HTML.
Session: SeatsAttendance lists and waitlists.
Session: CountNo. of sessions since a date.
User: ListList of users.
User: AddAdd a new user.
User: ModifyEdit an existing user.
User: GetLookup a user.
User: ActiveList of users and last active date.
User: AvatarAdd an avatar/photo to a user.
User: SessionsList of attendees and sessions they selected.
Auth: LoginLogin and get authorized to add/remove sessions.
Going: AddAdd sessions to a user.
Going: DeleteRemove sessions from a user.
Going: ScheduleUser's schedule in HTML.
Going: ListSingle user's schedule.
Going: AllAll users' schedules.
Assets: BannerMobile header image.
Role: AddAssign a role to a user.
Role: DeleteRemove a role from a user.
Role: ExportExport users in a role.

SITE: SYNC

View basic event info (dates, venues, types, css)
https://your_conference.sched.com/api/site/sync

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
modify_dateNoLast sync timestamp. Format: Unix timestamp
20
Example GET Usage (all on one line)
https://your_conference.sched.com/api/site/sync?api_key=secret&modify_date=0
Response
JSON encoded site wording and CSS.
            {
            "title": "Your Conference",
            "base": "https://your_conference.sched.com",
            "apikey": "secret",
            "modified":1327416542,  // timestamp of last modified
            "dates":  {},            // list of dates
            "venues": {},          // list of venues
            "types":  {},           // list of types
            "style":  ""            // CSS styles
            }

SESSION: ADD

Add a new session
https://your_conference.sched.com/api/session/add

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
session_keyYesMust be a unique alpha-numeric string.
E.g.: 123, PANEL4, ST45K etc.
32
nameYesName of the session120
session_startYesFull date + time for start of session
Format: YYYY-MM-DD HH:MM
40
session_endYesFull date + time when session ends
Format: YYYY-MM-DD HH:MM
40
session_typeYesUsed to filter sessions32
session_subtypeNoFor additional filter/organizing sessions32
descriptionNoDetailed description of the session
Links (HTML Tag <a>) allowed.
8kb
media_urlNoURL for media: audio/video/documents. Must use HTTPS.250
venueNoBuilding name / Company name etc.80
addressNoRoom # / Street Address250
tagsNoComma-separated words and phrases250
seatsNoVenue capacity - number of available seats250
rsvp_urlNoURL used for Custom Button1024
ticket_messageNoCustom ticket upgrade message, displayed when attendee attempts to add the session without the correct ticket (accepts basic HTML)1024
activeNoY = session is active, N = session is deactivated and hidden1
(custom fields)NoTo add custom named fields, just add your field names and their values.
GET example:
&Youtube Link=https://youtube.com/v/xvw123
n/a
Example GET Usage (all on one line)
https://your_conference.sched.com/api/session/add?api_key=secret&session_key=kn1&name=Opening+Keynote&session_start=2008-06-12+10:00&session_end=2008-06-12+12:15&session_type=keynote&venue=Center+Hall
Using this method will automatically clear any sample/demo data that new Sched sites are pre-filled with.

SESSION: MODIFY

Edit an existing session.
https://your_conference.sched.com/api/session/mod

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
session_keyYesMust be a unique alpha-numeric string.
E.g.: 123, PANEL4, ST45K etc.
32
nameNoName of the session120
session_startNoFull date + time for start of session
Format: YYYY-MM-DD HH:MM
40
session_endNoFull date + time when session ends
Format: YYYY-MM-DD HH:MM
40
session_typeNoUsed to filter sessions32
session_subtypeNoFor additional filter/organizing sessions32
descriptionNoDetailed description of the session
Links (HTML Tag <a>) allowed.
8kb
media_urlNoURL for media: audio/video/documents. Must use HTTPS.250
venueNoBuilding name / Company name etc.80
addressNoRoom # / Street Address250
tagsNoComma-separated words and phrases250
seatsNoVenue capacity - number of available seats.250
rsvp_urlNoURL used for Custom Button1024
ticket_messageNoCustom ticket upgrade message, displayed when attendee attempts to add the session without the correct ticket (accepts basic HTML)1024
activeNoY = session is active, N = session is deactivated and hidden1
Example GET Usage (all on one line)
https://your_conference.sched.com/api/session/mod?api_key=secret&session_key=kn1&venue=Main+Auditorium

SESSION: DELETE

Delete a session.
https://your_conference.sched.com/api/session/del

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
session_keyYesMust be a unique alpha-numeric string.
E.g.: 123, PANEL4, ST45K etc.
32
Example GET Usage (all on one line)
https://your_conference.sched.com/api/session/del?api_key=secret&session_key=kn1

Note: The delete API only deactivates an session and hides it from the public schedule. This is the recommend way of handling cancelled sessions as any existing links to this session clearly display "[CANCELLED]" while still maintaining data integrity.

SESSION: LIST

List of sessions.
https://your_conference.sched.com/api/session/list

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
sinceNoRetrieve sessions modified since timestamp (Unix epoch time)4
formatNoLeave blank to get CSV file or set to "json"40
statusNoSet to "del" to fetch only references to deleted sessions40
custom_dataNoInclude this parameter with value "Y" if you have custom added fields.
Note that spaces in field name will be replaced by underscores.
1
Example GET Usage (all on one line)
https://your_conference.sched.com/api/session/list?api_key=secret&since=1282755813&format=json&status=del&custom_data=Y
Response
List of all conference sessions exported in CSV or JSON, depending on the "format" parameter.

SESSION: EXPORT

List of sessions with HTML stripped. This is convenient for printed materials and importing into other systems.
https://your_conference.sched.com/api/session/export

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
sinceNoRetrieve sessions modified since timestamp (Unix epoch time)4
formatNoOne of "csv", "xml", "json", "xls". Defaults to "csv"40
fieldsNoComma separated list of fields wanted.
Select the order of needed fields by listing them here. Leave blank to get all available fields.
1024
pageNoTo page results, provide a page number. Omit to get all sessions8
limitNoNumber of sessions per page. Defaults to 1000.8
strip_htmlNoRemove HTML tags from description1
custom_dataNoInclude this parameter with value "Y" if you have custom added fields
Note that spaces in field name will be replaced by underscores.
1
Example GET Usage (all on one line)
https://your_conference.sched.com/api/session/export?api_key=secret&format=xml&fields=name,session_type,description&strip_html=Y&custom_data=Y
Response
List of all conference sessions exported in CSV, JSON, XML or Excel XLS depending on the "format" parameter.

SESSION: SEATS

Attendance lists and waitlists. Convenient for check-in lists and mailing lists.
https://your_conference.sched.com/api/session/seats

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
id OR keyYesUnique session ID or session key32
typeNoOne of "attendance", "waitlist" or "all". Defaults to "attendance"40
formatNoOne of "json", "xls" or "text". Defaults to "csv"40
Example GET Usage (all on one line)
https://your_conference.sched.com/api/session/seats?api_key=secret&type=waitlist&format=json&fields=name,email,about
Response
List of all attendees (for a particular session) on the attendance list, waitlist or both combined ("type"), exported as JSON, Excel XLS or text format ("format"). The text format outputs attendees as a comma separated list of items formatted as "Firstname Lastname <email@domain.com>", ideal for copy/pasting into an e-mail client To: field.
If Check-in is used attendance list will contain date/time when an attendee has checked in.
Does not support field customization.
Note: using the text format will only export users with an e-mail.

SESSION: COUNT

No. of sessions since a date.
https://your_conference.sched.com/api/session/count

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
sinceNoRetrieve sessions modified since timestamp (Unix epoch time)40
statusNoSet to "del" to get count of deleted sessions40
Example GET Usage (all on one line)
https://your_conference.sched.com/api/session/count?api_key=secret&since=1282755813&status=del
Response
Total number of sessions.

USER: LIST

List of users.
https://your_conference.sched.com/api/user/list

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
formatNoOne of "csv", "xml", "json". Defaults to "csv"4
fieldsNoComma separated list of fields.
Default: "username", "name", "phone", "email", "joined", "lastactive", "avatar", "company", "position", "location".
Available fields: "id", "username", "name", "phone", "email", "url", "about", "role", "joined", "lastactive", "avatar", "company", "position", "location";
512
Example GET Usage (all on one line)
https://your_conference.sched.com/api/user/list?api_key=secret&format=xml
Response CSV

CSV exported file.

Response JSON
  [{
    "username":   "youruser1",
    "name":       "Your User 1",
    "phone":      "(555)5557897",
    "email":      "user@example.com",
    "joined":     "2011-04-14 20:55:52",
    "lastactive": "2011-04-15 21:57:21",
    "avatar":     "https://url.to/image.jpg"
  },{
    "username":   "youruser2",
    "name":       "Your User 2",
    "phone":      "(123)5557897",
    "email":      "user2@example.com",
    "joined":     "2012-02-14 20:55:52",
    "lastactive": "2012-03-20 21:57:21",
    "avatar":     "https://example.com/user.jpg"
  }]
Response XML
        <users>
          <user>
            <username>youruser1</username>
            <name>Your User 1</name>
            <phone>(555)5557897</phone>
            <email>user1@example.com</email>
            <joined>2011-04-14 20:55:52</joined>
            <lastactive>2011-04-15 21:57:21</lastactive>
            <avatar>https://url.to/image.jpg</avatar>
          </user>
          <user>
            <username>youruser2</username>
            <name>Your User 2</name>
            <phone>(123)5557897</phone>
            <email>user2@example.com</email>
            <joined>2012-02-14 20:55:52</joined>
            <lastactive>2012-03-20 21:57:21</lastactive>
            <avatar>https://example.com/user.jpg</avatar>
          </user>
          </users>

USER: ADD

Add a new user. Must provide either username or email. You do not need to provide both.
https://your_conference.sched.com/api/user/add
Note: if user with provided email exists on Sched (e.g. joined a past event), this method cannot be used. They can be found using user-get and then modified/given a role.
To add the user as an attendee use role-add. To modify user's profile use user-mod.

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
usernameYes (or email)Allowed: alphanumerics, period, underscore40
emailYes (or username)User's Email Address80
passwordNoUser's desired password. Optional. Random password will be generated if none provided.32
phoneNoUser's Phone Number (xxx-xxx-xxxx)40
privacyNoDefault is 1 (on), Set to 0 (off)1
roleNoOne of the following: "attendee", "speaker", "artist", "sponsor", "exhibitor"10
sessionsNoComma separated string of session id's which the user will be connected to1024
full_nameNoUser's full name120
aboutNoShort bio/description. Some HTML allowed (a,b,br,i,em,strong)8192
avatarNoPublicly accessible, not shortened URL to gif, jpg or png image. Images are copied and resized on our server.1024
locationNoUser's physical location (city, country)1024
companyNoUser's employer1024
positionNoUser's employment position (e.g. Chief Technology Officer)1024
boothNoExhibitor booth (applies only to users with the role set to "exhibitor")1024
send_emailNoDefault is 1 (on), Set to 0 (off). Whether to send e-mail with login credentials to user.1
tagsNoA comma separated list of tags to add to the user1024
Example GET Usage (all on one line)
https://your_conference.sched.com/api/user/add?api_key=secret&username=desired_username&email=user@example.com
Response
JSON encoded username and password of newly created user account.
Note: Successfully calling this method will automatically clear all the sample (demo) data that new Sched sites are filled with on creation.

USER: MODIFY

Edit an existing user. User's password is required if changing username.
https://your_conference.sched.com/api/user/mod

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
uidNoUser's unique ID40
usernameNoUsername of the user to be modified40
passwordNoUser's password
Use if you want to modify user's password
If changing username, password is required.
40
emailNoModify e-mail80
phoneNoChange Phone Number (xxx-xxx-xxxx)40
privacyNoDefault is 1 (on), Set to 0 (off).1
roleNoAdd role to user.
See user/add for possible roles.
10
sessionsNoSessions connected to user under his "role"
If role is anything but "attendee", modifying user's connected sessions will overwrite existing connections. If role is "attendee", it will add specified sessions on top of existing ones.
1024
full_nameNoChange full name120
aboutNoChange bio/description. Some HTML allowed (a,b,br,i,em,strong)8192
avatarNoChange profile picture.
Publicly accessible, not shortened URL to gif, jpg or png image. Images are copied and resized on our server.
1024
locationNoUser's physical location (city, country)1024
companyNoUser's employer1024
positionNoUser's employment position (e.g. Chief Technology Officer)1024
boothNoExhibitor booth (applies only to users with the role set to "exhibitor")1024
tagsNoA comma separated list of tags to give the user any tags they had previously are removed. If provided but empty then all tags are removed. If not provided whatever tags the user currently has are left as is.1024
Example GET Usage (all on one line)
https://your_conference.sched.com/api/user/mod?api_key=secret&username=username&email=user@example.com
Response
"Ok" on successful change.
JSON object with basic user info in the case of username change.
Error text on failed request.

USER: GET

Lookup a user.
https://your_conference.sched.com/api/user/get

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
byYesWhat to look up user by.
Available are "username", "email", "name" or "id".
40
termYesUsername, e-mail or name of user being looked up.512
fieldsNoAvailable user profile fields. Use them if you want to get fields you want in order preferred.
Default: "username", "name", "email", "about", "url", "avatar", "role"
Options: "username", "name", "email", "about", "url", "avatar", "role", "company", "position", "location"
512
formatNoFormat of response. Available are "csv", "xml" or "json".
Default is "csv"
40
Example GET Usage (all on one line)
https://your_conference.sched.com/api/user/get?api_key=secret&by=username&term=username&format=json
Response
User's profile data or API error on unsuccessful lookup.

USER: ACTIVE

List of users and last active date.
https://your_conference.sched.com/api/user/active

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
Example GET Usage (all on one line)
https://your_conference.sched.com/api/user/active?api_key=secret
Response
List of all attendees with "username" and "lastactive" fields. Sent as CSV file.

USER: AVATAR

Add an avatar/photo to a user.
https://your_conference.sched.com/api/user/avatar

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
usernameYesExisting user username40
avatarYesPublicly accessible, not shortened URL to gif, jpg or png image. Images are copied and resized on our server.1024
Example GET Usage (all on one line)
https://your_conference.sched.com/api/user/avatar?api_key=secret&username=username&avatar=https://example.com/image.jpg
Response
"Ok" string upon successful avatar save, error message otherwise.

USER: SESSIONS

List of attendees and sessions they selected.
https://your_conference.sched.com/api/user/sessions

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
formatNoFormat of response. Available as "csv" or "json". Default is "csv"
Example GET Usage (all on one line)
https://your_conference.sched.com/api/user/sessions?api_key=secret
Response
List of all attendees and sessions they selected.

AUTH: LOGIN

Login and get authorized to add/remove sessions. The session key from this call can be used on GOING: ADD, GOING: DEL & GOING: SCHEDULE.
https://your_conference.sched.com/api/auth/login

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
usernameYesUsername of user account40
passwordYesUser password32
Example GET Usage (all on one line)
https://your_conference.sched.com/api/auth/login?api_key=secret&username=user_name&password=user_pw
Response
Valid session key to use with the GOING methods.

TAG: ADD

Add a new tag to an event
https://your_conference.sched.com/api/tag/add

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
nameYesMust be a unique alpha-numeric string.
E.g.: Teacher, Developer, Performer etc.
32
slugNoMust be a unique alpha-numeric string. If not provided then a unique slug will be attempted to be made from the name
E.g.: teacher, developer, performer etc.
32
metadata[key]Nometa data you can associate with the tag e.g. metatdata[price]=12 metadata[color]=red32
Example GET Usage (all on one line)
https://your_conference.sched.com/api/tag/add?api_key=secret&name=Teacher&slug=teacher
Response

Returns the tag that was added.

{
    "result": {
      "id": 34,
      "slug": "teacher",
      "name": "Teacher",
      "dateModified": "2018-10-08 16:06:06",
      "metadata": {
        "color": "red"
      },
      "objectCount": 0
    },
    "status": "OK",
    "code": 0
  }
          

TAG: MODIFY

Edit an existing tag.
https://your_conference.sched.com/api/tag/mod

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
idYesThe id of the tag to modify
nameNoMust be a unique alpha-numeric string.
E.g.: Teacher, Developer, Performer etc.
32
slugNoMust be a unique alpha-numeric string. If not provided the slug will be left unaltered even on a name change
E.g.: teacher, developer, performer etc.
32
metadata[key]Nometa data you can associate with the tag e.g. metatdata[price]=12 metadata[color]=red32
Example GET Usage (all on one line)
https://your_conference.sched.com/api/tag/people/mod?api_key=secret&id=32&name=Lecturer&id=34
Response

Returns the tag that was modified.

{
    "result": {
      "id": 34,
      "slug": "teacher",
      "name": "Lecturer",
      "dateModified": "2018-10-08 16:06:06",
      "metadata": {
        "color": "red"
      },
      "objectCount": 0
    },
    "status": "OK",
    "code": 0
  }
          

TAG: DELETE

Tag a session.
https://your_conference.sched.com/api/tag/del

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
idYesThe id of the tag to modify
Example GET Usage (all on one line)
https://your_conference.sched.com/api/tag/del?api_key=secret&id=34
Response

Returns the tag that was deleted. NOTE: the returned id will be null

{
    "result": {
      "id": null,
      "slug": "teacher",
      "name": "Lecturer",
      "dateModified": "2018-10-08 16:06:06",
      "metadata": {
        "color": "red"
      },
      "objectCount": 0
    },
    "status": "OK",
    "code": 0
  }
          

TAG: LIST

List of tags for event.
https://your_conference.sched.com/api/tag/get

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
Example GET Usage (all on one line)
https://your_conference.sched.com/api/tag/get?api_key=secret
Response
List of all tags associated with the event in JSON.
  {
    "result": [
      {
        "id": "33",
        "slug": "bang",
        "name": "Bang",
        "dateModified": "2018-10-08 01:00:30",
        "metadata": null,
        "objectCount": "101"
      },
      {
        "id": "32",
        "slug": "boom",
        "name": "Boom",
        "dateModified": "2018-10-08 01:00:28",
        "metadata": null,
        "objectCount": "101"
      }
    ],
    "status": "OK",
    "code": 0
  }
          

GOING: ADD

Add sessions to a user.
https://your_conference.sched.com/api/going/add

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
sessionYesAuthenticated user session key, obtained via AUTH: LOGIN40
sessionsYesComma separated string of session id's which user will attend32
Example GET Usage (all on one line)
https://your_conference.sched.com/api/going/add?api_key=secret&session=valid_session_key&sessions=id1,id2,id3
Response
Text string with message, for each session "Adding session:session_key to user:user_id" or "Couldn't find session:session_key", separated by newlines

GOING: DEL

Remove sessions from a user.
https://your_conference.sched.com/api/going/del

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
sessionYesAuthenticated user session key, obtained via AUTH: LOGIN40
sessionsYesComma separated string of session id's which user will be removed from32
Example GET Usage (all on one line)
https://your_conference.sched.com/api/going/del?api_key=secret&session=valid_session_key&sessions=id1,id2,id3
Response
Text string with message, for each session "Removed session:session_key to user:user_id" or "Couldn't find session:session_key", separated by newlines

GOING: SCHEDULE

User's schedule in HTML.
https://your_conference.sched.com/api/going/schedule

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
sessionYesAuthenticated user session key, obtained via /api/auth/login40
usernameNoOptional username to look up other public user's profiles40
Example GET Usage (all on one line)
https://your_conference.sched.com/api/going/schedule?api_key=secret&session=valid_session_key
Response
HTML formatted user's schedule.

GOING: LIST

Single user's schedule.
https://your_conference.sched.com/api/going/list

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
sessionYesAuthenticated user session key, obtained via /api/auth/login40
usernameYesUsername for which to get attended sessions40
Example GET Usage (all on one line)
https://your_conference.sched.com/api/going/list?api_key=secret&session=valid_session_key&username=user_to_get_sessions_for
Response
Exported list of user's sessions. Sent as JSON.

GOING: ALL

All users' schedules.
https://your_conference.sched.com/api/going/all

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
Example GET Usage (all on one line)
https://your_conference.sched.com/api/going/all?api_key=secret
Response
Exported list of all attendees. Sent as JSON.

ASSETS: BANNER

Mobile header image.
https://your_conference.sched.com/api/assets/banner

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
modify_dateNoUnix Timestamp formatted last update40
Example GET Usage (all on one line)
https://your_conference.sched.com/api/assets/banner?api_key=secret&modify_date=0
Response
Base 64 encoded image.

ROLE: ADD

Assign a role to a user.
https://your_conference.sched.com/api/role/add

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
usernameYesUsername of user which is to be assigned a role40
roleYesOne of the following: "attendee", "speaker", "artist", "sponsor", "exhibitor"10
sessionsNoComma separated string of session id's which the user will be associated with1024
send_emailNoDefault is 1 (on), Set to 0 (off). Whether to send e-mail with login credentials to user if not previously invited1
Example GET Usage (all on one line)
https://your_conference.sched.com/api/role/add?api_key=secret&username=user_name&sessions=id1,id2,id3
Response
API error in case of the invalid request, "Ok" for successful action.

ROLE: DEL

Remove a role from a user.
https://your_conference.sched.com/api/role/del

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
usernameYesUsername of user which is to be removed a role40
roleYesOne of the following: "attendee", "speaker", "artist", "sponsor", "exhibitor"10
sessionsNoComma separated string of session id's which the user will be disconnected from
If no sessions provided, the user will be disconnected from all sessions associated with given role.
1024
Example GET Usage (all on one line)
https://your_conference.sched.com/api/role/del?api_key=secret&username=user_name&sessions=id1,id2,id3
Response
API error in case of the invalid request, "Ok" for successful action.

ROLE: EXPORT

Export users in a specific role. Useful for printed materials.
https://your_conference.sched.com/api/role/export

FieldRequiredDescriptionMax Length
api_keyYesProvided to you by us32
roleYesOne of the following: "attendee", "speaker", "artist", "sponsor", "exhibitor"10
formatNoOne of the following: "csv", "json", "csv", "xls". Default is "csv"4
strip_htmlNoRemove HTML tags from description1
featuredNoSet to "y" to export just the featured users (valid for all roles except "attendee")1
fieldsNoComma separated string of fields desired.
Default: "name", "email", "company", "position", "location", "about", "url", "avatar", "tags"
Default for exhibitor: "name", "email", "booth", "about", "url", "avatar"
Available: "id", "username", "name", "email", "phone", "about", "avatar", "sessions", "location", "booth" (exhibitor-only), "company", "position", "privacy_mode", "lastactive" (in PST)
If you add sessions to "fields" parameter list, titles of sessions attached to role will be added to the output.
1024
Example GET Usage (all on one line)
https://your_conference.sched.com/api/role/export?api_key=secret&role=speaker&format=xml&strip_html=Y
Response
API error in case of the invalid request, JSON/XML data or CSV file, depending on format parameter.
Remarks
  • "xls" format does not allow field customization, default fields will always be returned
  • if "sessions" field is specified
    • "json" format will contain an array of session IDs in each row
    • "xml" format will contain an array of session names in each row
    • "csv" format will contain one row per session name