Network

View a list of users in the given user's network

Table of Contents

Fields

Field Name Description Type Required
uid User ID

The user ID of the listed user

integer
name User display name

The display name of the listed user

string

Operations

list

View a list of users in the given user’s network. The following query strings can (optionally) be appended to the path to filter results:

  • search: show only results matching the given search string. Matching is a case-insensitive comparison performed on user names for both exact and partial phrases (i.e. searching for ‘john’ will return users named ‘John Doe’ and ‘William johnson’).
  • page: the current response body limit is 30 records per page. Use this query string to specify which page of the results you’d like to see.
  • NOTE: If you are looking for a list of users in the given users school, you should make a call to https://api.schoology.com/v1/users. For more information see: API - User.
Path

GET https://api.schoology.com/v1/users/{user_id}/network

Content

none

Return

A collection of network objects, each one containing network fields

JSON
{
    "user": [
        {
            "uid": "44012",
            "name_title": "",
            "name_title_show": "0",
            "name_first": "Alex",
            "name_first_preferred": "",
            "name_middle": "",
            "name_middle_show": "0",
            "name_last": "Mon",
            "picture_url": "http:\/\/..."
        },
        {
            "uid": "5",
            "name_title": "Dr.",
            "name_title_show": "1",
            "name_first": "Schoology",
            "name_first_preferred": "",
            "name_middle": "",
            "name_middle_show": "0",
            "name_last": "Shaw",
            "picture_url": "http:\/\/..."
        }
    ],
    "total": "2",
    "links": {
        "self": "http:\/\/...?start=0&limit=20"
    }
}
XML
<?xml version="1.0" encoding="utf-8" ?>
<result>
    <user>
        <uid>44012</uid>
        <name_title />
        <name_title_show>0</name_title_show>
        <name_first>Alex</name_first>
        <name_first_preferred />
        <name_middle />
        <name_middle_show>0</name_middle_show>
        <name_last>Mon</name_last>
        <picture_url>http:\/\/...</picture_url>
    </user>
    <user>
        <uid>5</uid>
        <name_title>Dr.</name_title>
        <name_title_show>1</name_title_show>
        <name_first>Schoology</name_first>
        <name_first_preferred />
        <name_middle />
        <name_middle_show>0</name_middle_show>
        <name_last>Shaw</name_last>
        <picture_url>http:\/\/...</picture_url>
    </user>
    <total>2</total>
    <links>
        <self>http:\/\/...?start=0&amp;limit=20</self>
    </links>
</result>