Projects
Authorizations
x-api-keystringRequired
Responses
200
Projects retrieved successfully
application/json
successbooleanOptional
401
Unauthorized - Invalid or missing API key
500
Server error
get/api/v1/projects/xapi-list-all
GET /api/v1/projects/xapi-list-all HTTP/1.1
Host: api.loci-dev.net
x-api-key: YOUR_API_KEY
Accept: */*
{
"success": true,
"data": [
{
"_id": "text",
"name": "text",
"description": "text",
"organizationId": "text",
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedAt": "2026-01-01T00:00:00.000Z"
}
]
}Authorizations
x-api-keystringRequired
Body
projectIdstringOptional
ID of the project to fetch versions for
organizationIdstringOptional
ID of the organization
Responses
200
Project versions retrieved successfully
application/json
successbooleanOptional
401
Unauthorized - Invalid or missing API key
500
Server error
post/api/v1/graph/xapi-project-versions
POST /api/v1/graph/xapi-project-versions HTTP/1.1
Host: api.loci-dev.net
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 44
{
"projectId": "text",
"organizationId": "text"
}{
"success": true,
"data": [
{
"version": "text",
"reportId": "text"
}
]
}Last updated
Was this helpful?
