inBloomApiLibrary.SectionDataService.GetSectionCustom C# (CSharp) Method

GetSectionCustom() public method

Gets section custom details.
public GetSectionCustom ( string accessToken, string sectionId ) : Newtonsoft.Json.Linq.JArray
accessToken string Access token has to send
sectionId string User id has to send
return Newtonsoft.Json.Linq.JArray
		public JArray GetSectionCustom(string accessToken, string sectionId)
		{
			string apiEndPoint = String.Format(ApiHelper.BaseUrl + "/sections/{0}/custom", sectionId);
			return ApiHelper.CallApiForGet(apiEndPoint, accessToken);
		}