ClickHelp User Manual

[API] Get All Projects and Publications

Returns information on all projects and publications available to the user making the request.

GET projects 

Authentication

This request requires basic authentication.

Samples

Request sample
Bash (Unix Shell)
curl --location -g --request GET 'https://{portal-url}/api/v1/projects'
Response body sample
JSON
[
{
"createdOn": "2021-04-07T15:50:15",
"fullUrl": "https://docs.hedronlabs.org/articles/project-deep-space-exploration",
"id": "project-deep-space-exploration",
"parentId": null,
"parentUrl": null,
"title": "Project Deep Space Exploration",
"url": "project-deep-space-exploration",
"visibility": "Private"
},
{
"createdOn": "2022-02-16T13:38:01",
"fullUrl": "https://docs.hedronlabs.org/articles/project-snippets",
"id": "project-snippets",
"parentId": null,
"parentUrl": null,
"title": "Snippets Project",
"url": "project-snippets",
"visibility": "Private"
}
]

Response fields

createdOn An ISO 8601 timestamp of the project/publication creation date. GMT timezone.
fullUrl The full URL of the project or publication.
id
The unique identifier of the project or publication.
parentId
The unique identifier of the parent entity. Returns null for projects. For publications, returns the ID of the associated project.
parentUrl

[deprecated] Same as parentId.

title
The title of the project or publication.
url

[deprecated] Same as id.

visibility
The visibility of the project/publication. Always returns Private for projects.