Functions/Get-SchoolNewsCategories.ps1

# https://developer.sky.blackbaud.com/docs/services/school/operations/V1ContentNewsCategoriesGet
# Returns a collection of Content News Categories.
# Requires the 'Parent', 'Faculty' or 'Student' role in the K12 system.

# Parameter,Required,Type,Description
# No parameters accepted

function Get-SchoolNewsCategories
{ 
    # Set the endpoints
    $endpoint = 'https://api.sky.blackbaud.com/school/v1/content/news/categories'

    # Set the response field
    $ResponseField = "value"

    # Get the SKY API subscription key
    $sky_api_config = Get-SKYAPIConfig -ConfigPath $sky_api_config_file_path
    $sky_api_subscription_key = $sky_api_config.api_subscription_key

    # Grab the security tokens
    $AuthTokensFromFile = Get-SKYAPIAuthTokensFromFile

    $response = Get-UnpagedEntity -url $endpoint -api_key $sky_api_subscription_key -authorisation $AuthTokensFromFile -response_field $ResponseField
    $response
}