---
title: "Create a new role by cloning an existing role"
method: POST
path: "/api/v2/roles/{role_id}/clone"
tags: ["Roles"]
---

# Create a new role by cloning an existing role

`POST /api/v2/roles/{role_id}/clone`

Clone an existing role

## Path parameters

- `role_id` string, required

## Request body

- RoleCloneRequest — Request to create a role by cloning an existing role.
  - `data` RoleClone, required — Data for the clone role request.
    - `attributes` RoleCloneAttributes, required — Attributes required to create a new role by cloning an existing one.
      - `name` string, required — Name of the new role that is cloned.
      - `receives_permissions_from` string[] — The managed role from which this role automatically inherits new permissions. Specify one of the following: "Datadog Admin Role", "Datadog Standard Role", or "Datadog Read Only Role". If empty or not specified, the role does not automatically inherit permissions from any managed role.
    - `type` 'roles', required — Roles type.

## Response `200`

OK

- RoleResponse — Response containing information about a single role.
  - `data` Role — Role object returned by the API.
    - `attributes` RoleAttributes — Attributes of the role.
      - `created_at` string, date-time — Creation time of the role.
      - `modified_at` string, date-time — Time of last role modification.
      - `name` string — The name of the role. The name is neither unique nor a stable identifier of the role.
      - `receives_permissions_from` string[] — The managed role from which this role automatically inherits new permissions. Specify one of the following: "Datadog Admin Role", "Datadog Standard Role", or "Datadog Read Only Role". If empty or not specified, the role does not automatically inherit permissions from any managed role.
      - `user_count` integer — Number of users with that role.
    - `id` string — The unique identifier of the role.
    - `relationships` RoleResponseRelationships — Relationships of the role object returned by the API.
      - `permissions` RelationshipToPermissions — Relationship to multiple permissions objects.
        - `data` RelationshipToPermissionData[] — Relationships to permission objects.
          - `id` string — ID of the permission.
          - `type` 'permissions' — Permissions resource type.
    - `type` 'roles', required — Roles type.

## Other responses

- `400` — Bad Request
- `403` — Authentication error
- `404` — Not found
- `409` — Conflict
- `429` — Too many requests

---

[API](https://skmtc.net/datadog/apis/api-v2.md) · [All operations](https://skmtc.net/datadog/apis/api-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/datadog/api-v2/versions/da68bf029e4c/schema)
