listProjects
GET/v1/projects
List projects
Request
Query Parameters
cursor string
Cursor for pagination
Responses
- 200
- 400
- 401
- 403
- 404
list of projects
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
objects object[]required
id stringrequired
organisation_id stringrequired
name stringrequired
created_at date-timerequired
updated_at date-timerequired
cursor stringrequired
Cursor for pagination, empty string when no more result
{
"objects": [
{
"id": "abcdefghijklmnopqrstuvwxyz",
"organisation_id": "abcdefghijklmnopqrstuvwxyz",
"name": "Development App",
"created_at": "2024-04-09T08:49:18.712Z",
"updated_at": "2024-04-09T08:49:18.712Z"
}
],
"cursor": "bb5h3heefq63m7dayhj5ibuapy"
}
Client provided an invalid request
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
status integerrequired
reason stringrequired
description string
details object
property name* string[]
string
{
"status": 400,
"reason": "Reason",
"description": "string",
"details": {}
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
status integerrequired
reason stringrequired
description string
details object
property name* string[]
string
{
"status": 400,
"reason": "Reason",
"description": "string",
"details": {}
}
Forbidden
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
status integerrequired
reason stringrequired
description string
details object
property name* string[]
string
{
"status": 400,
"reason": "Reason",
"description": "string",
"details": {}
}
Resource not found
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
status integerrequired
reason stringrequired
description string
details object
property name* string[]
string
{
"status": 400,
"reason": "Reason",
"description": "string",
"details": {}
}
Loading...