GET /api/events/:id/contacts
Email notification list for when court reporter connects, starts, idles & disconnects

Returns list of email addresses, and boolean indicating if email notifications should be sent.

Supported Formats

json, xml

Errors

Code Description
422 Request is unprocessable
500 Event has errors, details will be returned in server response

Examples

{
  "allow_speche_to_notify": false,
  "emails": [
    "user1@somecompany.com",
    "user2@somecompany.com",
    "user3@somecompany.com"
  ]
}

Params

Param name Description
token
required

API token for your organization

Validations:

  • Must be a String

id
required

Event ID (Note: passed in URL itself, not query string)

Validations:

  • Must be a Integer


GET /api/events/:id/accessible_event_schedule
Add or check user access to an Event

When called without the “key” parameter, checks for access.

When called with the “key” parameter, will add user to group associated with “key” parameter.

Supported Formats

json, xml

Errors

Code Description
422 Request is unprocessable
500 Event has errors, details will be returned in server response

Examples

{
  event_schedule: {
    guid: "a0a0a0a0-a0a0-a0a0-a0a0-a0a0a0a0a0a0"
    start_time: "2015-01-01T04:00:00-10:00",
    egu_id: 111111
  }
}
{
  error: [
   "No assigned users with provided email wewre found for this event"
  ]
}

Params

Param name Description
token
required

API token for your organization

Validations:

  • Must be a String

id
required

Event ID (Note: passed in URL itself, not query string)

Validations:

  • Must be a Integer

email
required

User's email address

Validations:

  • Must be a String

key
optional

Group access key

Validations:

  • Must be a String