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

# Delete Role

DELETE http://localhost:8080/api/v3/roles/{roleId}

Reference: https://apidocs.sare.africa/sare-core-api/identity/roles/delete-role

## Request

### Path parameters

- `roleId` (string, required)

## Response

### 204

No Content

- `code` (integer, required)
- `message` (string, required)

## Errors

### 400 Bad Request Error

Bad Request

- `path` (string, required)
- `status` (integer, required)
- `message` (string, required)

## Examples

**Response**

```json
{
  "code": 204,
  "message": "Role deleted successfully"
}
```

**SDK Code**

```python Identity_Roles_Delete Role_example
import requests

url = "http://localhost:8080/api/v3/roles/e4c0c3d4-6b7a-4c8d-9e0f-1a2b3c4d5e6f"

response = requests.delete(url)

print(response.json())
```

```javascript Identity_Roles_Delete Role_example
const url = 'http://localhost:8080/api/v3/roles/e4c0c3d4-6b7a-4c8d-9e0f-1a2b3c4d5e6f';
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 Identity_Roles_Delete Role_example
package main

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

func main() {

	url := "http://localhost:8080/api/v3/roles/e4c0c3d4-6b7a-4c8d-9e0f-1a2b3c4d5e6f"

	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 Identity_Roles_Delete Role_example
require 'uri'
require 'net/http'

url = URI("http://localhost:8080/api/v3/roles/e4c0c3d4-6b7a-4c8d-9e0f-1a2b3c4d5e6f")

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

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

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

```java Identity_Roles_Delete Role_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.delete("http://localhost:8080/api/v3/roles/e4c0c3d4-6b7a-4c8d-9e0f-1a2b3c4d5e6f")
  .asString();
```

```php Identity_Roles_Delete Role_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('DELETE', 'http://localhost:8080/api/v3/roles/e4c0c3d4-6b7a-4c8d-9e0f-1a2b3c4d5e6f');

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

```csharp Identity_Roles_Delete Role_example
using RestSharp;

var client = new RestClient("http://localhost:8080/api/v3/roles/e4c0c3d4-6b7a-4c8d-9e0f-1a2b3c4d5e6f");
var request = new RestRequest(Method.DELETE);
IRestResponse response = client.Execute(request);
```

```swift Identity_Roles_Delete Role_example
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "http://localhost:8080/api/v3/roles/e4c0c3d4-6b7a-4c8d-9e0f-1a2b3c4d5e6f")! 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()
```