def get_canvas_section(section_id):
    """
    Get a single canvas section from the given section_id
    """
    section = sections.get_section_information_sections(
        SDK_CONTEXT, section_id).json()
    return section
def get_section_by_id(section_id):
    """
    This method will retreive the section given the section id
    """
    response = sections.get_section_information_sections(SDK_CONTEXT, section_id)
    section = response.json()
    return section
Example #3
0
def get_section_by_id(section_id):
    """
    This method will retreive the section given the section id
    """
    response = sections.get_section_information_sections(
        SDK_CONTEXT, section_id)
    section = response.json()
    return section
def get_canvas_section(section_id):
    """
    Get a single canvas section from the given section_id
    """
    section = sections.get_section_information_sections(SDK_CONTEXT, section_id).json()
    return section