inBloomApiLibrary.SectionDataService.GetSectionTeacherAssociationTeacherList C# (CSharp) Method

GetSectionTeacherAssociationTeacherList() public method

Gets teachers in teacher section associations within the sections.
public GetSectionTeacherAssociationTeacherList ( string accessToken, string sectionId ) : Newtonsoft.Json.Linq.JArray
accessToken string
sectionId string
return Newtonsoft.Json.Linq.JArray
		public JArray GetSectionTeacherAssociationTeacherList(string accessToken, string sectionId)
		{
			string apiEndPoint = String.Format(ApiHelper.BaseUrl + "/sections/{0}/teacherSectionAssociations/teachers", sectionId);
			return ApiHelper.CallApiForGet(apiEndPoint, accessToken);
		}