List Memberships belonging to a Project
GET/projects/ {projectId}/ memberships/ 
v2
GET
project-list-memberships-for-project
Request
Responses
Usage examples
- cURL
 - JavaScript SDK
 - PHP SDK
 
$ curl \
    --fail \
    --location \
    -H "Authorization: Bearer $MITTWALD_API_TOKEN" \
    https://api.mittwald.de/v2/projects/string/memberships?limit=50&hasExpiry=true&isInherited=true&role=notset&hasMfa=true
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.listMembershipsForProject({
  "projectId": "string",
  "queryParameters": {
    "limit": 50,
    "hasExpiry": true,
    "isInherited": true,
    "role": "notset",
    "hasMfa": true
  }
});
assertStatus(response, 200);
  
use \Mittwald\ApiClient\Generated\V2\Clients\Project\ListMembershipsForProject\ListMembershipsForProjectRequest;
  
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new ListMembershipsForProjectRequest(
  projectId: "string"
))
  ->withLimit(50)
  ->withHasExpiry(true)
  ->withIsInherited(true)
  ->withRole("notset")
  ->withHasMfa(true);
$response = $client->project()->listMembershipsForProject($request);
var_dump($response->getBody();