> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.itspropel.com/llms.txt.
> For full documentation content, see https://docs.itspropel.com/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.itspropel.com/_mcp/server.

# Delete

DELETE https://users/%7Buser_id%7D

Reference: https://docs.itspropel.com/propel-biz/02-user/delete

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: PropelBiz
  version: 1.0.0
paths:
  /users/%7Buser_id%7D:
    delete:
      operationId: delete
      summary: Delete
      tags:
        - subpackage_02User
      responses:
        '201':
          description: Created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/02 User_Delete_Response_201'
servers:
  - url: https:/
components:
  schemas:
    Users7BuserId7DDeleteResponsesContentApplicationJsonSchemaDataAttributes:
      type: object
      properties:
        email:
          type: string
          format: email
        last_name:
          type: string
        first_name:
          type: string
      required:
        - email
        - last_name
        - first_name
      title: Users7BuserId7DDeleteResponsesContentApplicationJsonSchemaDataAttributes
    Users7BuserId7DDeleteResponsesContentApplicationJsonSchemaData:
      type: object
      properties:
        id:
          type: integer
        type:
          type: string
        attributes:
          $ref: >-
            #/components/schemas/Users7BuserId7DDeleteResponsesContentApplicationJsonSchemaDataAttributes
      required:
        - id
        - type
        - attributes
      title: Users7BuserId7DDeleteResponsesContentApplicationJsonSchemaData
    02 User_Delete_Response_201:
      type: object
      properties:
        data:
          $ref: >-
            #/components/schemas/Users7BuserId7DDeleteResponsesContentApplicationJsonSchemaData
      required:
        - data
      title: 02 User_Delete_Response_201

```

## SDK Code Examples

```python 02 User_Delete_example
import requests

url = "https://https/users/%7Buser_id%7D"

response = requests.delete(url)

print(response.json())
```

```javascript 02 User_Delete_example
const url = 'https://https/users/%7Buser_id%7D';
const options = {method: 'DELETE'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go 02 User_Delete_example
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://https/users/%7Buser_id%7D"

	req, _ := http.NewRequest("DELETE", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby 02 User_Delete_example
require 'uri'
require 'net/http'

url = URI("https://https/users/%7Buser_id%7D")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Delete.new(url)

response = http.request(request)
puts response.read_body
```

```java 02 User_Delete_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.delete("https://https/users/%7Buser_id%7D")
  .asString();
```

```php 02 User_Delete_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('DELETE', 'https://https/users/%7Buser_id%7D');

echo $response->getBody();
```

```csharp 02 User_Delete_example
using RestSharp;

var client = new RestClient("https://https/users/%7Buser_id%7D");
var request = new RestRequest(Method.DELETE);
IRestResponse response = client.Execute(request);
```

```swift 02 User_Delete_example
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "https://https/users/%7Buser_id%7D")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "DELETE"

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```