> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usedora.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Rider

### 📝 Summary

This endpoint permanently deletes a rider's account from the system. It is typically used when a rider leaves the platform, requests account deletion, or their account needs to be removed for compliance reasons.

***

### Requests

##### Example

<Expandable>
  **Description:**

  ```json theme={null}
  {
    "rider_uuids": [
      "1550c152-2523-4f3d-931e-92ce8a4c80cc",
      "2550c152-2523-4f3d-931e-92ce8a4c80cc",
      "3550c152-2523-4f3d-931e-92ce8a4c80cc",
      "4550c152-2523-4f3d-931e-92ce8a4c80cc"
    ]
  }
  ```
</Expandable>

##### Params

<Expandable>
  **Description:**

  | Name          | Location | Type      | Required | Description |
  | ------------- | -------- | --------- | -------- | ----------- |
  | `body`        | body     | object    | no       | none        |
  | `rider_uuids` | body     | \[string] | yes      | none        |
</Expandable>

### Responses

| HTTP Status Code                 | Meaning                                                          | Description | Data schema |
| -------------------------------- | ---------------------------------------------------------------- | ----------- | ----------- |
| <Badge color="green">200</Badge> | [OK](https://tools.ietf.org/html/rfc7231#section-6.3.1)          | none        | Inline      |
| <Badge color="red">422</Badge>   | [Bad Request](https://tools.ietf.org/html/rfc7231#section-6.3.1) | none        | Inline      |

<ResponseExample>
  ```json sample response theme={null}
  {
  "status": "success",
  "message": "Rider delete successfully."
  }
  ```
</ResponseExample>
