A site is a project area where you can share content and collaborate with
other site members. There are API calls for getting a list of sites, and for
getting information on a single site.
To see documentation for methods on this entity, and to try them out on our online REST API Explorer, go to https://api-explorer.alfresco.com/api-explorer/#/networks. If you have the REST API Explorer running locally, then go to http://localhost:8080/api-explorer#/networks.
Site object
| Property | Type | JSON Type | Description |
|---|---|---|---|
| title | string | string | The site's name (used in the site's list and on the sites dashboard). |
| description | string | string | The description of the site |
| visibility | string | string | The visibility of the site, PRIVATE, PUBLIC, or MODERATED. |
| id | id | string | The site identifier. An opaque string which uniquely identifies this site. |
Example of a site object
{
"title":"Fred Bloggs's Home",
"description":"Fred Bloggs's private home site.",
"visibility":"PRIVATE",
"id":"fred-bloggs-yourcompany-com"
}