Enduring Materials

Enduring materials are on-demand activities that do not have a specific time or location designated for participation; rather, the participant determines where and when to complete the activity. The eeds API exposes several endpoints you can use to interact with your organization's enduring materials.

The enduring material model

The conference model contains selected information about a conference and its connections to other resources in eeds.

Properties

  • Name
    id
    Type
    integer
    Description

    Unique identifier of the enduring material.

  • Name
    ain
    Type
    string
    Description

    The unqiue eeds AIN assigned to the enduring material.

  • Name
    description
    Type
    string
    Description

    The description of the enduring material.

  • Name
    estimatedMinutesRequired
    Type
    integer
    Description

    An estimate of the amount of time, in minutes, that it should take most participants to complete the enduring material.

  • Name
    expirationDate
    Type
    date
    Description

    The date after which participants may not earn credit for completing the enduring material.

  • Name
    urls
    Type
    array of strings
    Description

    An array of URLs at which information relevant to the enduring material may be accessed.


GET/enduring-materials

List all enduring materials

This endpoint allows you to retrieve a paginated list of all of the enduring materials you are authorized to access. By default, a maximum of 20 enduring materials are shown per page.

Optional query parameters

  • Name
    page
    Type
    integer
    Description

    The page of results to return.

  • Name
    perPage
    Type
    integer
    Description

    The number of results to return per page.

Request

GET
/enduring-materials
curl -G https://newapi.eeds.com/api/enduring-materials \
  -H "Authorization: Bearer {token}"

Response

{
  "pageSize": 20,
  "currentPage": 1,
  "totalItems": 6679,
  "totalPages": 134,
  "data": [
    {
      "id": 1807,
      "ain": "042191646",
      "description": "According to the Center of Disease Control, childhood obesity is still a serious problem in the United States affecting an estimated 13.7 million youth.  Known behavioral factors such as eating high-calorie, low-nutrient foods and beverages, lack of physical activity, and increased sedentary activities such as watching television, video games and increased use of other screen devices have aided to the epidemic. In this session, we will explore factors that contribute to childhood obesity, and discuss how to recognize, implement, and develop strategies to intervene when needed.",
      "estimatedMinutesRequired": 60,
      "expirationDate": "2022-02-02T00:00:00",
      "urls": [
        "https://vimeo.com/453404792/07ce23cba3"
      ]
	  },
    {
      "id": 1808,
      // ...
    }
  ]
}

GET/enduring-materials/:id

Retrieve an enduring material

This endpoint allows you to retrieve an enduring material by providing its ID. Refer to the list at the top of this page to see which properties are included with enduring material objects.

Request

GET
/enduring-materials/2434
curl -G https://newapi.eeds.com/api/enduring-materials/2434 \
  -H "Authorization: Bearer {token}"

Response

{
  "id": 2434,
  "ain": "053246475",
  "description": "The purpose of this training is to provide guidelines on how to conduct a virtual visit through the telemedicine platform. A provider will be able to successfully perform video consultations. In order to be marked complete, please: register for this course, review the presentation, and complete the competency checklist in its entirety.",
  "estimatedMinutesRequired": 15,
  "expirationDate": "2029-12-31T00:00:00",
  "urls": [
    "https://newapi.eeds.com",
    "https://www.accme.org"
  ]
}