List Projects belonging to the executing user
GET/projects/ 
v2
GET
project-list-projects
Request
Responses
Usage examples
- cURL
 - JavaScript SDK
 - PHP SDK
 
$ curl \
    --fail \
    --location \
    -H "Authorization: Bearer $MITTWALD_API_TOKEN" \
    https://api.mittwald.de/v2/projects?customerId=15b8a787-8d46-43b0-907e-01af35032c0a&serverId=f0f86186-0a5a-45b2-aa33-502777496347&searchTerm=string&limit=50&page=1&sort=createdAt&order=asc
import { MittwaldAPIV2Client } from "@mittwald/api-client";
import { assertStatus } from "@mittwald/api-client-commons";
  
const client = MittwaldAPIClient.newWithToken(process.env.MITTWALD_API_TOKEN);
const response = await client.project.listProjects({
  "queryParameters": {
    "customerId": "15b8a787-8d46-43b0-907e-01af35032c0a",
    "serverId": "f0f86186-0a5a-45b2-aa33-502777496347",
    "searchTerm": "string",
    "limit": 50,
    "page": 1,
    "sort": "createdAt",
    "order": "asc"
  }
});
assertStatus(response, 200);
  
use \Mittwald\ApiClient\Generated\V2\Clients\Project\ListProjects\ListProjectsRequest;
  
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new ListProjectsRequest())
  ->withCustomerId("15b8a787-8d46-43b0-907e-01af35032c0a")
  ->withServerId("f0f86186-0a5a-45b2-aa33-502777496347")
  ->withSearchTerm("string")
  ->withLimit(50)
  ->withPage(1)
  ->withSort("createdAt")
  ->withOrder("asc");
$response = $client->project()->listProjects($request);
var_dump($response->getBody();