> For the complete documentation index, see [llms.txt](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/client/create-service.md).

# Create Service

Use the `POST /client/services/create/` endpoint allows the creation of a new service. You must provide a `name` for the service in the request body. Once the service is successfully created, a unique `id` is generated for the new service.

***

#### Parameters

**Request Body:**

| Name   | Type   | Description                            | Required |
| ------ | ------ | -------------------------------------- | -------- |
| `name` | string | The name of the service to be created. | Yes      |

**Example Request Body:**

```json
{
  "name": "Mechanic Service"
}
```

***

#### Responses

**201 Created**

**Description:** The service was successfully created.

**Example Response:**

```json
{
  "id": 123,
  "name": "Mechanic Service"
}
```
