POST https://api.legendonlineservices.co.uk/Cap2/FindAllCoursesForAttendee

Search for courses that an attendee is registered for. Returns a collection of course attendees that match the search criteria.

Request Parameters

From Body Type Description
ContactGuid Guid The contact guid to search for.




{
  "ContactGuid": "aed52af2-6122-4f7b-9ce4-1754901582fb"
}

Response - (Status 200 - OK)

FindCourseAttendeesResponse

Name Type Description
[CourseAttendee] A collection of zero or more course attendees.
Name Type Description
ContactExternalId Guid
CurrentBalance Decimal
ExternalCourseRef String
MembershipStatusDescription String
Status String




{
  "ReturnedAttendees": [
    {
      "ContactExternalId": "4ef13634-ecce-45bd-b2ee-9e8edc1d4254",
      "ExternalCourseRef": "sample string 2",
      "Status": "sample string 3",
      "CurrentBalance": 1.0,
      "MembershipStatusDescription": "sample string 4"
    },
    {
      "ContactExternalId": "4ef13634-ecce-45bd-b2ee-9e8edc1d4254",
      "ExternalCourseRef": "sample string 2",
      "Status": "sample string 3",
      "CurrentBalance": 1.0,
      "MembershipStatusDescription": "sample string 4"
    },
    {
      "ContactExternalId": "4ef13634-ecce-45bd-b2ee-9e8edc1d4254",
      "ExternalCourseRef": "sample string 2",
      "Status": "sample string 3",
      "CurrentBalance": 1.0,
      "MembershipStatusDescription": "sample string 4"
    }
  ]
}

Remarks

This end point replaces the old FindAllCoursesForAttendee SOAP endpoint that is now obsolete.

Bundle(s)
Cap2