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": "46bb79c1-8f95-48ae-b6bc-44de37716b4a"
}

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": "90b6587d-91b4-4997-ade3-b88d2ae45911",
      "ExternalCourseRef": "sample string 2",
      "Status": "sample string 3",
      "CurrentBalance": 1.0,
      "MembershipStatusDescription": "sample string 4"
    },
    {
      "ContactExternalId": "90b6587d-91b4-4997-ade3-b88d2ae45911",
      "ExternalCourseRef": "sample string 2",
      "Status": "sample string 3",
      "CurrentBalance": 1.0,
      "MembershipStatusDescription": "sample string 4"
    },
    {
      "ContactExternalId": "90b6587d-91b4-4997-ade3-b88d2ae45911",
      "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