List all projects
List all guide projects.
Responses
- application/json
- application/json
- application/json
- application/json
- application/json
- application/json
- application/json
Request Example for get/v1/guides
import { Scalar } from "@scalar/sdk";
const scalar = new Scalar({
bearerAuth: "<YOUR_BEARER_TOKEN_HERE>",
});
async function run() {
const result = await scalar.scalarDocs.getv1Guides();
console.log(result);
}
run();
[
{
"uid": "string",
"createdAt": 0,
"updatedAt": 0,
"name": "string",
"activeDeployment": null,
"lastPublished": null,
"lastPublishedUid": null,
"loginPortalUid": "",
"activeThemeId": "",
"typesenseId": 1,
"isPrivate": false,
"agentEnabled": false,
"accessGroups": [],
"slug": "string",
"publishStatus": "",
"publishMessage": "",
"repository": {
"linkedBy": "string",
"id": 1,
"name": "string",
"configPath": "",
"branch": "",
"publishOnMerge": false,
"publishPreviews": false,
"prComments": false,
"expired": false
}
}
]