Retrieve all projects with basic pagination support
Projects are represented via vw_job. Default ordering by updatedAt desc.
Real Example:
curl --location 'https://{{host}}/v1/projects' \
--header 'Authorization: bearer {{token}}' \
--header 'Content-Type: application/json' \
--data '{
"pageSize": 25,
"page": 0
}'Security
BearerAuth
- Mock serverhttps://api.doc.aiwyn.ai/_mock/bundle/gql/v1/projects
- Sandboxhttps://demo.api.aiwyn.ai/gql/v1/projects
- Staginghttps://staging.api.aiwyn.app/gql/v1/projects
curl -i -X POST \
https://api.doc.aiwyn.ai/_mock/bundle/gql/v1/projects \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"pageSize": 25,
"page": 0
}'