Pixxel

List projects

List projects for the service user

GET/v0/projects
Authorisations
AuthorizationString
Query Parameters
page_numinteger
Page number
page_sizeinteger
Page size
Response
application/json
OK
countinteger
Total count of records, to be used for pagination
projectsobject[]
Show child attributes
List projects
1curl -X GET 'https://api.pixxel.space/v0/projects' \
2 -H 'Authorization: YOUR_API_KEY'
Response:
{
"count": 0,
"projects": [
{
"id": "string",
"name": "string",
"title": "string",
"org_id": "string",
"members_count": 0,
"created_at": "string",
"updated_at": "string",
"metadata": {}
}
]
}