inBloomApiLibrary.SectionDataService.GetSectionTeacherAssociations C# (CSharp) Method

GetSectionTeacherAssociations() public method

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