Event Management API
Introduction
This API is used to manage Events, and Event Participants. It can be used to create, edit, delete and list Events and Participants.
TOKEN
All request made to the following API endpoints require a token.
The token should be provided in the headers as:
Authorization: Bearer <token>
A token consists of 40 character long hex value. The value has two different parts:
- Current time [32 bits / 8 chars] - current timestamp in number of seconds since UNIX Epoch
- Signature
[128 bits / 32 chars] - the MD5 hash of (organizationId + ":" + Current time + ":" + Secret + ":" + IP Address), where
'+' is a string concatenation
Secret: A secret key
that is only present on the client creating the token and the server
verifying the token that is Organization specific.
Example:
organizationId: 13509
Current time: 1622091600000 (27.05.2021 05:00:00 UTC) -> '60af2750'
Secret: 'secret'
Signature: MD5('13509:60af2750:secret:185.185.165.160') -> '7c39fec85881c1d8ebb0064b83f5edd8'
Generated token: '60af27507c39fec85881c1d8ebb0064b83f5edd8'
API PATH: Event Management
/api/event
API CALLS
Create Event
Creates a new Event.
Request
Method: POST
HTTP Request Parameters: None
Request body: Event Creation JSON Object
Event Creation JSON Object:
Key
| Value
| Requirement
| Info
|
organizationId
| Number
| Mandatory
| Suite Organization ID
|
event
| Object
| Mandatory
| See Event Data JSON Object
|
Event Data JSON Object:
Key
| Value
| Requirement
| Info
|
name
| String or Object
| Mandatory
| Name of the event. If provided as a String, the name will be saved as the default language ('en' by default, unless provided). If provided as an Object, translations should be provided as {"en_US": "english name", "fi_FI": "finnish name"}. See 'supported languages'
|
description
| String or Object
| Optional
| Description of the event. If provided as a String, the description will be saved as the default language
('en' by default, unless provided). If provided as an Object,
translations should be provided as {"en_US": "english name", "fi_FI": "finnish
name"}. See 'supported languages'
|
publicName
| String or Object
| Optional
| Public name of the event. If provided as a String, the public name will be saved as the default language
('en' by default, unless provided). If provided as an Object,
translations should be provided as {"en_US": "english name", "fi_FI": "finnish
name"}. See 'supported languages'
|
startTime
| Number
| Mandatory
| Start time of the event, milliseconds since UNIX Epoch
|
duration
| Number
| Mandatory
| Duration of the event, in seconds
|
startTimePublic
| Number
| Optional
| Public start time of the event, milliseconds since UNIX Epoch
|
durationPublic
| Number
| Optional (required if 'startTimePublic' provided)
| Public duration of the event, in seconds
|
accessControl (Currently unsupported) | Object (Currently unsupported)
| Optional (Currently unsupported) | See access control object (Currently unsupported) |
eventTheme
| Number
| Optional
| Suite Event Theme ID
|
eventThumbnail
| String
| Optional
| URL to the thumbnail image of the event
|
defaultLanguage
| String
| Optional
| Sets the default language of the event. Default 'en_US'.
|
eventLanguages
| Array
| Optional
| List of available languages for the event. i.e. ["en_US", "fi_FI"]. Default language is added by default.
|
gdpr
| Object
| Optional
| See GDPR object
|
externalId
| String
| Optional
| External Event Id
|
Supported Languages
Currently the following languages are supported for events:
English ("en_US")
Finnish ("fi_FI")
Spanish ("es_ES")
Swedish ("sv_SE")
A JSON object representing the Access Control Type of an event. The content of the object depends on the type of Access Control being created, however it should always contain the "access_control_type" key specifying the type of Access Control being created. Currently supported Access Control types by the API: 7 (Personal Link)
CURRENTLY UNSUPPORTED
Access Control: Personal Link object
Key
| Value
| Requirement
| Info
|
accessControlType
| Number
| Mandatory
| Value for type Personal Link: 7
|
GDPR object
Key
| Value
| Requirement
| Info
|
termsOfService
| String or Object
| Optional
| Terms of Service text. If provided as a String, the terms of service will be saved as the default language
('en' by default, unless provided). If provided as an Object,
translations should be provided as {"en_US": "english terms", "fi_FI": "finnish
terms"}. See 'supported languages'
|
privacyPolicy
| String or Object
| Optional
| Privacy Policy text. If provided as a String, the privacy policy will be saved as the default language
('en' by default, unless provided). If provided as an Object,
translations should be provided as {"en_US": "english terms", "fi_FI": "finnish
terms"}. See 'supported languages'
|
copyright
| String or Object
| Optional
| Copyright text. If provided as a String, the copyright will be saved as the default language
('en' by default, unless provided). If provided as an Object,
translations should be provided as {"en_US": "english copyright", "fi_FI": "finnish
copyright"}. See 'supported languages'
|
Example JSON Object for creating a new Event:
- {
- "organizationId": 1909009,
- "event": {
- "name": {
- "en_US": "English name",
- "fi_FI": "Finnish name"
- },
- "description": {
- "en_US": "English description",
- "fi_FI": "Finnish description"
- },
- "publicName": {
- "en_US": "English public name",
- "fi_FI": "Finnish public name"
- },
- "startTime": 1637913600000,
- "duration": 12600,
- "startTimePublic": 1637914500000,
- "durationPublic": 11700,
- "eventTheme": 3319901,
- "eventLanguages": ["en_US", "fi_FI"],
- "gdpr": {
- "termsOfService": {
- "en_US": "English terms of service text.",
- "fi_FI": "Finnish terms of service text."
- },
- "privacyPolicy": {
- "en_US": "English privacy policy text.",
- "fi_FI": "Finnish privacy policy text."
- },
- "copyright": {
- "en_US": "English copyright text.",
- "fi_FI": "Finnish copyright text."
- }
- }
- }
- }
After a successful call to the API, you will get a HTTP 200 response with a JSON object containing "status": "ok", and the "event" object containing information of the newly created event, including "event_id". Here is a sample response from the above example creation JSON:
- {
- "status": "ok",
- "event": {
- "restrictions": [],
- "isMultiroom": true,
- "mainEventRoomId": 3697602,
- "embedUrl": "https://suiterc.icareus.com/web/test-account/player/embed/event/view?eventId=3697601",
- "startTimePublic": 1637914500000,
- "defaultLanguage": "en_US",
- "durationPublic": 11700,
- "publishingInfo": {
- "serviceId": 0,
- "ingestUrl": ""
- },
- "startTime": 1637913600000,
- "eventTheme": 3319901,
- "duration": 12600,
- "eventLanguages": [
- "en_US",
- "fi_FI"
- ],
- "eventId": 3697601,
- "serviceId": 0,
- "publicName": {
- "en_US": "English public name",
- "fi_FI": "Finnish public name"
- },
- "description": {
- "en_US": "English description",
- "fi_FI": "Finnish description"
- },
- "name": {
- "en_US": "English name",
- "fi_FI": "Finnish name"
- },
- "accessControls": [],
- "gdpr": {
- "privacyPolicy": {
- "en_US": "English privacy policy text.",
- "fi_FI": "Finnish privacy policy text."
- },
- "copyright": {
- "en_US": "English copyright text.",
- "fi_FI": "Finnish copyright text."
- },
- "termsOfService": {
- "en_US": "English terms of service text.",
- "fi_FI": "Finnish terms of service text."
- }
- },
- "categories": [],
- "rooms": [
- {
- "eventTheme": 3319901,
- "startTime": 1637913600000,
- "duration": 12600,
- "recordings": [],
- "serviceId": 1909939,
- "eventId": 3697601,
- "description": {
- "en_US": "This is the main room"
- },
- "publicName": {
- "en_US": "Main room"
- },
- "name": {
- "en_US": "Main Room"
- },
- "embedUrl": "https://suiterc.icareus.com/web/test-account/player/embed/event/view?eventId=3697601&roomId=3697602",
- "roomId": 3697602,
- "publishingInfo": {
- "ingestUrl": "rtmp://sample.origin.icareus.com:1935/suitelive",
- "streamName": 1909939
- }
- }
- ]
- }
- }
Edit Event
Edits an existing Event.
Request
Method: PUT
HTTP Request Parameters: None
Request body: Event Update JSON Object
Event Update JSON Object
Key
| Value
| Requirement
| Info
|
organizationId
| Number
| Mandatory
| Suite Organizattion ID
|
eventId
| Number
| Mandatory
| ID of the event being edited
|
event
| Object
| Mandatory
| See Event Data JSON Object (from Create Event)
|
The "event" object here is identical to the one used when creating an event, with the exception that all keys are optional. Only the provided keys are updated in the existing event, while keys not provided are left unchanged.
Example JSON Object for editing the sample from create event to also include Swedish name, description and public name. And adding Swedish as one of the event languages:
- {
- "organizationId": 1909009,
- "eventId": 3697601,
- "event": {
- "name": {
- "sv_SE": "Swedish name"
- },
- "description": {
- "sv_SE": "Swedish description"
- },
- "publicName": {
- "sv_SE": "Swedish public name"
- },
- "eventLanguages": ["en_US", "fi_FI", "sv_SE"]
- }
- }
Successful PUT call will result in a HTTP Status code 200. Response will contain status ok and the updated event object. Here is a sample response from updating an event with the above JSON:
- {
- "status": "ok",
- "event": {
- "restrictions": [],
- "isMultiroom": true,
- "mainEventRoomId": 3697602,
- "embedUrl": "https://suiterc.icareus.com/web/test-account/player/embed/event/view?eventId=3697601",
- "startTimePublic": 1637914500000,
- "defaultLanguage": "en_US",
- "durationPublic": 11700,
- "publishingInfo": {
- "serviceId": 0,
- "ingestUrl": ""
- },
- "startTime": 1637913600000,
- "eventTheme": 3319901,
- "duration": 12600,
- "eventLanguages": [
- "en_US",
- "fi_FI",
- "sv_SE"
- ],
- "eventId": 3697601,
- "serviceId": 0,
- "publicName": {
- "en_US": "English public name",
- "sv_SE": "Swedish public name",
- "fi_FI": "Finnish public name"
- },
- "description": {
- "en_US": "English description",
- "sv_SE": "Swedish description",
- "fi_FI": "Finnish description"
- },
- "name": {
- "en_US": "English name",
- "sv_SE": "Swedish name",
- "fi_FI": "Finnish name"
- },
- "accessControls": [],
- "gdpr": {
- "privacyPolicy": {
- "en_US": "English privacy policy text.",
- "fi_FI": "Finnish privacy policy text."
- },
- "copyright": {
- "en_US": "English copyright text.",
- "fi_FI": "Finnish copyright text."
- },
- "termsOfService": {
- "en_US": "English terms of service text.",
- "fi_FI": "Finnish terms of service text."
- }
- },
- "categories": [],
- "rooms": [
- {
- "eventTheme": 3319901,
- "startTime": 1637913600000,
- "duration": 12600,
- "recordings": [],
- "serviceId": 1909939,
- "eventId": 3697601,
- "description": {
- "en_US": "This is the main room"
- },
- "publicName": {
- "en_US": "Main room"
- },
- "name": {
- "en_US": "Main Room"
- },
- "embedUrl": "https://suiterc.icareus.com/web/test-account/player/embed/event/view?eventId=3697601&roomId=3697602",
- "roomId": 3697602,
- "publishingInfo": {
- "ingestUrl": "rtmp://sample.origin.icareus.com:1935/suitelive",
- "streamName": 1909939
- }
- }
- ]
- }
- }
Delete Event
Deletes an existing event
Request
Method: DELETE
HTTP Request Parameters:
Name
| Value
| Requirement
| Info
|
eventId
| Number
| Mandatory
| ID of the event to be deleted.
|
organizationId
| Number
| Mandatory
| Suite Organization ID
|
Get Event
Retrieve information about a specific event.
Request
Method: GET
HTTP Request Parameters:
Name
| Value
| Requirement
| Info
|
eventId
| Number
| Mandatory
| ID of the event to fetch
|
organizationId
| Number
| Mandatory
| Suite Organization ID
|
API PATH: Room Management
/api/event/room
API CALLS
Create Room
Creates an Event Room
Request
Method: POST
HTTP Request Parameters: None
Request body: Event Room Creation JSON Object
Event Room Creation JSON Object
Key
| Value
| Requirement
| Info
|
organizationId
| Number
| Mandatory
| Suite Organization ID
|
eventId
| Number
| Mandatory
| ID of the event the room is being added to
|
room
| Object
| Mandatory
| See Event Room Data JSON Object
|
Event Room Data JSON Object
Key
| Value
| Requirement
| Info
|
name
| String or Object
| Mandatory
| Name of the room. If provided as a String, the name will be saved as
the default language ('en' by default, unless provided). If provided as
an Object, translations should be provided as {"en_US": "english name",
"fi_FI": "finnish name"}. See 'supported languages' |
description
| String or Object
| Optional
| Description of the room. If provided as a String, the description will be saved as the default language
('en' by default, unless provided). If provided as an Object,
translations should be provided as {"en_US": "english name", "fi_FI": "finnish
name"}. See 'supported languages' |
publicName
| String or Object
| Optional
| Public name of the room. If provided as a String, the public name will be saved as the default language
('en' by default, unless provided). If provided as an Object,
translations should be provided as {"en_US": "english name", "fi_FI": "finnish
name"}. See 'supported languages' |
startTime
| Number
| Mandatory
| Start time of the room, millis since UNIX Epoch. Cannot be before top-level event's startTime
|
duration
| Number
| Mandatory
| Duration of the room, in seconds. NOTE: The room cannot end after the top-level event. So a room's startTime + duration cannot be higher than the top-level event's startTime+duration.
|
startTimePublic
| Number
| Optional
| Public start time of the room, milliseconds since UNIX Epoch. Public start time cannot be before startTime
|
durationPublic
| Number
| Optional
| Public duration of the room, in seconds. This is mandatory if startTimePublic is provided.
|
eventTheme
| Number
| Optional
| ID of the Event Theme to use with this room. If not provided, first available Event Theme will be selected.
|
serviceId
| Number
| Optional
| ID of the Suite Linear Channel to use with this room. If not provided, first available Linear Channel will be randomly selected. Notice that you cannot have two rooms using the same Linear Channel simultaneously.
|
Example JSON Object for creating a Room:- {
- "organizationId": 1909009,
- "eventId": 3697601,
- "room": {
- "name": {
- "en_US": "English room name",
- "fi_FI": "Finnish room name"
- },
- "description": {
- "en_US": "English room description",
- "fi_FI": "Finnish room description"
- },
- "publicName": {
- "en_US": "English room public name",
- "fi_FI": "Finnish room public name"
- },
- "startTime": 1637913600000,
- "duration": 12600,
- "startTimePublic": 1637914500000,
- "durationPublic": 11700,
- "eventTheme": 3319901,
- "serviceId": 2977205
- }
- }
Successful POST call to /api/event/room will result in HTTP status code 200 and the response will provide a JSON Object with status ok and the event object with the newly added room listed in the rooms array:
- {
- "status": "ok",
- "event": {
- "restrictions": [],
- "isMultiroom": true,
- "mainEventRoomId": 3697602,
- "embedUrl": "https://suiterc.icareus.com/web/test-account/player/embed/event/view?eventId=3697601",
- "startTimePublic": 1637914500000,
- "defaultLanguage": "en_US",
- "durationPublic": 11700,
- "publishingInfo": {
- "serviceId": 0,
- "ingestUrl": ""
- },
- "startTime": 1637913600000,
- "eventTheme": 3319901,
- "duration": 12600,
- "eventLanguages": [
- "en_US",
- "fi_FI",
- "sv_SE"
- ],
- "eventId": 3697601,
- "serviceId": 0,
- "publicName": {
- "en_US": "English public name",
- "sv_SE": "Swedish public name",
- "fi_FI": "Finnish public name"
- },
- "description": {
- "en_US": "English description",
- "sv_SE": "Swedish description",
- "fi_FI": "Finnish description"
- },
- "name": {
- "en_US": "English name",
- "sv_SE": "Swedish name",
- "fi_FI": "Finnish name"
- },
- "accessControls": [],
- "gdpr": {
- "privacyPolicy": {
- "en_US": "English privacy policy text.",
- "fi_FI": "Finnish privacy policy text."
- },
- "copyright": {
- "en_US": "English copyright text.",
- "fi_FI": "Finnish copyright text."
- },
- "termsOfService": {
- "en_US": "English terms of service text.",
- "fi_FI": "Finnish terms of service text."
- }
- },
- "categories": [],
- "rooms": [
- {
- "recordings": [],
- "startTimePublic": 1637914500000,
- "embedUrl": "https://suiterc.icareus.com/web/test-account/player/embed/event/view?eventId=3697601&roomId=3698301",
- "roomId": 3698301,
- "durationPublic": 11700,
- "publishingInfo": {
- "ingestUrl": "rtmp://sample.origin.icareus.com:1935/suitelive",
- "streamName": 2977205
- },
- "startTime": 1637913600000,
- "eventTheme": 3319901,
- "duration": 12600,
- "eventId": 3697601,
- "serviceId": 2977205,
- "publicName": {
- "en_US": "English room public name",
- "fi_FI": "Finnish room public name"
- },
- "description": {
- "en_US": "English room description",
- "fi_FI": "Finnish room description"
- },
- "name": {
- "en_US": "English room name",
- "fi_FI": "Finnish room name"
- }
- },
- {
- "eventTheme": 3319901,
- "startTime": 1637913600000,
- "duration": 12600,
- "recordings": [],
- "serviceId": 1909939,
- "eventId": 3697601,
- "description": {
- "en_US": "This is the main room"
- },
- "publicName": {
- "en_US": "Main room"
- },
- "name": {
- "en_US": "Main Room"
- },
- "embedUrl": "https://suiterc.icareus.com/web/test-account/player/embed/event/view?eventId=3697601&roomId=3697602",
- "roomId": 3697602,
- "publishingInfo": {
- "ingestUrl": "rtmp://sample.origin.icareus.com:1935/suitelive",
- "streamName": 1909939
- }
- }
- ]
- }
- }
Edit Room
Edits an existing Room.
Request
Method: PUT
HTTP Request Parameters: None
Request Body: Room Update JSON Object
Room Update JSON Object
Key
| Value
| Requirement
| Info
|
organizationId
| Number
| Mandatory
| Suite Organization ID
|
roomId
| Number
| Mandatory
| ID of the Room being edited
|
room
| Object
| Mandatory
| See Room Data JSON Object
|
The "room" object here is identical to the one used when creating a room, with the exception that all keys are optional. Only the provided keys are updated in the existing event, while keys not provided are left unchanged.
Example JSON Object for editing the sample from create event, to edit the automatically created main room:
- {
- "organizationId": 1909009,
- "roomId": 3697602,
- "room": {
- "name": {
- "en_US": "English main room name",
- "fi_FI": "Finnish main room name"
- },
- "description": {
- "en_US": "English main room description",
- "fi_FI": "Finnish main room description"
- },
- "publicName": {
- "en_US": "English main room public name",
- "fi_FI": "Finnish main room public name"
- }
- }
- }
Successful PUT call will result in a HTTP Status code 200. Response will
contain status ok and the updated room object. Here is a sample
response from updating an event with the above JSON:
- {
- "status": "ok",
- "room": {
- "eventTheme": 3319901,
- "startTime": 1637913600000,
- "duration": 12600,
- "recordings": [],
- "serviceId": 1909939,
- "eventId": 3697601,
- "description": {
- "en_US": "English main room description",
- "fi_FI": "Finnish main room description"
- },
- "publicName": {
- "en_US": "English main room public name",
- "fi_FI": "Finnish main room public name"
- },
- "name": {
- "en_US": "English main room name",
- "fi_FI": "Finnish main room name"
- },
- "embedUrl": "https://suiterc.icareus.com/web/test-account/player/embed/event/view?eventId=3697601&roomId=3697602",
- "roomId": 3697602,
- "publishingInfo": {
- "ingestUrl": "rtmp://sample.origin.icareus.com:1935/suitelive",
- "streamName": 1909939
- }
- }
- }
Get Room
Gets a single room.
Request
Method: GET
HTTP Request Parameters
Name
| Value
| Requirement
| Info
|
organizationId
| Number
| Mandatory
| Suite Organization ID
|
roomId
| Number
| Mandatory
| ID of the Room to get
|
A successful response will return HTTP status code 200 and a JSON object with status ok and an object 'room' representing a single Room:
- {
- "status": "ok",
- "room": {
- "eventTheme": 3319901,
- "startTime": 1637913600000,
- "duration": 12600,
- "recordings": [],
- "serviceId": 1909939,
- "eventId": 3697601,
- "description": {
- "en_US": "English main room description",
- "fi_FI": "Finnish main room description"
- },
- "publicName": {
- "en_US": "English main room public name",
- "fi_FI": "Finnish main room public name"
- },
- "name": {
- "en_US": "English main room name",
- "fi_FI": "Finnish main room name"
- },
- "embedUrl": "https://suiterc.icareus.com/web/test-account/player/embed/event/view?eventId=3697601&roomId=3697602",
- "roomId": 3697602,
- "publishingInfo": {
- "ingestUrl": "rtmp://sample.origin.icareus.com:1935/suitelive",
- "streamName": 1909939
- }
- }
- }
Delete Room
Deletes a room
Request
Method: DELETE
HTTP Request Parameters
Name
| Value
| Requirement
| Info
|
organizationId
| Number
| Mandatory
| Suite Organization ID
|
roomId
| Number
| Mandatory
| ID of the Room to delete
|
A successfull DELETE call will result in a response with HTTP Status code 200 and will contain a JSON object with the status ok.
API PATH: Event Images
/api/event/images
API CALLS
ADD THUMBNAIL
Adds a thumbnail image to an Event or a Room.
Request
Method: POST
HTTP Request ParametersName
| Value
| Requirement
| Info
|
organizationId
| Number
| Mandatory
| Suite Organization ID
|
action
| String: 'addThumbnail'
| Mandatory
| Value should be: addThumbnail
|
eventId
| Number
| Optional
| Either eventId or roomId must be provided
|
roomId
| Number
| Optional
| Either roomId or eventId must be provided
|
Form Data
The image should be provided within Form Data with the field name 'thumbnail'.
REMOVE THUMBNAIL
Removes the thumbnail image from the specified Event or Room
Request
Method: POST
HTTP Request Parameters
Name
| Value
| Requirement
| Info
|
organizationId
| Number
| Mandatory
| Suite Organization ID
|
action
| String: 'removeThumbnail'
| Mandatory
| Value should be: removeThumbnail
|
eventId
| Number
| Optional
| Either eventId or roomId must be provided
|
roomId
| Number
| Optional
| Either roomId or eventId must be provided
|
A successful call will return a response with HTTP status code 200 and a JSON Object containing the information about the Event or Room that was edited.
API PATH
/api/event/participant

CURRENTLY UNSUPPORTED
API CALLS
Create Participant
Create an Event Participant. The Participant is attached to the
Request
Method: POST
HTTP Request Parameters: None
Request body: Participant creation JSON Object
Participant creation JSON Object
Key
| Value
| Requirement
| Info
|
organizationId
| Number
| Mandatory
| Suite Organization ID
|
eventId
| Number
| Mandatory
| Suite Event ID
|
participant
| Object
| Mandatory
| See Participant Object
|
Participant Object
Key
| Value
| Requirement
| Info
|
emailAddress
| String
| Mandatory
| User's email address
|
firstName
| String
| Optional
| User's first name
|
lastName
| String
| Optional
| User's last name
|
company
| String
| Optional
| Name of the company / organization the user is a part of.
|
blocked
| Boolean
| Optional (Defaults to 'true')
| Whether or not user is blocked from accessing the event.
|
Example Participant creation JSON:
- {
- "organization_id": 1234,
- "event_id": 4321,
- "participant": {
- "email_address": "user@email-address.com",
- "first_name": "First name",
- "last_name": "Last name",
- "company": "Company name",
- "blocked": false
- }
- }
After a successful call to the API, you will get a response with HTTP status 200, the response JSON will contain "status": "ok", and and "participant" object containing information about the newly created participant, including "participant_id" and "access_url" (which is the unique access link that lets the participant enter the event page).
Edit Participant
Edits the specified Event Participant
Request
Method: PUT
HTTP Request Parameters: None
Request Body: Event Participant Update Object
Event Participant Update Object
Key
| Value
| Requirement
| Info
|
organizationId
| Number
| Mandatory
| Suite Organization ID
|
eventId
| Number
| Mandatory
| Suite Event ID
|
participantId
| Number
| Mandatory
| Suite Event Participant ID
|
participant
| Object
| Mandatory
| See Participant Object
|
The "particiapant" object here is identical to the one used when creating an
event participant, with the exception that all keys are optional. Only the provided
keys are updated in the existing event participant, while keys not provided are left
unchanged.
Delete Participant
Deletes the specified Event Participant
Request
Method: DELETE
HTTP Request Parameters:
Name
| Value
| Requirement
| Info
|
participantId
| Number
| Mandatory
| ID of the Event Participant to be deleted
|
eventId
| Number
| Mandatory
| ID of the Event the participant belongs to
|
Get Participant
Retrieves information about the specified Event Participant
Request
Method: GET
HTTP Request Parameters:
Name
| Value
| Requirement
| Info
|
participantId
| Number
| Mandatory
| ID of the Event Participant to be fetched
|
eventId
| Number
| Mandatory
| ID of the Event
|