BCXAPI.Service.GetTodoList C# (CSharp) Method

GetTodoList() public method

public GetTodoList ( int accountID, int projectID, int todoListID ) : dynamic
accountID int
projectID int
todoListID int
return dynamic
        public dynamic GetTodoList(int accountID, int projectID, int todoListID)
        {
            if (IsAuthenticated)
            {
                return _getJSONFromURL(string.Format(_BaseCampAPIURL, accountID, string.Format("projects/{0}/todolists/{1}", projectID, todoListID)));
            }
            else
            {
                throw new Exceptions.UnauthorizedException();
            }
        }