Skip to main content
POST
/
organizations
/
{orgId}
/
configurations
/
duplicate
Duplicate configuration
curl --request POST \
  --url https://managexrapi.com/organizations/{orgId}/configurations/duplicate \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Config v2",
  "configurationId": "TY8ZiuJoxuy51fsSxXp0"
}'
{
  "id": "6qwM6FzJE4o708iqTpWc",
  "name": "Config v2",
  "registrationCode": "f7GbHvH",
  "deviceCount": 0
}

Authorizations

Authorization
string
header
required

API key based authentication where <encoded-value> is the Base64 encoding of API_KEY_ID:API_KEY_SECRET

  • Username: The API Key ID.
  • Password: The API Key Secret.

Path Parameters

orgId
string
required

The ID of the organization. Locate the orgId under Organization Settings > API Keys.

Body

application/json
name
string
required

New configuration name

configurationId
string
required

Unique identifier of the configuration to duplicate

Response

201 - application/json

A configuration summary object

id
string

Unique identifier of the configuration

name
string

Name of the configuration

registrationCode
string

Configuration code (formerly known as Registration Code) for the configuration. Learn More

deviceCount
number

Number of devices using the configuration

I