# Delete user project memberships

Removes the user's membership to the projects specified.

In the JSON body, specify a project_ids field, set to an array of project IDs (for example, [project_id, project_id, ...]).

Endpoint: DELETE /users/{user_id}/project_memberships
Version: v1
Security: AuthToken

## Header parameters:

  - `Content-Type` (string, required)
    Enum: "application/json"

## Path parameters:

  - `user_id` (integer, required)
    Unique identifier for the resource instance.
    Example: 1234567

## Request fields (application/json):

  - `project_ids` (array)
    An array of project IDs.
    Example: [1122334]


