Examples

POST /api/roles/14/clone
{
  "name": "New Role",
  "role": {
    "location_ids": [],
    "organization_ids": [],
    "name": "New Role"
  }
}
201
{
  "id": 15,
  "name": "New Role",
  "builtin": 0,
  "description": "default description",
  "cloned_from_id": 14,
  "origin": null
}

Params

Param name Description
location_id
optional

Scope by locations

Validations:

  • Must be a Integer

organization_id
optional

Scope by organizations

Validations:

  • Must be a Integer

id
required

Validations:

  • Must be a String

role
required

Validations:

  • Must be a Hash

role[name]
optional

Validations:

  • Must be a String

role[description]
optional , nil allowed

Role description

Validations:

  • Must be a String

role[location_ids]
optional , nil allowed

REPLACE locations with given ids

Validations:

  • Must be an array of any type

role[organization_ids]
optional , nil allowed

REPLACE organizations with given ids.

Validations:

  • Must be an array of any type