Skip to content

Latest commit

 

History

History
89 lines (77 loc) · 3.27 KB

profiles_name_name_copy_copy.rst

File metadata and controls

89 lines (77 loc) · 3.27 KB

profiles/name/{{name}}/copy/{{copy}}

POST

Copy :term:`Profile` to a new :term:`Profile`. The new :term:`Profile`'s :ref:`profile-name` must not already exist.

Auth. Required:Yes
Roles Required:"admin" or "operations"
Permissions Required:PROFILE:CREATE, PROFILE:READ, PARAMETER:READ
Response Type:Object

Request Structure

Request Path Parameters
Name Description
name The :ref:`profile-name` of the new :term:`Profile`
copy The :ref:`profile-name` of :term:`Profile` from which the copy will be made
POST /api/5.0/profiles/name/GLOBAL_copy/copy/GLOBAL HTTP/1.1
Host: trafficops.infra.ciab.test
User-Agent: curl/7.62.0
Accept: */*
Cookie: mojolicious=...

Response Structure

description:The new :term:`Profile`'s :ref:`profile-description`
id:The :ref:`profile-id` of the new :term:`Profile`
idCopyFrom:The :ref:`profile-id` of the :term:`Profile` from which the copy was made
name:The :ref:`profile-name` of the new :term:`Profile`
profileCopyFrom:The :ref:`profile-name` of the :term:`Profile` from which the copy was made
HTTP/1.1 200 OK
Access-Control-Allow-Credentials: true
Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept
Access-Control-Allow-Methods: POST,GET,OPTIONS,PUT,DELETE
Access-Control-Allow-Origin: *
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Content-Type: application/json
Date: Fri, 07 Dec 2018 22:03:54 GMT
X-Server-Name: traffic_ops_golang/
Set-Cookie: mojolicious=...; Path=/; Expires=Mon, 18 Nov 2019 17:40:54 GMT; Max-Age=3600; HttpOnly
Vary: Accept-Encoding
Whole-Content-Sha512: r6V9viEZui1WCns0AUGEx1MtxjjXiU8SZVOtSQjeq7ZJDLl5s8fMmjJdR/HRWduHn7Ax6GzYhoKwnIjMyc7ZWg==
Content-Length: 252

{ "alerts": [
        {
                "level": "success",
                "text": "Created new profile [ GLOBAL_copy ] from existing profile [ GLOBAL ]"
        }
],
"response": {
        "idCopyFrom": 1,
        "name": "GLOBAL_copy",
        "profileCopyFrom": "GLOBAL",
        "id": 17,
        "description": "Global Traffic Ops profile, DO NOT DELETE"
}}