All CreateUpdate APIs below require the use of the following authentication mechanisms:
  - Pass the following identifier in the school field: "[your_school_code]"
  - Pass the api key in the appropriate field (Your API Key can be found under Admin > Settings > General Settings > Integration & API)
  - Pass the api secret in the HTTP Header "X-CG-API-Secret" (Sign in onto your instance to manage API secrets)

The CreateUpdateUser method lets you create or update users.
Web Service URL: https://www.campusgroups.com/WebServices/campusgroups.asmx?op=CreateUpdateUser

Input
Name SOAP Tags Type Example More details
API Key<api_key>Value</api_key>String[100]Required
Time Stamp<timestamp>Value</timestamp>String[20]2026-03-12T13:15:19Zyyyy-MM-ddTHH:mm:ssZ (UTC)
School Code<school>Value</school>String[30][your_school_code]
CG User Id<cg_id>Value</cg_id>Integer897474Unique ID per user
Email<email>Value</email>String[300]student@uni.eduPrimary email address for the user. Used as a primary identifier for the user
Alumni Email<alumni_email>Value</alumni_email>String[300]alumni@uni.eduAdditional email address for the user. Not used as a primary identifier
Other Email<other_email>Value</other_email>String[300]name@example.comAdditional email address for the user. Not used as a primary identifier
Preferred Email<preferred_email>Value</preferred_email>String[300]Alumni EmailEmail address used by the system to target the user (newsletters, notifications)
First Name<first_name>Value</first_name>String[100]JaneUse the preferred name if different from the official name
Last Name<last_name>Value</last_name>String[100]Doe
Maiden Name<maiden_name>Value</maiden_name>String[100]Smith
Middle Initial<middle_initial>Value</middle_initial>String[10]J
Legal First Name<legal_first_name>Value</legal_first_name>String[100]Replaces the now deprecated "Official Name"
Gender Lookup<gender_lookup>Value</gender_lookup>String[255]Male'Male' or 'Female' or 'N/A'
Gender Pronoun Lookup<gender_pronoun_lookup>Value</gender_pronoun_lookup>String[255]They/ThemOne of the gender pronouns you have configured under Admin > Settings > Custom Values (Lookup)
Account Type<account_type_lookup>Value</account_type_lookup>String[255]Full-Time StudentUsed for filtering and access rights throughout the platform. Possible values depend on your configuration, see below *
School Program<school_program>Value</school_program>String[255]MBA
Degree<degree>Value</degree>String[200]MBA
Month of Entry<month_of_entry_lookup>Value</month_of_entry_lookup>String[255]JanuaryIn letters
Year of Entry<year_of_entry_lookup>Value</year_of_entry_lookup>String[20]20124-digit number or "Not applicable"
Month of Graduation<month_of_grad_lookup>Value</month_of_grad_lookup>String[255]SeptemberIn letters
Year of Graduation<year_of_grad_lookup>Value</year_of_grad_lookup>String[20]20154-digit number or "Not applicable"
Phone<phone_number>Value</phone_number>String[30]333-777-4444
Mobile Phone<mobile_number>Value</mobile_number>String[30]333-777-4444
Business Phone Number<business_phone_number>Value</business_phone_number>String[45]333-777-4444
Street Address<street_address>Value</street_address>String[255]811 Broadway
City<city>Value</city>String[50]NY
State<state>Value</state>String[30]NY
Zip Code<zipcode>Value</zipcode>String[15]89765
Country<country_lookup>Value</country_lookup>String[100]531See below for a list of possible values *
Languages<languages_selection>Value</languages_selection>String[100]EnglishComma separated list of values. See below for a list of possible values *
Nationalities<nationalities_selection>Value</nationalities_selection>String[100]EnglishComma separated list of values. See below for a list of possible values *
Account Status<account_status>Value</account_status>Integer1'0' or '1' (1: Active, 0: Inactive)
NetID<netid>Value</netid>String[50]8978Used as a primary identifier for the user
NetID 2<netid2>Value</netid2>String[50]980JK67
NetID 3<netid3>Value</netid3>String[200]12345Can be used to store your own identifier for the user
RFID<rfid>Value</rfid>String[100]9876-12345
SwipeId<swipeId>Value</swipeId>String[100]9876-12345
Barcode<barcode>Value</barcode>String[100]229491832123
QR Code<qrcode>Value</qrcode>String[100]sr080g7a98d7a8sa970a9s8df
Business Address<business_street_address>Value</business_street_address>String[255]767 Broadaway NY
Business Department<business_department>Value</business_department>String[255]Management
User Tags<user_tags>Value</user_tags>String[4294967295]College of Arts & Sciences, Athletic ScholarshipComma separated list of tag names to add as tags to the user; providing "[[CLEAR]]" instead will clear all existing tags from the user; Tag names that do not yet exist as tags on the platform will be automatically created as necessary
Keep Existing User Tags<keep_existing_user_tags>Value</keep_existing_user_tags>Integer1Setting this value to 1 will prevent existing tags from being overwritten. Instead, new tags will be added to the list of existing user tags.
When using this option, you can remove a specific tag by adding "[DELETE]" in front of it.

Example: Tag1,[DELETE]Tag2
Hide Profile Page<hide_profile_page>Value</hide_profile_page>Integer0Deprecated
Unsubscribe All Group Emails<unsubscribe_all_group_emails>Value</unsubscribe_all_group_emails>Integer0Setting this value to 1 will prevent the user from receiving emails manually sent by officers (the user may still receive notification emails)
Hide From Directory<hide_from_directory>Value</hide_from_directory>Integer0Setting this value to 1 will hide the user from the Directory section
Career Interests<career_interests>Value</career_interests>String[4294967295]Comma separated list of values. See below for a list of possible values *
CustomFields <custom_fields>
    <custom_field>
        <custom_field_id>Value</custom_field_id>
        <custom_field_value>Value</custom_field_value>
    </custom_field>
</custom_fields>


Integer
String
This section allows to use a custom field id and a value to update the relevant custom field. You may find the custom_field_id for your custom fields on the custom fields management page
Response
Name SOAP Tags Type Example More details
CG User Id<cg_id>Value</cg_id>Integer1249329Unique identifier of the user in CG
Message<message>Value</message>StringSUCCESS: DATA UPDATEDThis message lets you know the status/result of the call.
Message Code<message_code>Value</message_code>Integer10 for Failure. 1 for Success. 2 for Success with Warnings

(*) Custom Values are listed at the bottom of this page. These values can be customized for your instance if necessary and this should be done before integrating to prevent issues; please feel free to contact us at support@campusgroups.com for more information.

Notes:

  • The CreateUpdateUser API follows the following logic to determine whether to create a new profile or update an existing one:
  • If the cg_id parameter is not empty, look for the user with this id and update it. If this user does not exist an error is returned.
  • The following fields will be used to determine which user to update in that order: netid3, netid2, netid, email
    More concretely : the netid3 field will be used to determine which user to update. If no user is found with this netid3 or no netid3 is provided the netid2 field will be used to determine which user to update. If no user is found with this netid2 or no netid2 is provided the netid field will be used to determine which user to update. If no user is found with this netid or no netid is provided the email field will be used to determine which user to update. If no user is found with this email or no email is provided a new user will be created.
  • The response returned by the API will indicate whether this was a creation or an update with the "DATA INSERTED" or "DATA UPDATED" message for debugging purposes.
  • Fields which are not marked read-only and already contain some data CANNOT be updated. Trying to do so will generate some warnings and these fields will be ignored while updating.
  • This API can also be used to udpate custom fields on the user's profile. You will first need to create the custom field then retrieve the custom field id for use in the <custom_field_id> element; the <custom_field_value> should contain the value to assign.
  • Passing a value of "[[CLEAR]]" will clear the data from the field if it can be updated (eg it is read-only or a custom field and is not required in the list below).
  • Uploading profile pictures can also be automated, please refer to this help center article for additional information.
  • Please contact the support (support@campusgroups.com) if you need further assistance.

Required fields:

  • school
  • api_key
  • timestamp (unless using the "X-CG-API-Secret" header authentication method)
  • email
  • first_name
  • last_name
  • account_type_lookup
  • account_status
  • Note: when trying to re-enable a deactivated user, you need to pass "check_existing_deactivated_users_if_needed=1" in the request if you are not passing a cg_id.
See https://www.campusgroups.com/WebServices/campusgroups.asmx?op=CreateUpdateUser for automatically generated examples

The CreateUpdateMember method lets you create or update memberhip information for the members of a group.
Web Service URL: https://www.campusgroups.com/WebServices/campusgroups.asmx?op=CreateUpdateMember

Input
Name SOAP Tags Type Example More details
API Key<api_key>Value</api_key>String[100]Required
Time Stamp<timestamp>Value</timestamp>String[20]2026-03-12T13:15:19Zyyyy-MM-ddTHH:mm:ssZ (UTC)
School Code<school>Value</school>String[30][your_school_code]
CG User Id<cg_id>Value</cg_id>Integer89747Unique ID of the user
User NetID<student_netid>Value</student_netid>String[50]abc123NetID of the user
CG Group Id<cg_group_id>Value</cg_group_id>Integer333445Unique ID for each group
Group Acronym<group_acronym>Value</group_acronym>String[50]FTMBAGroup's acronym
Membership Status<member>Value</member>Integer1'0' or '1' (1: Current member, 0: Contact)
Membership End Date<membership_end_date>Value</membership_end_date>String[10]2018-07-31Required: 'AAAA-MM-DD'
Officer<officer>Value</officer>Integer1'0' or '1' (1: Is an officer)
Active Officer<active_officer>Value</active_officer>Integer1'0' or '1' (1: Is an active officer)
Main Contact<main_contact>Value</main_contact>Integer1'0' or '1' (1: Is one of the main contacts of the group)
Cannot Leave<cannot_leave_group>Value</cannot_leave_group>Integer0'0' or '1' (1: The user will not be able to leave the group on his own)
Does not receive group emails<does_not_receive_group_emails>Value</does_not_receive_group_emails>Integer0'0' or '1' (1: The member/contact will no longer receive group email from this group)
Member Tags<member_tags>Value</member_tags>String[4294967295]Tag1,Tag2Comma separated list of values to add as tags to the membership entry
CustomFields <custom_fields>
    <custom_field>
        <custom_field_id>Value</custom_field_id>
        <custom_field_value>Value</custom_field_value>
    </custom_field>
</custom_fields>


Integer
String
This section allows to use a custom field id and a value to update the relevant custom field.
Deleted<deleted>Value</deleted>Integer0'0' or '1' (1: The member/contact will be deleted from the group)
Response
Name SOAP Tags Type Example More details
CG User Id<cg_id>Value</cg_id>Integer1249329Not used
Message<message>Value</message>StringSUCCESS: DATA UPDATEDThis message lets you know the status/result of the call.
Message Code<message_code>Value</message_code>Integer10 for Failure. 1 for Success

Notes:

  • Leaving a field empty will prevent its udpate (you may leave officer empty to keep the current officer status for instance).
  • Please contact the support (support@campusgroups.com) if you need further assistance.

Required fields:

  • school
  • api_key
  • timestamp (unless using the "X-CG-API-Secret" header authentication method)
  • cg_id or student_netid
  • cg_group_id or cg_group_acronym
See https://www.campusgroups.com/WebServices/campusgroups.asmx?op=CreateUpdateMember for automatically generated examples

The CreateUpdateEvent method lets you create or update events.
Web Service URL: https://www.campusgroups.com/WebServices/campusgroups.asmx?op=CreateUpdateEvent

Input
Name SOAP Tags Type Example More details
API Key<api_key>Value</api_key>String[100]Required
Time Stamp<timestamp>Value</timestamp>String[20]2026-03-12T13:15:19Zyyyy-MM-ddTHH:mm:ssZ (UTC)
School Code<school>Value</school>String[30][your_school_code]
CG Event ID<cg_event_id>Value</cg_event_id>Integer 00 to create a new event.
An existing event id to update an event
CG Group acronym<cg_group_acronym>Value</cg_group_acronym>StringfinanceUnique acronym for each group
External Event ID<external_event_id>Value</external_event_id>String[100]49394852Id of the event in the school's maintained system (e.g. EMS, 25Live, GradLeaders, etc)
Event Coordinator Email<event_coordinator>Value</event_coordinator>String[300]user@domain.eduEmail address of the coordinator
Event Name<event_name>Value</event_name>StringTest EventName of the event
Event Description<quick_description>Value</quick_description>String[4294967295]This is a test eventDescription of the event
Event Type<event_type>Value</event_type>String[255]Academic One of the event types you have configured under Admin > Settings > Custom Values (Lookup)
Event Start Date<event_start_date>Value</event_start_date>String[16]2026-03-13Date of the start of the event
Event Start Time<event_start_time>Value</event_start_time>String[16]07:30Time of the start of the event
Event End Date<event_end_date>Value</event_end_date>String[16]2026-03-13Date of the end of the event
Event End Time<event_end_time>Value</event_end_time>String[16]18:45Time of the end of the event
Event Location<event_location>Value</event_location>String[255]SomeplaceLocation of the event
Room Id<room_id>Value</room_id>Integer29394CG Room Id for the event. 0 if not specified
Event Visibility<event_display_to>Value</event_display_to>Integer 0See below
Users Can RSVP<allow_rsvp>Value</allow_rsvp>Integer 10 or 1. 1 means registrations are enabled
Users Who are Allowed to RSVP<event_open_to>Value</event_open_to>Integer 1See below
Delete Event<delete_event>Value</delete_event>Integer00 or 1 (1: Delete, 0: Don't Delete)
Hide from the Upcoming Events slider (on the home page)<hide_from_events_slider>Value</hide_from_events_slider>Integer00 or 1 (1: Hide from slider, 0: Show on slider)
Location Type<location_type>Value</location_type>Integer00 for Off-Campus, 1 for On-Campus, 3 for Online only
Event Audience<event_audience>Value</event_audience>Integer1One of the event audience types you have configured under Admin > Settings > Custom Values (Lookup)
Response
Name SOAP Tags Type Example More details
CG Event ID<cg_event_id>Value</cg_event_id>Integer12345Unique ID for the event
Message<message>Value</message>StringSUCCESS: Event createdThis message lets you know the status/result of the call.
Message Code<message_code>Value</message_code>Integer10 for Failure. 1 for Success

Notes:

  • event_coordinator: Must be the email of one the users of the platform, will not be set otherwise
  • event_display_to:
      - 0: Everyone
      - 1: No One (Always hide from calendar)
      - 2: Just the people who are allowed to register
      - 3: Group Members Only
      - 4: Logged On Users Only
      - 100: Everyone (only applies to new events, an existing event would keep its current setting)
      - 101: No One (only applies to new events, an existing event would keep its current setting)
      - 102: Just the people who are allowed to register (only applies to new events, an existing event would keep its current setting)
      - 103: Group Members Only (only applies to new events, an existing event would keep its current setting)
      - 104: Logged On Users Only (only applies to new events, an existing event would keep its current setting)
  • event_open_to:
      - 0: Everyone
      - 1: Students, Staff, Alumni or Friends
      - 2: Group Members Only
      - 3: Officers Only
      - 100: Everyone (only applies to new events, an existing event would keep its current setting)
      - 101: Students, Staff, Alumni or Friends (only applies to new events, an existing event would keep its current setting)
      - 102: Group Members Only (only applies to new events, an existing event would keep its current setting)
      - 103: Officers Only (only applies to new events, an existing event would keep its current setting)
  • event_audience:
       No audiences created

Required parameters:

  • school
  • api_key
  • timestamp (unless using the "X-CG-API-Secret" header authentication method)
  • cg_group_acronym
  • event_name
  • event_start_date
  • event_start_time
  • event_end_date
  • event_end_time
See https://www.campusgroups.com/WebServices/campusgroups.asmx?op=CreateUpdateEvent for automatically generated examples

The CreateUpdateTransaction method lets you create or update transactions for a group.
Web Service URL: https://www.campusgroups.com/WebServices/campusgroups.asmx?op=CreateUpdateTransaction

Input
Name SOAP Tags Type Example More details
API Key<api_key>Value</api_key>String[100]Required
Time Stamp<timestamp>Value</timestamp>String[20]2026-03-12T13:15:19Zyyyy-MM-ddTHH:mm:ssZ (UTC)
School Code<school>Value</school>String[30][your_school_code]
Group Acronym<group_acronym>Value</group_acronym>String[50]FTMBAGroup's acronym
Budget<budget>Value</budget>String1The full name of the budget. See available values below in "Notes"
Description<description>Value</description>String1The transaction description
Type<type>Value</type>String1See available values below in "Notes"
Category<category>Value</category>String1See available values below in "Notes"
Amount<amount>Value</amount>String'10.99'
Amount Group Funds<amount_group_funds>Value</amount_group_funds>String'0.00'
Transaction Date<transaction_date>Value</transaction_date>String[10]2018-07-31Required: 'AAAA-MM-DD'
Status<status>Value</status>StringSee available values below in "Notes"
Payment Method<payment_method>Value</payment_method>StringSee available values below in "Notes"
Vendor<vendor>Value</vendor>String
Reference Number<reference_number>Value</reference_number>String189902
Additional Notes<additional_notes>Value</additional_notes>StringThese are notes
External Transaction ID<external_transaction_id>Value</external_transaction_id>String0b7a5c7a875812a2ba2aaee5b08f29da
Response
Name SOAP Tags Type Example More details
CG Transaction Id<cg_transaction_id>Value</cg_transaction_id>Integer1249329
Message<message>Value</message>StringSUCCESS: DATA UPDATEDThis message lets you know the status/result of the call.
Message Code<message_code>Value</message_code>Integer10 for Failure. 1 for Success

Notes:

For each item below, please use, in the API call, one of the values displayed below (it needs to be exactly the same).
  1. Possible values for budget would appear in your local API documentation once configured.

  2. For type enter one of the following values. Optional (These are 'fund_request_type' custom values - these values may be customized on your instance, default values are shown below)
    • Purchasing/Spending
    • Reimbursement

  3. For category enter one of the following values. Optional (These are 'transaction_category' custom values)
    • Allocation
    • Drinks
    • Food
    • General
    • Travel expenses
    • Equipment
    • Gifts
    • Marketing materials
    • Space rental

  4. For status enter one of the following values. Optional
    • Pending Approval
    • Approved
    • In Progress
    • Completed
    • Rejected

  5. For payment_method enter one of the following values. Optional
    • Payment into Online Payment Gateway
    • School Credit/Debit Card
    • Check
    • Cash
    • Direct Deposit
    • Wire Transfer
    • Electronic Check
    • Other

Required fields:

  • school
  • api_key
  • timestamp (unless using the "X-CG-API-Secret" header authentication method)
  • group_acronym
  • budget
  • budget
See https://www.campusgroups.com/WebServices/campusgroups.asmx?op=CreateUpdateTransaction for automatically generated examples

The CreateUpdateWorkExperience method lets you create or update work experience records for users.
Web Service URL: https://www.campusgroups.com/WebServices/campusgroups.asmx?op=CreateUpdateWorkExperience

Input
Name SOAP Tags Type Example More details
School Code<school>Value</school>String[30][your_school_code]
Time Stamp<timestamp>Value</timestamp>String[20]2026-03-12T13:15:19Zyyyy-MM-ddTHH:mm:ssZ (UTC)
Experience Id<experience_cgid>Value</experience_cgid>Integer12345See below
Experience External Id<experience_externalid>Value</experience_externalid>String[255]exp_123See below
User Id<user_cgid>Value</user_cgid>Integer897474See below
User Email<user_email>Value</user_email>String[200]name@example.comSee below
User NetID<user_netid>Value</user_netid>String[50]8978See below
User NetID 2<user_netid2>Value</user_netid2>String[50]980JK67See below
User NetID 3<user_netid3>Value</user_netid3>String[200]12345See below
Company Name<company_name>Value</company_name>String[255]My Company, Inc
Industry<industry>Value</industry>String[255]AdvertisingRefer to the Industries table further down for the list of possible values
Title<title>Value</title>String[255]CEO
Location<location>Value</location>String[255]San Francisco
Country<country>Value</country>String[255]Refer to the Countries table further down for the list of possible values
Start Month<start_month>Value</start_month>String[255]SeptemberIn letters
Start Year<start_year>Value</start_year>Integer20204-digits number
End Month<end_month>Value</end_month>String[255]SeptemberIn letters
End Year<end_year>Value</end_year>Integer20204-digits number
Delete<delete>Value</delete>Integer1Will delete the record if set to 1
CustomFields <custom_fields>
    <custom_field>
        <custom_field_id>Value</custom_field_id>
        <custom_field_value>Value</custom_field_value>
    </custom_field>
</custom_fields>


Integer
String
This section allows to use a custom field id and a value to update the relevant custom field. You may find the custom_field_id for your custom fields under Admin > Settings > Custom Fields on your instance.
Response
Name SOAP Tags Type Example More details
Experience Id<cg_id>Value</cg_id>Integer1249329Unique identifier of the experience in CG
Message<message>Value</message>StringSUCCESS: DATA UPDATEDThis message lets you know the status/result of the call.
Message Code<message_code>Value</message_code>Integer10 for Failure. 1 for Success. 2 for Success with Warnings

Notes:

  • The CreateUpdateWorkExperience API follows the following logic to determine whether to create a new experience or update an existing one:
  • If the experience_cgid parameter is not empty, look for the experience with this id and update it. If no experience with this id exist an error is returned.
  • If the experience_externalid parameter is not empty, look for the experience with this external id and update it. If no experience with this external id is found a new one is created.
  • If both experience_cgid and experience_externalid are empty, a new experience is created.
  • If the delete element is set to 1 the experience will mark the experience as deleted, any other value will keep the experience active or un-delete it if was deleted
  • user_cgid, user_email, user_netid, user_netid2 and user_netid3 are only used when creating new records and are ignored for updates
  • For new records, at least one of user_cgid, user_netid3, user_netid2, user_netid, user_email must be present to identify the user to link the record to.
  • The first user matched using one of the user_ elements in that order will be used: user_cgid, user_netid3, user_netid2, user_netid, user_email
  • The response returned by the API will indicate whether this was a creation or an update with the "DATA INSERTED" or "DATA UPDATED" message for debugging purposes.
  • Passing a value of "[[CLEAR]]" will clear the data from the field if it can be updated (eg it is read-only or a custom field and is not required in the list below).

Required fields:

  • school
  • timestamp (unless using the "X-CG-API-Secret" header authentication method)
  • One of user_cgid, user_netid3, user_netid2, user_netid, user_email when creating a new record
  • company_name
  • industry
  • title
  • start_month
  • start_year
  • location
See https://www.campusgroups.com/WebServices/campusgroups.asmx?op=CreateUpdateWorkExperience for automatically generated examples

The CreateUpdateAcademicExperience method lets you create or update academic experience records for users.
Web Service URL: https://www.campusgroups.com/WebServices/campusgroups.asmx?op=CreateUpdateAcademicExperience

Input
Name SOAP Tags Type Example More details
School Code<school>Value</school>String[30][your_school_code]
Time Stamp<timestamp>Value</timestamp>String[20]2026-03-12T13:15:19Zyyyy-MM-ddTHH:mm:ssZ (UTC)
Experience Id<experience_cgid>Value</experience_cgid>Integer12345See below
Experience External Id<experience_externalid>Value</experience_externalid>String[255]exp_123See below
User Id<user_cgid>Value</user_cgid>Integer897474See below
User Email<user_email>Value</user_email>String[200]name@example.comSee below
User NetID<user_netid>Value</user_netid>String[50]8978See below
User NetID 2<user_netid2>Value</user_netid2>String[50]980JK67See below
User NetID 3<user_netid3>Value</user_netid3>String[200]12345See below
University<university>Value</university>String[255]CG University
Degree<degree>Value</degree>String[255]
Study Field<study_field>Value</study_field>String[255]Computer Science
Location<location>Value</location>String[255]San Francisco
Activities<activities>Value</activities>String[16,777,215]
Start Year<start_year>Value</start_year>Integer20204-digits number
End Year<end_year>Value</end_year>Integer20204-digits number
Delete<delete>Value</delete>Integer1Will delete the record if set to 1
CustomFields <custom_fields>
    <custom_field>
        <custom_field_id>Value</custom_field_id>
        <custom_field_value>Value</custom_field_value>
    </custom_field>
</custom_fields>


Integer
String
This section allows to use a custom field id and a value to update the relevant custom field. You may find the custom_field_id for your custom fields under Admin > Settings > Custom Fields on your instance.
Response
Name SOAP Tags Type Example More details
Experience Id<cg_id>Value</cg_id>Integer1249329Unique identifier of the experience in CG
Message<message>Value</message>StringSUCCESS: DATA UPDATEDThis message lets you know the status/result of the call.
Message Code<message_code>Value</message_code>Integer10 for Failure. 1 for Success. 2 for Success with Warnings

Notes:

  • The CreateUpdateAcademicExperience API follows the following logic to determine whether to create a new experience or update an existing one:
  • If the experience_cgid parameter is not empty, look for the experience with this id and update it. If no experience with this id exist an error is returned.
  • If the experience_externalid parameter is not empty, look for the experience with this external id and update it. If no experience with this external id is found a new one is created.
  • If both experience_cgid and experience_externalid are empty, a new experience is created.
  • If the delete element is set to 1 the experience will mark the experience as deleted, any other value will keep the experience active or un-delete it if was deleted
  • user_cgid, user_email, user_netid, user_netid2 and user_netid3 are only used when creating new records and are ignored for updates
  • For new records, at least one of user_cgid, user_netid3, user_netid2, user_netid, user_email must be present to identify the user to link the record to.
  • The first user matched using one of the user_ elements in that order will be used: user_cgid, user_netid3, user_netid2, user_netid, user_email
  • The response returned by the API will indicate whether this was a creation or an update with the "DATA INSERTED" or "DATA UPDATED" message for debugging purposes.
  • Passing a value of "[[CLEAR]]" will clear the data from the field if it can be updated (eg it is read-only or a custom field and is not required in the list below).

Required fields:

  • school
  • timestamp (unless using the "X-CG-API-Secret" header authentication method)
  • One of user_cgid, user_netid3, user_netid2, user_netid, user_email when creating a new record
  • university
  • degree
  • start_year
See https://www.campusgroups.com/WebServices/campusgroups.asmx?op=CreateUpdateAcademicExperience for automatically generated examples

The CreateRoomReservation method lets you create room reservations either for events or as direct bookings for users.
Web Service URL: https://www.campusgroups.com/WebServices/campusgroups.asmx?op=CreateRoomReservation

Input
Name SOAP Tags Type Example More details
School Code<school>Value</school>String[30][your_school_code]
Time Stamp<timestamp>Value</timestamp>String[20]2026-03-12T13:15:19Zyyyy-MM-ddTHH:mm:ssZ (UTC)
Event ID<event_id>Value</event_id>Integer12345See below
External Event ID<experience_externalid>Value</experience_externalid>String[255]ev_123See below
User Id<user_cgid>Value</user_cgid>Integer897474See below
User Email<user_email>Value</user_email>String[200]name@example.comSee below
User NetID<user_netid>Value</user_netid>String[50]8978See below
User NetID 2<user_netid2>Value</user_netid2>String[50]980JK67See below
User NetID 3<user_netid3>Value</user_netid3>String[200]12345See below
Room ID<room_id>Value</room_id>Integer123
External Room ID<external_room_id>Value</external_room_id>String[255]room_123
Start<start>Value</start>ISO8601 DateTime2026-03-13T09:15:00-04:00
End<end>Value</end>ISO8601 DateTime2026-03-13T09:15:00-04:00
Setup Time<setup_minutes>Value</setup_minutes>Integer30
Breakout Time<breakout_minutes>Value</breakout_minutes>Integer15
End Year<end_year>Value</end_year>Integer20204-digits number
Ignore Rules Privacy<ignore_rules_privacy>Value</ignore_rules_privacy>0 or 11if set to 1 access settings on availability rules are ignored
Ignore Availability Rules<ignore_availability_rules>Value</ignore_availability_rules>0 or 11if set to 1 act as if there existed a rule that stated all rooms could be booked at any time
Ignore Blocks<ignore_blocks>Value</ignore_blocks>0 or 11if set to 1 blocks are ignored
Auto Approve<auto_approve>Value</auto_approve>0 or 11if set to 1 reservations are automatically approved regardless of approval requirements
External Room Reservation ID<external_room_reservation_id>Value</external_room_reservation_id>String[255]res_123will be stored with the reservation and can be used to cancel it later on
Response
Name SOAP Tags Type Example More details
Room Reservation Id<cg_id>Value</cg_id>Integer1249329Unique identifier of the reservation in CG
Message<message>Value</message>StringSUCCESS - The space you selected was booked successfullyThis message lets you know the status/result of the call and includes the url of the approval form for direct bookings that require approval.
Message Code<message_code>Value</message_code>Integer10 for Failure. 1 for Success. 2 for Success with Warnings

Notes:

  • A room is required (either through room_id or external_room_id)
  • At least one of event or user is required (either through event_id or external_event_id for event, or through user_cgid, user_email, user_netid, user_netid2 or user_netid3 for user)
  • If an event is provided the reservation is treated as an event booking, otherwise it is treated as a direct booking
  • start and end are required
  • An external_room_reservation_id cannot be reused multiple times
  • The response returned by the API will indicate whether an additional approval is required and for direct bookings that are pending approval will also provide the url of the approval request form for this reservation

Required fields:

  • school
  • timestamp (unless using the "X-CG-API-Secret" header authentication method)
  • See above
See https://www.campusgroups.com/WebServices/campusgroups.asmx?op=CreateRoomReservation for automatically generated examples

The CancelRoomReservation method lets you cancel a room reservation that was created through the CreateRoomReservation endpoint.
Web Service URL: https://www.campusgroups.com/WebServices/campusgroups.asmx?op=CancelRoomReservation

Input
Name SOAP Tags Type Example More details
School Code<school>Value</school>String[30][your_school_code]
Time Stamp<timestamp>Value</timestamp>String[20]2026-03-12T13:15:19Zyyyy-MM-ddTHH:mm:ssZ (UTC)
Room Reservation ID<room_reservation_id>Value</room_reservation_id>Integer12345CG ID of the room reservation from CreateRoomReservation
External Room Reservation ID<external_room_reservation_id>Value</external_room_reservation_id>String[255]res_123May be used if provided at creation time using CreateRoomReservation
Response
Name SOAP Tags Type Example More details
Room Reservation Id<cg_id>Value</cg_id>Integer1249329Unique identifier of the reservation in CG
Message<message>Value</message>StringSUCCESS - reservation 1249329 has been cancelledThis message lets you know the status/result of the call.
Message Code<message_code>Value</message_code>Integer10 for Failure. 1 for Success. 2 for Success with Warnings

Required fields:

  • school
  • timestamp (unless using the "X-CG-API-Secret" header authentication method)
  • One of room_reservation_id or external_room_reservation_id
See https://www.campusgroups.com/WebServices/campusgroups.asmx?op=CancelRoomReservation for automatically generated examples

RSS APIs

All RSS APIs below require authentication. You must pass the api secret in the HTTP Header "X-CG-API-Secret" (To manage your API Secrets, use the "Manage API Secrets" button at the top of this page.)

RSS Users

Web Service URL: https://www.campusgroups.com/rss_users?ts=[TIMESTAMP]&preauth=[TOKEN]&account_type_lookup=[ACCOUNT_TYPE_LOOKUP]

Response
Name SOAP Tags Type More details
cgId <cgId>Value</cgId> Integer
cgUid <cgUid>Value</cgUid> String
externalId <externalId>Value</externalId> String
externalUid <externalUid>Value</externalUid> String
deactivated <deactivated>Value</deactivated> Integer
firstName <firstName>Value</firstName> String
lastName <lastName>Value</lastName> String
middleInitial <middleInitial>Value</middleInitial> String
email <email>Value</email> String
other email <other_email>Value</other_email> String
alumni email <alumni_email>Value</alumni_email> String
profilePhotoURL <profilePhotoURL>Value</profilePhotoURL> String
schoolProgram <schoolProgram>Value</schoolProgram> String
degree <degree>Value</degree> String
accountType <accountType>Value</accountType> String
monthOfEntry <monthOfEntry>Value</monthOfEntry> String
yearOfEntry <yearOfEntry>Value</yearOfEntry> String
monthOfGraduation <monthOfGraduation>Value</monthOfGraduation> String
yearOfGraduation <yearOfGraduation>Value</yearOfGraduation> String
gender <gender>Value</gender> String
genderCode <genderCode>Value</genderCode> Integer 133: Male; 134: Female; 135: Non-Binary; 255: N/A;
genderPronoun <genderPronoun>Value</genderPronoun> String
netId <netId>Value</netId> String
netId2 <netId2>Value</netId2> String
netId3 <netId3>Value</netId3> String
swipeId <swipeId>Value</swipeId> String
phoneNumber <phoneNumber>Value</phoneNumber> String
mobileNumber <mobileNumber>Value</mobileNumber> String
streetAddress <streetAddress>Value</streetAddress> String
city <city>Value</city> String
state <state>Value</state> String
zipcode <zipcode>Value</zipcode> String
country <country>Value</country> String
countryCode <countryCode>Value</countryCode> Integer Matches custom values at the bottom of this page
nationality <nationality>Value</nationality> String
companyName <companyName>Value</companyName> String
workTitle <workTitle>Value</workTitle> String
businessStreetAddress <businessStreetAddress>Value</businessStreetAddress> String
businessDepartment <businessDepartment>Value</businessDepartment> String
businessPhoneNumber <businessPhoneNumber>Value</businessPhoneNumber> String
createdOn <createdOn>Value</createdOn> DateTime Format and Timezone can be customized
lastUpdatedOn <lastUpdatedOn>Value</lastUpdatedOn> DateTime Format and Timezone can be customized
bio <bio>Value</bio> String
tags <tags>Value</tags> String Comma separated list of values
qrcode <qrcode>Value</qrcode> String
barcode <barcode>Value</barcode> String
RFID <rfid>Value</rfid> String[100] 9876-12345
hide profile page <hide_profile_page>Value</hide_profile_page> Integer 0 or 1
hide from directory <hide_from_directory>Value</hide_from_directory> Integer 0 or 1
over 21 <over_21>Value</over_21> Integer 0 or 1
languages <languages>Value</languages> String
lookingFor <lookingFor>Value</lookingFor> String
careerInterests <careerInterests>Value</careerInterests> String
personalInterests <personalInterests>Value</personalInterests> String
sportsInterests <sportsInterests>Value</sportsInterests> String

Optional parameters:

  • cg_id: Integer, results will contain at most one result whose id is cg_id if present
  • netid: String, results will be limited to users with the provided netid if present
  • email: String, results will be limited to users with the provided email if present
  • account_type_lookup: Comma separated list of Integer account type ids, used to restrict the results to specific account types if present. Account type ids may be found under Admin > Settings > Custom Values (Lookup).
  • include_deleted: 0 or 1, Results will include deactivated users only if set to 1
  • omit_custom_fields: 0 or 1, Results will no longer include custom fields if set to 1 (significantly improves performance for longer lists when custom fields are present for most users)
  • updated_after: DateTime in the "(UTC-05:00) Eastern Time (US & Canada)" timezone formatted as "2020-09-18 14:55:03", Results will be limited to users that may have received a profile update since the provided datetime
  • ignore_api_update_timestamp: 0 or 1, if set to 1 the "updated_after" filter will ignore changes that were performed through the CreateUpdateUser API

RSS Lookups

Web Service URL: https://www.campusgroups.com/rss_lookup?ts=[TIMESTAMP]&preauth=[TOKEN]

Response
Name SOAP Tags Type More details
id <id>Value</id> Integer
name <name>Value</name> String
value <value>Value</value> String
type <type>Value</type> String
category <category>Value</category> String
lastUpdatedOn <lastUpdatedOn>Value</lastUpdatedOn> DateTime Format and Timezone can be customized

Optional parameters:

  • lookup_name: String[100] that will be used to filter lookups by name
  • custom_only: 0 or 1, results will ony contain custom lookups for the school if set to 1

RSS Events

Web Service URL: https://www.campusgroups.com/rss_events?ts=[TIMESTAMP]&preauth=[TOKEN]

Response
Name SOAP Tags Type More details
eventUid <eventUid>Value</eventUid> String
groupId <groupId>Value</groupId> Integer
group <group>Value</group> String
co-hosted groups <coHostedGroupIds>Value</coHostedGroupIds> String
groupType <groupType>Value</groupType> String
groupAcronym <groupAcronym>Value</groupAcronym> String
contactName <contactName>Value</contactName> String
contactEmail <contactEmail>Value</contactEmail> String
eventDate <eventDate>Value</eventDate> String
eventEndDate <eventEndDate>Value</eventEndDate> String
eventTime <eventTime>Value</eventTime> String
eventEndTime <eventEndTime>Value</eventEndTime> String
locale <locale>Value</locale> String
title <title>Value</title> String
description <description>Value</description> String
eventPhoto <eventPhoto>Value</eventPhoto> String
eventPhotoAltText <eventPhotoAltText>Value</eventPhotoAltText> String
eventPhotoFullUrl <eventPhotoFullUrl>Value</eventPhotoFullUrl> String
eventFlyerFullUrl <eventFlyerFullUrl>Value</eventFlyerFullUrl> String
iCalLink <iCalLink>Value</iCalLink> String
eventLink <eventLink>Value</eventLink> String
eventType <eventType>Value</eventType> String
timeZone <timeZone>Value</timeZone> String
timeZoneId <timeZoneId>Value</timeZoneId> String Possible values are listed below
publishLcd <publishLcd>Value</publishLcd> String
publishCalendar <publishCalendar>Value</publishCalendar> String Who can see this event?
0: Everyone
4: Logged on users only
3: Group members only
2: Just the people who are allowed to register
1: No one (always hide from the calendar)
publishSchoolWebsite <publishSchoolWebsite>Value</publishSchoolWebsite> String
eventLocation <eventLocation>Value</eventLocation> String
locationType <locationType>Value</locationType> String
eventRoomId <eventRoomId>Value</eventRoomId> Integer
dateCreated <dateCreated>Value</dateCreated> String
dateUpdated <dateUpdated>Value</dateUpdated> String
allDayEvent <allDayEvent>Value</allDayEvent> String
approvalStatus <approvalStatus>Value</approvalStatus> String
approvalStatus2 <approvalStatus2>Value</approvalStatus2> String
eventDelete <eventDelete>Value</eventDelete> String
eventTopicIds <eventTopicIds>Value</eventTopicIds> String
externalEventId <externalEventId>Value</externalEventId> String
additionalField1Text <additionalField1Text>Value</additionalField1Text> String
privacyLevel <privacyLevel>Value</privacyLevel> String
privacyDisplayedTo <privacyDisplayedTo>Value</privacyDisplayedTo> String
lastUpdatedOn <lastUpdatedOn>Value</lastUpdatedOn> DateTime Format and Timezone can be customized
eventBuildingAddress <eventBuildingAddress>Value</eventBuildingAddress> String
eventBuilding <eventBuilding>Value</eventBuilding> String
groupCgId <groupCgId>Value</groupCgId> Integer
externalReferences <externalReferences>
    <externalReference type="ABC">123456789</externalReference>
</externalReferences>

String
This section returns external references the system may hold to some third party systems.
The value of the type attribute identifies the system in question while the value of element is the ID in the system:
   - EMS: Underscore separated list of IDs; the first ID is the reservation ID while the rest of the values are IDs for the bookings
   - 25Live: ID of the event in 25Live
CustomFields <customFields>
    <customField>
        <id>Id</id>
        <name>Name</name>
        <value>Value</value>
    </customField>
</customFields>


Integer
String
This section returns the custom field data associated to an event.
foodProvided <foodProvided>Value</foodProvided> Integer 1 if Food Provided is checked
attendeesRating <attendeesRating>Value</attendeesRating> Double Calculated average rating
feedbackRequested <feedbackRequested>Value</feedbackRequested> Integer 1 if Send a feedback request is checked
attendanceEstimate <attendanceEstimate>Value</attendanceEstimate> Integer This section returns the value of the Estimated Number of Check-ins input field.
The input can be located in the additional settings of an Event e.g. Events List Page - Event's dropdown menu icon - Estimated Number of Check-ins

Optional parameters:

  • deleted: 0 or 1, Results will include deleted events if set to 1
  • limit: Integer, allows to restrict the number of events returned
  • club_url: String[255], Acronym of a club; restricts results to events of this club
  • topic_id: Integer, id of a topic that will be used to restricts results to events of this topic
  • admin_tag_ids: Comma separated list of ids of admin tags that will be used to restricts results to events of these admin tags
  • time_range: 'today', for today's events, 'past' for past events only, 'all' for all events, 'upcoming_only' for upcoming events excluding all ongoing events, any other value or empty returns upcoming events
  • event_ends_after: format: 'yyyy-mm-dd', should be used in conjunction with time_range
  • event_starts_before: format: 'yyyy-mm-dd', should be used in conjunction with time_range
  • future_day_range: Integer, allows to give a number of days in the future to return the associated events
  • updated_before: Timestamp like '2026-03-13 09:15:19', results will only include events updated before that time
  • updated_after: Timestamp like '2026-03-13 09:15:19', results will only include events updated after that time
  • exclude_group_ids: comma separated list of group ids whose events should not be shown in the results
  • group_ids: comma separated list of group ids; excludes all events of other clubs from the results
  • group_external_ids: comma separated list of group external ids; excludes all events of other clubs from the results
  • group_type_ids: comma separated list of group type ids; excludes all events of clubs of different types from the results
  • event_id: Integer, id of an event that will be used to restricts result to one single event
  • event_type_ids: comma separated list of event type ids; only include events with the provided event types in the results
  • building_id: Integer, id of the building attached to the room selected as an event location
  • exclude_co_hosted: 0 or 1, Results will exclude co-hosted events if set to 1
  • ignore_location_privacy: if set to 1 the location will be be displayed regardless of the "Who can see the event location" setting of the event
  • privacy_level: Integer, value corresponding to different event privacy levels:
    • 0: Everyone
    • 1: CampusGroups by Ready Education CampusGroups users only
    • 2: Group members only
    • 3: Group Officers only
    • 4: Some group members only
    • 5: Invited people only
    • 6: Some CampusGroups by Ready Education users only
    • 7: Tagged members only (select one or several Members tags)
    • 12: Lottery winners only
    • 13: Some CampusGroups by Ready Education tagged users only
    • 14: Sub-Groups members only (select one or several Sub-Groups tags)
    • 18: Members with Badges only (select one or several badges)
  • privacy_displayed_to: Integer, value corresponding to different event privacy levels:
    • 0: Everyone
    • 1: No one (always hide from the calendar)
    • 2: Just the people who are allowed to register
    • 3: Group members only
    • 4: Logged on users only

RSS Groups

Web Service URL: https://www.campusgroups.com/rss_groups

Response
Name SOAP Tags Type More details
groupId <groupId>Value</groupId> Integer
groupName <groupName>Value</groupName> String
groupEmail <groupEmail>Value</groupEmail> String
groupAcronym <groupAcronym>Value</groupAcronym> String
category <category>Value</category> String
groupType <groupType>Value</groupType> String
mission <mission>Value</mission> String
country <country>Value</country> String
whatWeDo <whatWeDo>Value</whatWeDo> String
published <published>Value</published> String
webSite <webSite>Value</webSite> String
primaryWebSite <primaryWebSite>Value</primaryWebSite> String
groupLink <groupLink>Value</groupLink> String
membershipFee <membershipFee>Value</membershipFee> Integer
membershipFeeName <membershipFeeName>Value</membershipFeeName> String
membershipDuration <membershipDuration>Value</membershipDuration> String
membershipFee2 <membershipFee2>Value</membershipFee2> Integer
membershipFeeName2 <membershipFeeName2>Value</membershipFeeName2> String
membershipDuration2 <membershipDuration2>Value</membershipDuration2> String
membershipFee3 <membershipFee3>Value</membershipFee3> Integer
membershipFeeName3 <membershipFeeName3>Value</membershipFeeName3> String
membershipDuration3 <membershipDuration3>Value</membershipDuration3> String
membershipFee4 <membershipFee4>Value</membershipFee4> Integer
membershipFeeName4 <membershipFeeName4>Value</membershipFeeName4> String
membershipDuration4 <membershipDuration4>Value</membershipDuration4> String
deleted <deleted>Value</deleted> Integer
lastUpdatedOn <lastUpdatedOn>Value</lastUpdatedOn> DateTime Format and Timezone can be customized
externalGroupId <externalGroupId>Value</externalGroupId> String
hidden <hidden>Value</hidden> 0 or 1
closed <closed>Value</closed> 0 or 1
groupLogoUrl <groupLogoUrl>Value</groupLogoUrl> String
groupStatus <groupStatus>Value</groupStatus> String
goals <goals>Value</goals> String

Optional parameters:

  • cg_id: Integer, results will contain at most one result whose id is cg_id if present
  • include_unpublished: 0 or 1, Results will include unpublished groups if set to 1
  • include_deleted: 0 or 1, Results will include deleted groups if set to 1
  • group_type: Integer, Id of a group type; restricts results to groups of this type
  • category: Integer, Id of a group category; restricts results to groups of this category

RSS Members

Web Service URL: https://www.campusgroups.com/rss_members?ts=[TIMESTAMP]&preauth=[TOKEN]

Response
Name SOAP Tags Type More details
cgId <cgId>Value</cgId> Integer Internal ID of the user
groupId <groupId>Value</groupId> Integer Internal ID of the group
externalId <externalId>Value</externalId> String Deprecated
externalUid <externalUid>Value</externalUid> String Deprecated
firstName <firstName>Value</firstName> String
lastName <lastName>Value</lastName> String
email <email>Value</email> String
accountType <accountType>Value</accountType> String
yearOfGraduation <yearOfGraduation>Value</yearOfGraduation> String
netID <netID>Value</netID> String
netID2 <netID2>Value</netID2> String
netID3 <netID3>Value</netID3> String
groupName <groupName>Value</groupName> String
webSiteLink <webSiteLink>Value</webSiteLink> String
groupLogoUrl <groupLogoUrl>Value</groupLogoUrl> String
member <member>Value</member> Integer See notes below
membershipStartDate <membershipStartDate>Value</membershipStartDate> String Date the user joined the group
membershipEndDate <membershipEndDate>Value</membershipEndDate> String See notes below
officer <officer>Value</officer> Integer See notes below
officerPosition <officerPosition>Value</officerPosition> String
officerCustomPosition <officerCustomPosition>Value</officerCustomPosition> String
officerRole <officerRole>Value</officerRole> String
activeOfficer <activeOfficer>Value</activeOfficer> Integer See notes below
notes <notes>Value</notes> String
deleted <deleted>Value</deleted> Integer
lastUpdatedOn <lastUpdatedOn>Value</lastUpdatedOn> DateTime Format and Timezone can be customized
tags <tags>Value</tags> String
tagIds <tagIds>Value</tagIds> String
source <source>Value</source> String
validated <validated>Value</validated> Integer
currentMember <currentMember>Value</currentMember> Integer See notes below
pastMember <pastMember>Value</pastMember> Integer See notes below
currentOfficer <currentOfficer>Value</currentOfficer> Integer See notes below
pastOfficer <pastOfficer>Value</pastOfficer> Integer See notes below

Notes:

  • A user is considered a current member only if both member = 1 and they have no membership_end_date or the membership_end_date isn't passed. currentMember reflects that logic directly.
  • A user is considered a past member only if member = 1 and the membership_end_date is passed. pastMember reflects that logic directly.
  • A user is considered a current officer only if officer = 1 and active_officer = 1 and they are a current member. currentOfficer reflects that logic directly.
  • A user is considered a past officer only if officer = 1 and the user is not a current officer, eg they are no longer a member or are no longer active officer. pastOfficer reflects that logic directly.

Optional parameters:

  • group_ids: Comma separated list of Integer, only entries from groups with the provided ids will be returned
  • filter: may be set to one of the following values:
     'currentmembers': Will list only current members of the group
     'pastmembers': Will list only past members of the group
     'contacts': Will list the contacts of the group (anyone related to the group but not a member)
     Will list all current and past members otherwise
  • last_updated_on: Integer, members whose profile has been changed, added or removed during the "last_updated_on" days
  • validated_only: Integer, only return entries that have been validated

RSS User Membership

Web Service URL: https://www.campusgroups.com/rss_user_membership?ts=[TIMESTAMP]&preauth=[TOKEN]

Response
Name SOAP Tags Type More details
firstName <firstName>Value</firstName> String
lastName <lastName>Value</lastName> String
email <email>Value</email> String
accountType <accountType>Value</accountType> String
yearOfGraduation <yearOfGraduation>Value</yearOfGraduation> String
studentId <studentId>Value</studentId> Integer
groupId <groupId>Value</groupId> Integer
groupName <groupName>Value</groupName> String
webSiteLink <webSiteLink>Value</webSiteLink> String
groupLogoUrl <groupLogoUrl>Value</groupLogoUrl> String
member <member>Value</member> Integer
officer <officer>Value</officer> Integer
officerPosition <officerPosition>Value</officerPosition> String
officerCustomPosition <officerCustomPosition>Value</officerCustomPosition> String
officerRole <officerRole>Value</officerRole> String
activeOfficer <activeOfficer>Value</activeOfficer> Integer
membershipStartDate <membershipStartDate>Value</membershipStartDate> String
membershipEndDate <membershipEndDate>Value</membershipEndDate> String
notes <notes>Value</notes> String
deleted <deleted>Value</deleted> Integer
lastUpdatedOn <lastUpdatedOn>Value</lastUpdatedOn> DateTime Format and Timezone can be customized

Required parameters:

  • One of cg_id or netid must be provided:
  • cg_id: Integer, id of the student whose memberships will be retrevied. Takes precedence over netid if present
  • netid: Integer, netid of the student whose memberships will be retrevied

Optional parameters:

  • cg_id: Integer, id of the student whose memberships will be retrevied. Overrides netid
  • netid: Integer, netid of the student whose memberships will be retrevied

RSS Event Attendees

Web Service URL: https://www.campusgroups.com/rss_event_attendees?ts=[TIMESTAMP]&preauth=[TOKEN]

Response
Name SOAP Tags Type More details
eventId <eventId>Value</eventId> Integer
AttendeeCgID <AttendeeCgID>Value</AttendeeCgID> Integer
firstName <firstName>Value</firstName> String
lastName <lastName>Value</lastName> String
accountType <accountType>Value</accountType> String
rsvped <rsvped>Value</rsvped> String
eventRegistrationUid <eventRegistrationUid>Value</eventRegistrationUid> String
cgPaymentUid <cgPaymentUid>Value</cgPaymentUid> String
gender <gender>Value</gender> String
member <member>Value</member> Integer
membershipEndDate <membershipEndDate>Value</membershipEndDate> String
email <email>Value</email> String
yearOfGraduation <yearOfGraduation>Value</yearOfGraduation> String
netId <netId>Value</netId> String
netId2 <netId2>Value</netId2> String
netId3 <netId3>Value</netId3> String
checkedIn <checkedIn>Value</checkedIn> Integer 0: Not checked-in
1: Checked-in
2: Checked-out
3: No show
rsvpedAtTheDoor <rsvpedAtTheDoor>Value</rsvpedAtTheDoor> Integer
onTheWaitList <onTheWaitList>Value</onTheWaitList> Integer
attendeesComment <attendeesComment>Value</attendeesComment> String
officersNotes <officersNotes>Value</officersNotes> String
membersNotes <membersNotes>Value</membersNotes> String
attendeesRating <attendeesRating>Value</attendeesRating> String
timeslots <timeslots>Value</timeslots> String
selectedTickets <selectedTickets>Value</selectedTickets> String
attendeesFeedback <attendeesFeedback>Value</attendeesFeedback> String
createdOn <createdOn>Value</createdOn> String
updatedOn <updatedOn>Value</updatedOn> String
quantity <quantity>Value</quantity> Integer
response1 <response1>Value</response1> String
response2 <response2>Value</response2> String
response3 <response3>Value</response3> String
response4 <response4>Value</response4> String
response5 <response5>Value</response5> String
response6 <response6>Value</response6> String
response7 <response7>Value</response7> String
response8 <response8>Value</response8> String
response9 <response9>Value</response9> String
response10 <response10>Value</response10> String
response11 <response11>Value</response11> String
response12 <response12>Value</response12> String
response13 <response13>Value</response13> String
response14 <response14>Value</response14> String
response15 <response15>Value</response15> String
response16 <response16>Value</response16> String
response17 <response17>Value</response17> String
response18 <response18>Value</response18> String
response19 <response19>Value</response19> String
response20 <response20>Value</response20> String
company <company>Value</company> String
workTitle <workTitle>Value</workTitle> String
cgPaymentId <cgPaymentId>Value</cgPaymentId> Integer
promotedToMainList <promotedToMainList>Value</promotedToMainList> Integer
registrationStatus <registrationStatus>Value</registrationStatus> String
lastUpdatedOn <lastUpdatedOn>Value</lastUpdatedOn> DateTime Format and Timezone can be customized
ticketCheckedInAt <ticketCheckedInAt>Value</ticketCheckedInAt> DateTime
ticketCheckedOutAt <ticketCheckedOutAt>Value</ticketCheckedOutAt> DateTime

Optional parameters:

  • event_id: Integer, id of the event whose rsvps will be retrevied, all events will be retrieved otherwise
  • updated_after: format: 'yyyy-mm-dd' or 'mm/dd/yyyy'
  • event_ends_after: format: 'yyyy-mm-dd' or 'mm/dd/yyyy'
  • event_starts_before: format: 'yyyy-mm-dd' or 'mm/dd/yyyy'
  • include_deactivated_users: 0 or 1, Results will include deactivated users only if set to 1
  • include_deleted_clubs: 0 or 1, Results will include deleted groups only if set to 1
  • include_deleted_events: 0 or 1, Results will include deleted events only if set to 1
  • include_deleted_members: 0 or 1, Results will include deleted member only if set to 1

RSS User Activity

Web Service URL: https://www.campusgroups.com/rss_user_activity?ts=[TIMESTAMP]&preauth=[TOKEN]&type=[TYPE]&id=[ID]

Response
Name SOAP Tags Type More details
type <type>Value</type> String
recordId <recordId>Value</recordId> Integer
datetime <datetime>Value</datetime> Datetime
field <field>Value</field> String
fieldId <fieldId>Value</field> Integer Only returned for custom fields
oldValue <oldValue>Value</oldValue> String
newValue <newValue>Value</newValue> String
interpretedOldValue <interpretedOldValue>Value</interpretedOldValue> String Optional
interpretedNewValue <interpretedNewValue>Value</interpretedNewValue> String Optional

Required parameters:

  • type: "profile". This will return changes made to a user's profile.
  • id: cgId of the user

Optional parameters:

  • fields: Comma separated list of <field> values. Results will be limited to changes related to those fields. For instance, "studentType,yearOfGraduation" will return changes made to the Account Type and Year of Graduation exclusively.
  • updated_after: DateTime in the "(UTC-05:00) Eastern Time (US & Canada)" timezone formatted as "2020-09-18 14:55:03", results will be limited to changes that have been done since the provided datetime.
  • return_interpreted_value: If set to 1, the interpreted values will be returned. Useful for tags and custom values such as Account Type and Year of Graduation.
  • fetch_custom_fields: If set to 1, changes made to users' custom fields will be returned. Please note, changes on "Checkboxes" custom fields are not currently supported.

RSS Surveys

Web Service URL: https://www.campusgroups.com/rss_surveys

Response
Name SOAP Tags Type More details
survey_id <survey_id>Value</survey_id> Integer
title <title>Value</title> String
description <description>Value</description> String
date <date>Value</date> Datetime
clubName <clubName>Value</clubName> String
link <link>Value</link> String

RSS Meetings

Web Service URL: https://www.campusgroups.com/rss_meetings

Response
Name SOAP Tags Type More details
bookingId <bookingId>Value</bookingId> Integer
schedulerId <schedulerId>Value</schedulerId> Integer
programId <programId>Value</programId> Integer
programName <programName>Value</programName> String
start <start>Value</start> String
end <end>Value</end> String
location <location>Value</location> String
videoConferencingLink <videoConferencingLink>Value</videoConferencingLink> String
createDate <createDate>Value</createDate> String
updateDate <updateDate>Value</updateDate> String
status <status>Value</status> String
hostCgId <hostCgId>Value</hostCgId> String
hostEmail <hostEmail>Value</hostEmail> String
hostNetID <hostNetID>Value</hostNetID> String
hostFirstName <hostFirstName>Value</hostFirstName> String
hostLastName <hostLastName>Value</hostLastName> String
guestCgId <guestCgId>Value</guestCgId> String Empty if the guest was not signed at the time of booking
guestEmail <guestEmail>Value</guestEmail> String
guestNetID <guestNetID>Value</guestNetID> String
guestFirstName <guestFirstName>Value</guestFirstName> String
guestLastName <guestLastName>Value</guestLastName> String
bookingEmail <bookingEmail>Value</bookingEmail> String Email used at the time of booking, may be different from guestEmail
bookingFirstName <bookingFirstName>Value</bookingFirstName> String First name used at the time of booking, may be different from guestFirstName
bookingLastName <bookingLastName>Value</bookingLastName> String Last name used at the time of booking, may be different from guestLastName
customQuestions <customQuestions>
    <item>
        <id>Value</id>
        <name>Value</name>
        <value>Value</value>
    </item>
</customQuestions>


Integer
String
String

Optional parameters:

  • time_range: If set to "past" will only return past meetings, if set to "all" will return all meetings, otherwise will return upcoming meetings
  • host_cgid: Integer, if set results will be limited to meetings hosted by the user with that cg_id
  • host_email: String, if set results will be limited to meetings hosted by the user with that email
  • host_netid: String, if set results will be limited to meetings hosted by the user with that netid
  • guest_cgid: Integer, if set results will be limited to meetings that were booked by a user logged in as a user with that cg_id; note that this will exclude all meetings booked by logged out users
  • guest_email: String, if set results will be limited to meetings that were booked by a user logged in as a user with that email; note that this will exclude all meetings booked by logged out users
  • guest_netid: String, if set results will be limited to meetings that were booked by a user logged in as a user with that netid; note that this will exclude all meetings booked by logged out users

RSS Academic Experiences

Web Service URL: https://www.campusgroups.com/rss_academic_experiences

Response
Name SOAP Tags Type More details
userCgId <userCgId>Value</userCgId> Integer
userEmail <userEmail>Value</userEmail> String
userNetID <userNetID>Value</userNetID> String
userFirstName <userFirstName>Value</userFirstName> String
userLastName <userLastName>Value</userLastName> String
university <university>Value</university> String
degree <degree>Value</degree> String
study_field <study_field>Value</study_field> String
location <location>Value</location> String
activities <activities>Value</activities> String
startYear <startYear>Value</startYear> String
endYear <endYear>Value</endYear> String
experienceUpdatedOn <experienceUpdatedOn>Value</experienceUpdatedOn> DateTime
experienceIsDeleted <experienceIsDeleted>Value</experienceIsDeleted> Integer 1 if deleted, 0 otherwise
CustomFields <customFields>
    <customField>
        <id>Id</id>
        <name>Name</name>
        <value>Value</value>
    </customField>
</customFields>


Integer
String
This section returns the custom field data associated to the experience if any.

Optional parameters:

  • cgid: Integer, if set results will be limited to experiences of the user with that cg_id
  • email: String, if set results will be limited to experiences of the user with that email
  • netid: String, if set results will be limited to experiences of the user with that netid
  • include_deleted: unless this is set to 1, results will be limited to experiences that have not been deleted
  • updated_after: DateTime in the "(UTC-05:00) Eastern Time (US & Canada)" timezone formatted as "2020-09-18 14:55:03", results will be limited to experiences that have been created/updated since the provided datetime

RSS Work Experiences

Web Service URL: https://www.campusgroups.com/rss_work_experiences

Response
Name SOAP Tags Type More details
userCgId <userCgId>Value</userCgId> Integer
userEmail <userEmail>Value</userEmail> String
userNetID <userNetID>Value</userNetID> String
userFirstName <userFirstName>Value</userFirstName> String
userLastName <userLastName>Value</userLastName> String
experienceId <experienceId>Value</experienceId> Integer
experienceExternalId <experienceExternalId>Value</experienceExternalId> String
companyName <companyName>Value</companyName> String
industry <industry id="123" external_id="ABC">Value</industry> String
title <title>Value</title> String
location <location>Value</location> String
country <country id="123" external_id="ABC">Value</country> String
startMonth <startMonth id="123" external_id="ABC">Value</startMonth> String
startYear <startYear>Value</startYear> String
endMonth <endMonth id="123" external_id="ABC">Value</endMonth> String
endYear <endYear>Value</endYear> String
experienceUpdatedOn <experienceUpdatedOn>Value</experienceUpdatedOn> DateTime
experienceIsDeleted <experienceIsDeleted>Value</experienceIsDeleted> Integer 1 if deleted, 0 otherwise
department <department>Value</department> String
CustomFields <customFields>
    <customField>
        <id>Id</id>
        <name>Name</name>
        <value>Value</value>
    </customField>
</customFields>


Integer
String
This section returns the custom field data associated to the experience if any.

Optional parameters:

  • cgid: Integer, if set results will be limited to experiences of the user with that cg_id
  • email: String, if set results will be limited to experiences of the user with that email
  • netid: String, if set results will be limited to experiences of the user with that netid
  • include_deleted: unless this is set to 1, results will be limited to experiences that have not been deleted
  • updated_after: DateTime in the "(UTC-05:00) Eastern Time (US & Canada)" timezone formatted as "2020-09-18 14:55:03", results will be limited to experiences that have been created/updated since the provided datetime

RSS Surveys Submissions

Web Service URL: https://www.campusgroups.com/rss_survey_submissions?ts=[TIMESTAMP]&preauth=[TOKEN]&survey_id=[SURVEY_ID]

Response
Name SOAP Tags Type More details
surveyId <surveyId>Value</surveyId> Integer
surveyTitle <surveyTitle>Value</surveyTitle> String
surveyDescription <surveyDescription>Value</surveyDescription> String
surveyDate <surveyDate>Value</surveyDate> Datetime
surveyContentType <surveyContentType>Value</surveyContentType> String
surveyContentTypeId <surveyContentTypeId>Value</surveyContentTypeId> Integer ID of the linked object
(eg, for surveyContentType "event" this would be an event_id)
submitterFirstName <submitterFirstName>Value</submitterFirstName> String
submitterFirstName <submitterFirstName>Value</submitterFirstName> String
submitterLastName <submitterLastName>Value</submitterLastName> String
submitterEmail <submitterEmail>Value</submitterEmail> String
submitterAccountType <submitterAccountType>Value</submitterAccountType> Integer
submitterYOG <submitterYOG>Value</submitterYOG> Integer
submitterNetid <submitterNetid>Value</submitterNetid> String
submissionApprovalStatus <submissionApprovalStatus>Value</submissionApprovalStatus> Integer 0: pending approval
1: approved
2: denied
3: on hold
4: requires modification
submissionDate <submissionDate>Value</submissionDate> Datetime
submissionDraft <submissionDraft>Value</submissionDraft> Integer
submissionDeleted <submissionDeleted>Value</submissionDeleted> Integer
submissionId <submissionId>Value</submissionId> Integer
submissionTags<submissionTags>Value</submissionTags>StringTag1,Tag2
invitedAt <invitedAt>Value</invitedAt> Datetime
submissionAnswers <submissionAnswers>
    <submissionAnswer>
        <questionId>Value</questionId>
        <question>Value</question>
        <answer>Value</answer>
        <files type='array'>
           <link>Value</link>
        </files>
    </submissionAnswer>
</submissionAnswers>


Integer
String
String

String

Required parameters:

  • At least one of survey_id, event_id, submission_id or submitter_cgid must be provided:
  • survey_id: Integer, will limit results to submissions for a specific survey
  • event_id: Integer, will limit results to approval requests for the given event
  • submission_id: Integer, id of the submission (also referred to as answerer_id)
  • submitter_cgid: Integer, id of the user whose submissions will be retrieved

Optional parameters:

  • deleted: If set to 1 will only return deleted submissions, if set to 0 only non-deleted submissions, otherwise all submissions will be returned
  • draft: If set to 1 will only return draft submissions, if set to 0 only non-draft submissions, otherwise all submissions will be returned
  • approval_status: If set only submissions matching the provided status will be returned (see above)
  • updated_after: Date in the 2026-03-13 format; will cause results to be filtered to only include submissions that have been updated after the given date in the "(UTC-05:00) Eastern Time (US & Canada)" timezone
  • updated_before: Date in the 2026-03-13 format; will cause results to be filtered to only include submissions that have been updated before the given date in the "(UTC-05:00) Eastern Time (US & Canada)" timezone

RSS Important Dates

Web Service URL: https://www.campusgroups.com/rss_important_dates?ts=[TIMESTAMP]&preauth=[TOKEN]

Response
Name SOAP Tags Type More details
title <title>Value</title> String
startDate <startDate>Value</startDate> Datetime
endDate <endDate>Value</endDate> Datetime
description <description>Value</description> String
submitterFirstName <submitterFirstName>Value</submitterFirstName> String
submitterLastName <submitterLastName>Value</submitterLastName> String

RSS Transactions

Web Service URL: https://www.campusgroups.com/rss_transactions?ts=[TIMESTAMP]&preauth=[TOKEN]

Response
Name SOAP Tags Type More details
source <source>Value</source> String
budgetId <budgetId>Value</budgetId> Integer
clubId <clubId>Value</clubId> Integer
clubName <clubName>Value</clubName> String
userId <userId>Value</userId> Integer
firstName <firstName>Value</firstName> String
lastName <lastName>Value</lastName> String
email <email>Value</email> String
transactionId <transactionId>Value</transactionId> Integer
itemName <itemName>Value</itemName> String
category <category>Value</category> String
paymentMethod <paymentMethod>Value</paymentMethod> String
status <status>Value</status> String
paymentStatus <paymentStatus>Value</paymentStatus> String
amount <amount>Value</amount> Integer
payeeVendor <payeeVendor>Value</payeeVendor> String
date <date>Value</date> Datetime

RSS Rooms

Web Service URL: https://www.campusgroups.com/rss_rooms

Response
Name SOAP Tags Type More details
roomId <roomId>Value</roomId> Integer
roomIsActive <roomIsActive>Value</roomIsActive> 0 or 1
roomName <roomName>Value</roomName> String
roomDescription <roomDescription>Value</roomDescription> String
roomCapacity <roomCapacity>Value</roomCapacity> Integer
roomPictureUrl <roomPictureUrl>Value</roomPictureUrl> String
roomType <roomType id="123" external_id="ABC">Value</roomType> String
building <building id="123" external_id="ABC">Value</building> String
floor <floor id="123" external_id="ABC">Value</floor> String
roomFeatures <roomFeatures>
    <roomFeature id="123" external_id="ABC">Value</roomFeature>
    <roomFeature id="456" external_id="DEF">Value</roomFeature>
</roomFeatures>

String
String

Optional parameters:

  • include_inactive: unless this is set to 1, results will be limited to rooms that are marked as active
  • min_capacity: Integer, if set results will be limited to rooms with a capacity greater than that number
  • features: Comma separated list of integers, if set results will be limited to rooms that have at least all of the features with the listed IDs. IDs can be found under Admin > Settings > Custom Values (Lookup) or using the RSS Lookups API
  • room_types: Comma separated list of integers, if set results will be limited to rooms whose room type is in the list. IDs can be found under Admin > Settings > Custom Values (Lookup) or using the RSS Lookups API
  • buildings: Comma separated list of integers, if set results will be limited to rooms whose building is in the list. IDs can be found under Admin > Settings > Custom Values (Lookup) or using the RSS Lookups API
  • floors: Comma separated list of integers, if set results will be limited to rooms whose floor is in the list. IDs can be found under Admin > Settings > Custom Values (Lookup) or using the RSS Lookups API

RSS Rooms Available

Web Service URL: https://www.campusgroups.com/rss_rooms_available

Response
Name SOAP Tags Type More details
roomId <roomId>Value</roomId> Integer
roomIsActive <roomIsActive>Value</roomIsActive> 0 or 1
roomName <roomName>Value</roomName> String
roomDescription <roomDescription>Value</roomDescription> String
roomCapacity <roomCapacity>Value</roomCapacity> Integer
roomPictureUrl <roomPictureUrl>Value</roomPictureUrl> String
roomType <roomType id="123" external_id="ABC">Value</roomType> String
building <building id="123" external_id="ABC">Value</building> String
floor <floor id="123" external_id="ABC">Value</floor> String
roomFeatures <roomFeatures>
    <roomFeature id="123" external_id="ABC">Value</roomFeature>
    <roomFeature id="456" external_id="DEF">Value</roomFeature>
</roomFeatures>

String
String

Required parameters:

  • start: Datetime in the ISO8601 format, eg "2026-03-13T09:15:00-04:00"
  • end: Datetime in the ISO8601 format, eg "2026-03-13T09:15:00-04:00"

Optional parameters:

  • min_capacity: Integer, if set results will be limited to rooms with a capacity greater than that number
  • features: Comma separated list of integers, if set results will be limited to rooms that have at least all of the features with the listed IDs. IDs can be found under Admin > Settings > Custom Values (Lookup) or using the RSS Lookups API
  • room_types: Comma separated list of integers, if set results will be limited to rooms whose room type is in the list. IDs can be found under Admin > Settings > Custom Values (Lookup) or using the RSS Lookups API
  • buildings: Comma separated list of integers, if set results will be limited to rooms whose building is in the list. IDs can be found under Admin > Settings > Custom Values (Lookup) or using the RSS Lookups API
  • floors: Comma separated list of integers, if set results will be limited to rooms whose floor is in the list. IDs can be found under Admin > Settings > Custom Values (Lookup) or using the RSS Lookups API
  • User: Provide at most one of the parameters below; if none are provided the request is processed as if only availability rules that apply to "Everyone" are applicable
  • user_id: Integer, If set to 0 apply all availability rules regardless of their access setting, if set to a value greater than 0 use the permissions of the user with that id
  • user_email: String, if set use the permissions of the user with that email
  • user_netid: String, if set use the permissions of the user with that netid
  • user_netid2: String, if set use the permissions of the user with that netid2
  • user_netid3: String, if set use the permissions of the user with that netid3
  • setup_time: Integer, number of minutes of setup time
  • breakdown_time: Integer, number of minutes of breakdown time
  • type: "event" or "direct", defaults to "direct" if not present
  • ignore_blocks: if set to 1 availability checks will ignore all blocks that would prevent a room from being available

RSS Rooms Reservations

Web Service URL: https://www.campusgroups.com/rss_rooms_reservations

Response
Name SOAP Tags Type More details
roomId <roomId>Value</roomId> Integer
roomIsActive <roomIsActive>Value</roomIsActive> 0 or 1
roomName <roomName>Value</roomName> String
roomDescription <roomDescription>Value</roomDescription> String
roomCapacity <roomCapacity>Value</roomCapacity> Integer
roomPictureUrl <roomPictureUrl>Value</roomPictureUrl> String
roomType <roomType id="123" external_id="ABC">Value</roomType> String
building <building id="123" external_id="ABC">Value</building> String
floor <floor id="123" external_id="ABC">Value</floor> String
roomFeatures <roomFeatures>
    <roomFeature id="123" external_id="ABC">Value</roomFeature>
    <roomFeature id="456" external_id="DEF">Value</roomFeature>
</roomFeatures>

String
String
reservationId <reservationId>Value</reservationId> Integer
requesterId <requesterId>Value</requesterId> Integer
reservationStart <reservationStart>Value</reservationStart> ISO8601 datetime
reservationEnd <reservationEnd>Value</reservationEnd> ISO8601 datetime
reservationStatus <reservationStatus>Value</reservationStatus> "event" or "direct"
eventId <eventId>Value</eventId> Integer Empty for direct bookings
eventName <eventName>Value</eventName> String
roomId <roomId>Value</roomId> Integer
setupMinutes <setupMinutes>Value</setupMinutes> Integer
breakoutMinutes <breakoutMinutes>Value</breakoutMinutes> Integer

Required parameters:

  • start: Datetime in the ISO8601 format, eg "2026-03-13T09:15:00-04:00"
  • end: Datetime in the ISO8601 format, eg "2026-03-13T09:15:00-04:00"

Optional parameters:

  • min_capacity: Integer, if set results will be limited to rooms with a capacity greater than that number
  • features: Comma separated list of integers, if set results will be limited to rooms that have at least all of the features with the listed IDs. IDs can be found under Admin > Settings > Custom Values (Lookup) or using the RSS Lookups API
  • room_types: Comma separated list of integers, if set results will be limited to rooms whose room type is in the list. IDs can be found under Admin > Settings > Custom Values (Lookup) or using the RSS Lookups API
  • buildings: Comma separated list of integers, if set results will be limited to rooms whose building is in the list. IDs can be found under Admin > Settings > Custom Values (Lookup) or using the RSS Lookups API
  • floors: Comma separated list of integers, if set results will be limited to rooms whose floor is in the list. IDs can be found under Admin > Settings > Custom Values (Lookup) or using the RSS Lookups API

RSS Badge Completions

Web Service URL: https://www.campusgroups.com/rss_badge_completions

Response
Name SOAP Tags Type More details
badgeId <badgeId>Value</badgeId> Integer
badgeName <badgeName>Value</badgeName> String
badgeDescription <badgeDescription>Value</badgeDescription> String
badgeOwnerGroupId <badgeOwnerGroupId>Value</badgeOwnerGroupId> Integer
badgeOwnerGroupName <badgeOwnerGroupName>Value</badgeOwnerGroupName> String
isPrivateBadge <isPrivateBadge>Value</isPrivateBadge> 0 or 1
isGroupBadge <isGroupBadge>Value</isGroupBadge> 0 or 1
badgeIconUrl <badgeIconUrl>Value</badgeIconUrl> String
completionUserId <completionUserId>Value</completionUserId> Integer
completionUserFirstName <completionUserFirstName>Value</completionUserFirstName> String
completionUserLastName <completionUserLastName>Value</completionUserLastName> String
completionUserAccountType <completionUserAccountType id="123" external_id="ABC">Value</completionUserAccountType> String
completionGroupId <completionGroupId>Value</completionGroupId> Integer
completionGroupName <completionGroupName>Value</completionGroupName> String
completionDate <completionDate>Value</completionDate> ISO8601 datetime
completionCount <completionCount>Value</completionCount> Integer

Optional parameters:

  • User: Provide at most one of the parameters below; if present only completions records for the specific user will be returned
  • user_id: Integer, id of the user to return badge completions for
  • user_email: String, email of the user to return badge completions for
  • user_netid: String, netid of the user to return badge completions for
  • user_netid2: String, netid2 of the user to return badge completions for
  • user_netid3: String, netid3 of the user to return badge completions for
  • badge_id: Integer, if set to a valid badge id only completion records for this badge will be returned
  • group_id: Integer, if set to a valid group id only completion records by this group will be returned

RSS Payments

Web Service URL: https://www.campusgroups.com/rss_payments

Response
Name SOAP Tags Type More details
paymentId <paymentId>Value</paymentId> Integer Internal ID of the payment
transactionDate <transactionDate>Value</transactionDate> String
transactionAmount <transactionAmount>Value</transactionAmount> Integer
transactionIsRefunded <transactionIsRefunded>Value</transactionIsRefunded> 1 or 0
transactionRefundAmount <transactionRefundAmount>Value</transactionRefundAmount> Integer
cartNumber <cartNumber>Value</cartNumber> String
groupId <groupId>Value</groupId> Integer
groupName <groupName>Value</groupName> String
sourceType <sourceType>Value</sourceType> String
sourceName <sourceName>Value</sourceName> String
itemName <itemName>Value</itemName> String
accountNumber <accountNumber>Value</accountNumber> String
glString <glString>Value</glString> String
userCgId <userCgId>Value</userCgId> Integer
userFirstName <userFirstName>Value</userFirstName> String
userLastName <userLastName>Value</userLastName> String
userEmail <userEmail>Value</userEmail> String
paymentGatewayTransactionId <paymentGatewayTransactionId>Value</paymentGatewayTransactionId> Integer
paymentMethod <paymentMethod >Value</paymentMethod > String

Required parameters:

  • start: Datetime in the ISO8601 format, eg "2026-03-13T09:15:00-04:00"
  • end: Datetime in the ISO8601 format, eg "2026-03-13T09:15:00-04:00"

Country custom values

Use either the text value or the id on the right hand side.

CountryValue CountryValue CountryValue CountryValue CountryValue
Afghanistan306Albania307Algeria308American Samoa309Andorra310
Angola311Anguilla312Antarctica313Antigua and Barbuda314Argentina315
Armenia316Aruba317Australia318Austria319Azerbaijan320
Bahamas321Bahrain322Bangladesh323Barbados324Belarus325
Belgium326Belize327Benin328Bermuda329Bhutan330
Bolivia331Bosnia and Herzegovina332Botswana333Bouvet Island334Brazil335
British Indian Ocean Territory336Brunei Darussalam337Bulgaria338Burkina Faso339Burundi340
Cambodia341Cameroon342Canada343Cape Verde344Cayman Islands345
Central African Republic346Chad347Chile348China349Christmas Island350
Cocos (Keeling) Islands351Colombia352Comoros353Congo354Cook Islands355
Costa Rica356Cote D'Ivoire (Ivory Coast)357Croatia (Hrvatska)358Cuba359Cyprus360
Czech Republic362Czechoslovakia (former)361Denmark363Djibouti364Dominica365
Dominican Republic366East Timor367Ecuador368Egypt369El Salvador370
Equatorial Guinea371Eritrea372Estonia373Ethiopia374Falkland Islands (Malvinas)375
Faroe Islands376Fiji377Finland378France379France, Metropolitan380
French Guiana381French Polynesia382French Southern Territories383Gabon384Gambia385
Georgia386Germany387Ghana388Gibraltar389Great Britain (UK)390
Greece391Greenland392Grenada393Guadeloupe394Guam395
Guatemala396Guinea397Guinea-Bissau398Guyana399Haiti400
Heard and McDonald Islands401Honduras402Hong Kong403Hungary404Iceland405
India406Indonesia407Iran408Iraq409Ireland410
Israel411Italy412Jamaica413Japan414Jordan415
Kazakhstan416Kenya417Kiribati418Korea, North419Korea, South420
Kosovo6204Kuwait421Kyrgyzstan422Laos423Latvia424
Lebanon425Lesotho426Liberia427Libya428Liechtenstein429
Lithuania430Luxembourg431Macau432Macedonia433Madagascar434
Malawi435Malaysia436Maldives437Mali438Malta439
Marshall Islands440Martinique441Mauritania442Mauritius443Mayotte444
Mexico445Micronesia446Moldova447Monaco448Mongolia449
Montenegro6205Montserrat450Morocco451Mozambique452Myanmar453
Namibia454Nauru455Nepal456Netherlands457Netherlands Antilles458
Neutral Zone459New Caledonia460New Zealand461Nicaragua462Niger463
Nigeria464Niue465Norfolk Island466Northern Mariana Islands467Norway468
Oman469Pakistan470Palau471Palestinia6206Panama472
Papua New Guinea473Paraguay474Peru475Philippines476Pitcairn477
Poland478Portugal479Puerto Rico480Qatar481Reunion482
Romania483Russian Federation484Rwanda485S. Georgia and S. Sandwich Isls.495Saint Kitts and Nevis486
Saint Lucia487Saint Vincent and the Grenadines488Sakha Republic6208Samoa489San Marino490
Sao Tome and Principe491Saudi Arabia492Senegal493Serbia6207Seychelles494
Sierra Leone496Singapore497Slovak Republic498Slovenia499Solomon Islands500
Somalia501South Africa502Spain503Sri Lanka504St. Helena505
St. Pierre and Miquelon506Sudan507Suriname508Svalbard and Jan Mayen Islands509Swaziland510
Sweden511Switzerland512Syria513Taiwan514Tajikistan515
Tanzania516Thailand517Togo518Tokelau519Tonga520
Trinidad and Tobago521Tunisia522Turkey523Turkmenistan524Turks and Caicos Islands525
Tuvalu526Uganda527Ukraine528United Arab Emirates529United Kingdom530
United States531Uruguay532US Minor Outlying Islands533USSR (former)534Uzbekistan535
Vanuatu536Vatican City State (Holy Sea)537Venezuela538Vietnam539Virgin Islands (British)540
Virgin Islands (U.S.)541Wallis and Futuna Islands542Western Sahara543Yemen544Yugoslavia545
Zaire546Zambia547Zimbabwe6209

Nationality custom values

Use either the text value or the id on the right hand side.

NationalityValue NationalityValue NationalityValue NationalityValue NationalityValue
Afghan6000Albanian6001Algerian6002American6003Andorran6004
Angolan6005Antigua And Barbuda6006Argentinian6007Armenian6008Australian6009
Austrian6010Azerbaijani6011Bahamas6012Bahraini6013Bangladeshi6014
Barbados6015Belarusian6016Belgian6017Belizean6018Beninese6019
Bermuda6020Bhutanese6021Bolivian6022Bosnian6023Bostwanian6024
Brazilian6025British6026Brunean6027Bulgarian6028Burkina Faso6029
Burundian6030Cambodian6031Cameroonian6032Canadian6033Cape Verdian6034
Central African6035Chad6036Chilean6037Chinese6038Colombian6039
Comoros6040Congolese6041Cook Islands6042Costa Rican6043Croatian6044
Cuban6045Cypriot6046Czech6047Danish6048Djibouti6049
Dominica6050Dominican6051Dutch6052East Timor6053Ecuadorian6054
Egyptian6055Equatorial Guinea6056Eritrean6057Estonian6058Ethiopian6059
Fijian6060Filipino6143Finnish6061French6062Gabonese6063
Gambian6064Georgian6065German6066Ghanaian6067Greek6068
Grenadian6069Guam6070Guatemalan6071Guinea Bissau6072Guinean6073
Guyanese6074Haitian6075Honduran6076Hong Kong6077Hungarian6078
Icelandic6079Indian6080Indonesian6081Iranian6082Iraqi6083
Irish6084Israeli6085Italian6086Ivorian6087Jamaican6088
Japanese6089Jordanian6090Kazakhstani6091Kenyan6092Kiribati6093
Kosovo6094Kuwaiti6095Kyrgyzstani6096Laos6097Latvian6098
Lebanese6099Lesotho6100Liberian6101Libian6102Liechtenstein6103
Lithuanian6104Luxembourger6105Macao6106Macedonian6107Madagascan6108
Malawi6109Malaysian6110Maldivian6111Malian6112Maltese6113
Marshall Islands6114Mauritanian6115Maurithian6116Mauritian11059980Mexican6117
Micronesia6118Moldavian6119Monaco6120Mongolian6121Montenegro6122
Moroccan6123Mozambican6124Myanmar6125Namibian6126Nauru6127
Nepalese6128New Caledonian6129New Zealand6130Nicaraguan6131Nigerian6132
North Korean6133Norwegian6134Omani6135Pakistani6136Palauan6137
Palestinian6138Panamanian6139Papua New Guinena6140Paraguayan6141Peruvian6142
Polish6144Portuguese (Portugal)6145Puerto Rican6146Qatari6147Romanian6148
Russian6149Rwandese6150Saint Kittis And Nevis6151Saipan6152Salvadoran6153
Samoan6154San Marinese6155Santo Tome And Principe6156Saudi Arabian6157Senegalese6158
Serbian6159Seychellois6160Sierra Leonean6161Singaporean6162Slovak6163
Slovenian6164Solomon Islands6165Somali6166South African6167South Korean6168
Spanish6169Sri Lankan6170St. Lucian6171St. Vicentian6172Sudanese6173
Surinamese6174Swazi6175Swedish6176Swiss6177Syrian6178
Taiwanese6179Tajikistani6180Tanzanian6181Thai6182Togolese6183
Tongan6184Trinidadian6185Tunisian6186Turkish6187Turkmeno6188
Tuvalu6189Ugandan6190Ukrainian6191United Arab Emirates6192Uruguayan6193
Uzbek6194Vanuatuan6195Vatican6196Venezuelan6197Vietnamese6198
Wallis And Futuna6199Yakut6200Yemeni6201Zambian6202Zimbabwean6203

Language custom values

Use either the text value or the id on the right hand side.

LanguageValue LanguageValue LanguageValue LanguageValue LanguageValue
Abkhazian4730914Afar4763990Afar4764017Afrikaans5202Albanian44802
Amharic4763991Amharic4764018Arabic5269Arabic (Algeria)7748Arabic (Bahrain)7749
Arabic (Egypt)7750Arabic (Iraq)7751Arabic (Jordan)7752Arabic (Kuwait)7753Arabic (Lebanon)7754
Arabic (Libya)7755Arabic (Morocco)7756Arabic (Oman)7757Arabic (Qatar)7758Arabic (Saudi Arabia)7759
Arabic (Syria)7760Arabic (Tunisia)7761Arabic (U.A.E.)7762Arabic (Yemen)7763Armenian4730938
ASL – American Sign Language46506Assamese4730915Aymara4763992Aymara4764019Azerbaijani4730916
Bashkir4730917Basque4730929Bengali94095Bhutani4730926Bihari4730919
Bislama4730920Bosnian44803Breton4730922Bulgarian11508Burmese4730963
Byelorussian4730918Cambodian4730947Cape Verdean Creole11102796Catalan4730923Chinese5203
Chinese (China)7764Chinese (Hong Kong)7766Chinese (Macao)7767Chinese (Singapore)7765Chinese (Taiwan)7768
Corsican4730924Creole (Haiti)11056349Croatian44804Czech5204Danish5205
Dutch5206Dutch (Belgium)7769Dutch (Netherlands)7770English5207English (Australia)7731
English (Belize)7732English (Canada)7733English (Caribbean)7734English (Hong Kong)7735English (India)7736
English (Ireland)7737English (Jamaica)7738English (Malaysia)7739English (New Zealand)7740English (Philippines)7741
English (Singapore)7742English (South Africa)7743English (Trinidad and Tobago)7744English (United Kingdom)7745English (United States)7746
English (Zimbabwe)7747Esperanto4730927Estonian4730928Faeroese4730931Fijian4730930
Finnish5208French5209French (Belgium)7771French (Cameroon)7772French (Canada)7773
French (Congo [DRC])7774French (France)7775French (Haiti)7776French (Ivory Coast)7777French (Luxembourg)7778
French (Mali)7779French (Monaco)7780French (Morocco)7781French (Reunion)7782French (Senegal)7783
French (Switzerland)7784Frisian4730932Gaelic4730934Galician4730935Georgian5210
German5211Greek5212Greenlandic4730946Guarani4730936Gujarati56131
Hausa4730937Hawaiian11032359Hebrew5270Hindi9379Hungarian5213
Icelandic4730942Igbo11044585Indonesian8003Interlingua4730939Interlingue4730940
Inupiak4730941Irish4730933Italian5214Japanese5215Javanese4730944
Kannada4730948Kashmiri4730949Kazakh4730945Kinyarwanda4730972Kirghiz4730951
Kirundi4730971Korean5216Kurdish4730950Laotian4730954Latin4730952
Latvian4730955Lingala4730953Lithuanian49763Macedonian44805Malagasy4730956
Malay8023Malayalam4730958Maltese4730962Maori4730957Marathi4730961
Moldavian4730960Mongolian4730959Nauru4730964Nepali4119399Norwegian5217
Occitan4730965Oriya4730967Oromo4730966Pashto4730968Persian44806
Polish5218Portuguese (Brazil)11054494Portuguese (Portugal)5219Punjabi5220Quechua4730969
Rhaeto-Romance4730970Romanian5221Russian5222Samoan4730978Sangro4730975
Sanskrit4730973Serbian44807Serbo-Croatian4730976Sesotho4730982Setswana4730990
Shona4730979Sindhi4730974Sinhalese4730977Siswati4730981Slovak5223
Slovenian84994Somali4730980Spanish5224Spanish (Argentina)7785Spanish (Bolivarian Republic of Venezuela)7786
Spanish (Bolivia)7787Spanish (Chile)7788Spanish (Colombia)7789Spanish (Costa Rica)7790Spanish (Dominican Republic)7791
Spanish (Ecuador)7792Spanish (El Salvador)7793Spanish (Guatemala)7794Spanish (Honduras)7795Spanish (Latin America)7796
Spanish (Mexico)7797Spanish (Nicaragua)7798Spanish (Panama)7799Spanish (Paraguay)7800Spanish (Peru)7801
Spanish (Puerto Rico)7802Spanish (Spain)7803Spanish (United States)7804Spanish (Uruguay)7805Sundanese4730983
Swahili4730984Swedish5225Tagalog49176Tajik4730987Tamil4730985
Tatar4730993Telugu4730986Thai5226Tibetan4730921Tigrinya4730988
Tonga4730991Tsonga4730992Turkish5227Turkmen4730989Twi4730994
Ukrainian5228Urdu4730995Uzbek4730996Vietnamese5229Volapuk4730997
Welsh4730925Wolof4730998Xhosa4730999Yiddish4730943Yoruba4731000
Zulu4731001

Career Interests custom values

Use either the text value or the id on the right hand side.

Career InterestValue Career InterestValue Career InterestValue Career InterestValue Career InterestValue
Accounting and Auditing1671Advertising1672Aerospace1673Agriculture1674Alternative Dispute Resolution38508
Alternative Medicine38509Animation38510Apparel & Fashion38511Architecture & Planning38512Arts and Crafts38513
Automotive1676Aviation & Aerospace38514Banking1675Biotechnology38515Broadcast Media38516
Building Materials38517Business Services1677Business Supplies and Equipment38518Capital Markets38519Chemical Industry1678
Civic & Social Organization38520Civil Engineering38521Commercial Real Estate38522Computer & Network Security38523Computer Games38524
Computer Hardware1679Computer Networking38525Computer Software1680Construction1682Consulting1695
Consumer Electronics38526Consumer Goods38527Consumer Services38528Cosmetics38529Dairy38530
Defense & Space38531Design38532E-Learning38533Education Management1997Electrical/Electronic Manufacturing26
Enterpreneurship38642Entertainment38534Environmental Services38535Events Services38536Executive Office38537
Facilities Services38538Farming and Fishery38539Financial Services1988Fine Art38540Food1685
Food & Beverages38541Food Production38542Fund-Raising38543Furniture38544Gambling & Casinos38545
Glass, Ceramics & Concrete38546Government Administration38547Government and Military1687Government Relations38548Graphic Design38549
Health, Wellness and Fitness38550Healthcare1686Higher Education1996Hospital & Health Care38551Hospitality38552
Hotel and Tourism1688Human Resources38553Import and Export38554Individual & Family Services38555Industrial Automation38556
Information Services38557Information Technology and Services1810Insurance38558International Affairs38559International Trade and Development38560
Internet Services1694Investing1689Investment Banking1811Investment Management1989Judiciary38561
Law Enforcement38562Law Practice38563Legal Services38564Legislative Office38565Leisure, Travel & Tourism38566
Libraries38567Logistics and Supply Chain38568Luxury Goods & Jewelry38569Machinery38570Management Consulting1812
Management Services1690Maritime38571Market Research38572Marketing and Advertising38573Mechanical or Industrial Engineering38574
Media Production38575Medical Devices38576Medical Practice38577Mental Health Care38578Military38579
Mining & Metals38580Misc. Manufacturing38581Misc. Military/Gov38582Misc. Services38583Motion Pictures and Film38584
Multi-Sector Companies38585Museums and Institutions38586Music38587Nanotechnology38588Newspapers38589
No specific industry38590Non-Profit Organization Management38591Nonprofit Organization Management1999Oil & Energy38592Online Media38593
Other1691Outsourcing/Offshoring38594Package/Freight Delivery38595Packaging and Containers38596Paper & Forest Products38597
Performing Arts38598Pharmaceuticals38599Philanthropy38600Photography38601Plastics38602
Political Organization38603Primary/Secondary Education38604Printing38605Professional Training & Coaching38606Program Development38607
Public Policy38608Public Relations and Communications38609Public Safety38610Publishing38611Railroad Manufacture38612
Ranching38613Real Estate1692Real Estate38614Recreational Facilities and Services38615Religious Institutions38616
Renewables & Environment38617Research38618Restaurants38619Retail38620Security and Investigations38621
Semiconductors38622Shipbuilding38623Sporting Goods38624Sports38625Staffing and Recruiting38626
Staffing Services1693Supermarkets38627Telecommunications2000Textiles38628Think Tanks38629
Tobacco38630Translation and Localization38631Transportation/Trucking/Railroad38632Utilities38633Venture Capital & Private Equity38634
Veterinary38635Warehousing38636Water supply38637Wholesale38638Wine and Spirits38639
Wireless38640Writing and Editing38641

TimeZoneId Values

ID Timezone
Dateline Standard Time(UTC-12:00) International Date Line West
UTC-11(UTC-11:00) Coordinated Universal Time-11
Aleutian Standard Time(UTC-10:00) Aleutian Islands
Hawaiian Standard Time(UTC-10:00) Hawaii
Marquesas Standard Time(UTC-09:30) Marquesas Islands
Alaskan Standard Time(UTC-09:00) Alaska
UTC-09(UTC-09:00) Coordinated Universal Time-09
Pacific Standard Time (Mexico)(UTC-08:00) Baja California
UTC-08(UTC-08:00) Coordinated Universal Time-08
Pacific Standard Time(UTC-08:00) Pacific Time (US & Canada)
US Mountain Standard Time(UTC-07:00) Arizona
Mountain Standard Time (Mexico)(UTC-07:00) La Paz, Mazatlan
Mountain Standard Time(UTC-07:00) Mountain Time (US & Canada)
Yukon Standard Time(UTC-07:00) Yukon
Central America Standard Time(UTC-06:00) Central America
Central Standard Time(UTC-06:00) Central Time (US & Canada)
Easter Island Standard Time(UTC-06:00) Easter Island
Central Standard Time (Mexico)(UTC-06:00) Guadalajara, Mexico City, Monterrey
Canada Central Standard Time(UTC-06:00) Saskatchewan
SA Pacific Standard Time(UTC-05:00) Bogota, Lima, Quito, Rio Branco
Eastern Standard Time (Mexico)(UTC-05:00) Chetumal
Eastern Standard Time(UTC-05:00) Eastern Time (US & Canada)
Haiti Standard Time(UTC-05:00) Haiti
Cuba Standard Time(UTC-05:00) Havana
US Eastern Standard Time(UTC-05:00) Indiana (East)
Turks And Caicos Standard Time(UTC-05:00) Turks and Caicos
Atlantic Standard Time(UTC-04:00) Atlantic Time (Canada)
Venezuela Standard Time(UTC-04:00) Caracas
Central Brazilian Standard Time(UTC-04:00) Cuiaba
SA Western Standard Time(UTC-04:00) Georgetown, La Paz, Manaus, San Juan
Pacific SA Standard Time(UTC-04:00) Santiago
Newfoundland Standard Time(UTC-03:30) Newfoundland
Tocantins Standard Time(UTC-03:00) Araguaina
Paraguay Standard Time(UTC-03:00) Asuncion
E. South America Standard Time(UTC-03:00) Brasilia
SA Eastern Standard Time(UTC-03:00) Cayenne, Fortaleza
Argentina Standard Time(UTC-03:00) City of Buenos Aires
Montevideo Standard Time(UTC-03:00) Montevideo
Magallanes Standard Time(UTC-03:00) Punta Arenas
Saint Pierre Standard Time(UTC-03:00) Saint Pierre and Miquelon
Bahia Standard Time(UTC-03:00) Salvador
UTC-02(UTC-02:00) Coordinated Universal Time-02
Greenland Standard Time(UTC-02:00) Greenland
Mid-Atlantic Standard Time(UTC-02:00) Mid-Atlantic - Old
Azores Standard Time(UTC-01:00) Azores
Cape Verde Standard Time(UTC-01:00) Cabo Verde Is.
UTC(UTC) Coordinated Universal Time
GMT Standard Time(UTC+00:00) Dublin, Edinburgh, Lisbon, London
Greenwich Standard Time(UTC+00:00) Monrovia, Reykjavik
Sao Tome Standard Time(UTC+00:00) Sao Tome
Morocco Standard Time(UTC+01:00) Casablanca
W. Europe Standard Time(UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna
Central Europe Standard Time(UTC+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague
Romance Standard Time(UTC+01:00) Brussels, Copenhagen, Madrid, Paris
Central European Standard Time(UTC+01:00) Sarajevo, Skopje, Warsaw, Zagreb
W. Central Africa Standard Time(UTC+01:00) West Central Africa
GTB Standard Time(UTC+02:00) Athens, Bucharest
Middle East Standard Time(UTC+02:00) Beirut
Egypt Standard Time(UTC+02:00) Cairo
E. Europe Standard Time(UTC+02:00) Chisinau
West Bank Standard Time(UTC+02:00) Gaza, Hebron
South Africa Standard Time(UTC+02:00) Harare, Pretoria
FLE Standard Time(UTC+02:00) Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius
Israel Standard Time(UTC+02:00) Jerusalem
South Sudan Standard Time(UTC+02:00) Juba
Kaliningrad Standard Time(UTC+02:00) Kaliningrad
Sudan Standard Time(UTC+02:00) Khartoum
Libya Standard Time(UTC+02:00) Tripoli
Namibia Standard Time(UTC+02:00) Windhoek
Jordan Standard Time(UTC+03:00) Amman
Arabic Standard Time(UTC+03:00) Baghdad
Syria Standard Time(UTC+03:00) Damascus
Turkey Standard Time(UTC+03:00) Istanbul
Arab Standard Time(UTC+03:00) Kuwait, Riyadh
Belarus Standard Time(UTC+03:00) Minsk
Russian Standard Time(UTC+03:00) Moscow, St. Petersburg
E. Africa Standard Time(UTC+03:00) Nairobi
Volgograd Standard Time(UTC+03:00) Volgograd
Iran Standard Time(UTC+03:30) Tehran
Arabian Standard Time(UTC+04:00) Abu Dhabi, Muscat
Astrakhan Standard Time(UTC+04:00) Astrakhan, Ulyanovsk
Azerbaijan Standard Time(UTC+04:00) Baku
Russia Time Zone 3(UTC+04:00) Izhevsk, Samara
Mauritius Standard Time(UTC+04:00) Port Louis
Saratov Standard Time(UTC+04:00) Saratov
Georgian Standard Time(UTC+04:00) Tbilisi
Caucasus Standard Time(UTC+04:00) Yerevan
Afghanistan Standard Time(UTC+04:30) Kabul
West Asia Standard Time(UTC+05:00) Ashgabat, Tashkent
Qyzylorda Standard Time(UTC+05:00) Astana
Ekaterinburg Standard Time(UTC+05:00) Ekaterinburg
Pakistan Standard Time(UTC+05:00) Islamabad, Karachi
India Standard Time(UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi
Sri Lanka Standard Time(UTC+05:30) Sri Jayawardenepura
Nepal Standard Time(UTC+05:45) Kathmandu
Central Asia Standard Time(UTC+06:00) Bishkek
Bangladesh Standard Time(UTC+06:00) Dhaka
Omsk Standard Time(UTC+06:00) Omsk
Myanmar Standard Time(UTC+06:30) Yangon (Rangoon)
SE Asia Standard Time(UTC+07:00) Bangkok, Hanoi, Jakarta
Altai Standard Time(UTC+07:00) Barnaul, Gorno-Altaysk
W. Mongolia Standard Time(UTC+07:00) Hovd
North Asia Standard Time(UTC+07:00) Krasnoyarsk
N. Central Asia Standard Time(UTC+07:00) Novosibirsk
Tomsk Standard Time(UTC+07:00) Tomsk
China Standard Time(UTC+08:00) Beijing, Chongqing, Hong Kong, Urumqi
North Asia East Standard Time(UTC+08:00) Irkutsk
Singapore Standard Time(UTC+08:00) Kuala Lumpur, Singapore
W. Australia Standard Time(UTC+08:00) Perth
Taipei Standard Time(UTC+08:00) Taipei
Ulaanbaatar Standard Time(UTC+08:00) Ulaanbaatar
Aus Central W. Standard Time(UTC+08:45) Eucla
Transbaikal Standard Time(UTC+09:00) Chita
Tokyo Standard Time(UTC+09:00) Osaka, Sapporo, Tokyo
North Korea Standard Time(UTC+09:00) Pyongyang
Korea Standard Time(UTC+09:00) Seoul
Yakutsk Standard Time(UTC+09:00) Yakutsk
Cen. Australia Standard Time(UTC+09:30) Adelaide
AUS Central Standard Time(UTC+09:30) Darwin
E. Australia Standard Time(UTC+10:00) Brisbane
AUS Eastern Standard Time(UTC+10:00) Canberra, Melbourne, Sydney
West Pacific Standard Time(UTC+10:00) Guam, Port Moresby
Tasmania Standard Time(UTC+10:00) Hobart
Vladivostok Standard Time(UTC+10:00) Vladivostok
Lord Howe Standard Time(UTC+10:30) Lord Howe Island
Bougainville Standard Time(UTC+11:00) Bougainville Island
Russia Time Zone 10(UTC+11:00) Chokurdakh
Magadan Standard Time(UTC+11:00) Magadan
Norfolk Standard Time(UTC+11:00) Norfolk Island
Sakhalin Standard Time(UTC+11:00) Sakhalin
Central Pacific Standard Time(UTC+11:00) Solomon Is., New Caledonia
Russia Time Zone 11(UTC+12:00) Anadyr, Petropavlovsk-Kamchatsky
New Zealand Standard Time(UTC+12:00) Auckland, Wellington
UTC+12(UTC+12:00) Coordinated Universal Time+12
Fiji Standard Time(UTC+12:00) Fiji
Kamchatka Standard Time(UTC+12:00) Petropavlovsk-Kamchatsky - Old
Chatham Islands Standard Time(UTC+12:45) Chatham Islands
UTC+13(UTC+13:00) Coordinated Universal Time+13
Tonga Standard Time(UTC+13:00) Nuku'alofa
Samoa Standard Time(UTC+13:00) Samoa
Line Islands Standard Time(UTC+14:00) Kiritimati Island