Méthode REST Application APIs

EidosMedia Rest Application Server

The Méthode REST Application APIs provides programmatic access to Méthode.

The API offers to developers the ability to create a new content, manage stories, and more. Responses are available in JSON.

The REST APIs is a way to get data in and out of EidosMedia’s platform. It’s a low-level HTTP/JSON based API that you can use to query data, upload new objects, manage stories and a variety of other tasks that a client might need to do.

Méthode client policies : All applications replicating the core Méthode experience, usually called “clients”, must adhere to certain restrictions and follow the Méthode standard experience.

The Basics

EidosMedia Rest Application Server 1. Type of apis:

Name

Description

Apis for authentication handling

This resource collects a set of jersey end-points useful to read calendar informations.

Apis to obtain the configuration data

Methods to manage Channel Copy

Resource for the customisation of the REST Server

Methods to get Datasource (EmDsm) servlet fileds and to query a configured datasource

Dwp

Methods to get a DWP, create and modify DWP links.

Methods to handle queries

Methods to query the Thesaurus

Methods to obtain informations about users

Methods to handle workflows.

Handling errors

Requests made to our APIs can result in a number of different error responses. List of error values with a map to the most common recovery tactic to use:

EidosMedia Rest Application Server 2. Exceptions
Status code Possible reason

500

Connection error: Connection or session invalid or not found

500

Generic error

404

Object not found

403

Update not allowed

401

Authentication Exception

401

EOM.PermissionDenied

401

Missing privilegies

400

EOM.ObjectLocked or EOM.ObjectLockedByMe or EOM.RepositoryError or EOM.ObjectNotLocked

Authentication

EidosMedia Rest Application Server 3. Apis:

Path

Description

Authentication with edapi rest

POST

/auth/login POST

Paramaters

EidosMedia Rest Application Server 4. Parameters:
Parameter Required

connectionId

applicationId

username

pwd

Request

curl -X POST "http://host:port/restapi-core-x.x.x.rest/auth/login" \
--data "connectionId=connectionId" \
--data "applicationId=applicationId&username=username" \
--data "pwd=pwd"

Response

{
    "applicationId":"padma",
    "connectionData":{
        "aggregation":false,
        "description":"",
        "id":"",
        "name":"",
        "parameters":[
            {
                "description":"",
                "id":"",
                "name":"",
                "nameServiceAddress":"corbaloc:iiop:host:port/NameService",
                "notificationChannelBindingPath":"/EOM/Notifiers/Notifier",
                "repositoryBindingPath":"EOM/Repositories/Repository",
                "shortPath":"",
                "usePullMode":false
            }
        ]
    },
    "sessions":[
        "IOR:000000000000002349444C3A6569646F736D656469612E636F6D2F454F4D2F53657373696F6E3A312E300000000000010000000000000090010102000E0000006569646F733032667573696F6E00D5173F00000014010F004E5550000000180100000001000000526F6F74504F410053657373696F6E004D54480001100001000000E2000000030008000100000D74296B001CED02000000000000000800000001BB3904004F4154010000001800000001BB39040100010001000000010001050901010000000000"
    ],
    "token":"token",
    "username":"username"
}

/auth/logout POST

Query Paramaters

EidosMedia Rest Application Server 5. Parameters:
Parameter Required

token

Request

curl -X GET \
"http://eidos02fusion:9999/restapi-core-2.0.1/rest/auth/logout?token=$token"

Response

{"result":"ok"}

Calendar

EidosMedia Rest Application Server 6. Apis:

Path

Description

This resource collects a set of jersey end-points useful to read calendar informations.

/calendar/nextPublicationDate GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 7. Parameters:
Parameter Type Required Default Description

fromIssueDate

String

Yes

-

product

String

Yes

-

simpleDateFormat

String

No

yyyyMMdd

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/auth/calendar/nextPublicationDate?product=Globe-Web&simpleDateFormat=dd-MM-yyyy&fromIssueDate=20161016"

Response

Content type

application/json

{
  "product": "Globe-Web",
  "simpleDateFormat": "dd-MM-yyyy",
  "fromIssueDate": "20161016",
  "nextPublicationDate": "17-10-2016"
}

Configuration

EidosMedia Rest Application Server 8. Apis:

Path

Description

/conf/channel/list GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 9. Parameters:
Parameter type Required Default Description

loidsSource

List

Yes

-

databaseId

DatabaseId

No

-

showCalendar

boolean

No

false

-

showCompound

boolean

No

false

-

showInserts

boolean

No

false

-

showTemplateChannels

boolean

No

false

-

showTemplates

boolean

No

true

-

showWorkfolders

boolean

No

false

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/conf/channel/list?token=a97938fd-34d2-487a-ab9a-f9d47decbc1e" \
--data showTemplates=true \
--data showInserts=false \
--data showWorkfolders=false \
--data showCalendar=false \
--data showCompound=false \
--data showTemplateChannels=false \
--data showTemplateChannels=false \
--data databaseId=DatabaseId \
--data loidsSource=List<String>

Response

Content type

application/json

[
    {
        "id": "1$0",
        "name": "Globe-Print",
        "type": "print",
        "editions": [
            {
                "name": "EUROPE"
            },
            {
                "name": "USA"
            },
            {
                "name": "ASIA"
            },
            {
                "name": "ASIA-03"
            }
        ],
        "stylesGroup": [
            {
                "templates": [
                    "/SysConfig/Globe/Templates/story.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Print/Css/mainrep.css",
                        "isDefault": true
                    },
                    {
                        "label": "Galley",
                        "href": "/SysConfig/Globe/Print/Css/galley.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/multistory.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Print/Css/mainrep.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/brief1.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Print/Css/brief.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/brief2.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Print/Css/brief.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/table.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Print/Css/mainprint.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/table-Excel.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Print/Css/table-Excel.css",
                        "isDefault": false
                    }
                ]
            }
        ]
    },
    {
        "id": "1$10",
        "name": "Globe-Tablet",
        "type": "tablet",
        "editions": [
            {
                "name": "LANDSCAPE"
            },
            {
                "name": "PORTRAIT"
            }
        ],
        "stylesGroup": [
            {
                "templates": [
                    "/SysConfig/Globe/Templates/story.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Tablet/Css/maintablet.css",
                        "isDefault": true
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/story-fr.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Css/Print/mainrep.css",
                        "isDefault": true
                    },
                    {
                        "label": "Galley",
                        "href": "/SysConfig/Globe/Css/Print/galley.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/story-nl.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Css/Print/mainrep.css",
                        "isDefault": true
                    },
                    {
                        "label": "Galley",
                        "href": "/SysConfig/Globe/Css/Print/galley.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/C_story.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Css/Print/mainrep.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/multistory.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Css/Print/mainrep.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/brief1.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Css/Print/brief.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/brief2.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Css/Print/brief.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/table.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Css/Print/mainprint.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/table-Excel.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Css/Print/table-Excel.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Css/Print/mainrep.css",
                        "isDefault": true
                    }
                ]
            }
        ]
    },
    {
        "id": "1$21",
        "name": "Globe-Sms",
        "type": "wap",
        "stylesGroup": [
            {
                "templates": [
                    "/SysConfig/Globe/Templates/story.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Css/Sms/sms-main.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/multistory.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Css/Sms/sms-main.css",
                        "isDefault": false
                    }
                ]
            }
        ]
    },
    {
        "id": "1$31",
        "name": "Globe-Web",
        "type": "web",
        "editions": [
            {
                "name": "Home"
            },
            {
                "name": "Art"
            },
            {
                "name": "News"
            },
            {
                "name": "Politics"
            },
            {
                "name": "Business"
            },
            {
                "name": "Foreign"
            },
            {
                "name": "Sport"
            }
        ],
        "stylesGroup": [
            {
                "templates": [
                    "/SysConfig/Globe/Templates/story.xml",
                    "/SysConfig/Globe/Templates/bio.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Web/Css/Web/web-main.css",
                        "isDefault": false
                    },
                    {
                        "label": "Story",
                        "href": "/SysConfig/Globe/Web/Css/Web/story.css",
                        "isDefault": true
                    },
                    {
                        "label": "main-photo-summary-l",
                        "href": "/SysConfig/Globe/Web/Css/Web/main-photo-summary_large.css",
                        "isDefault": false
                    },
                    {
                        "label": "main-photo-summary-m",
                        "href": "/SysConfig/Globe/Web/Css/Web/main-photo-summary_medium.css",
                        "isDefault": false
                    },
                    {
                        "label": "main-photo-summary-s",
                        "href": "/SysConfig/Globe/Web/Css/Web/main-photo-summary_small.css",
                        "isDefault": false
                    },
                    {
                        "label": "box-4col-photo-summary",
                        "href": "/SysConfig/Globe/Web/Css/Web/4col-photo-summary.css",
                        "isDefault": false
                    },
                    {
                        "label": "box-4col-summary",
                        "href": "/SysConfig/Globe/Web/Css/Web/4col-summary.css",
                        "isDefault": false
                    },
                    {
                        "label": "box-4col-photo-summary-alt",
                        "href": "/SysConfig/Globe/Web/Css/Web/4col-photo-summary_alt.css",
                        "isDefault": false
                    },
                    {
                        "label": "box-2col-photo-summary",
                        "href": "/SysConfig/Globe/Web/Css/Web/2col-photo-summary.css",
                        "isDefault": false
                    },
                    {
                        "label": "box-2col-photo",
                        "href": "/SysConfig/Globe/Web/Css/Web/2col-photo.css",
                        "isDefault": false
                    },
                    {
                        "label": "box-2col-summary",
                        "href": "/SysConfig/Globe/Web/Css/Web/2col-summary.css",
                        "isDefault": false
                    },
                    {
                        "label": "box-1col-summary",
                        "href": "/SysConfig/Globe/Web/Css/Web/1col-summary.css",
                        "isDefault": false
                    },
                    {
                        "label": "box-1col",
                        "href": "/SysConfig/Globe/Web/Css/Web/1col.css",
                        "isDefault": false
                    },
                    {
                        "label": "box-1col-summary-300",
                        "href": "/SysConfig/Globe/Web/Css/Web/1col-summary_300.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/Blogs/blog_story.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Web/Css/Web/web-main.css",
                        "isDefault": false
                    },
                    {
                        "label": "Story",
                        "href": "/SysConfig/Globe/Web/Css/Web/story.css",
                        "isDefault": true
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/photoGalleryWide.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Web/Css/Web/web-main.css",
                        "isDefault": false
                    },
                    {
                        "label": "gallery",
                        "href": "/SysConfig/Globe/Web/Css/Web/gallery.css",
                        "isDefault": true
                    },
                    {
                        "label": "photo_rotation",
                        "href": "/SysConfig/Globe/Web/Css/Web/photo_rotation.css",
                        "isDefault": false
                    },
                    {
                        "label": "col2",
                        "href": "/SysConfig/Globe/Web/Css/Web/gallery_col23.css",
                        "isDefault": false
                    },
                    {
                        "label": "col3",
                        "href": "/SysConfig/Globe/Web/Css/Web/gallery_col23.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/photoGallery.gallery.xml",
                    "/SysConfig/Globe/Templates/mediaGallery.gallery.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Web/Css/Web/web-main.css",
                        "isDefault": false
                    },
                    {
                        "label": "gallery",
                        "href": "/SysConfig/Globe/Web/Css/Web/mediaGallery.css",
                        "isDefault": true
                    },
                    {
                        "label": "col2",
                        "href": "/SysConfig/Globe/Web/Css/Web/gallery_col23.css",
                        "isDefault": false
                    },
                    {
                        "label": "col3",
                        "href": "/SysConfig/Globe/Web/Css/Web/gallery_col23.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/poll.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Web/Css/Web/poll.css",
                        "isDefault": false
                    },
                    {
                        "label": "box-2col-photo-summary",
                        "href": "/SysConfig/Globe/Web/Css/Web/poll_col2.css",
                        "isDefault": false
                    },
                    {
                        "label": "box-1col-summary-300",
                        "href": "/SysConfig/Globe/Web/Css/Web/poll_col3.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/multistory.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Web/Css/Web/web-main.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Globe/Templates/Infobox.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Globe/Web/Css/Web/infobox.css",
                        "isDefault": false
                    }
                ]
            }
        ]
    },
    {
        "id": "1$43",
        "name": "Idea-Print",
        "type": "print",
        "editions": [
            {
                "name": "EUROPE"
            },
            {
                "name": "USA"
            },
            {
                "name": "ASIA"
            }
        ],
        "stylesGroup": [
            {
                "templates": [
                    "/SysConfig/Idea/Templates/story.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Idea/Print/Css/mainrep.css",
                        "isDefault": true
                    },
                    {
                        "label": "Galley",
                        "href": "/SysConfig/Idea/Print/Css/gallery.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Idea/Templates/brief1.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Idea/Print/Css/brief.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Idea/Templates/brief2.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Idea/Print/Css/brief.css",
                        "isDefault": false
                    }
                ]
            }
        ]
    },
    {
        "id": "1$53",
        "name": "Idea-Tablet",
        "type": "tablet",
        "editions": [
            {
                "name": "LANDSCAPE"
            },
            {
                "name": "PORTRAIT"
            }
        ],
        "stylesGroup": [
            {
                "templates": [
                    "/SysConfig/Idea/Templates/story.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Common/Rules/main.css",
                        "isDefault": true
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Idea/Templates/brief1.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Idea/Print/Css/brief.css",
                        "isDefault": false
                    }
                ]
            },
            {
                "templates": [
                    "/SysConfig/Idea/Templates/brief2.xml"
                ],
                "stylesheets": [
                    {
                        "href": "/SysConfig/Idea/Print/Css/brief.css",
                        "isDefault": false
                    }
                ]
            }
        ]
    }
]

/conf/contentItems/list GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 10. Parameters:
Parameter type Required Default Description

validate

boolean

No

true

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/conf/contentItems/list?token=1161ad9c-9aa5-421a-979d-941e40992953&validate=false"

Response

[
    {
        "content": "",
        "cssSelector": "",
        "name": "text",
        "type": "lead",
        "xp": "/doc/lead"
    },
    {
        "content": "",
        "cssSelector": "story text",
        "name": "text",
        "type": "text",
        "xp": "/doc/story/text"
    },
    {
        "content": "",
        "cssSelector": "story summary",
        "name": "summary",
        "type": "summary",
        "xp": "/doc/story/summary"
    },
    {
        "content": "",
        "cssSelector": "story header",
        "name": "headline",
        "type": "header",
        "xp": "/doc/story/header"
    },
    {
        "content": "",
        "cssSelector": "story grouphead",
        "name": "headline",
        "type": "headline",
        "xp": "/doc/story/grouphead"
    },
    {
        "content": "",
        "cssSelector": "story jump",
        "name": "text",
        "type": "jump",
        "xp": "/doc/story/jump"
    },
    {
        "content": "",
        "cssSelector": "story byline",
        "name": "byline",
        "type": "byline",
        "xp": "/doc/story/byline"
    },
    {
        "content": "",
        "cssSelector": "story extra",
        "name": "text",
        "type": "extra",
        "xp": "/doc/story/extra"
    },
    {
        "content": "",
        "cssSelector": "",
        "name": "picture",
        "type": "extrapic",
        "xp": "/doc/story/pbox/photo-print"
    },
    {
        "content": "",
        "cssSelector": "story email",
        "name": "text",
        "type": "email",
        "xp": "/doc/story/email"
    },
    {
        "name": "widget",
        "type": "Widget",
        "xp": "/doc/story/widget"
    },
    {
        "items": [
            {
                "xp": "/doc/story/grouphead"
            }
        ],
        "name": "gallery",
        "type": "gallery",
        "xp": "/doc/story"
    },
    {
        "content": "",
        "cssSelector": "",
        "name": "picture",
        "type": "picture-web-template",
        "xp": "/doc/story/photo"
    },
    {
        "content": "",
        "cssSelector": "",
        "name": "picture",
        "resLimits": "100",
        "sources": [
            {
                "element": "s1",
                "type": "caption",
                "xp": "/*/iptc/caption"
            },
            {
                "element": "source",
                "type": "caption",
                "xp": "/*/iptc/credit"
            }
        ],
        "type": "picture",
        "xp": "/doc/story/photo-group/fg-photo"
    },
    {
        "content": "",
        "cssSelector": "story photo-group photo-caption",
        "name": "caption",
        "type": "caption",
        "xp": "/doc/story/photo-group/photo-caption"
    },
    {
        "content": "",
        "cssSelector": "",
        "name": "picture",
        "resLimits": "100",
        "sources": [
            {
                "element": "p",
                "type": "caption-web",
                "xp": "/*/iptc/caption"
            }
        ],
        "type": "picture-web",
        "xp": "/doc/story/photo-web/fw-photo"
    },
    {
        "content": "",
        "cssSelector": "story photo-web photo-caption",
        "name": "caption",
        "type": "caption-web",
        "xp": "/doc/story/photo-web/photo-caption"
    },
    {
        "content": "",
        "cssSelector": "",
        "name": "picture",
        "resLimits": "100",
        "sources": [
            {
                "element": "p",
                "type": "caption-print",
                "xp": "/*/iptc/caption"
            }
        ],
        "type": "picture-print",
        "xp": "/doc/story/photo-print/fp-photo"
    },
    {
        "content": "",
        "cssSelector": "story photo-print photo-caption",
        "name": "caption",
        "type": "caption-print",
        "xp": "/doc/story/photo-print/photo-caption"
    },
    {
        "content": "",
        "cssSelector": "",
        "name": "picture",
        "resLimits": "100",
        "sources": [
            {
                "element": "p",
                "type": "video-caption-web",
                "xp": "/*/iptc/caption"
            }
        ],
        "type": "video",
        "xp": "/doc/story/video-web/video"
    },
    {
        "content": "",
        "cssSelector": "",
        "name": "video",
        "resLimits": "100",
        "sources": [
            {
                "element": "p",
                "type": "video-caption-web",
                "xp": "/*/iptc/caption"
            }
        ],
        "type": "WebVideo",
        "xp": "/doc/story/video-web/video"
    },
    {
        "content": "",
        "cssSelector": "story video-web photo-caption",
        "name": "caption",
        "type": "video-caption-web",
        "xp": "/doc/story/video-web/photo-caption"
    },
    {
        "content": "",
        "cssSelector": "",
        "name": "graphic",
        "type": "graphic",
        "xp": "/doc/story/chart"
    },
    {
        "content": "",
        "cssSelector": "",
        "name": "ad",
        "type": "ad",
        "xp": "/doc/story/display-ad"
    },
    {
        "cssSelector": "story grouphead overhead",
        "type": "Overhead",
        "xp": "overhead"
    },
    {
        "cssSelector": "story grouphead headline",
        "type": "Headline",
        "xp": "headline"
    },
    {
        "cssSelector": "story grouphead subhead",
        "type": "Subhead",
        "xp": "subhead"
    },
    {
        "name": "pgl",
        "type": "PartPage"
    },
    {
        "name": "dwp",
        "type": "WebPage"
    },
    {
        "name": "rule",
        "type": "rule"
    },
    {
        "name": "box",
        "type": "box"
    }
]

/conf/contentItems/map GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 11. Parameters:
Parameter type Required Default Description

validate

boolean

No

true

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/conf/contentItems/map?token=1161ad9c-9aa5-421a-979d-941e40992953&validate=false"

Response

Content type

application/json

{
    "lead": {
        "name": "text",
        "type": "lead",
        "xp": "/doc/lead",
        "cssSelector": "",
        "content": ""
    },
    "text": {
        "name": "text",
        "type": "text",
        "xp": "/doc/story/text",
        "cssSelector": "story text",
        "content": ""
    },
    "summary": {
        "name": "summary",
        "type": "summary",
        "xp": "/doc/story/summary",
        "cssSelector": "story summary",
        "content": ""
    },
    "header": {
        "name": "headline",
        "type": "header",
        "xp": "/doc/story/header",
        "cssSelector": "story header",
        "content": ""
    },
    "headline": {
        "name": "headline",
        "type": "headline",
        "xp": "/doc/story/grouphead",
        "cssSelector": "story grouphead",
        "content": ""
    },
    "jump": {
        "name": "text",
        "type": "jump",
        "xp": "/doc/story/jump",
        "cssSelector": "story jump",
        "content": ""
    },
    "byline": {
        "name": "byline",
        "type": "byline",
        "xp": "/doc/story/byline",
        "cssSelector": "story byline",
        "content": ""
    },
    "extra": {
        "name": "text",
        "type": "extra",
        "xp": "/doc/story/extra",
        "cssSelector": "story extra",
        "content": ""
    },
    "extrapic": {
        "name": "picture",
        "type": "extrapic",
        "xp": "/doc/story/pbox/photo-print",
        "cssSelector": "",
        "content": ""
    },
    "email": {
        "name": "text",
        "type": "email",
        "xp": "/doc/story/email",
        "cssSelector": "story email",
        "content": ""
    },
    "Widget": {
        "name": "widget",
        "type": "Widget",
        "xp": "/doc/story/widget"
    },
    "gallery": {
        "name": "gallery",
        "type": "gallery",
        "xp": "/doc/story",
        "items": [
            {
                "xp": "/doc/story/grouphead"
            }
        ]
    },
    "picture-web-template": {
        "name": "picture",
        "type": "picture-web-template",
        "xp": "/doc/story/photo",
        "cssSelector": "",
        "content": ""
    },
    "picture": {
        "name": "picture",
        "type": "picture",
        "xp": "/doc/story/photo-group/fg-photo",
        "cssSelector": "",
        "content": "",
        "resLimits": "100",
        "sources": [
            {
                "element": "s1",
                "type": "caption",
                "xp": "/*/iptc/caption"
            },
            {
                "element": "source",
                "type": "caption",
                "xp": "/*/iptc/credit"
            }
        ]
    },
    "caption": {
        "name": "caption",
        "type": "caption",
        "xp": "/doc/story/photo-group/photo-caption",
        "cssSelector": "story photo-group photo-caption",
        "content": ""
    },
    "picture-web": {
        "name": "picture",
        "type": "picture-web",
        "xp": "/doc/story/photo-web/fw-photo",
        "cssSelector": "",
        "content": "",
        "resLimits": "100",
        "sources": [
            {
                "element": "p",
                "type": "caption-web",
                "xp": "/*/iptc/caption"
            }
        ]
    },
    "caption-web": {
        "name": "caption",
        "type": "caption-web",
        "xp": "/doc/story/photo-web/photo-caption",
        "cssSelector": "story photo-web photo-caption",
        "content": ""
    },
    "picture-print": {
        "name": "picture",
        "type": "picture-print",
        "xp": "/doc/story/photo-print/fp-photo",
        "cssSelector": "",
        "content": "",
        "resLimits": "100",
        "sources": [
            {
                "element": "p",
                "type": "caption-print",
                "xp": "/*/iptc/caption"
            }
        ]
    },
    "caption-print": {
        "name": "caption",
        "type": "caption-print",
        "xp": "/doc/story/photo-print/photo-caption",
        "cssSelector": "story photo-print photo-caption",
        "content": ""
    },
    "video": {
        "name": "picture",
        "type": "video",
        "xp": "/doc/story/video-web/video",
        "cssSelector": "",
        "content": "",
        "resLimits": "100",
        "sources": [
            {
                "element": "p",
                "type": "video-caption-web",
                "xp": "/*/iptc/caption"
            }
        ]
    },
    "WebVideo": {
        "name": "video",
        "type": "WebVideo",
        "xp": "/doc/story/video-web/video",
        "cssSelector": "",
        "content": "",
        "resLimits": "100",
        "sources": [
            {
                "element": "p",
                "type": "video-caption-web",
                "xp": "/*/iptc/caption"
            }
        ]
    },
    "video-caption-web": {
        "name": "caption",
        "type": "video-caption-web",
        "xp": "/doc/story/video-web/photo-caption",
        "cssSelector": "story video-web photo-caption",
        "content": ""
    },
    "graphic": {
        "name": "graphic",
        "type": "graphic",
        "xp": "/doc/story/chart",
        "cssSelector": "",
        "content": ""
    },
    "ad": {
        "name": "ad",
        "type": "ad",
        "xp": "/doc/story/display-ad",
        "cssSelector": "",
        "content": ""
    },
    "Overhead": {
        "type": "Overhead",
        "xp": "overhead",
        "cssSelector": "story grouphead overhead"
    },
    "Headline": {
        "type": "Headline",
        "xp": "headline",
        "cssSelector": "story grouphead headline"
    },
    "Subhead": {
        "type": "Subhead",
        "xp": "subhead",
        "cssSelector": "story grouphead subhead"
    },
    "PartPage": {
        "name": "pgl",
        "type": "PartPage"
    },
    "WebPage": {
        "name": "dwp",
        "type": "WebPage"
    },
    "rule": {
        "name": "rule",
        "type": "rule"
    },
    "box": {
        "name": "box",
        "type": "box"
    }
}

/conf/group/list GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 12. Parameters:
Parameter Type Required Default Description

databaseId

DatabaseId

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core-2.0.5-SNAPSHOT/rest/conf/group/list?token=1161ad9c-9aa5-421a-979d-941e40992953"

Response

Content type

application/json

[
    "AccessGroup",
    "Administrators",
    "AllPrivileges",
    "Business_Editors",
    "EnricoGroup",
    "Everyone",
    "GR_READ",
    "GR_SUPER_EDITOR",
    "GR_WRITE",
    "Globe_Tablet",
    "Globe_Team",
    "Globe_Web",
    "Idea_Team",
    "FederalBudget",
    "News_Editors",
    "Politics_Editors",
    "Sports_Editors",
    "TestQueryGroup",
    "TestWorkGroup1",
    "TestWorkGroup2",
    "WGX1",
    "WorkGroup1",
    "WorkgroupNew"
]

/conf/metadata/dtd GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 13. Parameters:
Parameter Type Required Default Description

defaultMetadata

boolean

No

-

id

String

No

-

path

String

No

-

sessionId

String

No

-

type

String

No

-

workFolder

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/conf/metadata/dtd?id=1.0.34087507&token=c1293ce2-34cf-47f2-8208-20d62ff45a14"

Response

Content type

application/json

{
    "docType": "ObjectMetadata",
    "elements": {
        "ObjectMetadata": {
            "title": "General Metadata",
            "shortTitle": "General Metadata",
            "distinct": "false",
            "validity": "None",
            "expandMode": "Expanded",
            "cardinality": {
                "General": "",
                "DistributionChannels": "?",
                "Diffusion": ""
            }
        },
        "General": {
            "title": "General",
            "shortTitle": "General",
            "distinct": "false",
            "cardinality": {
                "MainCategory": "+",
                "NewsCode": "*",
                "IndustrySegment": "*",
                "GeographicalPlaces": "?",
                "ContentType": "+",
                "Language": "*",
                "Author": "?",
                "Fee": "?",
                "People": "*",
                "Companies": "*",
                "Keywords": "*",
                "Comment": "?",
                "Headline": "?",
                "WordCount": "?",
                "SuggestedCategories": "?"
            }
        },
        "DistributionChannels": {
            "title": "Business Channels",
            "shortTitle": "Business Channels",
            "distinct": "false",
            "validity": "ShowOnly",
            "expandMode": "Expanded",
            "cardinality": {
                "OnLine": "*",
                "Radio": "*",
                "TV": "*",
                "Sms": "*",
                "Mms": "*",
                "Syndication": "*",
                "Gallery": "*",
                "Blog": "*",
                "Output": "?"
            }
        },
        "Diffusion": {
            "title": "Rights",
            "shortTitle": "Rights",
            "distinct": "true",
            "visibility": "ReadOnly",
            "expandMode": "Expanded",
            "cardinality": {
                "Diff_Print": "",
                "Diff_Web": "",
                "Diff_Syndication": ""
            }
        },
        "MainCategory": {
            "title": "Category",
            "shortTitle": "Category",
            "distinct": "true",
            "type": "tree-db/XMLfile",
            "fileName": "/SysConfig/Common/Classify/Taxonomy/categories.xml",
            "result": "LeafOnly",
            "cardinality": {
                "SuggestedSubjects": "?",
                "SuggestedPeoples": "?"
            }
        },
        "NewsCode": {
            "title": "IPTC NewsCode",
            "shortTitle": "IPTC NewsCode",
            "distinct": "true",
            "type": "tree-db/XMLfile",
            "fileName": "/SysConfig/Common/Classify/Taxonomy/newscodes.xml",
            "result": "LeafOnly",
            "cardinality": {}
        },
        "IndustrySegment": {
            "title": "Industry Segments",
            "shortTitle": "Industry Segments",
            "distinct": "true",
            "type": "tree-db",
            "listName": "/Taxonomy/IndustrySegments",
            "result": "Fullpath",
            "cardinality": {}
        },
        "GeographicalPlaces": {
            "title": "Locations",
            "shortTitle": "Locations",
            "distinct": "false",
            "cardinality": {
                "Address": "?",
                "City": "?",
                "State": "?",
                "Zip": "?",
                "Country": "?",
                "Latitude": "?",
                "Longitude": "?"
            }
        },
        "ContentType": {
            "title": "Content Type",
            "shortTitle": "Content Type",
            "distinct": "true",
            "type": "tree-db",
            "listName": "/Journal/ContentTypes",
            "result": "Fullpath",
            "cardinality": {}
        },
        "Language": {
            "title": "Language",
            "shortTitle": "Language",
            "distinct": "true",
            "defaultContent": "English",
            "type": "tree-db",
            "listName": "/Languages",
            "result": "Fullpath",
            "cardinality": {}
        },
        "Author": {
            "title": "Authors' List",
            "shortTitle": "Authors' List",
            "distinct": "false",
            "visibility": "ReadOnly",
            "expandMode": "Collapsed",
            "type": "string",
            "cardinality": {
                "AuthorL": ""
            }
        },
        "Fee": {
            "title": "Fee",
            "shortTitle": "Fee",
            "distinct": "true",
            "defaultContent": "No",
            "visibility": "ReadOnly",
            "type": "list",
            "listValues": [
                "Yes",
                "No"
            ],
            "cardinality": {}
        },
        "People": {
            "title": "People",
            "shortTitle": "People",
            "distinct": "true",
            "type": "string",
            "cardinality": {}
        },
        "Companies": {
            "title": "Companies",
            "shortTitle": "Companies",
            "distinct": "false",
            "expandMode": "Collapsed",
            "type": "dataSourceMaster",
            "dataSourceUrl": "http://eidos01host:6131/datasource/servlet/datasource?ds=company",
            "dataSourceResultTemplate": "<Company dsID='$IndexSchemeID'>$Term</Company>",
            "cardinality": {
                "Company": ""
            }
        },
        "Keywords": {
            "title": "Keywords",
            "shortTitle": "Keywords",
            "distinct": "true",
            "type": "tree-db/filesystem",
            "listName": "/SysConfig/Globe/Classify/Taxonomy/Categories",
            "showPartPage": "false",
            "result": "Fullpath",
            "cardinality": {}
        },
        "Comment": {
            "title": "Comment",
            "shortTitle": "Comment",
            "distinct": "false",
            "defaultContent": "Comment",
            "type": "string",
            "cardinality": {}
        },
        "Headline": {
            "title": "Headline",
            "shortTitle": "Headline",
            "distinct": "true",
            "visibility": "ReadOnly",
            "type": "string",
            "cardinality": {}
        },
        "WordCount": {
            "title": "WordCount",
            "shortTitle": "WordCount",
            "distinct": "true",
            "visibility": "ReadOnly",
            "type": "string",
            "cardinality": {}
        },
        "SuggestedCategories": {
            "title": "SuggestedCategories",
            "shortTitle": "SuggestedCategories",
            "distinct": "false",
            "cardinality": {}
        },
        "OnLine": {
            "title": "OnLine",
            "shortTitle": "OnLine",
            "distinct": "true",
            "defaultContent": "N",
            "expandMode": "Collapsed",
            "type": "list",
            "listValues": [
                "Y",
                "N"
            ],
            "cardinality": {
                "WebPage": "*",
                "WebType": "?",
                "WebPortalPath": "",
                "WebPortalCategory": "",
                "WebSections": "?",
                "WebPriority": "",
                "WebObjectType": "?",
                "WebDateTimePubStart": "?",
                "WebDateTimePubEnd": "?",
                "AllowUserComments": "",
                "SpecialType": "",
                "StartDate": "",
                "EndDate": ""
            }
        },
        "Radio": {
            "title": "Radio",
            "shortTitle": "Radio",
            "distinct": "true",
            "defaultContent": "N",
            "expandMode": "Collapsed",
            "type": "list",
            "listValues": [
                "Y",
                "N"
            ],
            "cardinality": {
                "RadioBroadcastDateTime": "*",
                "RadioProgram": "*",
                "RadioObjectType": "?"
            }
        },
        "TV": {
            "title": "TV",
            "shortTitle": "TV",
            "distinct": "true",
            "defaultContent": "N",
            "expandMode": "Collapsed",
            "type": "list",
            "listValues": [
                "Y",
                "N"
            ],
            "cardinality": {
                "TVBroadcastDateTime": "*",
                "TVProgram": "*",
                "TVObjectType": "?"
            }
        },
        "Sms": {
            "title": "SMS",
            "shortTitle": "SMS",
            "distinct": "false",
            "defaultContent": "N",
            "type": "list",
            "listValues": [
                "Y",
                "N"
            ],
            "cardinality": {}
        },
        "Mms": {
            "title": "MMS",
            "shortTitle": "MMS",
            "distinct": "false",
            "defaultContent": "N",
            "type": "list",
            "listValues": [
                "Y",
                "N"
            ],
            "cardinality": {}
        },
        "Syndication": {
            "title": "Syndication",
            "shortTitle": "Syndication",
            "distinct": "false",
            "defaultContent": "N",
            "type": "list",
            "listValues": [
                "Y",
                "N"
            ],
            "cardinality": {}
        },
        "Gallery": {
            "title": "Gallery",
            "shortTitle": "Gallery",
            "distinct": "false",
            "defaultContent": "N",
            "type": "list",
            "listValues": [
                "Y",
                "N"
            ],
            "cardinality": {}
        },
        "Blog": {
            "title": "Blog",
            "shortTitle": "Blog",
            "distinct": "true",
            "defaultContent": "N",
            "expandMode": "Collapsed",
            "type": "list",
            "listValues": [
                "Y",
                "N"
            ],
            "cardinality": {
                "BlogSection": "?",
                "BlogDate": "?"
            }
        },
        "Output": {
            "title": "Output",
            "shortTitle": "Output",
            "distinct": "false",
            "expandMode": "Collapsed",
            "cardinality": {
                "Queue": "*",
                "PriorityQueue": "",
                "Embargo": "?"
            }
        },
        "Diff_Print": {
            "title": "Print",
            "shortTitle": "Print",
            "distinct": "true",
            "visibility": "ReadOnly",
            "type": "list",
            "listValues": [
                "YES",
                "NO"
            ],
            "cardinality": {}
        },
        "Diff_Web": {
            "title": "Web",
            "shortTitle": "Web",
            "distinct": "true",
            "defaultContent": "YES",
            "visibility": "ReadOnly",
            "type": "list",
            "listValues": [
                "YES",
                "NO"
            ],
            "cardinality": {}
        },
        "Diff_Syndication": {
            "title": "Syndication",
            "shortTitle": "Syndication",
            "distinct": "true",
            "defaultContent": "YES",
            "visibility": "ReadOnly",
            "type": "list",
            "listValues": [
                "YES",
                "NO"
            ],
            "cardinality": {}
        },
        "SuggestedSubjects": {
            "title": "SuggestedSubjects",
            "shortTitle": "SuggestedSubjects",
            "distinct": "false",
            "expandMode": "Collapsed",
            "cardinality": {
                "group": "",
                "SuggestedSubject": "*"
            }
        },
        "SuggestedPeoples": {
            "title": "SuggestedPeoples",
            "shortTitle": "SuggestedPeoples",
            "distinct": "false",
            "expandMode": "Collapsed",
            "cardinality": {
                "group": "",
                "SuggestedPeople": "*"
            }
        },
        "Address": {
            "title": "Address",
            "shortTitle": "Address",
            "distinct": "false",
            "type": "string",
            "cardinality": {}
        },
        "City": {
            "title": "City",
            "shortTitle": "City",
            "distinct": "false",
            "type": "string",
            "cardinality": {}
        },
        "State": {
            "title": "Region/State",
            "shortTitle": "Region/State",
            "distinct": "false",
            "type": "string",
            "cardinality": {}
        },
        "Zip": {
            "title": "Zip",
            "shortTitle": "Zip",
            "distinct": "false",
            "type": "string",
            "cardinality": {}
        },
        "Country": {
            "title": "Country",
            "shortTitle": "Country",
            "distinct": "false",
            "type": "string",
            "cardinality": {}
        },
        "Latitude": {
            "title": "Latitude",
            "shortTitle": "Latitude",
            "distinct": "false",
            "type": "string",
            "cardinality": {}
        },
        "Longitude": {
            "title": "Longitude",
            "shortTitle": "Longitude",
            "distinct": "false",
            "type": "string",
            "cardinality": {}
        },
        "AuthorL": {
            "title": "Author",
            "shortTitle": "Author",
            "distinct": "true",
            "visibility": "ReadOnly",
            "type": "string",
            "cardinality": {
                "Mail": "",
                "Signature": "",
                "Initial": "",
                "AuthorID": ""
            }
        },
        "Company": {
            "title": "Company",
            "shortTitle": "Company",
            "distinct": "false",
            "expandMode": "Collapsed",
            "cardinality": {}
        },
        "WebPage": {
            "title": "WebPage",
            "shortTitle": "WebPage",
            "distinct": "true",
            "type": "tree-db/filesystem",
            "listName": "/Globe/Web/Web Pages",
            "prefix": "/Globe/Web/Web Pages/",
            "filter": "*.dwp",
            "showPartPage": "true",
            "result": "Fullpath",
            "cardinality": {}
        },
        "WebType": {
            "title": "Web Type",
            "shortTitle": "Web Type",
            "distinct": "true",
            "type": "tree-db/XMLfile",
            "fileName": "/SysConfig/Globe/Classify/Taxonomy/webtype.xml",
            "result": "LeafOnly",
            "cardinality": {}
        },
        "WebPortalPath": {
            "title": "Portal Path",
            "shortTitle": "Portal Path",
            "distinct": "true",
            "type": "string",
            "cardinality": {}
        },
        "WebPortalCategory": {
            "title": "Portal Category",
            "shortTitle": "Portal Category",
            "distinct": "true",
            "defaultContent": "Subscribed",
            "type": "list",
            "listValues": [
                "Subscribed",
                "Premium"
            ],
            "cardinality": {}
        },
        "WebSections": {
            "title": "WebSections",
            "shortTitle": "WebSections",
            "distinct": "false",
            "expandMode": "Collapsed",
            "type": "dataSourceMaster",
            "dataSourceUrl": "http://eidos01host:6131/datasource/servlet/datasource?ds=WebSections",
            "dataSourceResultTemplate": "<WebSection><WebSectionId>$Id</WebSectionId><WebSectionName>$Pfad</WebSectionName></WebSection>",
            "cardinality": {
                "WebSection": ""
            }
        },
        "WebPriority": {
            "title": "Priority",
            "shortTitle": "Priority",
            "distinct": "true",
            "defaultContent": "HomePage",
            "type": "list",
            "listValues": [
                "HomePage",
                "BreakingNews",
                "Section",
                "Automatic"
            ],
            "cardinality": {}
        },
        "WebObjectType": {
            "title": "Object Type",
            "shortTitle": "Object Type",
            "distinct": "true",
            "defaultContent": "Section-Story",
            "type": "list",
            "listValues": [
                "Home-Story",
                "Lead-Story",
                "Section-Story",
                "Video",
                "Audio",
                "Web-Guide",
                "Attached_Document",
                "Other"
            ],
            "cardinality": {}
        },
        "WebDateTimePubStart": {
            "title": "Publication Start",
            "shortTitle": "Publication Start",
            "distinct": "false",
            "defaultContent": "%Today",
            "type": "date-time",
            "template": "d/MMM/yyyy HH:mm",
            "cardinality": {}
        },
        "WebDateTimePubEnd": {
            "title": "Publication End",
            "shortTitle": "Publication End",
            "distinct": "false",
            "type": "date-time",
            "template": "d/MMM/yyyy HH:mm",
            "cardinality": {}
        },
        "AllowUserComments": {
            "title": "Allow User Comments",
            "shortTitle": "Allow User Comments",
            "distinct": "true",
            "type": "list",
            "listValues": [
                "Y",
                "N"
            ],
            "cardinality": {}
        },
        "SpecialType": {
            "title": "Special Type",
            "shortTitle": "Special Type",
            "distinct": "true",
            "type": "list",
            "listValues": [
                "Y",
                "N"
            ],
            "cardinality": {}
        },
        "StartDate": {
            "title": "Start Date",
            "shortTitle": "Start Date",
            "distinct": "false",
            "defaultContent": "%Today",
            "type": "date-time",
            "template": "d/MMM/yyyy HH:mm",
            "cardinality": {}
        },
        "EndDate": {
            "title": "End Date",
            "shortTitle": "End Date",
            "distinct": "false",
            "defaultContent": "%Today",
            "type": "date-time",
            "template": "d/MMM/yyyy HH:mm",
            "cardinality": {}
        },
        "RadioBroadcastDateTime": {
            "title": "Broadcasting Date-Time",
            "shortTitle": "Broadcasting Date-Time",
            "distinct": "false",
            "defaultContent": "%Today",
            "type": "date-time",
            "template": "d/MMM/yyyy HH:mm",
            "cardinality": {}
        },
        "RadioProgram": {
            "title": "Program",
            "shortTitle": "Program",
            "distinct": "true",
            "type": "tree-db",
            "listName": "/Taxonomy/Radio/Programs",
            "result": "Fullpath",
            "cardinality": {}
        },
        "RadioObjectType": {
            "title": "Object Type",
            "shortTitle": "Object Type",
            "distinct": "true",
            "defaultContent": "RadioNews",
            "type": "list",
            "listValues": [
                "RadioNews",
                "Interview",
                "Commentary",
                "Dossier",
                "Promotion",
                "Other"
            ],
            "cardinality": {}
        },
        "TVBroadcastDateTime": {
            "title": "Broadcasting Date-Time",
            "shortTitle": "Broadcasting Date-Time",
            "distinct": "false",
            "defaultContent": "%Today",
            "type": "date-time",
            "template": "d/MMM/yyyy HH:mm",
            "cardinality": {}
        },
        "TVProgram": {
            "title": "Program",
            "shortTitle": "Program",
            "distinct": "true",
            "type": "tree-db",
            "listName": "/Journal/TV/Programs",
            "result": "Fullpath",
            "cardinality": {}
        },
        "TVObjectType": {
            "title": "Object Type",
            "shortTitle": "Object Type",
            "distinct": "true",
            "defaultContent": "TVNews",
            "type": "list",
            "listValues": [
                "TVNews",
                "Interview",
                "Commentary",
                "Dossier",
                "Promotion",
                "Other"
            ],
            "cardinality": {}
        },
        "BlogSection": {
            "title": "Blog-Section",
            "shortTitle": "Blog-Section",
            "distinct": "true",
            "type": "tree-db",
            "listName": "/Taxonomy/BlogSections",
            "result": "Fullpath",
            "cardinality": {}
        },
        "BlogDate": {
            "title": "Blog Date",
            "shortTitle": "Blog Date",
            "distinct": "false",
            "visibility": "ReadOnly",
            "type": "date-time",
            "template": "d/MMM/yyyy HH:mm",
            "cardinality": {}
        },
        "Queue": {
            "title": "Queue",
            "shortTitle": "Queue",
            "distinct": "false",
            "defaultContent": "None",
            "type": "tree-db",
            "listName": "/Taxonomy/Output/Queue",
            "cardinality": {}
        },
        "PriorityQueue": {
            "title": "Priority",
            "shortTitle": "Priority",
            "distinct": "true",
            "defaultContent": "3",
            "type": "list",
            "listValues": [
                "0",
                "1",
                "2",
                "3",
                "4",
                "5"
            ],
            "cardinality": {}
        },
        "Embargo": {
            "title": "Embargo",
            "shortTitle": "Embargo",
            "distinct": "false",
            "defaultContent": "%Today",
            "type": "date-time",
            "template": "d/MMM/yyyy HH:mm",
            "cardinality": {}
        },
        "group": {
            "title": "group",
            "shortTitle": "group",
            "distinct": "false",
            "visibility": "Invisible",
            "type": "string",
            "cardinality": {}
        },
        "SuggestedSubject": {
            "title": "Subject",
            "shortTitle": "Subject",
            "distinct": "false",
            "expandMode": "Expanded",
            "cardinality": {
                "reference": "?",
                "id": "?",
                "rank": "?",
                "links": "?",
                "title": "?",
                "path": "?"
            }
        },
        "SuggestedPeople": {
            "title": "People",
            "shortTitle": "People",
            "distinct": "false",
            "expandMode": "Expanded",
            "cardinality": {
                "reference": "?",
                "id": "?",
                "rank": "?",
                "links": "?",
                "title": "?",
                "path": "?"
            }
        },
        "Mail": {
            "title": "Mail",
            "shortTitle": "Mail",
            "distinct": "true",
            "type": "string",
            "cardinality": {}
        },
        "Signature": {
            "title": "Signature",
            "shortTitle": "Signature",
            "distinct": "true",
            "type": "string",
            "cardinality": {}
        },
        "Initial": {
            "title": "Initial",
            "shortTitle": "Initial",
            "distinct": "true",
            "type": "string",
            "cardinality": {}
        },
        "AuthorID": {
            "title": "ID Number",
            "shortTitle": "ID Number",
            "distinct": "true",
            "visibility": "Invisible",
            "type": "string",
            "cardinality": {}
        },
        "WebSection": {
            "title": "WebSection",
            "shortTitle": "WebSection",
            "distinct": "false",
            "expandMode": "Expanded",
            "cardinality": {
                "WebSectionId": "?",
                "WebSectionName": "?"
            }
        },
        "reference": {
            "title": "reference",
            "shortTitle": "reference",
            "distinct": "false",
            "type": "string",
            "cardinality": {}
        },
        "id": {
            "title": "id",
            "shortTitle": "id",
            "distinct": "false",
            "visibility": "Invisible",
            "type": "string",
            "cardinality": {}
        },
        "rank": {
            "title": "rank",
            "shortTitle": "rank",
            "distinct": "false",
            "type": "string",
            "cardinality": {}
        },
        "links": {
            "title": "keywords",
            "shortTitle": "keywords",
            "distinct": "false",
            "type": "string",
            "cardinality": {}
        },
        "title": {
            "title": "title",
            "shortTitle": "title",
            "distinct": "false",
            "type": "string",
            "cardinality": {}
        },
        "path": {
            "title": "path",
            "shortTitle": "path",
            "distinct": "false",
            "type": "string",
            "cardinality": {}
        },
        "WebSectionId": {
            "title": "WebSectionId",
            "shortTitle": "WebSectionId",
            "distinct": "false",
            "expandMode": "Expanded",
            "cardinality": {}
        },
        "WebSectionName": {
            "title": "WebSectionName",
            "shortTitle": "WebSectionName",
            "distinct": "false",
            "expandMode": "Expanded",
            "cardinality": {}
        }
    }
}

/conf/metadata/dtd/treedb GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 14. Parameters:
Parameter Type Required Default Description

node

String

Yes

-

id

String

No

-

path

String

No

-

sessionId

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/conf/metadata/dtd/treedb?path=/SysConfig/Common/Classify/story.dtd&sessionId=-1&node=WebType&token=5cbff137-57c2-48e3-be91-1f9866311954"

or

curl -X GET "http://eidos01host:9999/restapi-core/rest/conf/metadata/dtd/treedb?id=1$1.0.106735394&node=WebType&token=5cbff137-57c2-48e3-be91-1f9866311954"

Response

Content type

application/json

[
    "eomfs:/Categories/Languages",
    "eomfs:/Categories/Languages/Arabic",
    "eomfs:/Categories/Languages/Dutch",
    "eomfs:/Categories/Languages/English",
    "eomfs:/Categories/Languages/French",
    "eomfs:/Categories/Languages/German",
    "eomfs:/Categories/Languages/Indian",
    "eomfs:/Categories/Languages/Italian",
    "eomfs:/Categories/Languages/Russian",
    "eomfs:/Categories/Languages/Spanish",
    "eomfs:/Categories/Taxonomy",
    "eomfs:/Categories/Taxonomy/BlogSections",
    "eomfs:/Categories/Taxonomy/BlogSections/Art",
    "eomfs:/Categories/Taxonomy/BlogSections/Business",
    "eomfs:/Categories/Taxonomy/BlogSections/Foreign",
    "eomfs:/Categories/Taxonomy/BlogSections/News",
    "eomfs:/Categories/Taxonomy/BlogSections/Politics",
    "eomfs:/Categories/Taxonomy/BlogSections/Sport",
    "eomfs:/Categories/Taxonomy/IndustrySegments",
    "eomfs:/Categories/Taxonomy/IndustrySegments/Aerospace",
    "eomfs:/Categories/Taxonomy/IndustrySegments/Autos",
    "eomfs:/Categories/Taxonomy/IndustrySegments/Consumer Industries",
    "eomfs:/Categories/Taxonomy/IndustrySegments/Energy",
    "eomfs:/Categories/Taxonomy/IndustrySegments/Financial Services",
    "eomfs:/Categories/Taxonomy/IndustrySegments/Information Technology",
    "eomfs:/Categories/Taxonomy/IndustrySegments/Manufacturing",
    "eomfs:/Categories/Taxonomy/IndustrySegments/Media & Entertainment",
    "eomfs:/Categories/Taxonomy/IndustrySegments/Medical Industries",
    "eomfs:/Categories/Taxonomy/IndustrySegments/Natural Resources",
    "eomfs:/Categories/Taxonomy/IndustrySegments/Services",
    "eomfs:/Categories/Taxonomy/IndustrySegments/Telecommunications",
    "eomfs:/Categories/Taxonomy/IndustrySegments/Transportation",
    "eomfs:/Categories/Taxonomy/Output",
    "eomfs:/Categories/Taxonomy/Output/Queue",
    "eomfs:/Categories/Taxonomy/Output/Queue/ALL",
    "eomfs:/Categories/Taxonomy/Output/Queue/Queue1",
    "eomfs:/Categories/Taxonomy/Output/Queue/Queue2",
    "eomfs:/Categories/Taxonomy/Radio",
    "eomfs:/Categories/Taxonomy/Radio/Programs",
    "eomfs:/Categories/Taxonomy/Radio/Programs/Freeway",
    "eomfs:/Categories/Taxonomy/Radio/Programs/Helzapoppin",
    "eomfs:/Categories/Taxonomy/Radio/Programs/Radio News",
    "eomfs:/Categories/Taxonomy/Radio/Programs/The best in the life",
    "eomfs:/Categories/Taxonomy/Radio/Programs/Young Lions"
]

/conf/metadata/dtd/treedbxml GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 15. Parameters:
Parameter Type Required Default Description

node

String

Yes

-

id

String

No

-

path

String

No

-

sessionId

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/conf/metadata/dtd/treedbxml?path=/SysConfig/Common/Classify/story.dtd&sessionId=-1&node=WebType&token=5cbff137-57c2-48e3-be91-1f9866311954"

or

curl -X GET "http://eidos01host:9999/restapi-core/rest/conf/metadata/dtd/treedbxml?id=1$1.0.106735394&node=WebType&token=5cbff137-57c2-48e3-be91-1f9866311954"

Response

Content type

application/xml

<?xml version="1.0" encoding="utf-8"?>
<!--
  - Author(s):      Mario Red
  - @(#) $Id:
  - Description:    Used by Methode to provide a list of available webTypes in an objects metadata
  - Version    Author        Date       Reason
  - 0.1        Mario Red                Original Version
  - 0.2        Mario White   25/05/15   Clearup of redundant web types
-->
<!--
  **************************************************************************************
                                GENERAL NOTES SECTION
  **************************************************************************************
   Example of a WebType entry: -

        <WebType>myWebType</WebType>

  **************************************************************************************
   For ease of maintenance of this file please add new entries in alphabetical order
  **************************************************************************************
-->
<doc>
<WebTypes>WebTypes
<WebType>homePage</WebType>
<WebType>Briefs</WebType>
<WebType>topAlternative</WebType>
<WebType>Gazet_homePage</WebType>
<WebType>Gazet_Briefs</WebType>
<WebType>Gazet_topAlternative</WebType>
<WebType>W_homePage</WebType>
<WebType>W_Briefs</WebType>
<WebType>W_topAlternative</WebType>
<WebType>Magazine_homePage</WebType>
<WebType>Magazine_Briefs</WebType>
<WebType>Magazine_topAlternative</WebType>
<WebType>SectionPage</WebType>
<WebType>HomePortal</WebType>
<WebType>Container</WebType>
<WebType>QueryPage</WebType>
<WebType>MyGlobe</WebType>
<WebType>Gallery</WebType>
<WebType>Poll</WebType>
<WebType>Realtime</WebType>
<WebType>EOM::Query</WebType>
<WebType>Bio</WebType>
</WebTypes>
</doc>

/conf/resolve/path GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 16. Parameters:
Parameter Type Required Default Description

contentType

String

Yes

-

channel

String

No

-

databaseId

DatabaseId

No

-

edition

String

No

-

insert

String

No

-

issueDate

String

No

-

sectionPath

String

No

-

siteName

String

No

-

team

String

No

-

workfolder

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/conf/resolve/path?token=e8b6352b-ded1-451b-94bb-ed9b00d91685&workfolder=/Globe/Art&team=Globe_Team&issueDate=20150403&contentType=EOM::PrintPage&channel=Globe-Print&edition=EUROPE&insert=Insert%20One"

Response

Return type

ResolvePathBean

Content type

application/json

{
    "contentType": "EOM::PrintPage",
    "team": "Globe_Team",
    "workfolder": "/Globe/Art",
    "issueDate": "20150403",
    "edition": "EUROPE",
    "insert": "Insert One",
    "workfolderDir": "/Globe/Stories/Art",
    "workStatus": "NewsFlow/Editing"
}

TYPE ResolvePathBean

{
  "contentType" : "aValue",
  "edition" : "aValue",
  "insert" : "aValue",
  "issueDate" : "aValue",
  "team" : "aValue",
  "workStatus" : "aValue",
  "workfolder" : "aValue",
  "workfolderDir" : "aValue"
}

/conf/siteconfig GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 17. Parameters:
Parameter Type Required Default Description

type

String

Yes

-

autocreate

Boolean

No

-

channel

String

No

-

check

boolean

No

false

-

fileName

String

No

-

workfolder

String

No

-

Request

GET /rest/conf/siteconfig?type=EOM::PrintPage&workfolder=/Globe/Art&channel=Globe-Print HTTP/1.1
Cache-Control: no-cache

Response

Content type

application/json

{
    "type": "EOM::PrintPage",
    "basefolder": "/Globe/Stories/Art"
}

/conf/team/list GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 18. Parameters:
Parameter Type Required Default Description

databaseId

DatabaseId

No

-

showChannels

boolean

No

false

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/conf/team/list?showChannels=true&token=7e389012-08d6-4beb-bd37-65e26200dccf"

Response

Content type

application/json

[
    {
        "name": "Globe_Tablet",
        "isDefault": false,
        "channels": [
            {
                "name": "Globe-Print",
                "isDefault": false
            },
            {
                "name": "Globe-Tablet",
                "isDefault": true
            },
            {
                "name": "Globe-Sms",
                "isDefault": false
            },
            {
                "name": "Globe-Web",
                "isDefault": false
            }
        ]
    },
    {
        "name": "Globe_Team",
        "isDefault": true,
        "channels": [
            {
                "name": "Globe-Print",
                "isDefault": false
            },
            {
                "name": "Globe-Web",
                "isDefault": false
            },
            {
                "name": "Globe-Tablet",
                "isDefault": false
            },
            {
                "name": "Globe-Sms",
                "isDefault": false
            }
        ]
    }
]

/conf/user/list GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 19. Parameters:
Parameter Type Required Default Description

databaseId

DatabaseId

No

-

query

String

No

-

showExtraInfo

boolean

No

false

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/conf/user/list?query=sys&showExtraInfo=true&token=082dc1db-e6fe-4fd7-97b2-9dc9e96e6990"

Response

Content type

application/json

[
    {
        "id": "1$1.0.7396",
        "ucount": 2280,
        "name": "Administrator",
        "fullName": "Administrator",
        "description": "System Administrator",
        "disabled": false,
        "teams": [],
        "relevance": 4
    },
    {
        "id": "1$1.0.13643031",
        "ucount": 1103,
        "name": "EOMPortal",
        "fullName": "EOMPortal",
        "description": "System Administrator",
        "disabled": false,
        "teams": [],
        "relevance": 4
    },
    {
        "id": "1$1.0.12525",
        "ucount": 174624,
        "name": "system",
        "fullName": "system",
        "description": "System Administrator",
        "disabled": false,
        "teams": [],
        "relevance": 1
    },
    {
        "id": "1$1.0.87493747",
        "ucount": 17,
        "name": "mario.red",
        "fullName": "mario.red",
        "description": "System Administrator",
        "disabled": false,
        "homeEmail": "",
        "businessEmail": "",
        "calendars": [],
        "teams": [],
        "relevance": 4
    }
]

/conf/userdata GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 20. Parameters:
Parameter Type Required Default Description

checkWorkfolder

boolean

No

false

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/conf/userdata?token=5d4d3e1e-5255-4fe9-bda4-104790984bf7"

Response

Content type

application/json

{
    "team": "Globe_Team",
    "system_attributes": {
        "workfolder": "/Globe",
        "productInfo": {
            "issueDate": "20150717"
        }
    }
}

/conf/contentItems/map GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 21. Parameters:
Parameter type Required Default Description

validate

boolean

No

true

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/conf/contentItems/map?token=1161ad9c-9aa5-421a-979d-941e40992953&validate=false"

Response

Content type

application/json

{
    "lead": {
        "name": "text",
        "type": "lead",
        "xp": "/doc/lead",
        "cssSelector": "",
        "content": ""
    },
    "text": {
        "name": "text",
        "type": "text",
        "xp": "/doc/story/text",
        "cssSelector": "story text",
        "content": ""
    },
    "summary": {
        "name": "summary",
        "type": "summary",
        "xp": "/doc/story/summary",
        "cssSelector": "story summary",
        "content": ""
    },
    "header": {
        "name": "headline",
        "type": "header",
        "xp": "/doc/story/header",
        "cssSelector": "story header",
        "content": ""
    },
    "headline": {
        "name": "headline",
        "type": "headline",
        "xp": "/doc/story/grouphead",
        "cssSelector": "story grouphead",
        "content": ""
    },
    "jump": {
        "name": "text",
        "type": "jump",
        "xp": "/doc/story/jump",
        "cssSelector": "story jump",
        "content": ""
    },
    "byline": {
        "name": "byline",
        "type": "byline",
        "xp": "/doc/story/byline",
        "cssSelector": "story byline",
        "content": ""
    },
    "extra": {
        "name": "text",
        "type": "extra",
        "xp": "/doc/story/extra",
        "cssSelector": "story extra",
        "content": ""
    },
    "extrapic": {
        "name": "picture",
        "type": "extrapic",
        "xp": "/doc/story/pbox/photo-print",
        "cssSelector": "",
        "content": ""
    },
    "email": {
        "name": "text",
        "type": "email",
        "xp": "/doc/story/email",
        "cssSelector": "story email",
        "content": ""
    },
    "Widget": {
        "name": "widget",
        "type": "Widget",
        "xp": "/doc/story/widget"
    },
    "gallery": {
        "name": "gallery",
        "type": "gallery",
        "xp": "/doc/story",
        "items": [
            {
                "xp": "/doc/story/grouphead"
            }
        ]
    },
    "picture-web-template": {
        "name": "picture",
        "type": "picture-web-template",
        "xp": "/doc/story/photo",
        "cssSelector": "",
        "content": ""
    },
    "picture": {
        "name": "picture",
        "type": "picture",
        "xp": "/doc/story/photo-group/fg-photo",
        "cssSelector": "",
        "content": "",
        "resLimits": "100",
        "sources": [
            {
                "element": "s1",
                "type": "caption",
                "xp": "/*/iptc/caption"
            },
            {
                "element": "source",
                "type": "caption",
                "xp": "/*/iptc/credit"
            }
        ]
    },
    "caption": {
        "name": "caption",
        "type": "caption",
        "xp": "/doc/story/photo-group/photo-caption",
        "cssSelector": "story photo-group photo-caption",
        "content": ""
    },
    "picture-web": {
        "name": "picture",
        "type": "picture-web",
        "xp": "/doc/story/photo-web/fw-photo",
        "cssSelector": "",
        "content": "",
        "resLimits": "100",
        "sources": [
            {
                "element": "p",
                "type": "caption-web",
                "xp": "/*/iptc/caption"
            }
        ]
    },
    "caption-web": {
        "name": "caption",
        "type": "caption-web",
        "xp": "/doc/story/photo-web/photo-caption",
        "cssSelector": "story photo-web photo-caption",
        "content": ""
    },
    "picture-print": {
        "name": "picture",
        "type": "picture-print",
        "xp": "/doc/story/photo-print/fp-photo",
        "cssSelector": "",
        "content": "",
        "resLimits": "100",
        "sources": [
            {
                "element": "p",
                "type": "caption-print",
                "xp": "/*/iptc/caption"
            }
        ]
    },
    "caption-print": {
        "name": "caption",
        "type": "caption-print",
        "xp": "/doc/story/photo-print/photo-caption",
        "cssSelector": "story photo-print photo-caption",
        "content": ""
    },
    "video": {
        "name": "picture",
        "type": "video",
        "xp": "/doc/story/video-web/video",
        "cssSelector": "",
        "content": "",
        "resLimits": "100",
        "sources": [
            {
                "element": "p",
                "type": "video-caption-web",
                "xp": "/*/iptc/caption"
            }
        ]
    },
    "WebVideo": {
        "name": "video",
        "type": "WebVideo",
        "xp": "/doc/story/video-web/video",
        "cssSelector": "",
        "content": "",
        "resLimits": "100",
        "sources": [
            {
                "element": "p",
                "type": "video-caption-web",
                "xp": "/*/iptc/caption"
            }
        ]
    },
    "video-caption-web": {
        "name": "caption",
        "type": "video-caption-web",
        "xp": "/doc/story/video-web/photo-caption",
        "cssSelector": "story video-web photo-caption",
        "content": ""
    },
    "graphic": {
        "name": "graphic",
        "type": "graphic",
        "xp": "/doc/story/chart",
        "cssSelector": "",
        "content": ""
    },
    "ad": {
        "name": "ad",
        "type": "ad",
        "xp": "/doc/story/display-ad",
        "cssSelector": "",
        "content": ""
    },
    "Overhead": {
        "type": "Overhead",
        "xp": "overhead",
        "cssSelector": "story grouphead overhead"
    },
    "Headline": {
        "type": "Headline",
        "xp": "headline",
        "cssSelector": "story grouphead headline"
    },
    "Subhead": {
        "type": "Subhead",
        "xp": "subhead",
        "cssSelector": "story grouphead subhead"
    },
    "PartPage": {
        "name": "pgl",
        "type": "PartPage"
    },
    "WebPage": {
        "name": "dwp",
        "type": "WebPage"
    },
    "rule": {
        "name": "rule",
        "type": "rule"
    },
    "box": {
        "name": "box",
        "type": "box"
    }
}

/conf/workfolder/list GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 22. Parameters:
Parameter Type Required Default Description

channel

String

No

-

contentType

String

No

-

databaseId

DatabaseId

No

-

depth

int

No

1

-

parent

String

No

-

showBasefolders

boolean

No

false

-

team

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/conf/workfolder/list?showBasefolders=true&depth=3&parent=199$479&token=5d4d3e1e-5255-4fe9-bda4-104790984bf7"

Response

Content type

application/json

[
    {
        "id": "199$480",
        "label": "News",
        "path": "/Idea-Tablet/News",
        "type": "workFolder",
        "isDefault": false,
        "dir": "/Idea/Stories/News",
        "baseFolders": [
            {
                "content": "story",
                "name": "{workFolder}"
            },
            {
                "content": "story",
                "name": "{workFolder}-stories"
            },
            {
                "content": "story",
                "name": "Private Folder",
                "workPath": "/Idea/Stories/News"
            },
            {
                "content": "picture",
                "name": "{workFolder}-pictures"
            },
            {
                "content": "graphic",
                "name": "{workFolder}-graphics"
            },
            {
                "name": "{workFolder}-Media"
            },
            {
                "content": "pgl",
                "name": "{workFolder}-Pages"
            },
            {
                "content": "dwp",
                "name": "{workFolder}-WebPages"
            },
            {
                "content": "story",
                "name": "Wires",
                "workPath": "/Idea/Stories/News/Wires"
            },
            {
                "content": "prs",
                "name": "{workFolder}-TopicPlans"
            },
            {
                "content": "pkg",
                "name": "{workFolder}-Topics"
            },
            {
                "content": "ad",
                "name": "{workFolder} Ads"
            },
            {
                "name": "Globe-Assets"
            },
            {
                "content": "picture",
                "name": "PhotoWires",
                "workPath": "/Idea/Images/{workFolder}/Wires"
            }
        ],
        "childCount": 0
    },
    {
        "id": "199$481",
        "label": "Trends",
        "path": "/Idea-Tablet/Trends",
        "type": "workFolder",
        "isDefault": false,
        "dir": "/Idea/Stories/Trends",
        "baseFolders": [
            {
                "content": "story",
                "name": "{workFolder}"
            },
            {
                "content": "story",
                "name": "{workFolder}-stories"
            },
            {
                "content": "story",
                "name": "Private Folder",
                "workPath": "/Idea/Stories/News"
            },
            {
                "content": "picture",
                "name": "{workFolder}-pictures"
            },
            {
                "content": "graphic",
                "name": "{workFolder}-graphics"
            },
            {
                "name": "{workFolder}-Media"
            },
            {
                "content": "pgl",
                "name": "{workFolder}-Pages"
            },
            {
                "content": "dwp",
                "name": "{workFolder}-WebPages"
            },
            {
                "content": "story",
                "name": "Wires",
                "workPath": "/Idea/Stories/News/Wires"
            },
            {
                "content": "prs",
                "name": "{workFolder}-TopicPlans"
            },
            {
                "content": "pkg",
                "name": "{workFolder}-Topics"
            },
            {
                "content": "ad",
                "name": "{workFolder} Ads"
            },
            {
                "name": "Globe-Assets"
            },
            {
                "content": "picture",
                "name": "PhotoWires",
                "workPath": "/Idea/Images/{workFolder}/Wires"
            }
        ],
        "childCount": 0
    },
    {
        "id": "199$482",
        "label": "Beauty",
        "path": "/Idea-Tablet/Beauty",
        "type": "workFolder",
        "isDefault": false,
        "dir": "/Idea/Stories/Beauty",
        "baseFolders": [
            {
                "content": "story",
                "name": "{workFolder}"
            },
            {
                "content": "story",
                "name": "{workFolder}-stories"
            },
            {
                "content": "story",
                "name": "Private Folder",
                "workPath": "/Idea/Stories/News"
            },
            {
                "content": "picture",
                "name": "{workFolder}-pictures"
            },
            {
                "content": "graphic",
                "name": "{workFolder}-graphics"
            },
            {
                "name": "{workFolder}-Media"
            },
            {
                "content": "pgl",
                "name": "{workFolder}-Pages"
            },
            {
                "content": "dwp",
                "name": "{workFolder}-WebPages"
            },
            {
                "content": "story",
                "name": "Wires",
                "workPath": "/Idea/Stories/News/Wires"
            },
            {
                "content": "prs",
                "name": "{workFolder}-TopicPlans"
            },
            {
                "content": "pkg",
                "name": "{workFolder}-Topics"
            },
            {
                "content": "ad",
                "name": "{workFolder} Ads"
            },
            {
                "name": "Globe-Assets"
            },
            {
                "content": "picture",
                "name": "PhotoWires",
                "workPath": "/Idea/Images/{workFolder}/Wires"
            }
        ],
        "childCount": 0
    },
    {
        "id": "199$483",
        "label": "Fashion",
        "path": "/Idea-Tablet/Fashion",
        "type": "workFolder",
        "isDefault": false,
        "dir": "/Idea/Stories/Fashion",
        "baseFolders": [
            {
                "content": "story",
                "name": "{workFolder}"
            },
            {
                "content": "story",
                "name": "{workFolder}-stories"
            },
            {
                "content": "story",
                "name": "Private Folder",
                "workPath": "/Idea/Stories/News"
            },
            {
                "content": "picture",
                "name": "{workFolder}-pictures"
            },
            {
                "content": "graphic",
                "name": "{workFolder}-graphics"
            },
            {
                "name": "{workFolder}-Media"
            },
            {
                "content": "pgl",
                "name": "{workFolder}-Pages"
            },
            {
                "content": "dwp",
                "name": "{workFolder}-WebPages"
            },
            {
                "content": "story",
                "name": "Wires",
                "workPath": "/Idea/Stories/News/Wires"
            },
            {
                "content": "prs",
                "name": "{workFolder}-TopicPlans"
            },
            {
                "content": "pkg",
                "name": "{workFolder}-Topics"
            },
            {
                "content": "ad",
                "name": "{workFolder} Ads"
            },
            {
                "name": "Globe-Assets"
            },
            {
                "content": "picture",
                "name": "PhotoWires",
                "workPath": "/Idea/Images/{workFolder}/Wires"
            }
        ],
        "childCount": 0
    },
    {
        "id": "199$484",
        "label": "LifeStyle",
        "path": "/Idea-Tablet/LifeStyle",
        "type": "workFolder",
        "isDefault": false,
        "dir": "/Idea/Stories/LifeStyle",
        "baseFolders": [
            {
                "content": "story",
                "name": "{workFolder}"
            },
            {
                "content": "story",
                "name": "{workFolder}-stories"
            },
            {
                "content": "story",
                "name": "Private Folder",
                "workPath": "/Idea/Stories/News"
            },
            {
                "content": "picture",
                "name": "{workFolder}-pictures"
            },
            {
                "content": "graphic",
                "name": "{workFolder}-graphics"
            },
            {
                "name": "{workFolder}-Media"
            },
            {
                "content": "pgl",
                "name": "{workFolder}-Pages"
            },
            {
                "content": "dwp",
                "name": "{workFolder}-WebPages"
            },
            {
                "content": "story",
                "name": "Wires",
                "workPath": "/Idea/Stories/News/Wires"
            },
            {
                "content": "prs",
                "name": "{workFolder}-TopicPlans"
            },
            {
                "content": "pkg",
                "name": "{workFolder}-Topics"
            },
            {
                "content": "ad",
                "name": "{workFolder} Ads"
            },
            {
                "name": "Globe-Assets"
            },
            {
                "content": "picture",
                "name": "PhotoWires",
                "workPath": "/Idea/Images/{workFolder}/Wires"
            }
        ],
        "childCount": 0
    },
    {
        "id": "199$485",
        "label": "Wellness",
        "path": "/Idea-Tablet/Wellness",
        "type": "workFolder",
        "isDefault": false,
        "dir": "/Idea/Stories/Wellness",
        "baseFolders": [
            {
                "content": "story",
                "name": "{workFolder}"
            },
            {
                "content": "story",
                "name": "{workFolder}-stories"
            },
            {
                "content": "story",
                "name": "Private Folder",
                "workPath": "/Idea/Stories/News"
            },
            {
                "content": "picture",
                "name": "{workFolder}-pictures"
            },
            {
                "content": "graphic",
                "name": "{workFolder}-graphics"
            },
            {
                "name": "{workFolder}-Media"
            },
            {
                "content": "pgl",
                "name": "{workFolder}-Pages"
            },
            {
                "content": "dwp",
                "name": "{workFolder}-WebPages"
            },
            {
                "content": "story",
                "name": "Wires",
                "workPath": "/Idea/Stories/News/Wires"
            },
            {
                "content": "prs",
                "name": "{workFolder}-TopicPlans"
            },
            {
                "content": "pkg",
                "name": "{workFolder}-Topics"
            },
            {
                "content": "ad",
                "name": "{workFolder} Ads"
            },
            {
                "name": "Globe-Assets"
            },
            {
                "content": "picture",
                "name": "PhotoWires",
                "workPath": "/Idea/Images/{workFolder}/Wires"
            }
        ],
        "childCount": 0
    },
    {
        "id": "199$486",
        "label": "Sport",
        "path": "/Idea-Tablet/Sport",
        "type": "workFolder",
        "isDefault": false,
        "dir": "/Idea/Stories/Sport",
        "baseFolders": [
            {
                "content": "story",
                "name": "{workFolder}"
            },
            {
                "content": "story",
                "name": "{workFolder}-stories"
            },
            {
                "content": "story",
                "name": "Private Folder",
                "workPath": "/Idea/Stories/News"
            },
            {
                "content": "picture",
                "name": "{workFolder}-pictures"
            },
            {
                "content": "graphic",
                "name": "{workFolder}-graphics"
            },
            {
                "name": "{workFolder}-Media"
            },
            {
                "content": "pgl",
                "name": "{workFolder}-Pages"
            },
            {
                "content": "dwp",
                "name": "{workFolder}-WebPages"
            },
            {
                "content": "story",
                "name": "Wires",
                "workPath": "/Idea/Stories/News/Wires"
            },
            {
                "content": "prs",
                "name": "{workFolder}-TopicPlans"
            },
            {
                "content": "pkg",
                "name": "{workFolder}-Topics"
            },
            {
                "content": "ad",
                "name": "{workFolder} Ads"
            },
            {
                "name": "Globe-Assets"
            },
            {
                "content": "picture",
                "name": "PhotoWires",
                "workPath": "/Idea/Images/{workFolder}/Wires"
            }
        ],
        "childCount": 0
    }
]

Containers

EidosMedia Rest Application Server 23. Apis:

Path

Description

/containers/pagePlan DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 24. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

source

String

No

-

Request

curl -X DELETE -H "Cache-Control: no-cache" "http://restserver:8080/restapi-core/rest/containers/pagePlan?source=loid:199$1.0.717689642"

Response

Content type

application/json

{
  "type": "PAGEPLAN",
  "source": "loid:199$1.0.717689642",
  "loid": "199$1.0.717689642",
  "uuid": "2192e5d2-2d79-11e6-a429-7a5bfc1aa274",
  "error": false,
  "errorMessages": [],
  "children": [
    {
      "type": "PRINTEDITION",
      "source": "loid:199$1.0.717689666",
      "loid": "199$1.0.717689666",
      "uuid": "21d6a448-2d79-11e6-a429-7a5bfc1aa274",
      "error": false,
      "errorMessages": [],
      "children": [],
      "printEdition": {
        "edition": {
          "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
          "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
          "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
          "name": "USA",
          "id": "U208018000534oF",
          "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
          "editionPath": "USA",
          "printsites": {
            "zone": [],
            "ps": [
              {
                "name": "Milan"
              },
              {
                "name": "Rome"
              },
              {
                "name": "London"
              },
              {
                "name": "Glasgow"
              }
            ]
          },
          "books": {
            "book": {
              "background-color": "#FF0000",
              "format": "tabloid",
              "name": "Book1",
              "id": "U20801800053rmG",
              "pnn": "0",
              "pages": {
                "page": [
                  {
                    "section": "News",
                    "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                    "template": "/SysConfig/Globe/Print/PrintProductFurniture/Tabloid Front.pgl",
                    "color": "cmyk",
                    "id": "U20801800053SLF",
                    "pn": "1",
                    "pgl": {
                      "channel": "Globe-Print",
                      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                      "stories": {
                        "story": [
                          {
                            "id": "U7037449999Jj",
                            "name": "StoryA",
                            "content": {
                              "id": "U7037449999qNH",
                              "stand": "yes",
                              "loid": "1.0.8128592",
                              "item": {
                                "fstyle": "Justify",
                                "id": "U7037449999PrH",
                                "hjStyle": "text-all",
                                "format": "Clean text",
                                "sref": "U7037449999QR",
                                "type": "text"
                              }
                            }
                          },
                          {
                            "id": "U7037449999cx",
                            "name": "StoryB",
                            "content": {
                              "id": "U70374499995OI",
                              "stand": "yes",
                              "loid": "1.0.8128558",
                              "item": {
                                "fstyle": "Justify",
                                "vj": "font-stretch:105%;",
                                "id": "U7037449999PNC",
                                "hjStyle": "text-all",
                                "format": "Clean",
                                "sref": "U7037449999lIC",
                                "type": "text"
                              }
                            }
                          }
                        ]
                      },
                      "layers": {
                        "ld": [
                          {
                            "id": "kBpD"
                          }
                        ],
                        "layer": [
                          {
                            "id": "UU20801800053SLFarC",
                            "svg": {
                              "rect": [
                                {
                                  "vj": "line-spacing:'0.4000000059604644775390625';",
                                  "y": "120.68",
                                  "id": "U7037449999lIC",
                                  "width": "192.74",
                                  "height": "160",
                                  "x": "575.26",
                                  "iref": "U7037449999PNC"
                                },
                                {
                                  "y": "120.69",
                                  "id": "U7037449999QR",
                                  "width": "612",
                                  "height": "160",
                                  "x": "0",
                                  "iref": "U7037449999PrH",
                                  "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                                }
                              ]
                            },
                            "yGuides": {
                              "snap": {
                                "value": "135.93"
                              }
                            }
                          }
                        ]
                      },
                      "spreads": {
                        "margin": "19.92",
                        "spread": {
                          "page": {
                            "layer": [
                              {
                                "lref": "UU20801800053SLFarC"
                              }
                            ]
                          }
                        }
                      }
                    },
                    "layer": []
                  },
                  {
                    "section": "Sport",
                    "color": "cmyk",
                    "id": "U20801800053mZ",
                    "pn": "2",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053EYC",
                    "pn": "3",
                    "inherit": "EUROPE?pp=1",
                    "layer": []
                  },
                  {
                    "section": "News",
                    "color": "cmyk",
                    "id": "U208018000530tH",
                    "pn": "4",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053fPG",
                    "pn": "5",
                    "inherit": "EUROPE?pp=5",
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053ZqH",
                    "pn": "6",
                    "inherit": "EUROPE?pp=3",
                    "layer": []
                  },
                  {
                    "section": "Sport",
                    "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe double.grd",
                    "color": "cmyk",
                    "id": "U20801800053Y8B",
                    "pn": "7",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "trucks": "2",
                    "layer": []
                  },
                  {
                    "section": "Politics",
                    "color": "cmyk",
                    "id": "U20801800053PMB",
                    "pn": "9",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053rHE",
                    "pn": "10",
                    "inherit": "EUROPE?pp=6",
                    "layer": []
                  },
                  {
                    "section": "Business",
                    "color": "cmyk",
                    "id": "U20801800053rNI",
                    "pn": "11",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Business",
                    "color": "cmyk",
                    "id": "U20801800053Q4H",
                    "pn": "12",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Foreign",
                    "color": "cmyk",
                    "id": "U2080180005387G",
                    "pn": "13",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Foreign",
                    "color": "cmyk",
                    "id": "U20801800053WS",
                    "pn": "14",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Art",
                    "color": "cmyk",
                    "id": "U20801800053HtH",
                    "pn": "15",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "News",
                    "color": "cmyk",
                    "id": "U20801800053hpB",
                    "pn": "16",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories_News.cfg",
                    "layer": []
                  }
                ]
              },
              "plates": {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "plate": [
                  {
                    "id": "U208018000537nG"
                  },
                  {
                    "id": "U20801800053GXD"
                  },
                  {
                    "id": "U20801800053sE"
                  },
                  {
                    "id": "U20801800053DPE"
                  },
                  {
                    "id": "U208018000530nH"
                  },
                  {
                    "id": "U20801800053eLH"
                  },
                  {
                    "id": "U20801800053TJB"
                  },
                  {
                    "id": "U20801800053v3E"
                  }
                ]
              }
            }
          }
        }
      }
    }
  ],
  "pagePlan": {
    "product": {
      "zoom": "0.18",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
      "channel": "Globe-Print",
      "printsites": {
        "zone": [
          {
            "name": "Italy",
            "ps": [
              {
                "name": "Milan"
              },
              {
                "name": "Rome"
              }
            ]
          },
          {
            "name": "UK",
            "ps": [
              {
                "name": "London"
              },
              {
                "name": "Glasgow"
              }
            ]
          },
          {
            "name": "USA",
            "ps": [
              {
                "name": "New York"
              }
            ]
          },
          {
            "name": "ASIA",
            "ps": [
              {
                "name": "Hong Kong"
              }
            ]
          }
        ],
        "ps": []
      },
      "editions": {
        "edition": [
          {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
            "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
            "name": "EUROPE",
            "id": "U20801800053K7E",
            "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
            "editionPath": "EUROPE",
            "edition": [
              {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
                "name": "Print Site B",
                "id": "U20801800053m4E",
                "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
                "editionPath": "EUROPE/Print Site B-01",
                "star": "01",
                "edition": []
              },
              {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
                "name": "Print Site B",
                "id": "U20801800053m4E",
                "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
                "editionPath": "EUROPE/Print Site B-01",
                "star": "01",
                "edition": []
              }
            ]
          },
          {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
            "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
            "name": "USA",
            "id": "U208018000534oF",
            "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
            "editionPath": "USA",
            "edition": []
          }
        ]
      }
    }
  }
}

/containers/pagePlan GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 25. Parameters:
Parameter Type Required Default Description

depth

int

No

-1

-

excludeList

List

No

-

filter

DefaultFiltersEnum

No

NONE

-

limit

int

No

-1

-

offset

int

No

-1

-

sessionId

String

No

-

showObjectInfo

boolean

No

false

-

source

String

No

-

Request

Read a TopicPlan.

curl -X GET -H "Cache-Control: no-cache" "http://restserver:8080/restapi-core/rest/containers/pagePlan?source=loid:199$1.0.717689642"

Response

Content type

application/json

This call returns a PagePlan.

{
  "type": "PAGEPLAN",
  "source": "loid:199$1.0.717689642",
  "loid": "199$1.0.717689642",
  "uuid": "2192e5d2-2d79-11e6-a429-7a5bfc1aa274",
  "error": false,
  "errorMessages": [],
  "children": [
    {
      "type": "PRINTEDITION",
      "source": "loid:199$1.0.717689666",
      "loid": "199$1.0.717689666",
      "uuid": "21d6a448-2d79-11e6-a429-7a5bfc1aa274",
      "error": false,
      "errorMessages": [],
      "children": [],
      "printEdition": {
        "edition": {
          "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
          "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
          "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
          "name": "USA",
          "id": "U208018000534oF",
          "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
          "editionPath": "USA",
          "printsites": {
            "zone": [],
            "ps": [
              {
                "name": "Milan"
              },
              {
                "name": "Rome"
              },
              {
                "name": "London"
              },
              {
                "name": "Glasgow"
              }
            ]
          },
          "books": {
            "book": {
              "background-color": "#FF0000",
              "format": "tabloid",
              "name": "Book1",
              "id": "U20801800053rmG",
              "pnn": "0",
              "pages": {
                "page": [
                  {
                    "section": "News",
                    "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                    "template": "/SysConfig/Globe/Print/PrintProductFurniture/Tabloid Front.pgl",
                    "color": "cmyk",
                    "id": "U20801800053SLF",
                    "pn": "1",
                    "pgl": {
                      "channel": "Globe-Print",
                      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                      "stories": {
                        "story": [
                          {
                            "id": "U7037449999Jj",
                            "name": "StoryA",
                            "content": {
                              "id": "U7037449999qNH",
                              "stand": "yes",
                              "loid": "1.0.8128592",
                              "item": {
                                "fstyle": "Justify",
                                "id": "U7037449999PrH",
                                "hjStyle": "text-all",
                                "format": "Clean text",
                                "sref": "U7037449999QR",
                                "type": "text"
                              }
                            }
                          },
                          {
                            "id": "U7037449999cx",
                            "name": "StoryB",
                            "content": {
                              "id": "U70374499995OI",
                              "stand": "yes",
                              "loid": "1.0.8128558",
                              "item": {
                                "fstyle": "Justify",
                                "vj": "font-stretch:105%;",
                                "id": "U7037449999PNC",
                                "hjStyle": "text-all",
                                "format": "Clean",
                                "sref": "U7037449999lIC",
                                "type": "text"
                              }
                            }
                          }
                        ]
                      },
                      "layers": {
                        "ld": [
                          {
                            "id": "kBpD"
                          }
                        ],
                        "layer": [
                          {
                            "id": "UU20801800053SLFarC",
                            "svg": {
                              "rect": [
                                {
                                  "vj": "line-spacing:'0.4000000059604644775390625';",
                                  "y": "120.68",
                                  "id": "U7037449999lIC",
                                  "width": "192.74",
                                  "height": "160",
                                  "x": "575.26",
                                  "iref": "U7037449999PNC"
                                },
                                {
                                  "y": "120.69",
                                  "id": "U7037449999QR",
                                  "width": "612",
                                  "height": "160",
                                  "x": "0",
                                  "iref": "U7037449999PrH",
                                  "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                                }
                              ]
                            },
                            "yGuides": {
                              "snap": {
                                "value": "135.93"
                              }
                            }
                          }
                        ]
                      },
                      "spreads": {
                        "margin": "19.92",
                        "spread": {
                          "page": {
                            "layer": [
                              {
                                "lref": "UU20801800053SLFarC"
                              }
                            ]
                          }
                        }
                      }
                    },
                    "layer": []
                  },
                  {
                    "section": "Sport",
                    "color": "cmyk",
                    "id": "U20801800053mZ",
                    "pn": "2",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053EYC",
                    "pn": "3",
                    "inherit": "EUROPE?pp=1",
                    "layer": []
                  },
                  {
                    "section": "News",
                    "color": "cmyk",
                    "id": "U208018000530tH",
                    "pn": "4",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053fPG",
                    "pn": "5",
                    "inherit": "EUROPE?pp=5",
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053ZqH",
                    "pn": "6",
                    "inherit": "EUROPE?pp=3",
                    "layer": []
                  },
                  {
                    "section": "Sport",
                    "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe double.grd",
                    "color": "cmyk",
                    "id": "U20801800053Y8B",
                    "pn": "7",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "trucks": "2",
                    "layer": []
                  },
                  {
                    "section": "Politics",
                    "color": "cmyk",
                    "id": "U20801800053PMB",
                    "pn": "9",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053rHE",
                    "pn": "10",
                    "inherit": "EUROPE?pp=6",
                    "layer": []
                  },
                  {
                    "section": "Business",
                    "color": "cmyk",
                    "id": "U20801800053rNI",
                    "pn": "11",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Business",
                    "color": "cmyk",
                    "id": "U20801800053Q4H",
                    "pn": "12",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Foreign",
                    "color": "cmyk",
                    "id": "U2080180005387G",
                    "pn": "13",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Foreign",
                    "color": "cmyk",
                    "id": "U20801800053WS",
                    "pn": "14",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Art",
                    "color": "cmyk",
                    "id": "U20801800053HtH",
                    "pn": "15",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "News",
                    "color": "cmyk",
                    "id": "U20801800053hpB",
                    "pn": "16",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories_News.cfg",
                    "layer": []
                  }
                ]
              },
              "plates": {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "plate": [
                  {
                    "id": "U208018000537nG"
                  },
                  {
                    "id": "U20801800053GXD"
                  },
                  {
                    "id": "U20801800053sE"
                  },
                  {
                    "id": "U20801800053DPE"
                  },
                  {
                    "id": "U208018000530nH"
                  },
                  {
                    "id": "U20801800053eLH"
                  },
                  {
                    "id": "U20801800053TJB"
                  },
                  {
                    "id": "U20801800053v3E"
                  }
                ]
              }
            }
          }
        }
      }
    }
  ],
  "pagePlan": {
    "product": {
      "zoom": "0.18",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
      "channel": "Globe-Print",
      "printsites": {
        "zone": [
          {
            "name": "Italy",
            "ps": [
              {
                "name": "Milan"
              },
              {
                "name": "Rome"
              }
            ]
          },
          {
            "name": "UK",
            "ps": [
              {
                "name": "London"
              },
              {
                "name": "Glasgow"
              }
            ]
          },
          {
            "name": "USA",
            "ps": [
              {
                "name": "New York"
              }
            ]
          },
          {
            "name": "ASIA",
            "ps": [
              {
                "name": "Hong Kong"
              }
            ]
          }
        ],
        "ps": []
      },
      "editions": {
        "edition": [
          {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
            "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
            "name": "EUROPE",
            "id": "U20801800053K7E",
            "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
            "editionPath": "EUROPE",
            "edition": [
              {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
                "name": "Print Site B",
                "id": "U20801800053m4E",
                "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
                "editionPath": "EUROPE/Print Site B-01",
                "star": "01",
                "edition": []
              },
              {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
                "name": "Print Site B",
                "id": "U20801800053m4E",
                "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
                "editionPath": "EUROPE/Print Site B-01",
                "star": "01",
                "edition": []
              }
            ]
          },
          {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
            "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
            "name": "USA",
            "id": "U208018000534oF",
            "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
            "editionPath": "USA",
            "edition": []
          }
        ]
      }
    }
  }
}

/containers/pagePlan POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 26. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Request

curl -X POST -H "Accept: application/json" -H "Content-Type: application/json" -H "Cache-Control: no-cache" -d '{
    "type":"PAGEPLAN",
	"name":"Globe-20160531",
	"path":"/Globe/Print/Plannings/2016-05-31",
	"pagePlan":{
	  "product": {
		"zoom": "0.18",
		"hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
		"hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
		"channel": "Globe-Print",
		"printsites": {
		  "zone": [
			{
			  "name": "Italy",
			  "ps": [
				{ "name": "Milan" },
				{ "name": "Rome" }
			  ]
			},
			{
			  "name": "UK",
			  "ps": [
				{ "name": "London" },
				{ "name": "Glasgow" }
			  ]
			},
			{
			  "name": "USA",
			  "ps": [
			      { "name": "New York" }
			  ]
			},
			{
			  "name": "ASIA",
			  "ps": [
			      { "name": "Hong Kong" }
			 ]
			}
		  ]
		},
		"editions": {
		  "edition": [
			{
			  "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
			  "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
			  "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
			  "name": "EUROPE",
			  "id": "U20801800053K7E",
			  "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
			  "editionPath": "EUROPE",
			  "edition": [
				{
				  "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
				  "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
				  "star": "01",
				  "name": "Print Site B",
				  "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
				  "id": "U20801800053m4E",
				  "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
				  "editionPath": "EUROPE/Print Site B-01"
				},
				{
				  "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
				  "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
				  "star": "01",
				  "name": "Print Site B",
				  "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
				  "id": "U20801800053m4E",
				  "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
				  "editionPath": "EUROPE/Print Site B-01"
				}
			  ]
			},
			{
			  "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
			  "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
			  "name": "USA",
			  "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
			  "id": "U208018000534oF",
			  "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
			  "editionPath": "USA"
			}
		  ]
		}
	  }
	},
	"children":[
	    {
        	"type":"PRINTEDITION",
        	"name":"News-001",
        	"path":"/Globe/Print/Pages/News/2016-05-31",
        	"printEdition":{
        	  "edition": {
        		"hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
        		"hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
        		"name": "USA",
        		"hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
        		"id": "U208018000534oF",
        		"hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
        		"editionPath": "USA",
        		"printsites": {
        		  "ps": [
        			{ "name": "Milan" },
        			{ "name": "Rome" },
        			{ "name": "London" },
        			{ "name": "Glasgow" }
        		  ]
        		},
        		"books": {
        		  "book": {
        			"background-color": "#FF0000",
        			"format": "tabloid",
        			"name": "Book1",
        			"id": "U20801800053rmG",
        			"pnn": "0",
        			"pages": {
        			  "page": [
        				{
        				  "section": "News",
        				  "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
        				  "template": "/SysConfig/Globe/Print/PrintProductFurniture/Tabloid Front.pgl",
        				  "color": "cmyk",
        				  "id": "U20801800053SLF",
        				  "pn": "1",
        				  "pgl": {
        					"channel": "Globe-Print",
        					"hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
        					"hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
        					"stories": {
        					  "story": [
        						{
        						  "id": "U7037449999Jj",
        						  "name": "StoryA",
        						  "content": {
        							"id": "U7037449999qNH",
        							"stand": "yes",
        							"loid": "1.0.8128592",
        							"item": {
        							  "fstyle": "Justify",
        							  "id": "U7037449999PrH",
        							  "hjStyle": "text-all",
        							  "format": "Clean text",
        							  "sref": "U7037449999QR",
        							  "type": "text"
        							}
        						  }
        						},
        						{
        						  "id": "U7037449999cx",
        						  "name": "StoryB",
        						  "content": {
        							"id": "U70374499995OI",
        							"stand": "yes",
        							"loid": "1.0.8128558",
        							"item": {
        							  "fstyle": "Justify",
        							  "vj": "font-stretch:105%;",
        							  "id": "U7037449999PNC",
        							  "hjStyle": "text-all",
        							  "format": "Clean",
        							  "sref": "U7037449999lIC",
        							  "type": "text"
        							}
        						  }
        						}
        					  ]
        					},
        					"layers": {
        					  "ld": [{ "id": "kBpD" }],
        					  "layer": [{
        						"id": "UU20801800053SLFarC",
        						"svg": {
        						  "rect": [
        							{
        							  "vj": "line-spacing:'0.4000000059604644775390625';",
        							  "y": "120.68",
        							  "id": "U7037449999lIC",
        							  "width": "192.74",
        							  "height": "160",
        							  "x": "575.26",
        							  "iref": "U7037449999PNC"
        							},
        							{
        							  "y": "120.69",
        							  "id": "U7037449999QR",
        							  "width": "612",
        							  "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;",
        							  "height": "160",
        							  "x": "0",
        							  "iref": "U7037449999PrH"
        							}
        						  ]
        						},
        						"yGuides": {
        						  "snap": { "value": "135.93" }
        						}
        					  }]
        					},
        					"spreads": {
        					  "margin": "19.92",
        					  "spread": {
        						"page": {
        						  "layer": [{ "lref": "UU20801800053SLFarC" }]
        						}
        					  }
        					}
        				  }
        				},
        				{
        				  "section": "Sport",
        				  "color": "cmyk",
        				  "id": "U20801800053mZ",
        				  "pn": "2",
        				  "folio": {
        					"position": "F1",
        					"name": "Tabloid"
        				  }
        				},
        				{
        				  "inherit": "EUROPE?pp=1",
        				  "color": "cmyk",
        				  "id": "U20801800053EYC",
        				  "pn": "3"
        				},
        				{
        				  "section": "News",
        				  "color": "cmyk",
        				  "id": "U208018000530tH",
        				  "pn": "4",
        				  "folio": {
        					"position": "F1",
        					"name": "Tabloid"
        				  }
        				},
        				{
        				  "inherit": "EUROPE?pp=5",
        				  "color": "cmyk",
        				  "id": "U20801800053fPG",
        				  "pn": "5"
        				},
        				{
        				  "inherit": "EUROPE?pp=3",
        				  "color": "cmyk",
        				  "id": "U20801800053ZqH",
        				  "pn": "6"
        				},
        				{
        				  "trucks": "2",
        				  "section": "Sport",
        				  "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe double.grd",
        				  "color": "cmyk",
        				  "id": "U20801800053Y8B",
        				  "pn": "7",
        				  "folio": {
        					"position": "F1",
        					"name": "Tabloid"
        				  }
        				},
        				{
        				  "section": "Politics",
        				  "color": "cmyk",
        				  "id": "U20801800053PMB",
        				  "pn": "9",
        				  "folio": {
        					"position": "F1",
        					"name": "Tabloid"
        				  }
        				},
        				{
        				  "inherit": "EUROPE?pp=6",
        				  "color": "cmyk",
        				  "id": "U20801800053rHE",
        				  "pn": "10"
        				},
        				{
        				  "section": "Business",
        				  "color": "cmyk",
        				  "id": "U20801800053rNI",
        				  "pn": "11",
        				  "folio": {
        					"position": "F1",
        					"name": "Tabloid"
        				  }
        				},
        				{
        				  "section": "Business",
        				  "color": "cmyk",
        				  "id": "U20801800053Q4H",
        				  "pn": "12",
        				  "folio": {
        					"position": "F1",
        					"name": "Tabloid"
        				  }
        				},
        				{
        				  "section": "Foreign",
        				  "color": "cmyk",
        				  "id": "U2080180005387G",
        				  "pn": "13",
        				  "folio": {
        					"position": "F1",
        					"name": "Tabloid"
        				  }
        				},
        				{
        				  "section": "Foreign",
        				  "color": "cmyk",
        				  "id": "U20801800053WS",
        				  "pn": "14",
        				  "folio": {
        					"position": "F1",
        					"name": "Tabloid"
        				  }
        				},
        				{
        				  "section": "Art",
        				  "color": "cmyk",
        				  "id": "U20801800053HtH",
        				  "pn": "15",
        				  "folio": {
        					"position": "F1",
        					"name": "Tabloid"
        				  }
        				},
        				{
        				  "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories_News.cfg",
        				  "section": "News",
        				  "color": "cmyk",
        				  "id": "U20801800053hpB",
        				  "pn": "16",
        				  "folio": {
        					"position": "F1",
        					"name": "Tabloid"
        				  }
        				}
        			  ]
        			},
        			"plates": {
        			  "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
        			  "plate": [
        				{ "id": "U208018000537nG" },
        				{ "id": "U20801800053GXD" },
        				{ "id": "U20801800053sE" },
        				{ "id": "U20801800053DPE" },
        				{ "id": "U208018000530nH" },
        				{ "id": "U20801800053eLH" },
        				{ "id": "U20801800053TJB" },
        				{ "id": "U20801800053v3E" }
        			  ]
        			}
        		  }
        		}
        	  }
        	},
        		"children":[
            	{
                    "type":"PRINTPAGE",
                	"name":"News-001",
                	"path":"/Globe/Print/Pages/News/2016-05-31",
                	"printPage":{
                	  "pgl": {
                		"channel": "Globe-Print",
                		"hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                		"hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                		"stories": {
                		  "story": [
                			{
                			  "id": "U7037449999Jj",
                			  "name": "StoryA",
                			  "content": {
                				"id": "U7037449999qNH",
                				"stand": "yes",
                				"loid": "1.0.8128592",
                				"href": "/Globe/Stories/News/StoryA-126.xml?uuid=lLsO6CZLEea-3uY3G3P-Ig&li=U7037449999qNH",
                				"item": {
                				  "fstyle": "Justify",
                				  "id": "U7037449999PrH",
                				  "hjStyle": "text-all",
                				  "format": "Clean text",
                				  "sref": "U7037449999QR",
                				  "type": "text"
                				}
                			  }
                			},
                			{
                			  "id": "U7037449999cx",
                			  "name": "StoryB",
                			  "content": {
                				"id": "U70374499995OI",
                				"stand": "yes",
                				"loid": "1.0.8128558",
                				"href": "/Globe/Stories/News/StoryA-125.xml?uuid=k9kVViZLEea-3uY3G3P-Ig&li=U70374499995OI",
                				"item": {
                				  "fstyle": "Justify",
                				  "vj": "font-stretch:105%;",
                				  "id": "U7037449999PNC",
                				  "hjStyle": "text-all",
                				  "format": "Clean",
                				  "sref": "U7037449999lIC",
                				  "type": "text"
                				}
                			  }
                			}
                		  ]
                		},
                		"layers": {
                		  "ld": [
                			{ "id": "kBpD" },
                			{
                			  "id": "PLX-UU20801800053SLF05D",
                			  "name": "Ads",
                			  "color": "#00FF00",
                			  "href": "/Globe/Print/Pages/News/2016-05-31/Ads/News-001-Ads.pgl?uuid=9292004a-264b-11e6-bede-e6371b73fe22"
                			}
                		  ],
                		  "layer": [
                			{
                			  "id": "UU20801800053SLFarC",
                			  "svg": {
                				"rect": [
                				  {
                					"vj": "line-spacing:'0.4000000059604644775390625';",
                					"y": "120.68",
                					"id": "U7037449999lIC",
                					"width": "192.74",
                					"height": "160",
                					"x": "575.26",
                					"iref": "U7037449999PNC"
                				  },
                				  {
                					"y": "120.69",
                					"id": "U7037449999QR",
                					"width": "612",
                					"sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;",
                					"height": "160",
                					"x": "0",
                					"iref": "U7037449999PrH"
                				  }
                				]
                			  },
                			  "yGuides": {
                				"snap": { "value": "135.93" }
                			  }
                			},
                			{ "id": "UU20801800053SLFIOI" }
                		  ]
                		},
                		"spreads": {
                		  "margin": "19.92",
                		  "spread": {
                			"page": {
                			  "layer": [
                				{ "lref": "UU20801800053SLFarC" },
                				{ "lref": "UU20801800053SLFIOI" }
                			  ]
                			}
                		  }
                		}
                	  }
                	}
                }
            ]
        }
	]
}' "http://restserver:8080/restapi-core/rest/containers/pagePlan"

Response

Content type

application/json

The created PagePlan, with reference of objects.

{
  "type": "PAGEPLAN",
  "source": "loid:199$1.0.717689642",
  "loid": "199$1.0.717689642",
  "uuid": "",
  "error": false,
  "errorMessages": [],
  "children": [
    {
      "type": "PRINTEDITION",
      "source": "loid:199$1.0.717689666",
      "loid": "199$1.0.717689666",
      "uuid": "",
      "error": false,
      "errorMessages": [],
      "children": [
        {
          "type": "PRINTPAGE",
          "source": "loid:199$1.0.717689690",
          "loid": "199$1.0.717689690",
          "uuid": "",
          "error": false,
          "errorMessages": [],
          "children": [],
          "virtualId": "RcejPTCxiIOuFWDfgelHYeM",
          "path": "/Globe/Print/Pages/News/2016-05-31",
          "name": "News-001",
          "printPage": {
            "pgl": {
              "channel": "Globe-Print",
              "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
              "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
              "stories": {
                "story": [
                  {
                    "id": "U7037449999Jj",
                    "name": "StoryA",
                    "content": {
                      "id": "U7037449999qNH",
                      "stand": "yes",
                      "loid": "1.0.8128592",
                      "href": "/Globe/Stories/News/StoryA-126.xml?uuid=lLsO6CZLEea-3uY3G3P-Ig&li=U7037449999qNH",
                      "item": {
                        "fstyle": "Justify",
                        "id": "U7037449999PrH",
                        "hjStyle": "text-all",
                        "format": "Clean text",
                        "sref": "U7037449999QR",
                        "type": "text"
                      }
                    }
                  },
                  {
                    "id": "U7037449999cx",
                    "name": "StoryB",
                    "content": {
                      "id": "U70374499995OI",
                      "stand": "yes",
                      "loid": "1.0.8128558",
                      "href": "/Globe/Stories/News/StoryA-125.xml?uuid=k9kVViZLEea-3uY3G3P-Ig&li=U70374499995OI",
                      "item": {
                        "fstyle": "Justify",
                        "vj": "font-stretch:105%;",
                        "id": "U7037449999PNC",
                        "hjStyle": "text-all",
                        "format": "Clean",
                        "sref": "U7037449999lIC",
                        "type": "text"
                      }
                    }
                  }
                ]
              },
              "layers": {
                "ld": [
                  {
                    "id": "kBpD"
                  },
                  {
                    "id": "PLX-UU20801800053SLF05D",
                    "name": "Ads",
                    "color": "#00FF00",
                    "href": "/Globe/Print/Pages/News/2016-05-31/Ads/News-001-Ads.pgl?uuid=9292004a-264b-11e6-bede-e6371b73fe22"
                  }
                ],
                "layer": [
                  {
                    "id": "UU20801800053SLFarC",
                    "svg": {
                      "rect": [
                        {
                          "vj": "line-spacing:'0.4000000059604644775390625';",
                          "y": "120.68",
                          "id": "U7037449999lIC",
                          "width": "192.74",
                          "height": "160",
                          "x": "575.26",
                          "iref": "U7037449999PNC"
                        },
                        {
                          "y": "120.69",
                          "id": "U7037449999QR",
                          "width": "612",
                          "height": "160",
                          "x": "0",
                          "iref": "U7037449999PrH",
                          "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                        }
                      ]
                    },
                    "yGuides": {
                      "snap": {
                        "value": "135.93"
                      }
                    }
                  },
                  {
                    "id": "UU20801800053SLFIOI"
                  }
                ]
              },
              "spreads": {
                "margin": "19.92",
                "spread": {
                  "page": {
                    "layer": [
                      {
                        "lref": "UU20801800053SLFarC"
                      },
                      {
                        "lref": "UU20801800053SLFIOI"
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      ],
      "virtualId": "RZcvRxo8K4aB6wq3IgtoUTI",
      "path": "/Globe/Print/Pages/News/2016-05-31",
      "name": "News-001",
      "printEdition": {
        "edition": {
          "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
          "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
          "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
          "name": "USA",
          "id": "U208018000534oF",
          "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
          "editionPath": "USA",
          "printsites": {
            "zone": [],
            "ps": [
              {
                "name": "Milan"
              },
              {
                "name": "Rome"
              },
              {
                "name": "London"
              },
              {
                "name": "Glasgow"
              }
            ]
          },
          "books": {
            "book": {
              "background-color": "#FF0000",
              "format": "tabloid",
              "name": "Book1",
              "id": "U20801800053rmG",
              "pnn": "0",
              "pages": {
                "page": [
                  {
                    "section": "News",
                    "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                    "template": "/SysConfig/Globe/Print/PrintProductFurniture/Tabloid Front.pgl",
                    "color": "cmyk",
                    "id": "U20801800053SLF",
                    "pn": "1",
                    "pgl": {
                      "channel": "Globe-Print",
                      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                      "stories": {
                        "story": [
                          {
                            "id": "U7037449999Jj",
                            "name": "StoryA",
                            "content": {
                              "id": "U7037449999qNH",
                              "stand": "yes",
                              "loid": "1.0.8128592",
                              "item": {
                                "fstyle": "Justify",
                                "id": "U7037449999PrH",
                                "hjStyle": "text-all",
                                "format": "Clean text",
                                "sref": "U7037449999QR",
                                "type": "text"
                              }
                            }
                          },
                          {
                            "id": "U7037449999cx",
                            "name": "StoryB",
                            "content": {
                              "id": "U70374499995OI",
                              "stand": "yes",
                              "loid": "1.0.8128558",
                              "item": {
                                "fstyle": "Justify",
                                "vj": "font-stretch:105%;",
                                "id": "U7037449999PNC",
                                "hjStyle": "text-all",
                                "format": "Clean",
                                "sref": "U7037449999lIC",
                                "type": "text"
                              }
                            }
                          }
                        ]
                      },
                      "layers": {
                        "ld": [
                          {
                            "id": "kBpD"
                          }
                        ],
                        "layer": [
                          {
                            "id": "UU20801800053SLFarC",
                            "svg": {
                              "rect": [
                                {
                                  "vj": "line-spacing:'0.4000000059604644775390625';",
                                  "y": "120.68",
                                  "id": "U7037449999lIC",
                                  "width": "192.74",
                                  "height": "160",
                                  "x": "575.26",
                                  "iref": "U7037449999PNC"
                                },
                                {
                                  "y": "120.69",
                                  "id": "U7037449999QR",
                                  "width": "612",
                                  "height": "160",
                                  "x": "0",
                                  "iref": "U7037449999PrH",
                                  "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                                }
                              ]
                            },
                            "yGuides": {
                              "snap": {
                                "value": "135.93"
                              }
                            }
                          }
                        ]
                      },
                      "spreads": {
                        "margin": "19.92",
                        "spread": {
                          "page": {
                            "layer": [
                              {
                                "lref": "UU20801800053SLFarC"
                              }
                            ]
                          }
                        }
                      }
                    },
                    "layer": []
                  },
                  {
                    "section": "Sport",
                    "color": "cmyk",
                    "id": "U20801800053mZ",
                    "pn": "2",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053EYC",
                    "pn": "3",
                    "inherit": "EUROPE?pp=1",
                    "layer": []
                  },
                  {
                    "section": "News",
                    "color": "cmyk",
                    "id": "U208018000530tH",
                    "pn": "4",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053fPG",
                    "pn": "5",
                    "inherit": "EUROPE?pp=5",
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053ZqH",
                    "pn": "6",
                    "inherit": "EUROPE?pp=3",
                    "layer": []
                  },
                  {
                    "section": "Sport",
                    "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe double.grd",
                    "color": "cmyk",
                    "id": "U20801800053Y8B",
                    "pn": "7",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "trucks": "2",
                    "layer": []
                  },
                  {
                    "section": "Politics",
                    "color": "cmyk",
                    "id": "U20801800053PMB",
                    "pn": "9",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053rHE",
                    "pn": "10",
                    "inherit": "EUROPE?pp=6",
                    "layer": []
                  },
                  {
                    "section": "Business",
                    "color": "cmyk",
                    "id": "U20801800053rNI",
                    "pn": "11",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Business",
                    "color": "cmyk",
                    "id": "U20801800053Q4H",
                    "pn": "12",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Foreign",
                    "color": "cmyk",
                    "id": "U2080180005387G",
                    "pn": "13",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Foreign",
                    "color": "cmyk",
                    "id": "U20801800053WS",
                    "pn": "14",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Art",
                    "color": "cmyk",
                    "id": "U20801800053HtH",
                    "pn": "15",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "News",
                    "color": "cmyk",
                    "id": "U20801800053hpB",
                    "pn": "16",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories_News.cfg",
                    "layer": []
                  }
                ]
              },
              "plates": {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "plate": [
                  {
                    "id": "U208018000537nG"
                  },
                  {
                    "id": "U20801800053GXD"
                  },
                  {
                    "id": "U20801800053sE"
                  },
                  {
                    "id": "U20801800053DPE"
                  },
                  {
                    "id": "U208018000530nH"
                  },
                  {
                    "id": "U20801800053eLH"
                  },
                  {
                    "id": "U20801800053TJB"
                  },
                  {
                    "id": "U20801800053v3E"
                  }
                ]
              }
            }
          }
        }
      }
    }
  ],
  "virtualId": "RN1eGzuoYZT0yn2DPLZ2NcK",
  "path": "/Globe/Print/Plannings/2016-05-31",
  "name": "Globe-20160531",
  "pagePlan": {
    "product": {
      "zoom": "0.18",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
      "channel": "Globe-Print",
      "printsites": {
        "zone": [
          {
            "name": "Italy",
            "ps": [
              {
                "name": "Milan"
              },
              {
                "name": "Rome"
              }
            ]
          },
          {
            "name": "UK",
            "ps": [
              {
                "name": "London"
              },
              {
                "name": "Glasgow"
              }
            ]
          },
          {
            "name": "USA",
            "ps": [
              {
                "name": "New York"
              }
            ]
          },
          {
            "name": "ASIA",
            "ps": [
              {
                "name": "Hong Kong"
              }
            ]
          }
        ],
        "ps": []
      },
      "editions": {
        "edition": [
          {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
            "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
            "name": "EUROPE",
            "id": "U20801800053K7E",
            "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
            "editionPath": "EUROPE",
            "edition": [
              {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
                "name": "Print Site B",
                "id": "U20801800053m4E",
                "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
                "editionPath": "EUROPE/Print Site B-01",
                "star": "01",
                "edition": []
              },
              {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
                "name": "Print Site B",
                "id": "U20801800053m4E",
                "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
                "editionPath": "EUROPE/Print Site B-01",
                "star": "01",
                "edition": []
              }
            ]
          },
          {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
            "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
            "name": "USA",
            "id": "U208018000534oF",
            "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
            "editionPath": "USA",
            "edition": []
          }
        ]
      }
    }
  }
}

/containers/pagePlan PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 27. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

source

String

No

-

Request

The new PagePlan structure. Note that the source field of PagePlan is mandatory (means that PagePlan must exists in order to update it)

{
  "type": "PAGEPLAN",
  "source": "loid:199$1.0.717689765",
  "loid": "199$1.0.717689765",
  "uuid": "",
  "error": false,
  "errorMessages": [],
  "children": [
    {
      "type": "PRINTEDITION",
      "source": "loid:199$1.0.717689782",
      "loid": "199$1.0.717689782",
      "uuid": "",
      "error": false,
      "errorMessages": [],
      "children": [
        {
          "type": "PRINTPAGE",
          "source": "loid:199$1.0.717689806",
          "loid": "199$1.0.717689806",
          "uuid": "",
          "error": false,
          "errorMessages": [],
          "children": [],
          "virtualId": "RACAg2ZzYxBT5FqD025hmDP",
          "path": "/Globe/Print/Pages/News/2016-05-31",
          "name": "News-001",
          "printPage": {
            "pgl": {
              "channel": "Globe-Print",
              "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
              "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
              "stories": {
                "story": [
                  {
                    "id": "U7037449999Jj",
                    "name": "StoryA",
                    "content": {
                      "id": "U7037449999qNH",
                      "stand": "yes",
                      "loid": "1.0.8128592",
                      "href": "/Globe/Stories/News/StoryA-126.xml?uuid=lLsO6CZLEea-3uY3G3P-Ig&li=U7037449999qNH",
                      "item": {
                        "fstyle": "Justify",
                        "id": "U7037449999PrH",
                        "hjStyle": "text-all",
                        "format": "Clean text",
                        "sref": "U7037449999QR",
                        "type": "text"
                      }
                    }
                  },
                  {
                    "id": "U7037449999cx",
                    "name": "StoryB",
                    "content": {
                      "id": "U70374499995OI",
                      "stand": "yes",
                      "loid": "1.0.8128558",
                      "href": "/Globe/Stories/News/StoryA-125.xml?uuid=k9kVViZLEea-3uY3G3P-Ig&li=U70374499995OI",
                      "item": {
                        "fstyle": "Justify",
                        "vj": "font-stretch:105%;",
                        "id": "U7037449999PNC",
                        "hjStyle": "text-all",
                        "format": "Clean",
                        "sref": "U7037449999lIC",
                        "type": "text"
                      }
                    }
                  }
                ]
              },
              "layers": {
                "ld": [
                  {
                    "id": "kBpD"
                  },
                  {
                    "id": "PLX-UU20801800053SLF05D",
                    "name": "Ads",
                    "color": "#00FF00",
                    "href": "/Globe/Print/Pages/News/2016-05-31/Ads/News-001-Ads.pgl?uuid=9292004a-264b-11e6-bede-e6371b73fe22"
                  }
                ],
                "layer": [
                  {
                    "id": "UU20801800053SLFarC",
                    "svg": {
                      "rect": [
                        {
                          "vj": "line-spacing:'0.4000000059604644775390625';",
                          "y": "120.68",
                          "id": "U7037449999lIC",
                          "width": "192.74",
                          "height": "160",
                          "x": "575.26",
                          "iref": "U7037449999PNC"
                        },
                        {
                          "y": "120.69",
                          "id": "U7037449999QR",
                          "width": "612",
                          "height": "160",
                          "x": "0",
                          "iref": "U7037449999PrH",
                          "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                        }
                      ]
                    },
                    "yGuides": {
                      "snap": {
                        "value": "135.93"
                      }
                    }
                  },
                  {
                    "id": "UU20801800053SLFIOI"
                  }
                ]
              },
              "spreads": {
                "margin": "19.92",
                "spread": {
                  "page": {
                    "layer": [
                      {
                        "lref": "UU20801800053SLFarC"
                      },
                      {
                        "lref": "UU20801800053SLFIOI"
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      ],
      "virtualId": "RDxsMhdyQPRL1FbhxiFUCMN",
      "path": "/Globe/Print/Pages/News/2016-05-31",
      "name": "News-001",
      "printEdition": {
        "edition": {
          "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
          "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
          "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
          "name": "USA",
          "id": "U208018000534oF",
          "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
          "editionPath": "USA",
          "printsites": {
            "zone": [],
            "ps": [
              {
                "name": "Milan"
              },
              {
                "name": "Rome"
              },
              {
                "name": "London"
              },
              {
                "name": "Glasgow"
              }
            ]
          },
          "books": {
            "book": {
              "background-color": "#FF0000",
              "format": "tabloid",
              "name": "Book1",
              "id": "U20801800053rmG",
              "pnn": "0",
              "pages": {
                "page": [
                  {
                    "section": "News",
                    "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                    "template": "/SysConfig/Globe/Print/PrintProductFurniture/Tabloid Front.pgl",
                    "color": "cmyk",
                    "id": "U20801800053SLF",
                    "pn": "1",
                    "pgl": {
                      "channel": "Globe-Print",
                      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                      "stories": {
                        "story": [
                          {
                            "id": "U7037449999Jj",
                            "name": "StoryA",
                            "content": {
                              "id": "U7037449999qNH",
                              "stand": "yes",
                              "loid": "1.0.8128592",
                              "item": {
                                "fstyle": "Justify",
                                "id": "U7037449999PrH",
                                "hjStyle": "text-all",
                                "format": "Clean text",
                                "sref": "U7037449999QR",
                                "type": "text"
                              }
                            }
                          },
                          {
                            "id": "U7037449999cx",
                            "name": "StoryB",
                            "content": {
                              "id": "U70374499995OI",
                              "stand": "yes",
                              "loid": "1.0.8128558",
                              "item": {
                                "fstyle": "Justify",
                                "vj": "font-stretch:105%;",
                                "id": "U7037449999PNC",
                                "hjStyle": "text-all",
                                "format": "Clean",
                                "sref": "U7037449999lIC",
                                "type": "text"
                              }
                            }
                          }
                        ]
                      },
                      "layers": {
                        "ld": [
                          {
                            "id": "kBpD"
                          }
                        ],
                        "layer": [
                          {
                            "id": "UU20801800053SLFarC",
                            "svg": {
                              "rect": [
                                {
                                  "vj": "line-spacing:'0.4000000059604644775390625';",
                                  "y": "120.68",
                                  "id": "U7037449999lIC",
                                  "width": "192.74",
                                  "height": "160",
                                  "x": "575.26",
                                  "iref": "U7037449999PNC"
                                },
                                {
                                  "y": "120.69",
                                  "id": "U7037449999QR",
                                  "width": "612",
                                  "height": "160",
                                  "x": "0",
                                  "iref": "U7037449999PrH",
                                  "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                                }
                              ]
                            },
                            "yGuides": {
                              "snap": {
                                "value": "135.93"
                              }
                            }
                          }
                        ]
                      },
                      "spreads": {
                        "margin": "19.92",
                        "spread": {
                          "page": {
                            "layer": [
                              {
                                "lref": "UU20801800053SLFarC"
                              }
                            ]
                          }
                        }
                      }
                    },
                    "layer": []
                  },
                  {
                    "section": "Sport",
                    "color": "cmyk",
                    "id": "U20801800053mZ",
                    "pn": "2",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053EYC",
                    "pn": "3",
                    "inherit": "EUROPE?pp=1",
                    "layer": []
                  },
                  {
                    "section": "News",
                    "color": "cmyk",
                    "id": "U208018000530tH",
                    "pn": "4",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053fPG",
                    "pn": "5",
                    "inherit": "EUROPE?pp=5",
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053ZqH",
                    "pn": "6",
                    "inherit": "EUROPE?pp=3",
                    "layer": []
                  },
                  {
                    "section": "Sport",
                    "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe double.grd",
                    "color": "cmyk",
                    "id": "U20801800053Y8B",
                    "pn": "7",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "trucks": "2",
                    "layer": []
                  },
                  {
                    "section": "Politics",
                    "color": "cmyk",
                    "id": "U20801800053PMB",
                    "pn": "9",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053rHE",
                    "pn": "10",
                    "inherit": "EUROPE?pp=6",
                    "layer": []
                  },
                  {
                    "section": "Business",
                    "color": "cmyk",
                    "id": "U20801800053rNI",
                    "pn": "11",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Business",
                    "color": "cmyk",
                    "id": "U20801800053Q4H",
                    "pn": "12",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Foreign",
                    "color": "cmyk",
                    "id": "U2080180005387G",
                    "pn": "13",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Foreign",
                    "color": "cmyk",
                    "id": "U20801800053WS",
                    "pn": "14",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Art",
                    "color": "cmyk",
                    "id": "U20801800053HtH",
                    "pn": "15",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "News",
                    "color": "cmyk",
                    "id": "U20801800053hpB",
                    "pn": "16",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories_News.cfg",
                    "layer": []
                  }
                ]
              },
              "plates": {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "plate": [
                  {
                    "id": "U208018000537nG"
                  },
                  {
                    "id": "U20801800053GXD"
                  },
                  {
                    "id": "U20801800053sE"
                  },
                  {
                    "id": "U20801800053DPE"
                  },
                  {
                    "id": "U208018000530nH"
                  },
                  {
                    "id": "U20801800053eLH"
                  },
                  {
                    "id": "U20801800053TJB"
                  },
                  {
                    "id": "U20801800053v3E"
                  }
                ]
              }
            }
          }
        }
      }
    }
  ],
  "virtualId": "Rg8vjAISwRDLKsSRHwM2WxN",
  "path": "/Globe/Print/Plannings/2016-05-31",
  "name": "Globe-20160531",
  "pagePlan": {
    "product": {
      "zoom": "0.20",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
      "channel": "Globe-Print",
      "printsites": {
        "zone": [
          {
            "name": "Italy",
            "ps": [
              {
                "name": "Milan"
              },
              {
                "name": "Rome"
              }
            ]
          },
          {
            "name": "UK",
            "ps": [
              {
                "name": "London"
              },
              {
                "name": "Glasgow"
              }
            ]
          },
          {
            "name": "USA",
            "ps": [
              {
                "name": "New York"
              }
            ]
          },
          {
            "name": "ASIA",
            "ps": [
              {
                "name": "Hong Kong"
              }
            ]
          }
        ],
        "ps": []
      },
      "editions": {
        "edition": [
          {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
            "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
            "name": "EUROPE",
            "id": "U20801800053K7E",
            "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
            "editionPath": "EUROPE",
            "edition": [
              {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
                "name": "Print Site B",
                "id": "U20801800053m4E",
                "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
                "editionPath": "EUROPE/Print Site B-01",
                "star": "01",
                "edition": []
              },
              {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
                "name": "Print Site B",
                "id": "U20801800053m4E",
                "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
                "editionPath": "EUROPE/Print Site B-01",
                "star": "01",
                "edition": []
              }
            ]
          },
          {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
            "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
            "name": "USA",
            "id": "U208018000534oF",
            "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
            "editionPath": "USA",
            "edition": []
          }
        ]
      }
    }
  }
}

Response

Content type

application/json

The updated object.

{
  "type": "PAGEPLAN",
  "source": "loid:199$1.0.717689765",
  "loid": "199$1.0.717689765",
  "uuid": "",
  "error": false,
  "errorMessages": [],
  "children": [
    {
      "type": "PRINTEDITION",
      "source": "loid:199$1.0.717689782",
      "loid": "199$1.0.717689782",
      "uuid": "",
      "error": false,
      "errorMessages": [],
      "children": [
        {
          "type": "PRINTPAGE",
          "source": "loid:199$1.0.717689806",
          "loid": "199$1.0.717689806",
          "uuid": "dc11677a-2d7a-11e6-a429-7a5bfc1aa274",
          "error": false,
          "errorMessages": [],
          "children": [],
          "virtualId": "RACAg2ZzYxBT5FqD025hmDP",
          "path": "/Globe/Print/Pages/News/2016-05-31",
          "name": "News-001",
          "printPage": {
            "pgl": {
              "channel": "Globe-Print",
              "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
              "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
              "stories": {
                "story": [
                  {
                    "id": "U7037449999Jj",
                    "name": "StoryA",
                    "content": {
                      "id": "U7037449999qNH",
                      "stand": "yes",
                      "loid": "1.0.8128592",
                      "href": "/Globe/Stories/News/StoryA-126.xml?uuid=lLsO6CZLEea-3uY3G3P-Ig&li=U7037449999qNH",
                      "item": {
                        "fstyle": "Justify",
                        "id": "U7037449999PrH",
                        "hjStyle": "text-all",
                        "format": "Clean text",
                        "sref": "U7037449999QR",
                        "type": "text"
                      }
                    }
                  },
                  {
                    "id": "U7037449999cx",
                    "name": "StoryB",
                    "content": {
                      "id": "U70374499995OI",
                      "stand": "yes",
                      "loid": "1.0.8128558",
                      "href": "/Globe/Stories/News/StoryA-125.xml?uuid=k9kVViZLEea-3uY3G3P-Ig&li=U70374499995OI",
                      "item": {
                        "fstyle": "Justify",
                        "vj": "font-stretch:105%;",
                        "id": "U7037449999PNC",
                        "hjStyle": "text-all",
                        "format": "Clean",
                        "sref": "U7037449999lIC",
                        "type": "text"
                      }
                    }
                  }
                ]
              },
              "layers": {
                "ld": [
                  {
                    "id": "kBpD"
                  },
                  {
                    "id": "PLX-UU20801800053SLF05D",
                    "name": "Ads",
                    "color": "#00FF00",
                    "href": "/Globe/Print/Pages/News/2016-05-31/Ads/News-001-Ads.pgl?uuid=9292004a-264b-11e6-bede-e6371b73fe22"
                  }
                ],
                "layer": [
                  {
                    "id": "UU20801800053SLFarC",
                    "svg": {
                      "rect": [
                        {
                          "vj": "line-spacing:'0.4000000059604644775390625';",
                          "y": "120.68",
                          "id": "U7037449999lIC",
                          "width": "192.74",
                          "height": "160",
                          "x": "575.26",
                          "iref": "U7037449999PNC"
                        },
                        {
                          "y": "120.69",
                          "id": "U7037449999QR",
                          "width": "612",
                          "height": "160",
                          "x": "0",
                          "iref": "U7037449999PrH",
                          "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                        }
                      ]
                    },
                    "yGuides": {
                      "snap": {
                        "value": "135.93"
                      }
                    }
                  },
                  {
                    "id": "UU20801800053SLFIOI"
                  }
                ]
              },
              "spreads": {
                "margin": "19.92",
                "spread": {
                  "page": {
                    "layer": [
                      {
                        "lref": "UU20801800053SLFarC"
                      },
                      {
                        "lref": "UU20801800053SLFIOI"
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      ],
      "virtualId": "REAhAEMxjOqwusyyInrdMLL",
      "path": "/Globe/Print/Pages/News/2016-05-31",
      "name": "News-001",
      "printEdition": {
        "edition": {
          "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
          "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
          "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
          "name": "USA",
          "id": "U208018000534oF",
          "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
          "editionPath": "USA",
          "printsites": {
            "zone": [],
            "ps": [
              {
                "name": "Milan"
              },
              {
                "name": "Rome"
              },
              {
                "name": "London"
              },
              {
                "name": "Glasgow"
              }
            ]
          },
          "books": {
            "book": {
              "background-color": "#FF0000",
              "format": "tabloid",
              "name": "Book1",
              "id": "U20801800053rmG",
              "pnn": "0",
              "pages": {
                "page": [
                  {
                    "section": "News",
                    "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                    "template": "/SysConfig/Globe/Print/PrintProductFurniture/Tabloid Front.pgl",
                    "color": "cmyk",
                    "id": "U20801800053SLF",
                    "pn": "1",
                    "pgl": {
                      "channel": "Globe-Print",
                      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                      "stories": {
                        "story": [
                          {
                            "id": "U7037449999Jj",
                            "name": "StoryA",
                            "content": {
                              "id": "U7037449999qNH",
                              "stand": "yes",
                              "loid": "1.0.8128592",
                              "item": {
                                "fstyle": "Justify",
                                "id": "U7037449999PrH",
                                "hjStyle": "text-all",
                                "format": "Clean text",
                                "sref": "U7037449999QR",
                                "type": "text"
                              }
                            }
                          },
                          {
                            "id": "U7037449999cx",
                            "name": "StoryB",
                            "content": {
                              "id": "U70374499995OI",
                              "stand": "yes",
                              "loid": "1.0.8128558",
                              "item": {
                                "fstyle": "Justify",
                                "vj": "font-stretch:105%;",
                                "id": "U7037449999PNC",
                                "hjStyle": "text-all",
                                "format": "Clean",
                                "sref": "U7037449999lIC",
                                "type": "text"
                              }
                            }
                          }
                        ]
                      },
                      "layers": {
                        "ld": [
                          {
                            "id": "kBpD"
                          }
                        ],
                        "layer": [
                          {
                            "id": "UU20801800053SLFarC",
                            "svg": {
                              "rect": [
                                {
                                  "vj": "line-spacing:'0.4000000059604644775390625';",
                                  "y": "120.68",
                                  "id": "U7037449999lIC",
                                  "width": "192.74",
                                  "height": "160",
                                  "x": "575.26",
                                  "iref": "U7037449999PNC"
                                },
                                {
                                  "y": "120.69",
                                  "id": "U7037449999QR",
                                  "width": "612",
                                  "height": "160",
                                  "x": "0",
                                  "iref": "U7037449999PrH",
                                  "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                                }
                              ]
                            },
                            "yGuides": {
                              "snap": {
                                "value": "135.93"
                              }
                            }
                          }
                        ]
                      },
                      "spreads": {
                        "margin": "19.92",
                        "spread": {
                          "page": {
                            "layer": [
                              {
                                "lref": "UU20801800053SLFarC"
                              }
                            ]
                          }
                        }
                      }
                    },
                    "layer": []
                  },
                  {
                    "section": "Sport",
                    "color": "cmyk",
                    "id": "U20801800053mZ",
                    "pn": "2",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053EYC",
                    "pn": "3",
                    "inherit": "EUROPE?pp=1",
                    "layer": []
                  },
                  {
                    "section": "News",
                    "color": "cmyk",
                    "id": "U208018000530tH",
                    "pn": "4",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053fPG",
                    "pn": "5",
                    "inherit": "EUROPE?pp=5",
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053ZqH",
                    "pn": "6",
                    "inherit": "EUROPE?pp=3",
                    "layer": []
                  },
                  {
                    "section": "Sport",
                    "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe double.grd",
                    "color": "cmyk",
                    "id": "U20801800053Y8B",
                    "pn": "7",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "trucks": "2",
                    "layer": []
                  },
                  {
                    "section": "Politics",
                    "color": "cmyk",
                    "id": "U20801800053PMB",
                    "pn": "9",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053rHE",
                    "pn": "10",
                    "inherit": "EUROPE?pp=6",
                    "layer": []
                  },
                  {
                    "section": "Business",
                    "color": "cmyk",
                    "id": "U20801800053rNI",
                    "pn": "11",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Business",
                    "color": "cmyk",
                    "id": "U20801800053Q4H",
                    "pn": "12",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Foreign",
                    "color": "cmyk",
                    "id": "U2080180005387G",
                    "pn": "13",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Foreign",
                    "color": "cmyk",
                    "id": "U20801800053WS",
                    "pn": "14",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Art",
                    "color": "cmyk",
                    "id": "U20801800053HtH",
                    "pn": "15",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "News",
                    "color": "cmyk",
                    "id": "U20801800053hpB",
                    "pn": "16",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories_News.cfg",
                    "layer": []
                  }
                ]
              },
              "plates": {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "plate": [
                  {
                    "id": "U208018000537nG"
                  },
                  {
                    "id": "U20801800053GXD"
                  },
                  {
                    "id": "U20801800053sE"
                  },
                  {
                    "id": "U20801800053DPE"
                  },
                  {
                    "id": "U208018000530nH"
                  },
                  {
                    "id": "U20801800053eLH"
                  },
                  {
                    "id": "U20801800053TJB"
                  },
                  {
                    "id": "U20801800053v3E"
                  }
                ]
              }
            }
          }
        }
      }
    }
  ],
  "virtualId": "RTVdpzemhyfWR5U1o9KxVEO",
  "path": "/Globe/Print/Plannings/2016-05-31",
  "name": "Globe-20160531",
  "pagePlan": {
    "product": {
      "zoom": "0.20",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
      "channel": "Globe-Print",
      "printsites": {
        "zone": [
          {
            "name": "Italy",
            "ps": [
              {
                "name": "Milan"
              },
              {
                "name": "Rome"
              }
            ]
          },
          {
            "name": "UK",
            "ps": [
              {
                "name": "London"
              },
              {
                "name": "Glasgow"
              }
            ]
          },
          {
            "name": "USA",
            "ps": [
              {
                "name": "New York"
              }
            ]
          },
          {
            "name": "ASIA",
            "ps": [
              {
                "name": "Hong Kong"
              }
            ]
          }
        ],
        "ps": []
      },
      "editions": {
        "edition": [
          {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
            "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
            "name": "EUROPE",
            "id": "U20801800053K7E",
            "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
            "editionPath": "EUROPE",
            "edition": [
              {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
                "name": "Print Site B",
                "id": "U20801800053m4E",
                "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
                "editionPath": "EUROPE/Print Site B-01",
                "star": "01",
                "edition": []
              },
              {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
                "name": "Print Site B",
                "id": "U20801800053m4E",
                "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
                "editionPath": "EUROPE/Print Site B-01",
                "star": "01",
                "edition": []
              }
            ]
          },
          {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
            "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
            "name": "USA",
            "id": "U208018000534oF",
            "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
            "editionPath": "USA",
            "edition": []
          }
        ]
      }
    }
  }
}

/containers/pagePlan/{source} DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 28. Parameters:
Parameter Required Default Description sessionId String

Path parameters

Parameter Required Default Description

source String

No

-

Request

curl -X DELETE -H "Cache-Control: no-cache" "http://restserver:8080/restapi-core/rest/containers/pagePlan/loid:199$1.0.717689642"

Response

Content type

application/json

{
  "type": "PAGEPLAN",
  "source": "loid:199$1.0.717689642",
  "loid": "199$1.0.717689642",
  "uuid": "2192e5d2-2d79-11e6-a429-7a5bfc1aa274",
  "error": false,
  "errorMessages": [],
  "children": [
    {
      "type": "PRINTEDITION",
      "source": "loid:199$1.0.717689666",
      "loid": "199$1.0.717689666",
      "uuid": "21d6a448-2d79-11e6-a429-7a5bfc1aa274",
      "error": false,
      "errorMessages": [],
      "children": [],
      "printEdition": {
        "edition": {
          "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
          "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
          "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
          "name": "USA",
          "id": "U208018000534oF",
          "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
          "editionPath": "USA",
          "printsites": {
            "zone": [],
            "ps": [
              {
                "name": "Milan"
              },
              {
                "name": "Rome"
              },
              {
                "name": "London"
              },
              {
                "name": "Glasgow"
              }
            ]
          },
          "books": {
            "book": {
              "background-color": "#FF0000",
              "format": "tabloid",
              "name": "Book1",
              "id": "U20801800053rmG",
              "pnn": "0",
              "pages": {
                "page": [
                  {
                    "section": "News",
                    "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                    "template": "/SysConfig/Globe/Print/PrintProductFurniture/Tabloid Front.pgl",
                    "color": "cmyk",
                    "id": "U20801800053SLF",
                    "pn": "1",
                    "pgl": {
                      "channel": "Globe-Print",
                      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                      "stories": {
                        "story": [
                          {
                            "id": "U7037449999Jj",
                            "name": "StoryA",
                            "content": {
                              "id": "U7037449999qNH",
                              "stand": "yes",
                              "loid": "1.0.8128592",
                              "item": {
                                "fstyle": "Justify",
                                "id": "U7037449999PrH",
                                "hjStyle": "text-all",
                                "format": "Clean text",
                                "sref": "U7037449999QR",
                                "type": "text"
                              }
                            }
                          },
                          {
                            "id": "U7037449999cx",
                            "name": "StoryB",
                            "content": {
                              "id": "U70374499995OI",
                              "stand": "yes",
                              "loid": "1.0.8128558",
                              "item": {
                                "fstyle": "Justify",
                                "vj": "font-stretch:105%;",
                                "id": "U7037449999PNC",
                                "hjStyle": "text-all",
                                "format": "Clean",
                                "sref": "U7037449999lIC",
                                "type": "text"
                              }
                            }
                          }
                        ]
                      },
                      "layers": {
                        "ld": [
                          {
                            "id": "kBpD"
                          }
                        ],
                        "layer": [
                          {
                            "id": "UU20801800053SLFarC",
                            "svg": {
                              "rect": [
                                {
                                  "vj": "line-spacing:'0.4000000059604644775390625';",
                                  "y": "120.68",
                                  "id": "U7037449999lIC",
                                  "width": "192.74",
                                  "height": "160",
                                  "x": "575.26",
                                  "iref": "U7037449999PNC"
                                },
                                {
                                  "y": "120.69",
                                  "id": "U7037449999QR",
                                  "width": "612",
                                  "height": "160",
                                  "x": "0",
                                  "iref": "U7037449999PrH",
                                  "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                                }
                              ]
                            },
                            "yGuides": {
                              "snap": {
                                "value": "135.93"
                              }
                            }
                          }
                        ]
                      },
                      "spreads": {
                        "margin": "19.92",
                        "spread": {
                          "page": {
                            "layer": [
                              {
                                "lref": "UU20801800053SLFarC"
                              }
                            ]
                          }
                        }
                      }
                    },
                    "layer": []
                  },
                  {
                    "section": "Sport",
                    "color": "cmyk",
                    "id": "U20801800053mZ",
                    "pn": "2",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053EYC",
                    "pn": "3",
                    "inherit": "EUROPE?pp=1",
                    "layer": []
                  },
                  {
                    "section": "News",
                    "color": "cmyk",
                    "id": "U208018000530tH",
                    "pn": "4",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053fPG",
                    "pn": "5",
                    "inherit": "EUROPE?pp=5",
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053ZqH",
                    "pn": "6",
                    "inherit": "EUROPE?pp=3",
                    "layer": []
                  },
                  {
                    "section": "Sport",
                    "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe double.grd",
                    "color": "cmyk",
                    "id": "U20801800053Y8B",
                    "pn": "7",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "trucks": "2",
                    "layer": []
                  },
                  {
                    "section": "Politics",
                    "color": "cmyk",
                    "id": "U20801800053PMB",
                    "pn": "9",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053rHE",
                    "pn": "10",
                    "inherit": "EUROPE?pp=6",
                    "layer": []
                  },
                  {
                    "section": "Business",
                    "color": "cmyk",
                    "id": "U20801800053rNI",
                    "pn": "11",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Business",
                    "color": "cmyk",
                    "id": "U20801800053Q4H",
                    "pn": "12",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Foreign",
                    "color": "cmyk",
                    "id": "U2080180005387G",
                    "pn": "13",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Foreign",
                    "color": "cmyk",
                    "id": "U20801800053WS",
                    "pn": "14",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Art",
                    "color": "cmyk",
                    "id": "U20801800053HtH",
                    "pn": "15",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "News",
                    "color": "cmyk",
                    "id": "U20801800053hpB",
                    "pn": "16",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories_News.cfg",
                    "layer": []
                  }
                ]
              },
              "plates": {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "plate": [
                  {
                    "id": "U208018000537nG"
                  },
                  {
                    "id": "U20801800053GXD"
                  },
                  {
                    "id": "U20801800053sE"
                  },
                  {
                    "id": "U20801800053DPE"
                  },
                  {
                    "id": "U208018000530nH"
                  },
                  {
                    "id": "U20801800053eLH"
                  },
                  {
                    "id": "U20801800053TJB"
                  },
                  {
                    "id": "U20801800053v3E"
                  }
                ]
              }
            }
          }
        }
      }
    }
  ],
  "pagePlan": {
    "product": {
      "zoom": "0.18",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
      "channel": "Globe-Print",
      "printsites": {
        "zone": [
          {
            "name": "Italy",
            "ps": [
              {
                "name": "Milan"
              },
              {
                "name": "Rome"
              }
            ]
          },
          {
            "name": "UK",
            "ps": [
              {
                "name": "London"
              },
              {
                "name": "Glasgow"
              }
            ]
          },
          {
            "name": "USA",
            "ps": [
              {
                "name": "New York"
              }
            ]
          },
          {
            "name": "ASIA",
            "ps": [
              {
                "name": "Hong Kong"
              }
            ]
          }
        ],
        "ps": []
      },
      "editions": {
        "edition": [
          {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
            "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
            "name": "EUROPE",
            "id": "U20801800053K7E",
            "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
            "editionPath": "EUROPE",
            "edition": [
              {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
                "name": "Print Site B",
                "id": "U20801800053m4E",
                "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
                "editionPath": "EUROPE/Print Site B-01",
                "star": "01",
                "edition": []
              },
              {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
                "name": "Print Site B",
                "id": "U20801800053m4E",
                "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
                "editionPath": "EUROPE/Print Site B-01",
                "star": "01",
                "edition": []
              }
            ]
          },
          {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
            "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
            "name": "USA",
            "id": "U208018000534oF",
            "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
            "editionPath": "USA",
            "edition": []
          }
        ]
      }
    }
  }
}

/containers/pagePlan/page DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 29. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

source

String

No

-

Form parameters

EidosMedia Rest Application Server 30. Parameters:
Parameter Type Required Default Description

deleteFromAllParents

boolean

No

false

-

loidParentsInvolvedIntoDelete

List

No

-

Request

curl -X DELETE -H "Cache-Control: no-cache" "http://restserver:8080/restapi-core/rest/containers/pagePlan?source=loid:199$1.0.717747638"

Response

Content type

application/json

{
  "type": "PRINTPAGE",
  "source": "loid:199$1.0.717747638",
  "loid": "199$1.0.717747638",
  "uuid": "765614ae-2d7e-11e6-a429-7a5bfc1aa274",
  "error": false,
  "errorMessages": [],
  "children": [],
  "printPage": {
    "pgl": {
      "channel": "Globe-Print",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "stories": {
        "story": [
          {
            "id": "U7037449999Jj",
            "name": "StoryA",
            "content": {
              "id": "U7037449999qNH",
              "stand": "yes",
              "loid": "1.0.8128592",
              "href": "/Globe/Stories/News/StoryA-126.xml?uuid=lLsO6CZLEea-3uY3G3P-Ig&li=U7037449999qNH",
              "item": {
                "fstyle": "Justify",
                "id": "U7037449999PrH",
                "hjStyle": "text-all",
                "format": "Clean text",
                "sref": "U7037449999QR",
                "type": "text"
              }
            }
          },
          {
            "id": "U7037449999cx",
            "name": "StoryB",
            "content": {
              "id": "U70374499995OI",
              "stand": "yes",
              "loid": "1.0.8128558",
              "href": "/Globe/Stories/News/StoryA-125.xml?uuid=k9kVViZLEea-3uY3G3P-Ig&li=U70374499995OI",
              "item": {
                "fstyle": "Justify",
                "vj": "font-stretch:105%;",
                "id": "U7037449999PNC",
                "hjStyle": "text-all",
                "format": "Clean",
                "sref": "U7037449999lIC",
                "type": "text"
              }
            }
          }
        ]
      },
      "layers": {
        "ld": [
          {
            "id": "kBpD"
          },
          {
            "id": "PLX-UU20801800053SLF05D",
            "name": "Ads",
            "color": "#00FF00",
            "href": "/Globe/Print/Pages/News/2016-05-31/Ads/News-001-Ads.pgl?uuid=9292004a-264b-11e6-bede-e6371b73fe22"
          }
        ],
        "layer": [
          {
            "id": "UU20801800053SLFarC",
            "svg": {
              "rect": [
                {
                  "vj": "line-spacing:'0.4000000059604644775390625';",
                  "y": "120.68",
                  "id": "U7037449999lIC",
                  "width": "192.74",
                  "height": "160",
                  "x": "575.26",
                  "iref": "U7037449999PNC"
                },
                {
                  "y": "120.69",
                  "id": "U7037449999QR",
                  "width": "612",
                  "height": "160",
                  "x": "0",
                  "iref": "U7037449999PrH",
                  "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                }
              ]
            },
            "yGuides": {
              "snap": {
                "value": "135.93"
              }
            }
          },
          {
            "id": "UU20801800053SLFIOI"
          }
        ]
      },
      "spreads": {
        "margin": "19.92",
        "spread": {
          "page": {
            "layer": [
              {
                "lref": "UU20801800053SLFarC"
              },
              {
                "lref": "UU20801800053SLFIOI"
              }
            ]
          }
        }
      }
    }
  }
}

/containers/pagePlan/page GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 31. Parameters:
Parameter Type Required Default Description

depth

int

No

-1

-

excludeList

List

No

-

filter

DefaultFiltersEnum

No

NONE

-

limit

int

No

-1

-

offset

int

No

-1

-

sessionId

String

No

-

showObjectInfo

boolean

No

false

-

source

String

No

-

Request

Read a TopicPlan.

curl -X GET -H "Cache-Control: no-cache" "http://restserver:8080/restapi-core/rest/containers/pagePlan/page?source=loid:199$1.0.717747638"

Response

Content type

application/json

This call returns a Page.

{
  "type": "PRINTPAGE",
  "source": "loid:199$1.0.717747638",
  "loid": "199$1.0.717747638",
  "uuid": "765614ae-2d7e-11e6-a429-7a5bfc1aa274",
  "error": false,
  "errorMessages": [],
  "children": [],
  "printPage": {
    "pgl": {
      "channel": "Globe-Print",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "stories": {
        "story": [
          {
            "id": "U7037449999Jj",
            "name": "StoryA",
            "content": {
              "id": "U7037449999qNH",
              "stand": "yes",
              "loid": "1.0.8128592",
              "href": "/Globe/Stories/News/StoryA-126.xml?uuid=lLsO6CZLEea-3uY3G3P-Ig&li=U7037449999qNH",
              "item": {
                "fstyle": "Justify",
                "id": "U7037449999PrH",
                "hjStyle": "text-all",
                "format": "Clean text",
                "sref": "U7037449999QR",
                "type": "text"
              }
            }
          },
          {
            "id": "U7037449999cx",
            "name": "StoryB",
            "content": {
              "id": "U70374499995OI",
              "stand": "yes",
              "loid": "1.0.8128558",
              "href": "/Globe/Stories/News/StoryA-125.xml?uuid=k9kVViZLEea-3uY3G3P-Ig&li=U70374499995OI",
              "item": {
                "fstyle": "Justify",
                "vj": "font-stretch:105%;",
                "id": "U7037449999PNC",
                "hjStyle": "text-all",
                "format": "Clean",
                "sref": "U7037449999lIC",
                "type": "text"
              }
            }
          }
        ]
      },
      "layers": {
        "ld": [
          {
            "id": "kBpD"
          },
          {
            "id": "PLX-UU20801800053SLF05D",
            "name": "Ads",
            "color": "#00FF00",
            "href": "/Globe/Print/Pages/News/2016-05-31/Ads/News-001-Ads.pgl?uuid=9292004a-264b-11e6-bede-e6371b73fe22"
          }
        ],
        "layer": [
          {
            "id": "UU20801800053SLFarC",
            "svg": {
              "rect": [
                {
                  "vj": "line-spacing:'0.4000000059604644775390625';",
                  "y": "120.68",
                  "id": "U7037449999lIC",
                  "width": "192.74",
                  "height": "160",
                  "x": "575.26",
                  "iref": "U7037449999PNC"
                },
                {
                  "y": "120.69",
                  "id": "U7037449999QR",
                  "width": "612",
                  "height": "160",
                  "x": "0",
                  "iref": "U7037449999PrH",
                  "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                }
              ]
            },
            "yGuides": {
              "snap": {
                "value": "135.93"
              }
            }
          },
          {
            "id": "UU20801800053SLFIOI"
          }
        ]
      },
      "spreads": {
        "margin": "19.92",
        "spread": {
          "page": {
            "layer": [
              {
                "lref": "UU20801800053SLFarC"
              },
              {
                "lref": "UU20801800053SLFIOI"
              }
            ]
          }
        }
      }
    }
  }
}

/containers/pagePlan/page POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 32. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Request

curl -X POST -H "Accept: application/json" -H "Content-Type: application/json" -H "Cache-Control: no-cache" -d '{
    "type":"PRINTPAGE",
	"name":"News-001",
	"path":"/Globe/Print/Pages/News/2016-05-31",
	"printPage":{
	  "pgl": {
		"channel": "Globe-Print",
		"hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
		"hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
		"stories": {
		  "story": [
			{
			  "id": "U7037449999Jj",
			  "name": "StoryA",
			  "content": {
				"id": "U7037449999qNH",
				"stand": "yes",
				"loid": "1.0.8128592",
				"href": "/Globe/Stories/News/StoryA-126.xml?uuid=lLsO6CZLEea-3uY3G3P-Ig&li=U7037449999qNH",
				"item": {
				  "fstyle": "Justify",
				  "id": "U7037449999PrH",
				  "hjStyle": "text-all",
				  "format": "Clean text",
				  "sref": "U7037449999QR",
				  "type": "text"
				}
			  }
			},
			{
			  "id": "U7037449999cx",
			  "name": "StoryB",
			  "content": {
				"id": "U70374499995OI",
				"stand": "yes",
				"loid": "1.0.8128558",
				"href": "/Globe/Stories/News/StoryA-125.xml?uuid=k9kVViZLEea-3uY3G3P-Ig&li=U70374499995OI",
				"item": {
				  "fstyle": "Justify",
				  "vj": "font-stretch:105%;",
				  "id": "U7037449999PNC",
				  "hjStyle": "text-all",
				  "format": "Clean",
				  "sref": "U7037449999lIC",
				  "type": "text"
				}
			  }
			}
		  ]
		},
		"layers": {
		  "ld": [
			{ "id": "kBpD" },
			{
			  "id": "PLX-UU20801800053SLF05D",
			  "name": "Ads",
			  "color": "#00FF00",
			  "href": "/Globe/Print/Pages/News/2016-05-31/Ads/News-001-Ads.pgl?uuid=9292004a-264b-11e6-bede-e6371b73fe22"
			}
		  ],
		  "layer": [
			{
			  "id": "UU20801800053SLFarC",
			  "svg": {
				"rect": [
				  {
					"vj": "line-spacing:'0.4000000059604644775390625';",
					"y": "120.68",
					"id": "U7037449999lIC",
					"width": "192.74",
					"height": "160",
					"x": "575.26",
					"iref": "U7037449999PNC"
				  },
				  {
					"y": "120.69",
					"id": "U7037449999QR",
					"width": "612",
					"sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;",
					"height": "160",
					"x": "0",
					"iref": "U7037449999PrH"
				  }
				]
			  },
			  "yGuides": {
				"snap": { "value": "135.93" }
			  }
			},
			{ "id": "UU20801800053SLFIOI" }
		  ]
		},
		"spreads": {
		  "margin": "19.92",
		  "spread": {
			"page": {
			  "layer": [
				{ "lref": "UU20801800053SLFarC" },
				{ "lref": "UU20801800053SLFIOI" }
			  ]
			}
		  }
		}
	  }
	}
}' "http://restserver:8080/restapi-core/rest/containers/pagePlan/page"

Response

Content type

application/json

The created Page, with reference of objects.

{
  "type": "PRINTPAGE",
  "source": "loid:199$1.0.717747638",
  "loid": "199$1.0.717747638",
  "uuid": "",
  "error": false,
  "errorMessages": [],
  "children": [],
  "virtualId": "RNiVdPjjrYnBuRCfpKelJcL",
  "path": "/Globe/Print/Pages/News/2016-05-31",
  "name": "News-001",
  "printPage": {
    "pgl": {
      "channel": "Globe-Print",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "stories": {
        "story": [
          {
            "id": "U7037449999Jj",
            "name": "StoryA",
            "content": {
              "id": "U7037449999qNH",
              "stand": "yes",
              "loid": "1.0.8128592",
              "href": "/Globe/Stories/News/StoryA-126.xml?uuid=lLsO6CZLEea-3uY3G3P-Ig&li=U7037449999qNH",
              "item": {
                "fstyle": "Justify",
                "id": "U7037449999PrH",
                "hjStyle": "text-all",
                "format": "Clean text",
                "sref": "U7037449999QR",
                "type": "text"
              }
            }
          },
          {
            "id": "U7037449999cx",
            "name": "StoryB",
            "content": {
              "id": "U70374499995OI",
              "stand": "yes",
              "loid": "1.0.8128558",
              "href": "/Globe/Stories/News/StoryA-125.xml?uuid=k9kVViZLEea-3uY3G3P-Ig&li=U70374499995OI",
              "item": {
                "fstyle": "Justify",
                "vj": "font-stretch:105%;",
                "id": "U7037449999PNC",
                "hjStyle": "text-all",
                "format": "Clean",
                "sref": "U7037449999lIC",
                "type": "text"
              }
            }
          }
        ]
      },
      "layers": {
        "ld": [
          {
            "id": "kBpD"
          },
          {
            "id": "PLX-UU20801800053SLF05D",
            "name": "Ads",
            "color": "#00FF00",
            "href": "/Globe/Print/Pages/News/2016-05-31/Ads/News-001-Ads.pgl?uuid=9292004a-264b-11e6-bede-e6371b73fe22"
          }
        ],
        "layer": [
          {
            "id": "UU20801800053SLFarC",
            "svg": {
              "rect": [
                {
                  "vj": "line-spacing:'0.4000000059604644775390625';",
                  "y": "120.68",
                  "id": "U7037449999lIC",
                  "width": "192.74",
                  "height": "160",
                  "x": "575.26",
                  "iref": "U7037449999PNC"
                },
                {
                  "y": "120.69",
                  "id": "U7037449999QR",
                  "width": "612",
                  "height": "160",
                  "x": "0",
                  "iref": "U7037449999PrH",
                  "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                }
              ]
            },
            "yGuides": {
              "snap": {
                "value": "135.93"
              }
            }
          },
          {
            "id": "UU20801800053SLFIOI"
          }
        ]
      },
      "spreads": {
        "margin": "19.92",
        "spread": {
          "page": {
            "layer": [
              {
                "lref": "UU20801800053SLFarC"
              },
              {
                "lref": "UU20801800053SLFIOI"
              }
            ]
          }
        }
      }
    }
  }
}

/containers/pagePlan/page PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 33. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

source

String

No

-

Request

Response

Content type

application/json

/containers/pagePlan/page/{source} DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 34. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Path parameters

EidosMedia Rest Application Server 35. Parameters:
Parameter Type Required Default Description

source

String

No

-

Form parameters

EidosMedia Rest Application Server 36. Parameters:
Parameter Type Required Default Description

deleteFromAllParents

boolean

No

false

-

loidParentsInvolvedIntoDelete

List

No

-

Request

curl -X DELETE -H "Cache-Control: no-cache" "http://restserver:8080/restapi-core/rest/containers/pagePlan/loid:199$1.0.717747638"

Response

Content type

application/json

{
  "type": "PRINTPAGE",
  "source": "loid:199$1.0.717747638",
  "loid": "199$1.0.717747638",
  "uuid": "765614ae-2d7e-11e6-a429-7a5bfc1aa274",
  "error": false,
  "errorMessages": [],
  "children": [],
  "printPage": {
    "pgl": {
      "channel": "Globe-Print",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "stories": {
        "story": [
          {
            "id": "U7037449999Jj",
            "name": "StoryA",
            "content": {
              "id": "U7037449999qNH",
              "stand": "yes",
              "loid": "1.0.8128592",
              "href": "/Globe/Stories/News/StoryA-126.xml?uuid=lLsO6CZLEea-3uY3G3P-Ig&li=U7037449999qNH",
              "item": {
                "fstyle": "Justify",
                "id": "U7037449999PrH",
                "hjStyle": "text-all",
                "format": "Clean text",
                "sref": "U7037449999QR",
                "type": "text"
              }
            }
          },
          {
            "id": "U7037449999cx",
            "name": "StoryB",
            "content": {
              "id": "U70374499995OI",
              "stand": "yes",
              "loid": "1.0.8128558",
              "href": "/Globe/Stories/News/StoryA-125.xml?uuid=k9kVViZLEea-3uY3G3P-Ig&li=U70374499995OI",
              "item": {
                "fstyle": "Justify",
                "vj": "font-stretch:105%;",
                "id": "U7037449999PNC",
                "hjStyle": "text-all",
                "format": "Clean",
                "sref": "U7037449999lIC",
                "type": "text"
              }
            }
          }
        ]
      },
      "layers": {
        "ld": [
          {
            "id": "kBpD"
          },
          {
            "id": "PLX-UU20801800053SLF05D",
            "name": "Ads",
            "color": "#00FF00",
            "href": "/Globe/Print/Pages/News/2016-05-31/Ads/News-001-Ads.pgl?uuid=9292004a-264b-11e6-bede-e6371b73fe22"
          }
        ],
        "layer": [
          {
            "id": "UU20801800053SLFarC",
            "svg": {
              "rect": [
                {
                  "vj": "line-spacing:'0.4000000059604644775390625';",
                  "y": "120.68",
                  "id": "U7037449999lIC",
                  "width": "192.74",
                  "height": "160",
                  "x": "575.26",
                  "iref": "U7037449999PNC"
                },
                {
                  "y": "120.69",
                  "id": "U7037449999QR",
                  "width": "612",
                  "height": "160",
                  "x": "0",
                  "iref": "U7037449999PrH",
                  "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                }
              ]
            },
            "yGuides": {
              "snap": {
                "value": "135.93"
              }
            }
          },
          {
            "id": "UU20801800053SLFIOI"
          }
        ]
      },
      "spreads": {
        "margin": "19.92",
        "spread": {
          "page": {
            "layer": [
              {
                "lref": "UU20801800053SLFarC"
              },
              {
                "lref": "UU20801800053SLFIOI"
              }
            ]
          }
        }
      }
    }
  }
}

/containers/pagePlan/page/link POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 37. Parameters:
Parameter Type Required Default Description

parent

String

No

-

sessionId

String

No

-

Request

curl -X POST -H "Accept: application/json" -H "Content-Type: application/json" -H "Cache-Control: no-cache" -d '{
    "containerType":"PRINTPAGE",
	"name":"News-001",
	"path":"/Globe/Print/Pages/News/2016-05-29",
	"printPage":{
	  "pgl": {
		"channel": "Globe-Print",
		"hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
		"hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
		"stories": {
		  "story": [
			{
			  "id": "U7037449999Jj",
			  "name": "StoryA",
			  "content": {
				"id": "U7037449999qNH",
				"stand": "yes",
				"loid": "1.0.8128592",
				"href": "/Globe/Stories/News/StoryA-126.xml?uuid=lLsO6CZLEea-3uY3G3P-Ig&li=U7037449999qNH",
				"item": {
				  "fstyle": "Justify",
				  "id": "U7037449999PrH",
				  "hjStyle": "text-all",
				  "format": "Clean text",
				  "sref": "U7037449999QR",
				  "type": "text"
				}
			  }
			},
			{
			  "id": "U7037449999cx",
			  "name": "StoryB",
			  "content": {
				"id": "U70374499995OI",
				"stand": "yes",
				"loid": "1.0.8128558",
				"href": "/Globe/Stories/News/StoryA-125.xml?uuid=k9kVViZLEea-3uY3G3P-Ig&li=U70374499995OI",
				"item": {
				  "fstyle": "Justify",
				  "vj": "font-stretch:105%;",
				  "id": "U7037449999PNC",
				  "hjStyle": "text-all",
				  "format": "Clean",
				  "sref": "U7037449999lIC",
				  "type": "text"
				}
			  }
			}
		  ]
		},
		"layers": {
		  "ld": [
			{ "id": "kBpD" },
			{
			  "id": "PLX-UU20801800053SLF05D",
			  "name": "Ads",
			  "color": "#00FF00",
			  "href": "/Globe/Print/Pages/News/2016-05-31/Ads/News-001-Ads.pgl?uuid=9292004a-264b-11e6-bede-e6371b73fe22"
			}
		  ],
		  "layer": [
			{
			  "id": "UU20801800053SLFarC",
			  "svg": {
				"rect": [
				  {
					"vj": "line-spacing:'0.4000000059604644775390625';",
					"y": "120.68",
					"id": "U7037449999lIC",
					"width": "192.74",
					"height": "160",
					"x": "575.26",
					"iref": "U7037449999PNC"
				  },
				  {
					"y": "120.69",
					"id": "U7037449999QR",
					"width": "612",
					"sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;",
					"height": "160",
					"x": "0",
					"iref": "U7037449999PrH"
				  }
				]
			  },
			  "yGuides": {
				"snap": { "value": "135.93" }
			  }
			},
			{ "id": "UU20801800053SLFIOI" }
		  ]
		},
		"spreads": {
		  "margin": "19.92",
		  "spread": {
			"page": {
			  "layer": [
				{ "lref": "UU20801800053SLFarC" },
				{ "lref": "UU20801800053SLFIOI" }
			  ]
			}
		  }
		}
	  }
	}
}' "http://restserver:8080/restapi-core/rest/containers/pagePlan/page/link?parent=loid:199$1.0.718966878"

Response

Content type

application/json

The linked Page, with reference of objects.

{
  "containerType": "PRINTPAGE",
  "source": "loid:199$1.0.719317966",
  "loid": "199$1.0.719317966",
  "uuid": "",
  "error": false,
  "errorMessages": [],
  "children": [],
  "virtualId": "RcXSn5zcUBlewjo56p4M4EL",
  "path": "/Globe/Print/Pages/News/2016-05-29",
  "name": "News-001",
  "printPage": {
    "pgl": {
      "channel": "Globe-Print",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "stories": {
        "story": [
          {
            "id": "U7037449999Jj",
            "name": "StoryA",
            "content": {
              "id": "U7037449999qNH",
              "stand": "yes",
              "loid": "1.0.8128592",
              "href": "/Globe/Stories/News/StoryA-126.xml?uuid=lLsO6CZLEea-3uY3G3P-Ig&li=U7037449999qNH",
              "item": {
                "fstyle": "Justify",
                "id": "U7037449999PrH",
                "hjStyle": "text-all",
                "format": "Clean text",
                "sref": "U7037449999QR",
                "type": "text"
              }
            }
          },
          {
            "id": "U7037449999cx",
            "name": "StoryB",
            "content": {
              "id": "U70374499995OI",
              "stand": "yes",
              "loid": "1.0.8128558",
              "href": "/Globe/Stories/News/StoryA-125.xml?uuid=k9kVViZLEea-3uY3G3P-Ig&li=U70374499995OI",
              "item": {
                "fstyle": "Justify",
                "vj": "font-stretch:105%;",
                "id": "U7037449999PNC",
                "hjStyle": "text-all",
                "format": "Clean",
                "sref": "U7037449999lIC",
                "type": "text"
              }
            }
          }
        ]
      },
      "layers": {
        "ld": [
          {
            "id": "kBpD"
          },
          {
            "id": "PLX-UU20801800053SLF05D",
            "name": "Ads",
            "color": "#00FF00",
            "href": "/Globe/Print/Pages/News/2016-05-31/Ads/News-001-Ads.pgl?uuid=9292004a-264b-11e6-bede-e6371b73fe22"
          }
        ],
        "layer": [
          {
            "id": "UU20801800053SLFarC",
            "svg": {
              "rect": [
                {
                  "vj": "line-spacing:'0.4000000059604644775390625';",
                  "y": "120.68",
                  "id": "U7037449999lIC",
                  "width": "192.74",
                  "height": "160",
                  "x": "575.26",
                  "iref": "U7037449999PNC"
                },
                {
                  "y": "120.69",
                  "id": "U7037449999QR",
                  "width": "612",
                  "height": "160",
                  "x": "0",
                  "iref": "U7037449999PrH",
                  "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                }
              ]
            },
            "yGuides": {
              "snap": {
                "value": "135.93"
              }
            }
          },
          {
            "id": "UU20801800053SLFIOI"
          }
        ]
      },
      "spreads": {
        "margin": "19.92",
        "spread": {
          "page": {
            "layer": [
              {
                "lref": "UU20801800053SLFarC"
              },
              {
                "lref": "UU20801800053SLFIOI"
              }
            ]
          }
        }
      }
    }
  }
}

/containers/pagePlan/pageEdition DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 38. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

source

String

No

-

Form parameters

EidosMedia Rest Application Server 39. Parameters:
Parameter Type Required Default Description

deleteFromAllParents

boolean

No

false

-

loidParentsInvolvedIntoDelete

List

No

-

Request

curl -X DELETE -H "Cache-Control: no-cache" "http://restserver:8080/restapi-core/rest/containers/pagePlan/pageEdition?source=loid:199$1.0.717727920"

Response

Content type

application/json

This call, returns the reference of PagePlan deleted.
{
  "type": "PRINTEDITION",
  "source": "loid:199$1.0.717727920",
  "loid": "199$1.0.717727920",
  "uuid": "0b2457d8-2d7c-11e6-a429-7a5bfc1aa274",
  "error": false,
  "errorMessages": [],
  "children": [],
  "printEdition": {
    "edition": {
      "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
      "name": "USA",
      "id": "U208018000534oF",
      "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
      "editionPath": "USA",
      "printsites": {
        "zone": [],
        "ps": [
          {
            "name": "Milan"
          },
          {
            "name": "Rome"
          },
          {
            "name": "London"
          },
          {
            "name": "Glasgow"
          }
        ]
      },
      "books": {
        "book": {
          "background-color": "#FF0000",
          "format": "tabloid",
          "name": "Book1",
          "id": "U20801800053rmG",
          "pnn": "0",
          "pages": {
            "page": [
              {
                "section": "News",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                "template": "/SysConfig/Globe/Print/PrintProductFurniture/Tabloid Front.pgl",
                "color": "cmyk",
                "id": "U20801800053SLF",
                "pn": "1",
                "pgl": {
                  "channel": "Globe-Print",
                  "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                  "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                  "stories": {
                    "story": [
                      {
                        "id": "U7037449999Jj",
                        "name": "StoryA",
                        "content": {
                          "id": "U7037449999qNH",
                          "stand": "yes",
                          "loid": "1.0.8128592",
                          "item": {
                            "fstyle": "Justify",
                            "id": "U7037449999PrH",
                            "hjStyle": "text-all",
                            "format": "Clean text",
                            "sref": "U7037449999QR",
                            "type": "text"
                          }
                        }
                      },
                      {
                        "id": "U7037449999cx",
                        "name": "StoryB",
                        "content": {
                          "id": "U70374499995OI",
                          "stand": "yes",
                          "loid": "1.0.8128558",
                          "item": {
                            "fstyle": "Justify",
                            "vj": "font-stretch:105%;",
                            "id": "U7037449999PNC",
                            "hjStyle": "text-all",
                            "format": "Clean",
                            "sref": "U7037449999lIC",
                            "type": "text"
                          }
                        }
                      }
                    ]
                  },
                  "layers": {
                    "ld": [
                      {
                        "id": "kBpD"
                      }
                    ],
                    "layer": [
                      {
                        "id": "UU20801800053SLFarC",
                        "svg": {
                          "rect": [
                            {
                              "vj": "line-spacing:'0.4000000059604644775390625';",
                              "y": "120.68",
                              "id": "U7037449999lIC",
                              "width": "192.74",
                              "height": "160",
                              "x": "575.26",
                              "iref": "U7037449999PNC"
                            },
                            {
                              "y": "120.69",
                              "id": "U7037449999QR",
                              "width": "612",
                              "height": "160",
                              "x": "0",
                              "iref": "U7037449999PrH",
                              "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                            }
                          ]
                        },
                        "yGuides": {
                          "snap": {
                            "value": "135.93"
                          }
                        }
                      }
                    ]
                  },
                  "spreads": {
                    "margin": "19.92",
                    "spread": {
                      "page": {
                        "layer": [
                          {
                            "lref": "UU20801800053SLFarC"
                          }
                        ]
                      }
                    }
                  }
                },
                "layer": []
              },
              {
                "section": "Sport",
                "color": "cmyk",
                "id": "U20801800053mZ",
                "pn": "2",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053EYC",
                "pn": "3",
                "inherit": "EUROPE?pp=1",
                "layer": []
              },
              {
                "section": "News",
                "color": "cmyk",
                "id": "U208018000530tH",
                "pn": "4",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053fPG",
                "pn": "5",
                "inherit": "EUROPE?pp=5",
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053ZqH",
                "pn": "6",
                "inherit": "EUROPE?pp=3",
                "layer": []
              },
              {
                "section": "Sport",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe double.grd",
                "color": "cmyk",
                "id": "U20801800053Y8B",
                "pn": "7",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "trucks": "2",
                "layer": []
              },
              {
                "section": "Politics",
                "color": "cmyk",
                "id": "U20801800053PMB",
                "pn": "9",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053rHE",
                "pn": "10",
                "inherit": "EUROPE?pp=6",
                "layer": []
              },
              {
                "section": "Business",
                "color": "cmyk",
                "id": "U20801800053rNI",
                "pn": "11",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Business",
                "color": "cmyk",
                "id": "U20801800053Q4H",
                "pn": "12",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Foreign",
                "color": "cmyk",
                "id": "U2080180005387G",
                "pn": "13",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Foreign",
                "color": "cmyk",
                "id": "U20801800053WS",
                "pn": "14",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Art",
                "color": "cmyk",
                "id": "U20801800053HtH",
                "pn": "15",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "News",
                "color": "cmyk",
                "id": "U20801800053hpB",
                "pn": "16",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories_News.cfg",
                "layer": []
              }
            ]
          },
          "plates": {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "plate": [
              {
                "id": "U208018000537nG"
              },
              {
                "id": "U20801800053GXD"
              },
              {
                "id": "U20801800053sE"
              },
              {
                "id": "U20801800053DPE"
              },
              {
                "id": "U208018000530nH"
              },
              {
                "id": "U20801800053eLH"
              },
              {
                "id": "U20801800053TJB"
              },
              {
                "id": "U20801800053v3E"
              }
            ]
          }
        }
      }
    }
  }
}

/containers/pagePlan/pageEdition POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 40. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Request

curl -X POST -H "Accept: application/json" -H "Content-Type: application/json" -H "Cache-Control: no-cache" -d '{
	"type":"PRINTEDITION",
	"name":"News-001",
	"path":"/Globe/Print/Pages/News/2016-05-31",
	"printEdition":{
	  "edition": {
		"hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
		"hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
		"name": "USA",
		"hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
		"id": "U208018000534oF",
		"hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
		"editionPath": "USA",
		"printsites": {
		  "ps": [
			{ "name": "Milan" },
			{ "name": "Rome" },
			{ "name": "London" },
			{ "name": "Glasgow" }
		  ]
		},
		"books": {
		  "book": {
			"background-color": "#FF0000",
			"format": "tabloid",
			"name": "Book1",
			"id": "U20801800053rmG",
			"pnn": "0",
			"pages": {
			  "page": [
				{
				  "section": "News",
				  "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
				  "template": "/SysConfig/Globe/Print/PrintProductFurniture/Tabloid Front.pgl",
				  "color": "cmyk",
				  "id": "U20801800053SLF",
				  "pn": "1",
				  "pgl": {
					"channel": "Globe-Print",
					"hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
					"hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
					"stories": {
					  "story": [
						{
						  "id": "U7037449999Jj",
						  "name": "StoryA",
						  "content": {
							"id": "U7037449999qNH",
							"stand": "yes",
							"loid": "1.0.8128592",
							"item": {
							  "fstyle": "Justify",
							  "id": "U7037449999PrH",
							  "hjStyle": "text-all",
							  "format": "Clean text",
							  "sref": "U7037449999QR",
							  "type": "text"
							}
						  }
						},
						{
						  "id": "U7037449999cx",
						  "name": "StoryB",
						  "content": {
							"id": "U70374499995OI",
							"stand": "yes",
							"loid": "1.0.8128558",
							"item": {
							  "fstyle": "Justify",
							  "vj": "font-stretch:105%;",
							  "id": "U7037449999PNC",
							  "hjStyle": "text-all",
							  "format": "Clean",
							  "sref": "U7037449999lIC",
							  "type": "text"
							}
						  }
						}
					  ]
					},
					"layers": {
					  "ld": [{ "id": "kBpD" }],
					  "layer": [{
						"id": "UU20801800053SLFarC",
						"svg": {
						  "rect": [
							{
							  "vj": "line-spacing:'0.4000000059604644775390625';",
							  "y": "120.68",
							  "id": "U7037449999lIC",
							  "width": "192.74",
							  "height": "160",
							  "x": "575.26",
							  "iref": "U7037449999PNC"
							},
							{
							  "y": "120.69",
							  "id": "U7037449999QR",
							  "width": "612",
							  "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;",
							  "height": "160",
							  "x": "0",
							  "iref": "U7037449999PrH"
							}
						  ]
						},
						"yGuides": {
						  "snap": { "value": "135.93" }
						}
					  }]
					},
					"spreads": {
					  "margin": "19.92",
					  "spread": {
						"page": {
						  "layer": [{ "lref": "UU20801800053SLFarC" }]
						}
					  }
					}
				  }
				},
				{
				  "section": "Sport",
				  "color": "cmyk",
				  "id": "U20801800053mZ",
				  "pn": "2",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "inherit": "EUROPE?pp=1",
				  "color": "cmyk",
				  "id": "U20801800053EYC",
				  "pn": "3"
				},
				{
				  "section": "News",
				  "color": "cmyk",
				  "id": "U208018000530tH",
				  "pn": "4",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "inherit": "EUROPE?pp=5",
				  "color": "cmyk",
				  "id": "U20801800053fPG",
				  "pn": "5"
				},
				{
				  "inherit": "EUROPE?pp=3",
				  "color": "cmyk",
				  "id": "U20801800053ZqH",
				  "pn": "6"
				},
				{
				  "trucks": "2",
				  "section": "Sport",
				  "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe double.grd",
				  "color": "cmyk",
				  "id": "U20801800053Y8B",
				  "pn": "7",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "section": "Politics",
				  "color": "cmyk",
				  "id": "U20801800053PMB",
				  "pn": "9",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "inherit": "EUROPE?pp=6",
				  "color": "cmyk",
				  "id": "U20801800053rHE",
				  "pn": "10"
				},
				{
				  "section": "Business",
				  "color": "cmyk",
				  "id": "U20801800053rNI",
				  "pn": "11",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "section": "Business",
				  "color": "cmyk",
				  "id": "U20801800053Q4H",
				  "pn": "12",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "section": "Foreign",
				  "color": "cmyk",
				  "id": "U2080180005387G",
				  "pn": "13",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "section": "Foreign",
				  "color": "cmyk",
				  "id": "U20801800053WS",
				  "pn": "14",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "section": "Art",
				  "color": "cmyk",
				  "id": "U20801800053HtH",
				  "pn": "15",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories_News.cfg",
				  "section": "News",
				  "color": "cmyk",
				  "id": "U20801800053hpB",
				  "pn": "16",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				}
			  ]
			},
			"plates": {
			  "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
			  "plate": [
				{ "id": "U208018000537nG" },
				{ "id": "U20801800053GXD" },
				{ "id": "U20801800053sE" },
				{ "id": "U20801800053DPE" },
				{ "id": "U208018000530nH" },
				{ "id": "U20801800053eLH" },
				{ "id": "U20801800053TJB" },
				{ "id": "U20801800053v3E" }
			  ]
			}
		  }
		}
	  }
	},
	"children":[
	{
        "type":"PRINTPAGE",
    	"name":"News-001",
    	"path":"/Globe/Print/Pages/News/2016-05-31",
    	"printPage":{
    	  "pgl": {
    		"channel": "Globe-Print",
    		"hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
    		"hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
    		"stories": {
    		  "story": [
    			{
    			  "id": "U7037449999Jj",
    			  "name": "StoryA",
    			  "content": {
    				"id": "U7037449999qNH",
    				"stand": "yes",
    				"loid": "1.0.8128592",
    				"href": "/Globe/Stories/News/StoryA-126.xml?uuid=lLsO6CZLEea-3uY3G3P-Ig&li=U7037449999qNH",
    				"item": {
    				  "fstyle": "Justify",
    				  "id": "U7037449999PrH",
    				  "hjStyle": "text-all",
    				  "format": "Clean text",
    				  "sref": "U7037449999QR",
    				  "type": "text"
    				}
    			  }
    			},
    			{
    			  "id": "U7037449999cx",
    			  "name": "StoryB",
    			  "content": {
    				"id": "U70374499995OI",
    				"stand": "yes",
    				"loid": "1.0.8128558",
    				"href": "/Globe/Stories/News/StoryA-125.xml?uuid=k9kVViZLEea-3uY3G3P-Ig&li=U70374499995OI",
    				"item": {
    				  "fstyle": "Justify",
    				  "vj": "font-stretch:105%;",
    				  "id": "U7037449999PNC",
    				  "hjStyle": "text-all",
    				  "format": "Clean",
    				  "sref": "U7037449999lIC",
    				  "type": "text"
    				}
    			  }
    			}
    		  ]
    		},
    		"layers": {
    		  "ld": [
    			{ "id": "kBpD" },
    			{
    			  "id": "PLX-UU20801800053SLF05D",
    			  "name": "Ads",
    			  "color": "#00FF00",
    			  "href": "/Globe/Print/Pages/News/2016-05-31/Ads/News-001-Ads.pgl?uuid=9292004a-264b-11e6-bede-e6371b73fe22"
    			}
    		  ],
    		  "layer": [
    			{
    			  "id": "UU20801800053SLFarC",
    			  "svg": {
    				"rect": [
    				  {
    					"vj": "line-spacing:'0.4000000059604644775390625';",
    					"y": "120.68",
    					"id": "U7037449999lIC",
    					"width": "192.74",
    					"height": "160",
    					"x": "575.26",
    					"iref": "U7037449999PNC"
    				  },
    				  {
    					"y": "120.69",
    					"id": "U7037449999QR",
    					"width": "612",
    					"sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;",
    					"height": "160",
    					"x": "0",
    					"iref": "U7037449999PrH"
    				  }
    				]
    			  },
    			  "yGuides": {
    				"snap": { "value": "135.93" }
    			  }
    			},
    			{ "id": "UU20801800053SLFIOI" }
    		  ]
    		},
    		"spreads": {
    		  "margin": "19.92",
    		  "spread": {
    			"page": {
    			  "layer": [
    				{ "lref": "UU20801800053SLFarC" },
    				{ "lref": "UU20801800053SLFIOI" }
    			  ]
    			}
    		  }
    		}
    	  }
    	}
    }
	]
}
' "http://restserver:8080/restapi-core/rest/containers/pagePlan/pageEdition"

Response

Content type

application/json

The created PageEdition, with reference of objects.

{
  "type": "PRINTEDITION",
  "source": "loid:199$1.0.717727920",
  "loid": "199$1.0.717727920",
  "uuid": "",
  "error": false,
  "errorMessages": [],
  "children": [
    {
      "type": "PRINTPAGE",
      "source": "loid:199$1.0.717727945",
      "loid": "199$1.0.717727945",
      "uuid": "",
      "error": false,
      "errorMessages": [],
      "children": [],
      "virtualId": "R4JkCRXGUVwbohyiTwecjIO",
      "path": "/Globe/Print/Pages/News/2016-05-31",
      "name": "News-001",
      "printPage": {
        "pgl": {
          "channel": "Globe-Print",
          "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
          "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
          "stories": {
            "story": [
              {
                "id": "U7037449999Jj",
                "name": "StoryA",
                "content": {
                  "id": "U7037449999qNH",
                  "stand": "yes",
                  "loid": "1.0.8128592",
                  "href": "/Globe/Stories/News/StoryA-126.xml?uuid=lLsO6CZLEea-3uY3G3P-Ig&li=U7037449999qNH",
                  "item": {
                    "fstyle": "Justify",
                    "id": "U7037449999PrH",
                    "hjStyle": "text-all",
                    "format": "Clean text",
                    "sref": "U7037449999QR",
                    "type": "text"
                  }
                }
              },
              {
                "id": "U7037449999cx",
                "name": "StoryB",
                "content": {
                  "id": "U70374499995OI",
                  "stand": "yes",
                  "loid": "1.0.8128558",
                  "href": "/Globe/Stories/News/StoryA-125.xml?uuid=k9kVViZLEea-3uY3G3P-Ig&li=U70374499995OI",
                  "item": {
                    "fstyle": "Justify",
                    "vj": "font-stretch:105%;",
                    "id": "U7037449999PNC",
                    "hjStyle": "text-all",
                    "format": "Clean",
                    "sref": "U7037449999lIC",
                    "type": "text"
                  }
                }
              }
            ]
          },
          "layers": {
            "ld": [
              {
                "id": "kBpD"
              },
              {
                "id": "PLX-UU20801800053SLF05D",
                "name": "Ads",
                "color": "#00FF00",
                "href": "/Globe/Print/Pages/News/2016-05-31/Ads/News-001-Ads.pgl?uuid=9292004a-264b-11e6-bede-e6371b73fe22"
              }
            ],
            "layer": [
              {
                "id": "UU20801800053SLFarC",
                "svg": {
                  "rect": [
                    {
                      "vj": "line-spacing:'0.4000000059604644775390625';",
                      "y": "120.68",
                      "id": "U7037449999lIC",
                      "width": "192.74",
                      "height": "160",
                      "x": "575.26",
                      "iref": "U7037449999PNC"
                    },
                    {
                      "y": "120.69",
                      "id": "U7037449999QR",
                      "width": "612",
                      "height": "160",
                      "x": "0",
                      "iref": "U7037449999PrH",
                      "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                    }
                  ]
                },
                "yGuides": {
                  "snap": {
                    "value": "135.93"
                  }
                }
              },
              {
                "id": "UU20801800053SLFIOI"
              }
            ]
          },
          "spreads": {
            "margin": "19.92",
            "spread": {
              "page": {
                "layer": [
                  {
                    "lref": "UU20801800053SLFarC"
                  },
                  {
                    "lref": "UU20801800053SLFIOI"
                  }
                ]
              }
            }
          }
        }
      }
    }
  ],
  "virtualId": "RdLUerTfAi9hOb8ZhhBp1qL",
  "path": "/Globe/Print/Pages/News/2016-05-31",
  "name": "News-001",
  "printEdition": {
    "edition": {
      "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
      "name": "USA",
      "id": "U208018000534oF",
      "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
      "editionPath": "USA",
      "printsites": {
        "zone": [],
        "ps": [
          {
            "name": "Milan"
          },
          {
            "name": "Rome"
          },
          {
            "name": "London"
          },
          {
            "name": "Glasgow"
          }
        ]
      },
      "books": {
        "book": {
          "background-color": "#FF0000",
          "format": "tabloid",
          "name": "Book1",
          "id": "U20801800053rmG",
          "pnn": "0",
          "pages": {
            "page": [
              {
                "section": "News",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                "template": "/SysConfig/Globe/Print/PrintProductFurniture/Tabloid Front.pgl",
                "color": "cmyk",
                "id": "U20801800053SLF",
                "pn": "1",
                "pgl": {
                  "channel": "Globe-Print",
                  "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                  "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                  "stories": {
                    "story": [
                      {
                        "id": "U7037449999Jj",
                        "name": "StoryA",
                        "content": {
                          "id": "U7037449999qNH",
                          "stand": "yes",
                          "loid": "1.0.8128592",
                          "item": {
                            "fstyle": "Justify",
                            "id": "U7037449999PrH",
                            "hjStyle": "text-all",
                            "format": "Clean text",
                            "sref": "U7037449999QR",
                            "type": "text"
                          }
                        }
                      },
                      {
                        "id": "U7037449999cx",
                        "name": "StoryB",
                        "content": {
                          "id": "U70374499995OI",
                          "stand": "yes",
                          "loid": "1.0.8128558",
                          "item": {
                            "fstyle": "Justify",
                            "vj": "font-stretch:105%;",
                            "id": "U7037449999PNC",
                            "hjStyle": "text-all",
                            "format": "Clean",
                            "sref": "U7037449999lIC",
                            "type": "text"
                          }
                        }
                      }
                    ]
                  },
                  "layers": {
                    "ld": [
                      {
                        "id": "kBpD"
                      }
                    ],
                    "layer": [
                      {
                        "id": "UU20801800053SLFarC",
                        "svg": {
                          "rect": [
                            {
                              "vj": "line-spacing:'0.4000000059604644775390625';",
                              "y": "120.68",
                              "id": "U7037449999lIC",
                              "width": "192.74",
                              "height": "160",
                              "x": "575.26",
                              "iref": "U7037449999PNC"
                            },
                            {
                              "y": "120.69",
                              "id": "U7037449999QR",
                              "width": "612",
                              "height": "160",
                              "x": "0",
                              "iref": "U7037449999PrH",
                              "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                            }
                          ]
                        },
                        "yGuides": {
                          "snap": {
                            "value": "135.93"
                          }
                        }
                      }
                    ]
                  },
                  "spreads": {
                    "margin": "19.92",
                    "spread": {
                      "page": {
                        "layer": [
                          {
                            "lref": "UU20801800053SLFarC"
                          }
                        ]
                      }
                    }
                  }
                },
                "layer": []
              },
              {
                "section": "Sport",
                "color": "cmyk",
                "id": "U20801800053mZ",
                "pn": "2",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053EYC",
                "pn": "3",
                "inherit": "EUROPE?pp=1",
                "layer": []
              },
              {
                "section": "News",
                "color": "cmyk",
                "id": "U208018000530tH",
                "pn": "4",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053fPG",
                "pn": "5",
                "inherit": "EUROPE?pp=5",
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053ZqH",
                "pn": "6",
                "inherit": "EUROPE?pp=3",
                "layer": []
              },
              {
                "section": "Sport",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe double.grd",
                "color": "cmyk",
                "id": "U20801800053Y8B",
                "pn": "7",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "trucks": "2",
                "layer": []
              },
              {
                "section": "Politics",
                "color": "cmyk",
                "id": "U20801800053PMB",
                "pn": "9",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053rHE",
                "pn": "10",
                "inherit": "EUROPE?pp=6",
                "layer": []
              },
              {
                "section": "Business",
                "color": "cmyk",
                "id": "U20801800053rNI",
                "pn": "11",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Business",
                "color": "cmyk",
                "id": "U20801800053Q4H",
                "pn": "12",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Foreign",
                "color": "cmyk",
                "id": "U2080180005387G",
                "pn": "13",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Foreign",
                "color": "cmyk",
                "id": "U20801800053WS",
                "pn": "14",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Art",
                "color": "cmyk",
                "id": "U20801800053HtH",
                "pn": "15",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "News",
                "color": "cmyk",
                "id": "U20801800053hpB",
                "pn": "16",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories_News.cfg",
                "layer": []
              }
            ]
          },
          "plates": {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "plate": [
              {
                "id": "U208018000537nG"
              },
              {
                "id": "U20801800053GXD"
              },
              {
                "id": "U20801800053sE"
              },
              {
                "id": "U20801800053DPE"
              },
              {
                "id": "U208018000530nH"
              },
              {
                "id": "U20801800053eLH"
              },
              {
                "id": "U20801800053TJB"
              },
              {
                "id": "U20801800053v3E"
              }
            ]
          }
        }
      }
    }
  }
}

/containers/pagePlan/pageEdition PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 41. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

source

String

No

-

Request

The new PagePlan structure. Note that the source field of PrintEdition is mandatory (means that PrintEdition must exists in order to update it)

    {
      "type": "PRINTEDITION",
      "source": "loid:199$1.0.717689782",
      "loid": "199$1.0.717689782",
      "uuid": "",
      "error": false,
      "errorMessages": [],
      "children": [
        {
          "type": "PRINTPAGE",
          "source": "loid:199$1.0.717689806",
          "loid": "199$1.0.717689806",
          "uuid": "",
          "error": false,
          "errorMessages": [],
          "children": [],
          "virtualId": "RACAg2ZzYxBT5FqD025hmDP",
          "path": "/Globe/Print/Pages/News/2016-05-31",
          "name": "News-001",
          "printPage": {
            "pgl": {
              "channel": "Globe-Print",
              "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
              "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
              "stories": {
                "story": [
                  {
                    "id": "U7037449999Jj",
                    "name": "StoryA",
                    "content": {
                      "id": "U7037449999qNH",
                      "stand": "yes",
                      "loid": "1.0.8128592",
                      "href": "/Globe/Stories/News/StoryA-126.xml?uuid=lLsO6CZLEea-3uY3G3P-Ig&li=U7037449999qNH",
                      "item": {
                        "fstyle": "Justify",
                        "id": "U7037449999PrH",
                        "hjStyle": "text-all",
                        "format": "Clean text",
                        "sref": "U7037449999QR",
                        "type": "text"
                      }
                    }
                  },
                  {
                    "id": "U7037449999cx",
                    "name": "StoryB",
                    "content": {
                      "id": "U70374499995OI",
                      "stand": "yes",
                      "loid": "1.0.8128558",
                      "href": "/Globe/Stories/News/StoryA-125.xml?uuid=k9kVViZLEea-3uY3G3P-Ig&li=U70374499995OI",
                      "item": {
                        "fstyle": "Justify",
                        "vj": "font-stretch:105%;",
                        "id": "U7037449999PNC",
                        "hjStyle": "text-all",
                        "format": "Clean",
                        "sref": "U7037449999lIC",
                        "type": "text"
                      }
                    }
                  }
                ]
              },
              "layers": {
                "ld": [
                  {
                    "id": "kBpD"
                  },
                  {
                    "id": "PLX-UU20801800053SLF05D",
                    "name": "Ads",
                    "color": "#00FF00",
                    "href": "/Globe/Print/Pages/News/2016-05-31/Ads/News-001-Ads.pgl?uuid=9292004a-264b-11e6-bede-e6371b73fe22"
                  }
                ],
                "layer": [
                  {
                    "id": "UU20801800053SLFarC",
                    "svg": {
                      "rect": [
                        {
                          "vj": "line-spacing:'0.4000000059604644775390625';",
                          "y": "120.68",
                          "id": "U7037449999lIC",
                          "width": "192.74",
                          "height": "160",
                          "x": "575.26",
                          "iref": "U7037449999PNC"
                        },
                        {
                          "y": "120.69",
                          "id": "U7037449999QR",
                          "width": "612",
                          "height": "160",
                          "x": "0",
                          "iref": "U7037449999PrH",
                          "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                        }
                      ]
                    },
                    "yGuides": {
                      "snap": {
                        "value": "135.93"
                      }
                    }
                  },
                  {
                    "id": "UU20801800053SLFIOI"
                  }
                ]
              },
              "spreads": {
                "margin": "19.92",
                "spread": {
                  "page": {
                    "layer": [
                      {
                        "lref": "UU20801800053SLFarC"
                      },
                      {
                        "lref": "UU20801800053SLFIOI"
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      ],
      "virtualId": "RDxsMhdyQPRL1FbhxiFUCMN",
      "path": "/Globe/Print/Pages/News/2016-05-31",
      "name": "News-001",
      "printEdition": {
        "edition": {
          "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
          "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
          "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
          "name": "USA",
          "id": "U208018000534oF",
          "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
          "editionPath": "USA",
          "printsites": {
            "zone": [],
            "ps": [
              {
                "name": "Milan"
              },
              {
                "name": "Rome"
              },
              {
                "name": "London"
              },
              {
                "name": "Glasgow"
              }
            ]
          },
          "books": {
            "book": {
              "background-color": "#FF0000",
              "format": "tabloid",
              "name": "Book1",
              "id": "U20801800053rmG",
              "pnn": "0",
              "pages": {
                "page": [
                  {
                    "section": "News",
                    "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                    "template": "/SysConfig/Globe/Print/PrintProductFurniture/Tabloid Front.pgl",
                    "color": "cmyk",
                    "id": "U20801800053SLF",
                    "pn": "1",
                    "pgl": {
                      "channel": "Globe-Print",
                      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                      "stories": {
                        "story": [
                          {
                            "id": "U7037449999Jj",
                            "name": "StoryA",
                            "content": {
                              "id": "U7037449999qNH",
                              "stand": "yes",
                              "loid": "1.0.8128592",
                              "item": {
                                "fstyle": "Justify",
                                "id": "U7037449999PrH",
                                "hjStyle": "text-all",
                                "format": "Clean text",
                                "sref": "U7037449999QR",
                                "type": "text"
                              }
                            }
                          },
                          {
                            "id": "U7037449999cx",
                            "name": "StoryB",
                            "content": {
                              "id": "U70374499995OI",
                              "stand": "yes",
                              "loid": "1.0.8128558",
                              "item": {
                                "fstyle": "Justify",
                                "vj": "font-stretch:105%;",
                                "id": "U7037449999PNC",
                                "hjStyle": "text-all",
                                "format": "Clean",
                                "sref": "U7037449999lIC",
                                "type": "text"
                              }
                            }
                          }
                        ]
                      },
                      "layers": {
                        "ld": [
                          {
                            "id": "kBpD"
                          }
                        ],
                        "layer": [
                          {
                            "id": "UU20801800053SLFarC",
                            "svg": {
                              "rect": [
                                {
                                  "vj": "line-spacing:'0.4000000059604644775390625';",
                                  "y": "120.68",
                                  "id": "U7037449999lIC",
                                  "width": "192.74",
                                  "height": "160",
                                  "x": "575.26",
                                  "iref": "U7037449999PNC"
                                },
                                {
                                  "y": "120.69",
                                  "id": "U7037449999QR",
                                  "width": "612",
                                  "height": "160",
                                  "x": "0",
                                  "iref": "U7037449999PrH",
                                  "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                                }
                              ]
                            },
                            "yGuides": {
                              "snap": {
                                "value": "135.93"
                              }
                            }
                          }
                        ]
                      },
                      "spreads": {
                        "margin": "19.92",
                        "spread": {
                          "page": {
                            "layer": [
                              {
                                "lref": "UU20801800053SLFarC"
                              }
                            ]
                          }
                        }
                      }
                    },
                    "layer": []
                  },
                  {
                    "section": "Sport",
                    "color": "cmyk",
                    "id": "U20801800053mZ",
                    "pn": "2",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053EYC",
                    "pn": "3",
                    "inherit": "EUROPE?pp=1",
                    "layer": []
                  },
                  {
                    "section": "News",
                    "color": "cmyk",
                    "id": "U208018000530tH",
                    "pn": "4",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053fPG",
                    "pn": "5",
                    "inherit": "EUROPE?pp=5",
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053ZqH",
                    "pn": "6",
                    "inherit": "EUROPE?pp=3",
                    "layer": []
                  },
                  {
                    "section": "Sport",
                    "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe double.grd",
                    "color": "cmyk",
                    "id": "U20801800053Y8B",
                    "pn": "7",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "trucks": "2",
                    "layer": []
                  },
                  {
                    "section": "Politics",
                    "color": "cmyk",
                    "id": "U20801800053PMB",
                    "pn": "9",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053rHE",
                    "pn": "10",
                    "inherit": "EUROPE?pp=6",
                    "layer": []
                  },
                  {
                    "section": "Business",
                    "color": "cmyk",
                    "id": "U20801800053rNI",
                    "pn": "11",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Business",
                    "color": "cmyk",
                    "id": "U20801800053Q4H",
                    "pn": "12",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Foreign",
                    "color": "cmyk",
                    "id": "U2080180005387G",
                    "pn": "13",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Foreign",
                    "color": "cmyk",
                    "id": "U20801800053WS",
                    "pn": "14",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Art",
                    "color": "cmyk",
                    "id": "U20801800053HtH",
                    "pn": "15",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "News",
                    "color": "cmyk",
                    "id": "U20801800053hpB",
                    "pn": "16",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories_News.cfg",
                    "layer": []
                  }
                ]
              },
              "plates": {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "plate": [
                  {
                    "id": "U208018000537nG"
                  },
                  {
                    "id": "U20801800053GXD"
                  },
                  {
                    "id": "U20801800053sE"
                  },
                  {
                    "id": "U20801800053DPE"
                  },
                  {
                    "id": "U208018000530nH"
                  },
                  {
                    "id": "U20801800053eLH"
                  },
                  {
                    "id": "U20801800053TJB"
                  },
                  {
                    "id": "U20801800053v3E"
                  }
                ]
              }
            }
          }
        }
      }
    }
  ],
  "virtualId": "Rg8vjAISwRDLKsSRHwM2WxN",
  "path": "/Globe/Print/Plannings/2016-05-31",
  "name": "Globe-20160531",
  "pagePlan": {
    "product": {
      "zoom": "0.20",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
      "channel": "Globe-Print",
      "printsites": {
        "zone": [
          {
            "name": "Italy",
            "ps": [
              {
                "name": "Milan"
              },
              {
                "name": "Rome"
              }
            ]
          },
          {
            "name": "UK",
            "ps": [
              {
                "name": "London"
              },
              {
                "name": "Glasgow"
              }
            ]
          },
          {
            "name": "USA",
            "ps": [
              {
                "name": "New York"
              }
            ]
          },
          {
            "name": "ASIA",
            "ps": [
              {
                "name": "Hong Kong"
              }
            ]
          }
        ],
        "ps": []
      },
      "editions": {
        "edition": [
          {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
            "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
            "name": "EUROPE",
            "id": "U20801800053K7E",
            "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
            "editionPath": "EUROPE",
            "edition": [
              {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
                "name": "Print Site B",
                "id": "U20801800053m4E",
                "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
                "editionPath": "EUROPE/Print Site B-01",
                "star": "01",
                "edition": []
              },
              {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
                "name": "Print Site B",
                "id": "U20801800053m4E",
                "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
                "editionPath": "EUROPE/Print Site B-01",
                "star": "01",
                "edition": []
              }
            ]
          },
          {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
            "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
            "name": "USA",
            "id": "U208018000534oF",
            "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
            "editionPath": "USA",
            "edition": []
          }
        ]
      }
    }
  }

Response

Content type

application/json

The updated object.

    {
      "type": "PRINTEDITION",
      "source": "loid:199$1.0.717689782",
      "loid": "199$1.0.717689782",
      "uuid": "",
      "error": false,
      "errorMessages": [],
      "children": [
        {
          "type": "PRINTPAGE",
          "source": "loid:199$1.0.717689806",
          "loid": "199$1.0.717689806",
          "uuid": "dc11677a-2d7a-11e6-a429-7a5bfc1aa274",
          "error": false,
          "errorMessages": [],
          "children": [],
          "virtualId": "RACAg2ZzYxBT5FqD025hmDP",
          "path": "/Globe/Print/Pages/News/2016-05-31",
          "name": "News-001",
          "printPage": {
            "pgl": {
              "channel": "Globe-Print",
              "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
              "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
              "stories": {
                "story": [
                  {
                    "id": "U7037449999Jj",
                    "name": "StoryA",
                    "content": {
                      "id": "U7037449999qNH",
                      "stand": "yes",
                      "loid": "1.0.8128592",
                      "href": "/Globe/Stories/News/StoryA-126.xml?uuid=lLsO6CZLEea-3uY3G3P-Ig&li=U7037449999qNH",
                      "item": {
                        "fstyle": "Justify",
                        "id": "U7037449999PrH",
                        "hjStyle": "text-all",
                        "format": "Clean text",
                        "sref": "U7037449999QR",
                        "type": "text"
                      }
                    }
                  },
                  {
                    "id": "U7037449999cx",
                    "name": "StoryB",
                    "content": {
                      "id": "U70374499995OI",
                      "stand": "yes",
                      "loid": "1.0.8128558",
                      "href": "/Globe/Stories/News/StoryA-125.xml?uuid=k9kVViZLEea-3uY3G3P-Ig&li=U70374499995OI",
                      "item": {
                        "fstyle": "Justify",
                        "vj": "font-stretch:105%;",
                        "id": "U7037449999PNC",
                        "hjStyle": "text-all",
                        "format": "Clean",
                        "sref": "U7037449999lIC",
                        "type": "text"
                      }
                    }
                  }
                ]
              },
              "layers": {
                "ld": [
                  {
                    "id": "kBpD"
                  },
                  {
                    "id": "PLX-UU20801800053SLF05D",
                    "name": "Ads",
                    "color": "#00FF00",
                    "href": "/Globe/Print/Pages/News/2016-05-31/Ads/News-001-Ads.pgl?uuid=9292004a-264b-11e6-bede-e6371b73fe22"
                  }
                ],
                "layer": [
                  {
                    "id": "UU20801800053SLFarC",
                    "svg": {
                      "rect": [
                        {
                          "vj": "line-spacing:'0.4000000059604644775390625';",
                          "y": "120.68",
                          "id": "U7037449999lIC",
                          "width": "192.74",
                          "height": "160",
                          "x": "575.26",
                          "iref": "U7037449999PNC"
                        },
                        {
                          "y": "120.69",
                          "id": "U7037449999QR",
                          "width": "612",
                          "height": "160",
                          "x": "0",
                          "iref": "U7037449999PrH",
                          "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                        }
                      ]
                    },
                    "yGuides": {
                      "snap": {
                        "value": "135.93"
                      }
                    }
                  },
                  {
                    "id": "UU20801800053SLFIOI"
                  }
                ]
              },
              "spreads": {
                "margin": "19.92",
                "spread": {
                  "page": {
                    "layer": [
                      {
                        "lref": "UU20801800053SLFarC"
                      },
                      {
                        "lref": "UU20801800053SLFIOI"
                      }
                    ]
                  }
                }
              }
            }
          }
        }
      ],
      "virtualId": "REAhAEMxjOqwusyyInrdMLL",
      "path": "/Globe/Print/Pages/News/2016-05-31",
      "name": "News-001",
      "printEdition": {
        "edition": {
          "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
          "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
          "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
          "name": "USA",
          "id": "U208018000534oF",
          "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
          "editionPath": "USA",
          "printsites": {
            "zone": [],
            "ps": [
              {
                "name": "Milan"
              },
              {
                "name": "Rome"
              },
              {
                "name": "London"
              },
              {
                "name": "Glasgow"
              }
            ]
          },
          "books": {
            "book": {
              "background-color": "#FF0000",
              "format": "tabloid",
              "name": "Book1",
              "id": "U20801800053rmG",
              "pnn": "0",
              "pages": {
                "page": [
                  {
                    "section": "News",
                    "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                    "template": "/SysConfig/Globe/Print/PrintProductFurniture/Tabloid Front.pgl",
                    "color": "cmyk",
                    "id": "U20801800053SLF",
                    "pn": "1",
                    "pgl": {
                      "channel": "Globe-Print",
                      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                      "stories": {
                        "story": [
                          {
                            "id": "U7037449999Jj",
                            "name": "StoryA",
                            "content": {
                              "id": "U7037449999qNH",
                              "stand": "yes",
                              "loid": "1.0.8128592",
                              "item": {
                                "fstyle": "Justify",
                                "id": "U7037449999PrH",
                                "hjStyle": "text-all",
                                "format": "Clean text",
                                "sref": "U7037449999QR",
                                "type": "text"
                              }
                            }
                          },
                          {
                            "id": "U7037449999cx",
                            "name": "StoryB",
                            "content": {
                              "id": "U70374499995OI",
                              "stand": "yes",
                              "loid": "1.0.8128558",
                              "item": {
                                "fstyle": "Justify",
                                "vj": "font-stretch:105%;",
                                "id": "U7037449999PNC",
                                "hjStyle": "text-all",
                                "format": "Clean",
                                "sref": "U7037449999lIC",
                                "type": "text"
                              }
                            }
                          }
                        ]
                      },
                      "layers": {
                        "ld": [
                          {
                            "id": "kBpD"
                          }
                        ],
                        "layer": [
                          {
                            "id": "UU20801800053SLFarC",
                            "svg": {
                              "rect": [
                                {
                                  "vj": "line-spacing:'0.4000000059604644775390625';",
                                  "y": "120.68",
                                  "id": "U7037449999lIC",
                                  "width": "192.74",
                                  "height": "160",
                                  "x": "575.26",
                                  "iref": "U7037449999PNC"
                                },
                                {
                                  "y": "120.69",
                                  "id": "U7037449999QR",
                                  "width": "612",
                                  "height": "160",
                                  "x": "0",
                                  "iref": "U7037449999PrH",
                                  "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                                }
                              ]
                            },
                            "yGuides": {
                              "snap": {
                                "value": "135.93"
                              }
                            }
                          }
                        ]
                      },
                      "spreads": {
                        "margin": "19.92",
                        "spread": {
                          "page": {
                            "layer": [
                              {
                                "lref": "UU20801800053SLFarC"
                              }
                            ]
                          }
                        }
                      }
                    },
                    "layer": []
                  },
                  {
                    "section": "Sport",
                    "color": "cmyk",
                    "id": "U20801800053mZ",
                    "pn": "2",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053EYC",
                    "pn": "3",
                    "inherit": "EUROPE?pp=1",
                    "layer": []
                  },
                  {
                    "section": "News",
                    "color": "cmyk",
                    "id": "U208018000530tH",
                    "pn": "4",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053fPG",
                    "pn": "5",
                    "inherit": "EUROPE?pp=5",
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053ZqH",
                    "pn": "6",
                    "inherit": "EUROPE?pp=3",
                    "layer": []
                  },
                  {
                    "section": "Sport",
                    "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe double.grd",
                    "color": "cmyk",
                    "id": "U20801800053Y8B",
                    "pn": "7",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "trucks": "2",
                    "layer": []
                  },
                  {
                    "section": "Politics",
                    "color": "cmyk",
                    "id": "U20801800053PMB",
                    "pn": "9",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "color": "cmyk",
                    "id": "U20801800053rHE",
                    "pn": "10",
                    "inherit": "EUROPE?pp=6",
                    "layer": []
                  },
                  {
                    "section": "Business",
                    "color": "cmyk",
                    "id": "U20801800053rNI",
                    "pn": "11",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Business",
                    "color": "cmyk",
                    "id": "U20801800053Q4H",
                    "pn": "12",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Foreign",
                    "color": "cmyk",
                    "id": "U2080180005387G",
                    "pn": "13",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Foreign",
                    "color": "cmyk",
                    "id": "U20801800053WS",
                    "pn": "14",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "Art",
                    "color": "cmyk",
                    "id": "U20801800053HtH",
                    "pn": "15",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "layer": []
                  },
                  {
                    "section": "News",
                    "color": "cmyk",
                    "id": "U20801800053hpB",
                    "pn": "16",
                    "folio": {
                      "position": "F1",
                      "name": "Tabloid"
                    },
                    "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories_News.cfg",
                    "layer": []
                  }
                ]
              },
              "plates": {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "plate": [
                  {
                    "id": "U208018000537nG"
                  },
                  {
                    "id": "U20801800053GXD"
                  },
                  {
                    "id": "U20801800053sE"
                  },
                  {
                    "id": "U20801800053DPE"
                  },
                  {
                    "id": "U208018000530nH"
                  },
                  {
                    "id": "U20801800053eLH"
                  },
                  {
                    "id": "U20801800053TJB"
                  },
                  {
                    "id": "U20801800053v3E"
                  }
                ]
              }
            }
          }
        }
      }
    }
  ],
  "virtualId": "RTVdpzemhyfWR5U1o9KxVEO",
  "path": "/Globe/Print/Plannings/2016-05-31",
  "name": "Globe-20160531",
  "pagePlan": {
    "product": {
      "zoom": "0.20",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
      "channel": "Globe-Print",
      "printsites": {
        "zone": [
          {
            "name": "Italy",
            "ps": [
              {
                "name": "Milan"
              },
              {
                "name": "Rome"
              }
            ]
          },
          {
            "name": "UK",
            "ps": [
              {
                "name": "London"
              },
              {
                "name": "Glasgow"
              }
            ]
          },
          {
            "name": "USA",
            "ps": [
              {
                "name": "New York"
              }
            ]
          },
          {
            "name": "ASIA",
            "ps": [
              {
                "name": "Hong Kong"
              }
            ]
          }
        ],
        "ps": []
      },
      "editions": {
        "edition": [
          {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
            "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
            "name": "EUROPE",
            "id": "U20801800053K7E",
            "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
            "editionPath": "EUROPE",
            "edition": [
              {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
                "name": "Print Site B",
                "id": "U20801800053m4E",
                "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
                "editionPath": "EUROPE/Print Site B-01",
                "star": "01",
                "edition": []
              },
              {
                "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
                "name": "Print Site B",
                "id": "U20801800053m4E",
                "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
                "editionPath": "EUROPE/Print Site B-01",
                "star": "01",
                "edition": []
              }
            ]
          },
          {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
            "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
            "name": "USA",
            "id": "U208018000534oF",
            "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
            "editionPath": "USA",
            "edition": []
          }
        ]
      }
    }
  }

/containers/pagePlan/pageEdition/{source} DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 42. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Path parameters

EidosMedia Rest Application Server 43. Parameters:
Parameter Type Required Default Description

source

String

No

-

Form parameters

EidosMedia Rest Application Server 44. Parameters:
Parameter Type Required Default Description

deleteFromAllParents

boolean

No

false

-

loidParentsInvolvedIntoDelete

List

No

-

Request

curl -X DELETE -H "Cache-Control: no-cache" "http://restserver:8080/restapi-core/rest/containers/pagePlan/pageEdition/loid:199$1.0.717727920"

Response

Content type

application/json

This call, returns the reference of PagePlan deleted.
{
  "type": "PRINTEDITION",
  "source": "loid:199$1.0.717727920",
  "loid": "199$1.0.717727920",
  "uuid": "0b2457d8-2d7c-11e6-a429-7a5bfc1aa274",
  "error": false,
  "errorMessages": [],
  "children": [],
  "printEdition": {
    "edition": {
      "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
      "name": "USA",
      "id": "U208018000534oF",
      "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
      "editionPath": "USA",
      "printsites": {
        "zone": [],
        "ps": [
          {
            "name": "Milan"
          },
          {
            "name": "Rome"
          },
          {
            "name": "London"
          },
          {
            "name": "Glasgow"
          }
        ]
      },
      "books": {
        "book": {
          "background-color": "#FF0000",
          "format": "tabloid",
          "name": "Book1",
          "id": "U20801800053rmG",
          "pnn": "0",
          "pages": {
            "page": [
              {
                "section": "News",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                "template": "/SysConfig/Globe/Print/PrintProductFurniture/Tabloid Front.pgl",
                "color": "cmyk",
                "id": "U20801800053SLF",
                "pn": "1",
                "pgl": {
                  "channel": "Globe-Print",
                  "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                  "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                  "stories": {
                    "story": [
                      {
                        "id": "U7037449999Jj",
                        "name": "StoryA",
                        "content": {
                          "id": "U7037449999qNH",
                          "stand": "yes",
                          "loid": "1.0.8128592",
                          "item": {
                            "fstyle": "Justify",
                            "id": "U7037449999PrH",
                            "hjStyle": "text-all",
                            "format": "Clean text",
                            "sref": "U7037449999QR",
                            "type": "text"
                          }
                        }
                      },
                      {
                        "id": "U7037449999cx",
                        "name": "StoryB",
                        "content": {
                          "id": "U70374499995OI",
                          "stand": "yes",
                          "loid": "1.0.8128558",
                          "item": {
                            "fstyle": "Justify",
                            "vj": "font-stretch:105%;",
                            "id": "U7037449999PNC",
                            "hjStyle": "text-all",
                            "format": "Clean",
                            "sref": "U7037449999lIC",
                            "type": "text"
                          }
                        }
                      }
                    ]
                  },
                  "layers": {
                    "ld": [
                      {
                        "id": "kBpD"
                      }
                    ],
                    "layer": [
                      {
                        "id": "UU20801800053SLFarC",
                        "svg": {
                          "rect": [
                            {
                              "vj": "line-spacing:'0.4000000059604644775390625';",
                              "y": "120.68",
                              "id": "U7037449999lIC",
                              "width": "192.74",
                              "height": "160",
                              "x": "575.26",
                              "iref": "U7037449999PNC"
                            },
                            {
                              "y": "120.69",
                              "id": "U7037449999QR",
                              "width": "612",
                              "height": "160",
                              "x": "0",
                              "iref": "U7037449999PrH",
                              "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                            }
                          ]
                        },
                        "yGuides": {
                          "snap": {
                            "value": "135.93"
                          }
                        }
                      }
                    ]
                  },
                  "spreads": {
                    "margin": "19.92",
                    "spread": {
                      "page": {
                        "layer": [
                          {
                            "lref": "UU20801800053SLFarC"
                          }
                        ]
                      }
                    }
                  }
                },
                "layer": []
              },
              {
                "section": "Sport",
                "color": "cmyk",
                "id": "U20801800053mZ",
                "pn": "2",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053EYC",
                "pn": "3",
                "inherit": "EUROPE?pp=1",
                "layer": []
              },
              {
                "section": "News",
                "color": "cmyk",
                "id": "U208018000530tH",
                "pn": "4",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053fPG",
                "pn": "5",
                "inherit": "EUROPE?pp=5",
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053ZqH",
                "pn": "6",
                "inherit": "EUROPE?pp=3",
                "layer": []
              },
              {
                "section": "Sport",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe double.grd",
                "color": "cmyk",
                "id": "U20801800053Y8B",
                "pn": "7",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "trucks": "2",
                "layer": []
              },
              {
                "section": "Politics",
                "color": "cmyk",
                "id": "U20801800053PMB",
                "pn": "9",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053rHE",
                "pn": "10",
                "inherit": "EUROPE?pp=6",
                "layer": []
              },
              {
                "section": "Business",
                "color": "cmyk",
                "id": "U20801800053rNI",
                "pn": "11",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Business",
                "color": "cmyk",
                "id": "U20801800053Q4H",
                "pn": "12",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Foreign",
                "color": "cmyk",
                "id": "U2080180005387G",
                "pn": "13",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Foreign",
                "color": "cmyk",
                "id": "U20801800053WS",
                "pn": "14",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Art",
                "color": "cmyk",
                "id": "U20801800053HtH",
                "pn": "15",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "News",
                "color": "cmyk",
                "id": "U20801800053hpB",
                "pn": "16",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories_News.cfg",
                "layer": []
              }
            ]
          },
          "plates": {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "plate": [
              {
                "id": "U208018000537nG"
              },
              {
                "id": "U20801800053GXD"
              },
              {
                "id": "U20801800053sE"
              },
              {
                "id": "U20801800053DPE"
              },
              {
                "id": "U208018000530nH"
              },
              {
                "id": "U20801800053eLH"
              },
              {
                "id": "U20801800053TJB"
              },
              {
                "id": "U20801800053v3E"
              }
            ]
          }
        }
      }
    }
  }
}

/containers/pagePlan/pageEdition/{source} GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 45. Parameters:
Parameter Type Required Default Description

depth

int

No

-1

-

excludeList

List

No

-

filter

DefaultFiltersEnum

No

NONE

-

limit

int

No

-1

-

offset

int

No

-1

-

sessionId

String

No

-

showObjectInfo

boolean

No

false

-

Path parameters

EidosMedia Rest Application Server 46. Parameters:
Parameter Type Required Default Description

source

String

No

-

Request

Read a TopicPlan.
curl -X GET -H "Cache-Control: no-cache" "http://restserver:8080/restapi-core/rest/containers/pagePlan/pageEdition/loid:199$1.0.717727920"

Response

Content type

application/json

This call, returns the reference of PagePlan deleted.
{
  "type": "PRINTEDITION",
  "source": "loid:199$1.0.717727920",
  "loid": "199$1.0.717727920",
  "uuid": "0b2457d8-2d7c-11e6-a429-7a5bfc1aa274",
  "error": false,
  "errorMessages": [],
  "children": [],
  "printEdition": {
    "edition": {
      "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
      "name": "USA",
      "id": "U208018000534oF",
      "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
      "editionPath": "USA",
      "printsites": {
        "zone": [],
        "ps": [
          {
            "name": "Milan"
          },
          {
            "name": "Rome"
          },
          {
            "name": "London"
          },
          {
            "name": "Glasgow"
          }
        ]
      },
      "books": {
        "book": {
          "background-color": "#FF0000",
          "format": "tabloid",
          "name": "Book1",
          "id": "U20801800053rmG",
          "pnn": "0",
          "pages": {
            "page": [
              {
                "section": "News",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                "template": "/SysConfig/Globe/Print/PrintProductFurniture/Tabloid Front.pgl",
                "color": "cmyk",
                "id": "U20801800053SLF",
                "pn": "1",
                "pgl": {
                  "channel": "Globe-Print",
                  "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                  "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                  "stories": {
                    "story": [
                      {
                        "id": "U7037449999Jj",
                        "name": "StoryA",
                        "content": {
                          "id": "U7037449999qNH",
                          "stand": "yes",
                          "loid": "1.0.8128592",
                          "item": {
                            "fstyle": "Justify",
                            "id": "U7037449999PrH",
                            "hjStyle": "text-all",
                            "format": "Clean text",
                            "sref": "U7037449999QR",
                            "type": "text"
                          }
                        }
                      },
                      {
                        "id": "U7037449999cx",
                        "name": "StoryB",
                        "content": {
                          "id": "U70374499995OI",
                          "stand": "yes",
                          "loid": "1.0.8128558",
                          "item": {
                            "fstyle": "Justify",
                            "vj": "font-stretch:105%;",
                            "id": "U7037449999PNC",
                            "hjStyle": "text-all",
                            "format": "Clean",
                            "sref": "U7037449999lIC",
                            "type": "text"
                          }
                        }
                      }
                    ]
                  },
                  "layers": {
                    "ld": [
                      {
                        "id": "kBpD"
                      }
                    ],
                    "layer": [
                      {
                        "id": "UU20801800053SLFarC",
                        "svg": {
                          "rect": [
                            {
                              "vj": "line-spacing:'0.4000000059604644775390625';",
                              "y": "120.68",
                              "id": "U7037449999lIC",
                              "width": "192.74",
                              "height": "160",
                              "x": "575.26",
                              "iref": "U7037449999PNC"
                            },
                            {
                              "y": "120.69",
                              "id": "U7037449999QR",
                              "width": "612",
                              "height": "160",
                              "x": "0",
                              "iref": "U7037449999PrH",
                              "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                            }
                          ]
                        },
                        "yGuides": {
                          "snap": {
                            "value": "135.93"
                          }
                        }
                      }
                    ]
                  },
                  "spreads": {
                    "margin": "19.92",
                    "spread": {
                      "page": {
                        "layer": [
                          {
                            "lref": "UU20801800053SLFarC"
                          }
                        ]
                      }
                    }
                  }
                },
                "layer": []
              },
              {
                "section": "Sport",
                "color": "cmyk",
                "id": "U20801800053mZ",
                "pn": "2",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053EYC",
                "pn": "3",
                "inherit": "EUROPE?pp=1",
                "layer": []
              },
              {
                "section": "News",
                "color": "cmyk",
                "id": "U208018000530tH",
                "pn": "4",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053fPG",
                "pn": "5",
                "inherit": "EUROPE?pp=5",
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053ZqH",
                "pn": "6",
                "inherit": "EUROPE?pp=3",
                "layer": []
              },
              {
                "section": "Sport",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe double.grd",
                "color": "cmyk",
                "id": "U20801800053Y8B",
                "pn": "7",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "trucks": "2",
                "layer": []
              },
              {
                "section": "Politics",
                "color": "cmyk",
                "id": "U20801800053PMB",
                "pn": "9",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053rHE",
                "pn": "10",
                "inherit": "EUROPE?pp=6",
                "layer": []
              },
              {
                "section": "Business",
                "color": "cmyk",
                "id": "U20801800053rNI",
                "pn": "11",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Business",
                "color": "cmyk",
                "id": "U20801800053Q4H",
                "pn": "12",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Foreign",
                "color": "cmyk",
                "id": "U2080180005387G",
                "pn": "13",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Foreign",
                "color": "cmyk",
                "id": "U20801800053WS",
                "pn": "14",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Art",
                "color": "cmyk",
                "id": "U20801800053HtH",
                "pn": "15",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "News",
                "color": "cmyk",
                "id": "U20801800053hpB",
                "pn": "16",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories_News.cfg",
                "layer": []
              }
            ]
          },
          "plates": {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "plate": [
              {
                "id": "U208018000537nG"
              },
              {
                "id": "U20801800053GXD"
              },
              {
                "id": "U20801800053sE"
              },
              {
                "id": "U20801800053DPE"
              },
              {
                "id": "U208018000530nH"
              },
              {
                "id": "U20801800053eLH"
              },
              {
                "id": "U20801800053TJB"
              },
              {
                "id": "U20801800053v3E"
              }
            ]
          }
        }
      }
    }
  }
}

/containers/pagePlan/pageEdition/link POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 47. Parameters:
Parameter Type Required Default Description

parent

String

No

-

sessionId

String

No

-

Request

curl -X POST -H "Accept: application/json" -H "Content-Type: application/json" -H "Cache-Control: no-cache" -d '{
	"type":"PRINTEDITION",
	"name":"News-001",
	"path":"/Globe/Print/Pages/News/2016-05-31",
	"printEdition":{
	  "edition": {
		"hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
		"hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
		"name": "USA",
		"hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
		"id": "U208018000534oF",
		"hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
		"editionPath": "USA",
		"printsites": {
		  "ps": [
			{ "name": "Milan" },
			{ "name": "Rome" },
			{ "name": "London" },
			{ "name": "Glasgow" }
		  ]
		},
		"books": {
		  "book": {
			"background-color": "#FF0000",
			"format": "tabloid",
			"name": "Book1",
			"id": "U20801800053rmG",
			"pnn": "0",
			"pages": {
			  "page": [
				{
				  "section": "News",
				  "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
				  "template": "/SysConfig/Globe/Print/PrintProductFurniture/Tabloid Front.pgl",
				  "color": "cmyk",
				  "id": "U20801800053SLF",
				  "pn": "1",
				  "pgl": {
					"channel": "Globe-Print",
					"hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
					"hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
					"stories": {
					  "story": [
						{
						  "id": "U7037449999Jj",
						  "name": "StoryA",
						  "content": {
							"id": "U7037449999qNH",
							"stand": "yes",
							"loid": "1.0.8128592",
							"item": {
							  "fstyle": "Justify",
							  "id": "U7037449999PrH",
							  "hjStyle": "text-all",
							  "format": "Clean text",
							  "sref": "U7037449999QR",
							  "type": "text"
							}
						  }
						},
						{
						  "id": "U7037449999cx",
						  "name": "StoryB",
						  "content": {
							"id": "U70374499995OI",
							"stand": "yes",
							"loid": "1.0.8128558",
							"item": {
							  "fstyle": "Justify",
							  "vj": "font-stretch:105%;",
							  "id": "U7037449999PNC",
							  "hjStyle": "text-all",
							  "format": "Clean",
							  "sref": "U7037449999lIC",
							  "type": "text"
							}
						  }
						}
					  ]
					},
					"layers": {
					  "ld": [{ "id": "kBpD" }],
					  "layer": [{
						"id": "UU20801800053SLFarC",
						"svg": {
						  "rect": [
							{
							  "vj": "line-spacing:'0.4000000059604644775390625';",
							  "y": "120.68",
							  "id": "U7037449999lIC",
							  "width": "192.74",
							  "height": "160",
							  "x": "575.26",
							  "iref": "U7037449999PNC"
							},
							{
							  "y": "120.69",
							  "id": "U7037449999QR",
							  "width": "612",
							  "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;",
							  "height": "160",
							  "x": "0",
							  "iref": "U7037449999PrH"
							}
						  ]
						},
						"yGuides": {
						  "snap": { "value": "135.93" }
						}
					  }]
					},
					"spreads": {
					  "margin": "19.92",
					  "spread": {
						"page": {
						  "layer": [{ "lref": "UU20801800053SLFarC" }]
						}
					  }
					}
				  }
				},
				{
				  "section": "Sport",
				  "color": "cmyk",
				  "id": "U20801800053mZ",
				  "pn": "2",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "inherit": "EUROPE?pp=1",
				  "color": "cmyk",
				  "id": "U20801800053EYC",
				  "pn": "3"
				},
				{
				  "section": "News",
				  "color": "cmyk",
				  "id": "U208018000530tH",
				  "pn": "4",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "inherit": "EUROPE?pp=5",
				  "color": "cmyk",
				  "id": "U20801800053fPG",
				  "pn": "5"
				},
				{
				  "inherit": "EUROPE?pp=3",
				  "color": "cmyk",
				  "id": "U20801800053ZqH",
				  "pn": "6"
				},
				{
				  "trucks": "2",
				  "section": "Sport",
				  "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe double.grd",
				  "color": "cmyk",
				  "id": "U20801800053Y8B",
				  "pn": "7",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "section": "Politics",
				  "color": "cmyk",
				  "id": "U20801800053PMB",
				  "pn": "9",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "inherit": "EUROPE?pp=6",
				  "color": "cmyk",
				  "id": "U20801800053rHE",
				  "pn": "10"
				},
				{
				  "section": "Business",
				  "color": "cmyk",
				  "id": "U20801800053rNI",
				  "pn": "11",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "section": "Business",
				  "color": "cmyk",
				  "id": "U20801800053Q4H",
				  "pn": "12",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "section": "Foreign",
				  "color": "cmyk",
				  "id": "U2080180005387G",
				  "pn": "13",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "section": "Foreign",
				  "color": "cmyk",
				  "id": "U20801800053WS",
				  "pn": "14",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "section": "Art",
				  "color": "cmyk",
				  "id": "U20801800053HtH",
				  "pn": "15",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				},
				{
				  "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories_News.cfg",
				  "section": "News",
				  "color": "cmyk",
				  "id": "U20801800053hpB",
				  "pn": "16",
				  "folio": {
					"position": "F1",
					"name": "Tabloid"
				  }
				}
			  ]
			},
			"plates": {
			  "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
			  "plate": [
				{ "id": "U208018000537nG" },
				{ "id": "U20801800053GXD" },
				{ "id": "U20801800053sE" },
				{ "id": "U20801800053DPE" },
				{ "id": "U208018000530nH" },
				{ "id": "U20801800053eLH" },
				{ "id": "U20801800053TJB" },
				{ "id": "U20801800053v3E" }
			  ]
			}
		  }
		}
	  }
	},
	"children":[
	{
        "type":"PRINTPAGE",
    	"name":"News-001",
    	"path":"/Globe/Print/Pages/News/2016-05-31",
    	"printPage":{
    	  "pgl": {
    		"channel": "Globe-Print",
    		"hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
    		"hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
    		"stories": {
    		  "story": [
    			{
    			  "id": "U7037449999Jj",
    			  "name": "StoryA",
    			  "content": {
    				"id": "U7037449999qNH",
    				"stand": "yes",
    				"loid": "1.0.8128592",
    				"href": "/Globe/Stories/News/StoryA-126.xml?uuid=lLsO6CZLEea-3uY3G3P-Ig&li=U7037449999qNH",
    				"item": {
    				  "fstyle": "Justify",
    				  "id": "U7037449999PrH",
    				  "hjStyle": "text-all",
    				  "format": "Clean text",
    				  "sref": "U7037449999QR",
    				  "type": "text"
    				}
    			  }
    			},
    			{
    			  "id": "U7037449999cx",
    			  "name": "StoryB",
    			  "content": {
    				"id": "U70374499995OI",
    				"stand": "yes",
    				"loid": "1.0.8128558",
    				"href": "/Globe/Stories/News/StoryA-125.xml?uuid=k9kVViZLEea-3uY3G3P-Ig&li=U70374499995OI",
    				"item": {
    				  "fstyle": "Justify",
    				  "vj": "font-stretch:105%;",
    				  "id": "U7037449999PNC",
    				  "hjStyle": "text-all",
    				  "format": "Clean",
    				  "sref": "U7037449999lIC",
    				  "type": "text"
    				}
    			  }
    			}
    		  ]
    		},
    		"layers": {
    		  "ld": [
    			{ "id": "kBpD" },
    			{
    			  "id": "PLX-UU20801800053SLF05D",
    			  "name": "Ads",
    			  "color": "#00FF00",
    			  "href": "/Globe/Print/Pages/News/2016-05-31/Ads/News-001-Ads.pgl?uuid=9292004a-264b-11e6-bede-e6371b73fe22"
    			}
    		  ],
    		  "layer": [
    			{
    			  "id": "UU20801800053SLFarC",
    			  "svg": {
    				"rect": [
    				  {
    					"vj": "line-spacing:'0.4000000059604644775390625';",
    					"y": "120.68",
    					"id": "U7037449999lIC",
    					"width": "192.74",
    					"height": "160",
    					"x": "575.26",
    					"iref": "U7037449999PNC"
    				  },
    				  {
    					"y": "120.69",
    					"id": "U7037449999QR",
    					"width": "612",
    					"sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;",
    					"height": "160",
    					"x": "0",
    					"iref": "U7037449999PrH"
    				  }
    				]
    			  },
    			  "yGuides": {
    				"snap": { "value": "135.93" }
    			  }
    			},
    			{ "id": "UU20801800053SLFIOI" }
    		  ]
    		},
    		"spreads": {
    		  "margin": "19.92",
    		  "spread": {
    			"page": {
    			  "layer": [
    				{ "lref": "UU20801800053SLFarC" },
    				{ "lref": "UU20801800053SLFIOI" }
    			  ]
    			}
    		  }
    		}
    	  }
    	}
    }
	]
}
' "http://restserver:8080/restapi-core/rest/containers/pagePlan/pageEdition?parent=loid:199$1.0.718966274"

Response

Content type

application/json

The linked PageEdition, with reference of objects.

{
  "type": "PRINTEDITION",
  "source": "loid:199$1.0.717727920",
  "loid": "199$1.0.717727920",
  "uuid": "",
  "error": false,
  "errorMessages": [],
  "children": [
    {
      "type": "PRINTPAGE",
      "source": "loid:199$1.0.717727945",
      "loid": "199$1.0.717727945",
      "uuid": "",
      "error": false,
      "errorMessages": [],
      "children": [],
      "virtualId": "R4JkCRXGUVwbohyiTwecjIO",
      "path": "/Globe/Print/Pages/News/2016-05-31",
      "name": "News-001",
      "printPage": {
        "pgl": {
          "channel": "Globe-Print",
          "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
          "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
          "stories": {
            "story": [
              {
                "id": "U7037449999Jj",
                "name": "StoryA",
                "content": {
                  "id": "U7037449999qNH",
                  "stand": "yes",
                  "loid": "1.0.8128592",
                  "href": "/Globe/Stories/News/StoryA-126.xml?uuid=lLsO6CZLEea-3uY3G3P-Ig&li=U7037449999qNH",
                  "item": {
                    "fstyle": "Justify",
                    "id": "U7037449999PrH",
                    "hjStyle": "text-all",
                    "format": "Clean text",
                    "sref": "U7037449999QR",
                    "type": "text"
                  }
                }
              },
              {
                "id": "U7037449999cx",
                "name": "StoryB",
                "content": {
                  "id": "U70374499995OI",
                  "stand": "yes",
                  "loid": "1.0.8128558",
                  "href": "/Globe/Stories/News/StoryA-125.xml?uuid=k9kVViZLEea-3uY3G3P-Ig&li=U70374499995OI",
                  "item": {
                    "fstyle": "Justify",
                    "vj": "font-stretch:105%;",
                    "id": "U7037449999PNC",
                    "hjStyle": "text-all",
                    "format": "Clean",
                    "sref": "U7037449999lIC",
                    "type": "text"
                  }
                }
              }
            ]
          },
          "layers": {
            "ld": [
              {
                "id": "kBpD"
              },
              {
                "id": "PLX-UU20801800053SLF05D",
                "name": "Ads",
                "color": "#00FF00",
                "href": "/Globe/Print/Pages/News/2016-05-31/Ads/News-001-Ads.pgl?uuid=9292004a-264b-11e6-bede-e6371b73fe22"
              }
            ],
            "layer": [
              {
                "id": "UU20801800053SLFarC",
                "svg": {
                  "rect": [
                    {
                      "vj": "line-spacing:'0.4000000059604644775390625';",
                      "y": "120.68",
                      "id": "U7037449999lIC",
                      "width": "192.74",
                      "height": "160",
                      "x": "575.26",
                      "iref": "U7037449999PNC"
                    },
                    {
                      "y": "120.69",
                      "id": "U7037449999QR",
                      "width": "612",
                      "height": "160",
                      "x": "0",
                      "iref": "U7037449999PrH",
                      "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                    }
                  ]
                },
                "yGuides": {
                  "snap": {
                    "value": "135.93"
                  }
                }
              },
              {
                "id": "UU20801800053SLFIOI"
              }
            ]
          },
          "spreads": {
            "margin": "19.92",
            "spread": {
              "page": {
                "layer": [
                  {
                    "lref": "UU20801800053SLFarC"
                  },
                  {
                    "lref": "UU20801800053SLFIOI"
                  }
                ]
              }
            }
          }
        }
      }
    }
  ],
  "virtualId": "RdLUerTfAi9hOb8ZhhBp1qL",
  "path": "/Globe/Print/Pages/News/2016-05-31",
  "name": "News-001",
  "printEdition": {
    "edition": {
      "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe.grd",
      "name": "USA",
      "id": "U208018000534oF",
      "hrefPrp": "/Globe/Print/Plannings/2016-05-31/Globe-20160531.prp",
      "editionPath": "USA",
      "printsites": {
        "zone": [],
        "ps": [
          {
            "name": "Milan"
          },
          {
            "name": "Rome"
          },
          {
            "name": "London"
          },
          {
            "name": "Glasgow"
          }
        ]
      },
      "books": {
        "book": {
          "background-color": "#FF0000",
          "format": "tabloid",
          "name": "Book1",
          "id": "U20801800053rmG",
          "pnn": "0",
          "pages": {
            "page": [
              {
                "section": "News",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                "template": "/SysConfig/Globe/Print/PrintProductFurniture/Tabloid Front.pgl",
                "color": "cmyk",
                "id": "U20801800053SLF",
                "pn": "1",
                "pgl": {
                  "channel": "Globe-Print",
                  "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe Front.grd",
                  "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
                  "stories": {
                    "story": [
                      {
                        "id": "U7037449999Jj",
                        "name": "StoryA",
                        "content": {
                          "id": "U7037449999qNH",
                          "stand": "yes",
                          "loid": "1.0.8128592",
                          "item": {
                            "fstyle": "Justify",
                            "id": "U7037449999PrH",
                            "hjStyle": "text-all",
                            "format": "Clean text",
                            "sref": "U7037449999QR",
                            "type": "text"
                          }
                        }
                      },
                      {
                        "id": "U7037449999cx",
                        "name": "StoryB",
                        "content": {
                          "id": "U70374499995OI",
                          "stand": "yes",
                          "loid": "1.0.8128558",
                          "item": {
                            "fstyle": "Justify",
                            "vj": "font-stretch:105%;",
                            "id": "U7037449999PNC",
                            "hjStyle": "text-all",
                            "format": "Clean",
                            "sref": "U7037449999lIC",
                            "type": "text"
                          }
                        }
                      }
                    ]
                  },
                  "layers": {
                    "ld": [
                      {
                        "id": "kBpD"
                      }
                    ],
                    "layer": [
                      {
                        "id": "UU20801800053SLFarC",
                        "svg": {
                          "rect": [
                            {
                              "vj": "line-spacing:'0.4000000059604644775390625';",
                              "y": "120.68",
                              "id": "U7037449999lIC",
                              "width": "192.74",
                              "height": "160",
                              "x": "575.26",
                              "iref": "U7037449999PNC"
                            },
                            {
                              "y": "120.69",
                              "id": "U7037449999QR",
                              "width": "612",
                              "height": "160",
                              "x": "0",
                              "iref": "U7037449999PrH",
                              "sstyle": "padding-top:0;padding-right:36;background-color:system-color('Blue Eidos');em-corner-rt-style:'rounded';em-corner-rb-style:'rounded';em-corner-rt-rx:80;em-corner-rt-ry:80;em-corner-lb-rx:80;em-corner-lb-ry:80;em-corner-rb-rx:80;em-corner-rb-ry:80;em-corner-lt-size:0;em-shape-shadow:system-color('Black') 3 3 3 3 3;shadow-opacity:153;margin-right:5;"
                            }
                          ]
                        },
                        "yGuides": {
                          "snap": {
                            "value": "135.93"
                          }
                        }
                      }
                    ]
                  },
                  "spreads": {
                    "margin": "19.92",
                    "spread": {
                      "page": {
                        "layer": [
                          {
                            "lref": "UU20801800053SLFarC"
                          }
                        ]
                      }
                    }
                  }
                },
                "layer": []
              },
              {
                "section": "Sport",
                "color": "cmyk",
                "id": "U20801800053mZ",
                "pn": "2",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053EYC",
                "pn": "3",
                "inherit": "EUROPE?pp=1",
                "layer": []
              },
              {
                "section": "News",
                "color": "cmyk",
                "id": "U208018000530tH",
                "pn": "4",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053fPG",
                "pn": "5",
                "inherit": "EUROPE?pp=5",
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053ZqH",
                "pn": "6",
                "inherit": "EUROPE?pp=3",
                "layer": []
              },
              {
                "section": "Sport",
                "hrefGrid": "/SysConfig/Globe/Print/Page/Grids/Globe double.grd",
                "color": "cmyk",
                "id": "U20801800053Y8B",
                "pn": "7",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "trucks": "2",
                "layer": []
              },
              {
                "section": "Politics",
                "color": "cmyk",
                "id": "U20801800053PMB",
                "pn": "9",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "color": "cmyk",
                "id": "U20801800053rHE",
                "pn": "10",
                "inherit": "EUROPE?pp=6",
                "layer": []
              },
              {
                "section": "Business",
                "color": "cmyk",
                "id": "U20801800053rNI",
                "pn": "11",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Business",
                "color": "cmyk",
                "id": "U20801800053Q4H",
                "pn": "12",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Foreign",
                "color": "cmyk",
                "id": "U2080180005387G",
                "pn": "13",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Foreign",
                "color": "cmyk",
                "id": "U20801800053WS",
                "pn": "14",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "Art",
                "color": "cmyk",
                "id": "U20801800053HtH",
                "pn": "15",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "layer": []
              },
              {
                "section": "News",
                "color": "cmyk",
                "id": "U20801800053hpB",
                "pn": "16",
                "folio": {
                  "position": "F1",
                  "name": "Tabloid"
                },
                "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories_News.cfg",
                "layer": []
              }
            ]
          },
          "plates": {
            "hrefPlate": "/SysConfig/Globe/Print/Page/PagePlates/Tabloid Plate Paired.pgl",
            "plate": [
              {
                "id": "U208018000537nG"
              },
              {
                "id": "U20801800053GXD"
              },
              {
                "id": "U20801800053sE"
              },
              {
                "id": "U20801800053DPE"
              },
              {
                "id": "U208018000530nH"
              },
              {
                "id": "U20801800053eLH"
              },
              {
                "id": "U20801800053TJB"
              },
              {
                "id": "U20801800053v3E"
              }
            ]
          }
        }
      }
    }
  }
}

/containers/topicPlan DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 48. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

source

String

No

-

Request

curl -X DELETE -H "Cache-Control: no-cache" "http://restserver:8080/restapi-core/rest/containers/topicPlan/loid:9$2.0.798902018"

Response

Content type

application/json

This call, returns the reference of TopicPlan deleted.

{
  "type": "TOPICPLAN",
  "source": "loid:9$2.0.798902018",
  "children": [
    {
      "type": "TOPIC",
      "source": "loid:9$2.0.798902044",
      "children": [
        {
          "type": "TOPICITEM",
          "source": "loid:9$2.0.798902065",
          "children": [
            {
              "type": "TOPICSUBITEM",
              "source": "loid:9$2.0.798902079",
              "children": [],
              "loid": "9$2.0.798902079",
              "uuid": "bd8bc9a4-218a-11e6-b996-0ea8757b90b6",
              "error": false,
              "correlates": [],
              "name": "Rio - Foto",
              "dueDate": "0",
              "channel": "Globe-Web",
              "comment": "This is a sub topic item comment",
              "assignment": "test,prova1",
              "priority": "TASK_PRIORITY_LOW",
              "content": "PICTURE",
              "asset": {
                "loid": "9$2.0.795001757",
                "source": "loid:9$2.0.795001757"
              }
            },
            {
              "type": "DIVIDER",
              "children": [],
              "error": false,
              "name": "SUBITEM DIVIDER",
              "font": {
                "bold": true,
                "color": "2558080",
                "faceName": "Tahoma",
                "italic": false,
                "lineThrough": false,
                "size": 14,
                "underline": true
              },
              "bgColor": ""
            },
            {
              "type": "TOPICSUBITEM",
              "source": "loid:9$2.0.798902094",
              "children": [],
              "loid": "9$2.0.798902094",
              "uuid": "bda092bc-218a-11e6-b996-0ea8757b90b6",
              "error": false,
              "correlates": [],
              "name": "Rio - Foto",
              "dueDate": "0",
              "channel": "Globe-Web",
              "comment": "This is a sub topic item comment",
              "assignment": "test,prova1",
              "priority": "TASK_PRIORITY_LOW",
              "content": "PICTURE",
              "asset": {
                "loid": "9$2.0.795001794",
                "source": "loid:9$2.0.795001794"
              }
            }
          ],
          "loid": "9$2.0.798902065",
          "uuid": "bd7e7bb4-218a-11e6-b996-0ea8757b90b6",
          "error": false,
          "correlates": [
            {
              "type": "CORRELATES",
              "source": "loid:9$2.0.798137329",
              "loid": "9$2.0.798137329",
              "error": false
            }
          ],
          "name": "La città di Rio De Janero",
          "dueDate": "0",
          "channel": "La città di Rio De Janero",
          "comment": "This is a topic item comment",
          "assignment": "test,prova1",
          "priority": "TASK_PRIORITY_NORMAL",
          "content": "picture"
        },
        {
          "type": "DIVIDER",
          "children": [],
          "error": false,
          "name": "SUBTOPIC DIVIDER",
          "font": {
            "bold": true,
            "color": "000000",
            "faceName": "Tahoma",
            "italic": false,
            "lineThrough": false,
            "size": 14,
            "underline": true
          },
          "bgColor": ""
        },
        {
          "type": "TOPICITEM",
          "source": "loid:9$2.0.798902106",
          "children": [],
          "loid": "9$2.0.798902106",
          "uuid": "bdb18310-218a-11e6-b996-0ea8757b90b6",
          "error": false,
          "correlates": [],
          "name": "Le zone dei giochi",
          "dueDate": "0",
          "channel": "Le zone dei giochi",
          "comment": "This is a topic item comment",
          "assignment": "test,prova1",
          "priority": "TASK_PRIORITY_NORMAL",
          "content": "picture"
        }
      ],
      "loid": "9$2.0.798902044",
      "uuid": "bd717ff4-218a-11e6-b996-0ea8757b90b6",
      "error": true,
      "errorMessage": "Error in deleteOperations. null",
      "correlates": [
        {
          "type": "CORRELATES",
          "source": "loid:9$2.0.798314409",
          "loid": "9$2.0.798314409",
          "error": false
        }
      ],
      "name": "I giochi a Rio",
      "description": "I Giochi della XXXI Olimpiade (Jogos da XXXI Olimpíada) si terranno a Rio de Janeiro, Brasile, dal 5 agosto al 21 agosto 2016. La città brasiliana diventa la prima sudamericana ad ospitare un'edizione dei Giochi olimpici estivi."
    },
    {
      "type": "DIVIDER",
      "children": [],
      "error": false,
      "name": "DIVIDER (AT TOPIC LEVEL)",
      "font": {
        "bold": true,
        "color": "000000",
        "faceName": "Tahoma",
        "italic": false,
        "lineThrough": false,
        "size": 14,
        "underline": true
      },
      "bgColor": "255150110"
    }
  ],
  "loid": "9$2.0.798902018",
  "uuid": "bd52b92a-218a-11e6-b996-0ea8757b90b6",
  "error": false,
  "correlates": []
}

/containers/topicPlan GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 49. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

showObjectInfo

boolean

No

false

-

source

String

No

-

Request

Read a TopicPlan.

curl -X GET -H "Cache-Control: no-cache" "http://restserver:8080/restapi-core/rest/containers/topicPlan/loid:9$2.0.791942240"

Response

Content type

application/json

This call returns a TopicPlan.

{
  "type": "TOPICPLAN",
  "source": "loid:9$2.0.791942240",
  "children": [
    {
      "type": "TOPIC",
      "source": "loid:9$2.0.791942265",
      "children": [
        {
          "type": "TOPICITEM",
          "source": "loid:9$2.0.791942287",
          "children": [
            {
              "type": "TOPICSUBITEM",
              "source": "loid:9$2.0.791942300",
              "children": [],
              "loid": "9$2.0.791942300",
              "uuid": "e4940bd4-1608-11e6-914c-a3d76f380193",
              "error": false,
              "correlates": [],
              "name": "TOPIC SUBITEM 1 - ITEM CREATED BY REST",
              "dueDate": "0",
              "channel": "Globe-Web",
              "comment": "This is a sub topic item comment",
              "assignment": "test,prova1",
              "priority": "TASK_PRIORITY_LOW",
              "content": "PICTURE"
            },
            {
              "type": "TOPICSUBITEM",
              "source": "loid:9$2.0.791942312",
              "children": [],
              "loid": "9$2.0.791942312",
              "uuid": "e499af58-1608-11e6-914c-a3d76f380193",
              "error": false,
              "correlates": [],
              "name": "TOPIC SUBITEM 2 - ITEM CREATED BY REST",
              "dueDate": "0",
              "channel": "Globe-Web",
              "comment": "This is a sub topic item comment",
              "assignment": "test,prova1",
              "priority": "TASK_PRIORITY_LOW",
              "content": "GRAPHIC"
            }
          ],
          "loid": "9$2.0.791942287",
          "uuid": "e48b4044-1608-11e6-914c-a3d76f380193",
          "error": false,
          "correlates": [],
          "name": "This is the first topic item created by REST",
          "dueDate": "0",
          "channel": "This is the first topic item created by REST",
          "comment": "This is a topic item comment",
          "assignment": "test,prova1",
          "priority": "TASK_PRIORITY_LOW",
          "content": "picture",
          "asset": {
            "loid": "9$2.0.324071438",
            "source": "loid:9$2.0.324071438"
          }
        }
      ],
      "loid": "9$2.0.791942265",
      "uuid": "e4809978-1608-11e6-914c-a3d76f380193",
      "error": false,
      "correlates": [],
      "name": "This is first topic created by REST",
      "description": "Topic description"
    },
    {
      "type": "DIVIDER",
      "children": [],
      "error": false,
      "name": "This is a Divider",
      "bgColor": ""
    },
    {
      "type": "TOPIC",
      "source": "loid:9$2.0.791942330",
      "children": [
        {
          "type": "TOPICITEM",
          "source": "loid:9$2.0.791942351",
          "children": [],
          "loid": "9$2.0.791942351",
          "uuid": "e4adb25a-1608-11e6-914c-a3d76f380193",
          "error": false,
          "correlates": [],
          "name": "Second topic item created by REST",
          "dueDate": "0",
          "channel": "Second topic item created by REST",
          "comment": "This is another topic item comment",
          "assignment": "system",
          "priority": "TASK_PRIORITY_LOW",
          "content": "story",
          "asset": {
            "loid": "9$2.0.788118307",
            "source": "loid:9$2.0.788118307"
          }
        }
      ],
      "loid": "9$2.0.791942330",
      "uuid": "e4a35dfa-1608-11e6-914c-a3d76f380193",
      "error": false,
      "correlates": [],
      "name": "This is a second topic",
      "description": "Topic Description"
    },
    {
      "type": "TOPIC",
      "source": "loid:9$2.0.791910450",
      "children": [],
      "loid": "9$2.0.791910450",
      "uuid": "bad34fe6-15fc-11e6-914c-a3d76f380193",
      "error": false,
      "correlates": [
        {
          "type": "CORRELATES",
          "source": "loid:9$2.0.316186886",
          "loid": "9$2.0.316186886",
          "error": false
        },
        {
          "type": "CORRELATES",
          "source": "loid:9$2.0.316186861",
          "loid": "9$2.0.316186861",
          "error": false
        },
        {
          "type": "CORRELATES",
          "source": "loid:9$2.0.316186836",
          "loid": "9$2.0.316186836",
          "error": false
        }
      ],
      "name": "null",
      "description": "null"
    }
  ],
  "loid": "9$2.0.791942240",
  "uuid": "e471afb2-1608-11e6-914c-a3d76f380193",
  "error": false,
  "correlates": []
}

/containers/topicPlan PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 50. Parameters:
Parameter Type Required Default Description

depth

Integer

No

-

sessionId

String

No

-

showObjectInfo

boolean

No

-

Request

The new TopicPlan structure. Note that the source field of TopicPlan is mandatory (means that TopicPlan must exists in order to update it)

{
    "type": "TOPICPLAN",
    "source" : "loid:9$2.0.798936123",
    "path": "/TestTopicPlan/",
    "workfolder" : "",
    "name": "topicPlanCreatedByRest",
    "children" : [
        {
            "type" : "TOPIC",
            "source" : "",
            "path"   : "/TestTopicPlan/Topic",
            "name" : "This is first topic created by REST",
            "description" : "Topic description",
            "children" : [
                {
                   "type" : "TOPICITEM",
                   "name" : "This is the first topic item created by REST",
                   "dueDate" : "20160501",
                   "size"    : "2 colonne",
                   "channel" : "Globe-Web",
                   "author"  : "Mario Rossi",
                   "comment" : "This is a topic item comment",
                   "priority"   : "TASK_PRIORITY_LOW",
                   "content"    : "picture",
                   "workFolder" : "/Globe/Sport",
                   "assignment" : "test,prova1",
                   "asset"      :  { "source" : "loid:9$2.0.324071438" },
                   "children" : [
                       {
                        "type" : "TOPICSUBITEM",
                        "name" : "TOPIC SUBITEM 1 - ITEM CREATED BY REST",
                        "dueDate" : "20160501",
                        "size"    : "2 colonne",
                        "channel" : "Globe-Web",
                        "author"  : "Mario Rossi",
                        "comment" : "This is a sub topic item comment",
                        "priority"   : "TASK_PRIORITY_LOW",
                        "content"    : "PICTURE",
                        "workFolder" : "/Globe/Sport",
                        "assignment" : "test,prova1",
                        "asset"      :  { "source" : "loid:9$1.0.39679860" }
                        },
                        {
                        "type" : "TOPICSUBITEM",
                        "name" : "TOPIC SUBITEM 2 - ITEM CREATED BY REST",
                        "dueDate" : "20160501",
                        "size"    : "1 colonne",
                        "channel" : "Globe-Web",
                        "author"  : "Mario Rossi",
                        "comment" : "This is a sub topic item comment",
                        "priority"   : "TASK_PRIORITY_LOW",
                        "content"    : "GRAPHIC",
                        "workFolder" : "/Globe/Sport",
                        "assignment" : "test,prova1"
                        }
                   ]
                 }
            ]
        },
        {
            "type" : "DIVIDER",
            "source" : "",
            "name" : "This is a Divider"
        },
        {
            "type" : "TOPIC",
            "source" : "",
            "path"   : "/TestTopicPlan/Topic",
            "name" : "This is a second topic",
            "description" : "Topic Description",
            "children" : [
              {
                   "type" : "TOPICITEM",
                   "name" : "Second topic item created by REST",
                   "dueDate" : "20160501",
                   "size"    : "2 colonne",
                   "channel" : "Globe-Web",
                   "author"  : "Mario Rossi",
                   "comment" : "This is another topic item comment",
                   "priority"   : "TASK_PRIORITY_LOW",
                   "content"    : "story",
                   "workFolder" : "/Globe/Sport",
                   "assignment" : "system",
                   "asset"      : { "source" : "loid:2.0.788118307" }
                 }

            ]
        },
        {
            "type" : "TOPIC",
            "source" : "loid:9$2.0.791910450",
            "path"   : ""
        }
    ]
}

Response

Content type

application/json

The updated object.

{
  "type": "TOPICPLAN",
  "source": "loid:9$2.0.798967416",
  "children": [
    {
      "type": "TOPIC",
      "source": "loid:9$2.0.798967967",
      "children": [
        {
          "type": "TOPICITEM",
          "source": "loid:9$2.0.798967989",
          "children": [
            {
              "type": "TOPICSUBITEM",
              "source": "loid:9$2.0.798968004",
              "children": [],
              "loid": "9$2.0.798968004",
              "uuid": "a5dd7674-2192-11e6-b996-0ea8757b90b6",
              "error": false,
              "correlates": [],
              "name": "TOPIC SUBITEM 1 - ITEM CREATED BY REST",
              "dueDate": "20160501",
              "size": "2 colonne",
              "channel": "Globe-Web",
              "author": "Mario Rossi",
              "comment": "This is a sub topic item comment",
              "assignment": "test,prova1",
              "priority": "TASK_PRIORITY_LOW",
              "content": "PICTURE",
              "workFolder": "/Globe/Sport",
              "asset": {
                "source": "loid:9$1.0.39679860"
              }
            },
            {
              "type": "TOPICSUBITEM",
              "source": "loid:9$2.0.798968016",
              "children": [],
              "loid": "9$2.0.798968016",
              "uuid": "a5ec03c4-2192-11e6-b996-0ea8757b90b6",
              "error": false,
              "correlates": [],
              "name": "TOPIC SUBITEM 2 - ITEM CREATED BY REST",
              "dueDate": "20160501",
              "size": "1 colonne",
              "channel": "Globe-Web",
              "author": "Mario Rossi",
              "comment": "This is a sub topic item comment",
              "assignment": "test,prova1",
              "priority": "TASK_PRIORITY_LOW",
              "content": "GRAPHIC",
              "workFolder": "/Globe/Sport"
            }
          ],
          "loid": "9$2.0.798967989",
          "uuid": "a5cb6b0a-2192-11e6-b996-0ea8757b90b6",
          "error": false,
          "correlates": [],
          "name": "This is the first topic item created by REST",
          "dueDate": "20160501",
          "size": "2 colonne",
          "channel": "Globe-Web",
          "author": "Mario Rossi",
          "comment": "This is a topic item comment",
          "assignment": "test,prova1",
          "priority": "TASK_PRIORITY_LOW",
          "content": "picture",
          "workFolder": "/Globe/Sport",
          "asset": {
            "source": "loid:9$2.0.324071438"
          }
        }
      ],
      "loid": "9$2.0.798967967",
      "uuid": "",
      "error": false,
      "correlates": [],
      "path": "/TestTopicPlan/Topic",
      "name": "This is first topic created by REST",
      "description": "Topic description"
    },
    {
      "type": "TOPIC",
      "source": "loid:9$2.0.798967967",
      "children": [
        {
          "type": "TOPICITEM",
          "source": "loid:9$2.0.798967989",
          "children": [
            {
              "type": "TOPICSUBITEM",
              "source": "loid:9$2.0.798968004",
              "children": [],
              "loid": "9$2.0.798968004",
              "uuid": "a5dd7674-2192-11e6-b996-0ea8757b90b6",
              "error": false,
              "correlates": [],
              "name": "TOPIC SUBITEM 1 - ITEM CREATED BY REST",
              "dueDate": "20160501",
              "size": "2 colonne",
              "channel": "Globe-Web",
              "author": "Mario Rossi",
              "comment": "This is a sub topic item comment",
              "assignment": "test,prova1",
              "priority": "TASK_PRIORITY_LOW",
              "content": "PICTURE",
              "workFolder": "/Globe/Sport",
              "asset": {
                "source": "loid:9$1.0.39679860"
              }
            },
            {
              "type": "TOPICSUBITEM",
              "source": "loid:9$2.0.798968016",
              "children": [],
              "loid": "9$2.0.798968016",
              "uuid": "a5ec03c4-2192-11e6-b996-0ea8757b90b6",
              "error": false,
              "correlates": [],
              "name": "TOPIC SUBITEM 2 - ITEM CREATED BY REST",
              "dueDate": "20160501",
              "size": "1 colonne",
              "channel": "Globe-Web",
              "author": "Mario Rossi",
              "comment": "This is a sub topic item comment",
              "assignment": "test,prova1",
              "priority": "TASK_PRIORITY_LOW",
              "content": "GRAPHIC",
              "workFolder": "/Globe/Sport"
            }
          ],
          "loid": "9$2.0.798967989",
          "uuid": "a5cb6b0a-2192-11e6-b996-0ea8757b90b6",
          "error": false,
          "correlates": [],
          "name": "This is the first topic item created by REST",
          "dueDate": "20160501",
          "size": "2 colonne",
          "channel": "Globe-Web",
          "author": "Mario Rossi",
          "comment": "This is a topic item comment",
          "assignment": "test,prova1",
          "priority": "TASK_PRIORITY_LOW",
          "content": "picture",
          "workFolder": "/Globe/Sport",
          "asset": {
            "source": "loid:9$2.0.324071438"
          }
        }
      ],
      "loid": "9$2.0.798967967",
      "uuid": "",
      "error": false,
      "correlates": [],
      "path": "/TestTopicPlan/Topic",
      "name": "This is first topic created by REST",
      "description": "Topic description"
    },
    {
      "type": "DIVIDER",
      "source": "",
      "children": [],
      "error": false,
      "name": "This is a Divider",
      "bgColor": ""
    },
    {
      "type": "TOPIC",
      "source": "loid:9$2.0.798968065",
      "children": [
        {
          "type": "TOPICITEM",
          "source": "loid:9$2.0.798968086",
          "children": [],
          "loid": "9$2.0.798968086",
          "uuid": "a6220a0a-2192-11e6-b996-0ea8757b90b6",
          "error": false,
          "correlates": [],
          "name": "Second topic item created by REST",
          "dueDate": "20160501",
          "size": "2 colonne",
          "channel": "Globe-Web",
          "author": "Mario Rossi",
          "comment": "This is another topic item comment",
          "assignment": "system",
          "priority": "TASK_PRIORITY_LOW",
          "content": "story",
          "workFolder": "/Globe/Sport",
          "asset": {
            "source": "loid:2.0.788118307"
          }
        }
      ],
      "loid": "9$2.0.798968065",
      "uuid": "",
      "error": false,
      "correlates": [],
      "path": "/TestTopicPlan/Topic",
      "name": "This is a second topic",
      "description": "Topic Description"
    },
    {
      "type": "TOPIC",
      "source": "loid:9$2.0.791910450",
      "children": [],
      "loid": "9$2.0.791910450",
      "uuid": "bad34fe6-15fc-11e6-914c-a3d76f380193",
      "error": true,
      "errorMessage": "Error in eomdbLinkOperations. Error linking child 0. Error is: Cannot marshall null string.Error linking child 1. Error is: Cannot marshall null string.Error linking child 2. Error is: Cannot marshall null string.",
      "correlates": [
        {
          "type": "CORRELATES",
          "source": "loid:9$2.0.316186886",
          "loid": "9$2.0.316186886",
          "error": false
        },
        {
          "type": "CORRELATES",
          "source": "loid:9$2.0.316186861",
          "loid": "9$2.0.316186861",
          "error": false
        },
        {
          "type": "CORRELATES",
          "source": "loid:9$2.0.316186836",
          "loid": "9$2.0.316186836",
          "error": false
        }
      ],
      "path": ""
    }
  ],
  "error": false,
  "correlates": [],
  "path": "/TestTopicPlan/",
  "workfolder": "",
  "name": "topicPlanCreatedByRest"
}

/containers/topicPlan/{source} DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 51. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Path parameters

EidosMedia Rest Application Server 52. Parameters:
Parameter Type Required Default Description

source

String

No

-

Request

curl -X DELETE -H "Cache-Control: no-cache" "http://restserver:8080/restapi-core/rest/containers/topicPlan/loid:9$2.0.798902018"

Response

Content type

application/json

This call, returns the reference of TopicPlan deleted.

{
  "type": "TOPICPLAN",
  "source": "loid:9$2.0.798902018",
  "children": [
    {
      "type": "TOPIC",
      "source": "loid:9$2.0.798902044",
      "children": [
        {
          "type": "TOPICITEM",
          "source": "loid:9$2.0.798902065",
          "children": [
            {
              "type": "TOPICSUBITEM",
              "source": "loid:9$2.0.798902079",
              "children": [],
              "loid": "9$2.0.798902079",
              "uuid": "bd8bc9a4-218a-11e6-b996-0ea8757b90b6",
              "error": false,
              "correlates": [],
              "name": "Rio - Foto",
              "dueDate": "0",
              "channel": "Globe-Web",
              "comment": "This is a sub topic item comment",
              "assignment": "test,prova1",
              "priority": "TASK_PRIORITY_LOW",
              "content": "PICTURE",
              "asset": {
                "loid": "9$2.0.795001757",
                "source": "loid:9$2.0.795001757"
              }
            },
            {
              "type": "DIVIDER",
              "children": [],
              "error": false,
              "name": "SUBITEM DIVIDER",
              "font": {
                "bold": true,
                "color": "2558080",
                "faceName": "Tahoma",
                "italic": false,
                "lineThrough": false,
                "size": 14,
                "underline": true
              },
              "bgColor": ""
            },
            {
              "type": "TOPICSUBITEM",
              "source": "loid:9$2.0.798902094",
              "children": [],
              "loid": "9$2.0.798902094",
              "uuid": "bda092bc-218a-11e6-b996-0ea8757b90b6",
              "error": false,
              "correlates": [],
              "name": "Rio - Foto",
              "dueDate": "0",
              "channel": "Globe-Web",
              "comment": "This is a sub topic item comment",
              "assignment": "test,prova1",
              "priority": "TASK_PRIORITY_LOW",
              "content": "PICTURE",
              "asset": {
                "loid": "9$2.0.795001794",
                "source": "loid:9$2.0.795001794"
              }
            }
          ],
          "loid": "9$2.0.798902065",
          "uuid": "bd7e7bb4-218a-11e6-b996-0ea8757b90b6",
          "error": false,
          "correlates": [
            {
              "type": "CORRELATES",
              "source": "loid:9$2.0.798137329",
              "loid": "9$2.0.798137329",
              "error": false
            }
          ],
          "name": "La città di Rio De Janero",
          "dueDate": "0",
          "channel": "La città di Rio De Janero",
          "comment": "This is a topic item comment",
          "assignment": "test,prova1",
          "priority": "TASK_PRIORITY_NORMAL",
          "content": "picture"
        },
        {
          "type": "DIVIDER",
          "children": [],
          "error": false,
          "name": "SUBTOPIC DIVIDER",
          "font": {
            "bold": true,
            "color": "000000",
            "faceName": "Tahoma",
            "italic": false,
            "lineThrough": false,
            "size": 14,
            "underline": true
          },
          "bgColor": ""
        },
        {
          "type": "TOPICITEM",
          "source": "loid:9$2.0.798902106",
          "children": [],
          "loid": "9$2.0.798902106",
          "uuid": "bdb18310-218a-11e6-b996-0ea8757b90b6",
          "error": false,
          "correlates": [],
          "name": "Le zone dei giochi",
          "dueDate": "0",
          "channel": "Le zone dei giochi",
          "comment": "This is a topic item comment",
          "assignment": "test,prova1",
          "priority": "TASK_PRIORITY_NORMAL",
          "content": "picture"
        }
      ],
      "loid": "9$2.0.798902044",
      "uuid": "bd717ff4-218a-11e6-b996-0ea8757b90b6",
      "error": true,
      "errorMessage": "Error in deleteOperations. null",
      "correlates": [
        {
          "type": "CORRELATES",
          "source": "loid:9$2.0.798314409",
          "loid": "9$2.0.798314409",
          "error": false
        }
      ],
      "name": "I giochi a Rio",
      "description": "I Giochi della XXXI Olimpiade (Jogos da XXXI Olimpíada) si terranno a Rio de Janeiro, Brasile, dal 5 agosto al 21 agosto 2016. La città brasiliana diventa la prima sudamericana ad ospitare un'edizione dei Giochi olimpici estivi."
    },
    {
      "type": "DIVIDER",
      "children": [],
      "error": false,
      "name": "DIVIDER (AT TOPIC LEVEL)",
      "font": {
        "bold": true,
        "color": "000000",
        "faceName": "Tahoma",
        "italic": false,
        "lineThrough": false,
        "size": 14,
        "underline": true
      },
      "bgColor": "255150110"
    }
  ],
  "loid": "9$2.0.798902018",
  "uuid": "bd52b92a-218a-11e6-b996-0ea8757b90b6",
  "error": false,
  "correlates": []
}

/containers/topicPlan/{source} GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 53. Parameters:
Parameter Type Required Default Description

depth

int

No

-1

-

excludeList

List

No

-

filter

DefaultFiltersEnum

No

NONE

-

limit

int

No

-1

-

offset

int

No

-1

-

sessionId

String

No

-

showObjectInfo

boolean

No

false

-

Path parameters

EidosMedia Rest Application Server 54. Parameters:
Parameter Type Required Default Description

source

String

No

-

Request

Read a TopicPlan.

curl -X GET -H "Cache-Control: no-cache" "http://restserver:8080/restapi-core/rest/containers/topicPlan/loid:9$2.0.791942240"

Response

Content type

application/json

This call returns a TopicPlan.

{
  "type": "TOPICPLAN",
  "source": "loid:9$2.0.791942240",
  "children": [
    {
      "type": "TOPIC",
      "source": "loid:9$2.0.791942265",
      "children": [
        {
          "type": "TOPICITEM",
          "source": "loid:9$2.0.791942287",
          "children": [
            {
              "type": "TOPICSUBITEM",
              "source": "loid:9$2.0.791942300",
              "children": [],
              "loid": "9$2.0.791942300",
              "uuid": "e4940bd4-1608-11e6-914c-a3d76f380193",
              "error": false,
              "correlates": [],
              "name": "TOPIC SUBITEM 1 - ITEM CREATED BY REST",
              "dueDate": "0",
              "channel": "Globe-Web",
              "comment": "This is a sub topic item comment",
              "assignment": "test,prova1",
              "priority": "TASK_PRIORITY_LOW",
              "content": "PICTURE"
            },
            {
              "type": "TOPICSUBITEM",
              "source": "loid:9$2.0.791942312",
              "children": [],
              "loid": "9$2.0.791942312",
              "uuid": "e499af58-1608-11e6-914c-a3d76f380193",
              "error": false,
              "correlates": [],
              "name": "TOPIC SUBITEM 2 - ITEM CREATED BY REST",
              "dueDate": "0",
              "channel": "Globe-Web",
              "comment": "This is a sub topic item comment",
              "assignment": "test,prova1",
              "priority": "TASK_PRIORITY_LOW",
              "content": "GRAPHIC"
            }
          ],
          "loid": "9$2.0.791942287",
          "uuid": "e48b4044-1608-11e6-914c-a3d76f380193",
          "error": false,
          "correlates": [],
          "name": "This is the first topic item created by REST",
          "dueDate": "0",
          "channel": "This is the first topic item created by REST",
          "comment": "This is a topic item comment",
          "assignment": "test,prova1",
          "priority": "TASK_PRIORITY_LOW",
          "content": "picture",
          "asset": {
            "loid": "9$2.0.324071438",
            "source": "loid:9$2.0.324071438"
          }
        }
      ],
      "loid": "9$2.0.791942265",
      "uuid": "e4809978-1608-11e6-914c-a3d76f380193",
      "error": false,
      "correlates": [],
      "name": "This is first topic created by REST",
      "description": "Topic description"
    },
    {
      "type": "DIVIDER",
      "children": [],
      "error": false,
      "name": "This is a Divider",
      "bgColor": ""
    },
    {
      "type": "TOPIC",
      "source": "loid:9$2.0.791942330",
      "children": [
        {
          "type": "TOPICITEM",
          "source": "loid:9$2.0.791942351",
          "children": [],
          "loid": "9$2.0.791942351",
          "uuid": "e4adb25a-1608-11e6-914c-a3d76f380193",
          "error": false,
          "correlates": [],
          "name": "Second topic item created by REST",
          "dueDate": "0",
          "channel": "Second topic item created by REST",
          "comment": "This is another topic item comment",
          "assignment": "system",
          "priority": "TASK_PRIORITY_LOW",
          "content": "story",
          "asset": {
            "loid": "9$2.0.788118307",
            "source": "loid:9$2.0.788118307"
          }
        }
      ],
      "loid": "9$2.0.791942330",
      "uuid": "e4a35dfa-1608-11e6-914c-a3d76f380193",
      "error": false,
      "correlates": [],
      "name": "This is a second topic",
      "description": "Topic Description"
    },
    {
      "type": "TOPIC",
      "source": "loid:9$2.0.791910450",
      "children": [],
      "loid": "9$2.0.791910450",
      "uuid": "bad34fe6-15fc-11e6-914c-a3d76f380193",
      "error": false,
      "correlates": [
        {
          "type": "CORRELATES",
          "source": "loid:9$2.0.316186886",
          "loid": "9$2.0.316186886",
          "error": false
        },
        {
          "type": "CORRELATES",
          "source": "loid:9$2.0.316186861",
          "loid": "9$2.0.316186861",
          "error": false
        },
        {
          "type": "CORRELATES",
          "source": "loid:9$2.0.316186836",
          "loid": "9$2.0.316186836",
          "error": false
        }
      ],
      "name": "null",
      "description": "null"
    }
  ],
  "loid": "9$2.0.791942240",
  "uuid": "e471afb2-1608-11e6-914c-a3d76f380193",
  "error": false,
  "correlates": []
}

/containers/topicPlan/topic DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 55. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

source

String

No

-

Form parameters

EidosMedia Rest Application Server 56. Parameters:
Parameter Type Required Default Description

deleteFromAllParents

boolean

No

false

-

loidParentsInvolvedIntoDelete

List

No

-

Request

Delete the Topic from all TopicPlan
----
curl -X DELETE -H "Cache-Control: no-cache" -H "Postman-Token: 94f32e2b-748b-b513-fef3-6eca4c15239a" -H "Content-Type: application/x-www-form-urlencoded" -d 'deleteFromAllParents=true' "http://cirigliano2-nb:8080/restapi-core/rest/containers/topicPlan/topic/loid:9$2.0.793802246"
----

Delete the Topic from selected TopicPlan 9$2.0.793802316 and 9$2.0.793047600 N.B. Don’t use prefix "loid:" in parameter loidParentsInvolvedIntoDelete

curl -X DELETE -H "Content-Type: application/x-www-form-urlencoded" -d 'deleteFromAllParents=false&loidParentsInvolvedIntoDelete=9$2.0.793802316&loidParentsInvolvedIntoDelete=9$2.0.793047600' "http://cirigliano2-nb:8080/restapi-core/rest/containers/topicPlan/topic/loid:9$2.0.793802246"

Response

Content type

application/json

/containers/topicPlan/topic GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 57. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

showObjectInfo

boolean

No

false

-

source

String

No

-

Request

curl -X GET -H "Cache-Control: no-cache" "http://restserver:8080/restapi-core/rest/containers/topicPlan/topic/loid:9$2.0.789807039"

Response

Content type

application/json

{
  "type": "TOPIC",
  "source": "loid:9$2.0.799578237",
  "children": [
    {
      "type": "TOPICITEM",
      "source": "loid:9$2.0.799578256",
      "children": [
        {
          "type": "TOPICSUBITEM",
          "source": "loid:9$2.0.799578270",
          "children": [],
          "loid": "9$2.0.799578270",
          "uuid": "e95bdc92-225a-11e6-8f3b-c3eeda716c7a",
          "error": false,
          "correlates": [],
          "name": "Rio - Foto",
          "dueDate": "0",
          "channel": "Globe-Web",
          "comment": "This is a sub topic item comment",
          "assignment": "test,prova1",
          "priority": "TASK_PRIORITY_LOW",
          "content": "PICTURE",
          "asset": {
            "loid": "9$2.0.795001757",
            "source": "loid:9$2.0.795001757"
          }
        },
        {
          "type": "DIVIDER",
          "children": [],
          "error": false,
          "name": "SUBITEM DIVIDER",
          "font": {
            "bold": true,
            "color": "2558080",
            "faceName": "Tahoma",
            "italic": false,
            "lineThrough": false,
            "size": 14,
            "underline": true
          },
          "bgColor": ""
        },
        {
          "type": "TOPICSUBITEM",
          "source": "loid:9$2.0.799578285",
          "children": [],
          "loid": "9$2.0.799578285",
          "uuid": "e96df116-225a-11e6-8f3b-c3eeda716c7a",
          "error": false,
          "correlates": [],
          "name": "Rio - Foto",
          "dueDate": "0",
          "channel": "Globe-Web",
          "comment": "This is a sub topic item comment",
          "assignment": "test,prova1",
          "priority": "TASK_PRIORITY_LOW",
          "content": "PICTURE",
          "asset": {
            "loid": "9$2.0.795001794",
            "source": "loid:9$2.0.795001794"
          }
        }
      ],
      "loid": "9$2.0.799578256",
      "uuid": "e94c82c4-225a-11e6-8f3b-c3eeda716c7a",
      "error": false,
      "correlates": [
        {
          "type": "CORRELATES",
          "source": "loid:9$2.0.798137329",
          "loid": "9$2.0.798137329",
          "error": false
        }
      ],
      "name": "La città di Rio De Janero",
      "dueDate": "0",
      "channel": "La città di Rio De Janero",
      "comment": "This is a topic item comment",
      "assignment": "test,prova1",
      "priority": "TASK_PRIORITY_NORMAL",
      "content": "picture"
    },
    {
      "type": "DIVIDER",
      "children": [],
      "error": false,
      "name": "SUBTOPIC DIVIDER",
      "font": {
        "bold": true,
        "color": "000000",
        "faceName": "Tahoma",
        "italic": false,
        "lineThrough": false,
        "size": 14,
        "underline": true
      },
      "bgColor": ""
    },
    {
      "type": "TOPICITEM",
      "source": "loid:9$2.0.799578297",
      "children": [],
      "loid": "9$2.0.799578297",
      "uuid": "e9ab92d2-225a-11e6-8f3b-c3eeda716c7a",
      "error": false,
      "correlates": [],
      "name": "Le zone dei giochi",
      "dueDate": "0",
      "channel": "Le zone dei giochi",
      "comment": "This is a topic item comment",
      "assignment": "test,prova1",
      "priority": "TASK_PRIORITY_NORMAL",
      "content": "picture"
    }
  ],
  "loid": "9$2.0.799578237",
  "uuid": "e93d3d50-225a-11e6-8f3b-c3eeda716c7a",
  "error": false,
  "correlates": [
    {
      "type": "CORRELATES",
      "source": "loid:9$2.0.798314409",
      "loid": "9$2.0.798314409",
      "error": false
    }
  ],
  "name": "I giochi a Rio",
  "description": "I Giochi della XXXI Olimpiade (Jogos da XXXI Olimpìada) si terranno a Rio de Janeiro, Brasile, dal 5 agosto al 21 agosto 2016. La città brasiliana diventa la prima sudamericana ad ospitare un'edizione dei Giochi olimpici estivi."
}

/containers/topicPlan/topic POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 58. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

showObjectInfo

s#boolean#

No

-

Request

{
    "type" : "TOPIC",
    "source" : "",
    "path"   : "/TestTopicPlan/Topic",
    "name" : "Topic created by REST API",
    "description" : "Topic description",
    "children" : [
		{
           "type" : "TOPICITEM",
           "name" : "Topic item for topicPlanCreatedByRest-2",
           "dueDate" : "20160501",
           "size"    : "2 colonne",
           "channel" : "Globe-Web",
           "author"  : "Mario Rossi",
           "comment" : "This is a topic item comment",
           "priority"   : "TASK_PRIORITY_NORMAL",
           "content"    : "picture",
           "workFolder" : "/Globe/Sport",
           "assignment" : "test,prova1",
           "asset" : { "source" : "loid:9$2.0.324071438" } ,
           "children" : []
        },
        {
            "type" : "DIVIDER",
            "source" : "",
            "name" : "DIVIDER (AT TOPICITEM LEVEL)",
            "font" : {
            "bold":true,
            "color":"000000",
            "faceName":"Tahoma",
            "italic": "false",
            "lineThrough": "false",
            "size": "14",
            "underline": "true"
            }
        }
    ]
}

Response

Content type

application/json

{
  "type": "TOPIC",
  "source": "loid:9$2.0.799578154",
  "children": [
    {
      "type": "TOPICITEM",
      "source": "loid:9$2.0.799578179",
      "children": [],
      "loid": "9$2.0.799578179",
      "uuid": "b3cd130c-225a-11e6-8f3b-c3eeda716c7a",
      "error": false,
      "correlates": [],
      "name": "Topic item for topicPlanCreatedByRest-2",
      "dueDate": "20160501",
      "size": "2 colonne",
      "channel": "Globe-Web",
      "author": "Mario Rossi",
      "comment": "This is a topic item comment",
      "assignment": "test,prova1",
      "priority": "TASK_PRIORITY_NORMAL",
      "content": "picture",
      "workFolder": "/Globe/Sport",
      "asset": {
        "source": "loid:9$2.0.324071438"
      }
    },
    {
      "type": "DIVIDER",
      "source": "",
      "children": [],
      "error": false,
      "name": "DIVIDER (AT TOPICITEM LEVEL)",
      "font": {
        "bold": true,
        "color": "000000",
        "faceName": "Tahoma",
        "italic": false,
        "lineThrough": false,
        "size": 14,
        "underline": true
      },
      "bgColor": ""
    }
  ],
  "loid": "9$2.0.799578154",
  "uuid": "",
  "error": false,
  "correlates": [],
  "path": "/TestTopicPlan/Topic",
  "name": "Topic created by REST API",
  "description": "Topic description"
}

/containers/topicPlan/topic/{source} DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 59. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Path parameters

EidosMedia Rest Application Server 60. Parameters:
Parameter Type Required Default Description

source

String

No

-

Form parameters

EidosMedia Rest Application Server 61. Parameters:
Parameter Type Required Default Description

deleteFromAllParents

boolean

No

false

-

loidParentsInvolvedIntoDelete

List

No

-

Request

Delete the Topic from all TopicPlan
----
curl -X DELETE -H "Cache-Control: no-cache" -H "Postman-Token: 94f32e2b-748b-b513-fef3-6eca4c15239a" -H "Content-Type: application/x-www-form-urlencoded" -d 'deleteFromAllParents=true' "http://cirigliano2-nb:8080/restapi-core/rest/containers/topicPlan/topic/loid:9$2.0.793802246"
----

Delete the Topic from selected TopicPlan 9$2.0.793802316 and 9$2.0.793047600 N.B. Don’t use prefix "loid:" in parameter loidParentsInvolvedIntoDelete

curl -X DELETE -H "Content-Type: application/x-www-form-urlencoded" -d 'deleteFromAllParents=false&loidParentsInvolvedIntoDelete=9$2.0.793802316&loidParentsInvolvedIntoDelete=9$2.0.793047600' "http://cirigliano2-nb:8080/restapi-core/rest/containers/topicPlan/topic/loid:9$2.0.793802246"

Response

Content type

application/json

/containers/topicPlan/topic/{source} GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 62. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

showObjectInfo

boolean

No

false

-

Path parameters

Parameter Type Required Default Description

source

String

No

-

Request

curl -X GET -H "Cache-Control: no-cache" "http://restserver:8080/restapi-core/rest/containers/topicPlan/topic/loid:9$2.0.789807039"

Response

Content type

application/json

{
  "type": "TOPIC",
  "source": "loid:9$2.0.799578237",
  "children": [
    {
      "type": "TOPICITEM",
      "source": "loid:9$2.0.799578256",
      "children": [
        {
          "type": "TOPICSUBITEM",
          "source": "loid:9$2.0.799578270",
          "children": [],
          "loid": "9$2.0.799578270",
          "uuid": "e95bdc92-225a-11e6-8f3b-c3eeda716c7a",
          "error": false,
          "correlates": [],
          "name": "Rio - Foto",
          "dueDate": "0",
          "channel": "Globe-Web",
          "comment": "This is a sub topic item comment",
          "assignment": "test,prova1",
          "priority": "TASK_PRIORITY_LOW",
          "content": "PICTURE",
          "asset": {
            "loid": "9$2.0.795001757",
            "source": "loid:9$2.0.795001757"
          }
        },
        {
          "type": "DIVIDER",
          "children": [],
          "error": false,
          "name": "SUBITEM DIVIDER",
          "font": {
            "bold": true,
            "color": "2558080",
            "faceName": "Tahoma",
            "italic": false,
            "lineThrough": false,
            "size": 14,
            "underline": true
          },
          "bgColor": ""
        },
        {
          "type": "TOPICSUBITEM",
          "source": "loid:9$2.0.799578285",
          "children": [],
          "loid": "9$2.0.799578285",
          "uuid": "e96df116-225a-11e6-8f3b-c3eeda716c7a",
          "error": false,
          "correlates": [],
          "name": "Rio - Foto",
          "dueDate": "0",
          "channel": "Globe-Web",
          "comment": "This is a sub topic item comment",
          "assignment": "test,prova1",
          "priority": "TASK_PRIORITY_LOW",
          "content": "PICTURE",
          "asset": {
            "loid": "9$2.0.795001794",
            "source": "loid:9$2.0.795001794"
          }
        }
      ],
      "loid": "9$2.0.799578256",
      "uuid": "e94c82c4-225a-11e6-8f3b-c3eeda716c7a",
      "error": false,
      "correlates": [
        {
          "type": "CORRELATES",
          "source": "loid:9$2.0.798137329",
          "loid": "9$2.0.798137329",
          "error": false
        }
      ],
      "name": "La città di Rio De Janero",
      "dueDate": "0",
      "channel": "La città di Rio De Janero",
      "comment": "This is a topic item comment",
      "assignment": "test,prova1",
      "priority": "TASK_PRIORITY_NORMAL",
      "content": "picture"
    },
    {
      "type": "DIVIDER",
      "children": [],
      "error": false,
      "name": "SUBTOPIC DIVIDER",
      "font": {
        "bold": true,
        "color": "000000",
        "faceName": "Tahoma",
        "italic": false,
        "lineThrough": false,
        "size": 14,
        "underline": true
      },
      "bgColor": ""
    },
    {
      "type": "TOPICITEM",
      "source": "loid:9$2.0.799578297",
      "children": [],
      "loid": "9$2.0.799578297",
      "uuid": "e9ab92d2-225a-11e6-8f3b-c3eeda716c7a",
      "error": false,
      "correlates": [],
      "name": "Le zone dei giochi",
      "dueDate": "0",
      "channel": "Le zone dei giochi",
      "comment": "This is a topic item comment",
      "assignment": "test,prova1",
      "priority": "TASK_PRIORITY_NORMAL",
      "content": "picture"
    }
  ],
  "loid": "9$2.0.799578237",
  "uuid": "e93d3d50-225a-11e6-8f3b-c3eeda716c7a",
  "error": false,
  "correlates": [
    {
      "type": "CORRELATES",
      "source": "loid:9$2.0.798314409",
      "loid": "9$2.0.798314409",
      "error": false
    }
  ],
  "name": "I giochi a Rio",
  "description": "I Giochi della XXXI Olimpiade (Jogos da XXXI Olimpìada) si terranno a Rio de Janeiro, Brasile, dal 5 agosto al 21 agosto 2016. La città brasiliana diventa la prima sudamericana ad ospitare un'edizione dei Giochi olimpici estivi."
}

/containers/topicPlan/topic/{sourceTopic}/topicItem POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 63. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Path parameters

EidosMedia Rest Application Server 64. Parameters:
Parameter Type Required Default Description

sourceTopic

String

No

-

Request

Response

Content type

application/json

/containers/topicPlan/topic/{sourceTopic}/topicItem/{sourceTopicItem}/subItem POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 65. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Path parameters

EidosMedia Rest Application Server 66. Parameters:
Parameter Type Required Default Description

sourceTopic

String

No

-

sourceTopicItem

String

No

-

Request

Response

Content type

application/json

/containers/topicPlan/topic/topicItem DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 67. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

source

String

No

-

Form parameters

EidosMedia Rest Application Server 68. Parameters:]
Parameter Type Required Default Description

deleteFromAllParents

boolean

No

false

-

loidParentsInvolvedIntoDelete

List

No

-

Request

Response

Content type

application/json

/containers/topicPlan/topic/topicItem GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 69. Parameters:
Parameter Type Required Default Description

sessionId String

No

-

source String

Request

Response

Content type

application/json

/containers/topicPlan/topic/topicItem POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 70. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Request

Response

Content type

application/json

/containers/topicPlan/topic/topicItem/{source} DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 71. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Path parameters

EidosMedia Rest Application Server 72. Parameters:
Parameter Type Required Default Description

source

String

No

-

Form parameters

EidosMedia Rest Application Server 73. Parameters:
Parameter Type Required Default Description

deleteFromAllParents

boolean

No

false

-

loidParentsInvolvedIntoDelete

List

No

-

Request

Response

Content type

application/json

/containers/topicPlan/topic/topicItem/{source} GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 74. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Path parameters

EidosMedia Rest Application Server 75. Parameters:
Parameter Type Required Default Description

source

String

No

-

Request

Response

Content type

application/json

/containers/topicPlan/topic/topicItem/{source}/attach/{sourceAsset} PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 76. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Path parameters

EidosMedia Rest Application Server 77. Parameters:
Parameter Type Required Default Description

source

String

No

-

sourceAsset

String

No

-

Request

Response

Content type

application/json

/containers/webcontainer GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 78. Parameters:
Parameter Type Required Default Description

depth

int

No

-1

-

excludeList

List

No

-

filter

DefaultFiltersEnum

No

NONE

-

filteringLevel

int

No

-1

-

limit

int

No

-1

-

offset

int

No

-1

-

sessionId

String

No

-

showObjectInfo

boolean

No

false

-

source

String

No

-

Request

curl -X POST -H "Content-Type: application/json" "http://restserver:8080/restapi-core/rest/containers/webcontainer?showObjectInfo=false&source=loid:9$2.0.820715403&depth=2&offset=0"

Response

Content type

application/json

The hierarchy of the web container requested

{
  "containerType": "WebContainer",
  "error": false,
  "errorMessages": [],
  "source": "loid:9$2.0.820715403",
  "name": "dwpRoot.dwp",
  "path":"/Users/Test/create",
  "loid": "2.0.820715403",
  "type": "EOM::WebPage",
  "template": "/SysConfig/Globe/Web/DwpTemplates/public/central.dwp",
  "channel": "Globe-Web",
  "webType": "dwp",
  "children": [
    {
      "containerType": "PARTPAGE",
      "error": false,
      "errorMessages": [],
      "partPageName": "main",
      "maxItems": 1,
      "items": [
        {
          "containerType": "WebContainer",
          "error": false,
          "errorMessages": [],
          "source": "loid:2.0.820715431",
          "name": "dwpDepth1.dwp",
          "path":"/Users/Test/create",
          "loid": "2.0.820715431",
          "type": "EOM::WebPage",
          "template": "/SysConfig/Globe/Web/DwpTemplates/public/central.dwp",
          "channel": "Globe-Web",
          "webType": "dwp",
          "partPage": "main",
          "position": 0,
          "children": [],
          "pasteBoard": []
        }
      ]
    }
  ],
  "pasteBoard": [
    {
      "containerType": "ASSET",
      "source": "loid:2.0.820657876",
      "loid": "2.0.820657876",
      "name": "ex.xml"
    }
  ]
}

/containers/webcontainer POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 79. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

showObjectInfo

boolean

No

false

-

Request

curl -X POST -H "Content-Type: application/json" -d '{
   "containerType":"DWP",
   "source":"",
   "path":"/Users/Test/create",
   "template":"/SysConfig/Globe/Web/DwpTemplates/public/central.dwp",
   "name":"dwpRoot",
   "children":[
      {
         "containerType":"PARTPAGE",
         "partPageName":"main",
         "items":[
            {
               "containerType":"DWP",
               "source":"",
               "path":"/Users/Test/create",
               "template":"/SysConfig/Globe/Web/DwpTemplates/public/central.dwp",
               "name":"dwpDepth1",
               "children":[
                  {
                     "containerType":"PARTPAGE",
                     "partPageName":"main",
                     "items":[
                        {
                           "containerType":"DWP",
                           "source":"",
                           "path":"/Users/Test/create",
                           "template":"/SysConfig/Globe/Web/DwpTemplates/public/central.dwp",
                           "name":"dwpDepth2",
                           "children":[

                           ]
                        }
                     ]
                  }
               ]
            },
            {
               "containerType":"ASSET",
               "source":"loid:9$2.0.820657876"
            }
         ]
      }
   ]
}' "http://restserver:8080/restapi-core/rest/containers/webcontainer?showObjectInfo=false"

Response

Content type

application/json

The created WebContainer, with reference of objects.

{
  "containerType": "DWP",
  "error": false,
  "errorMessages": [],
  "source": "loid:9$2.0.820715403",
  "name": "dwpRoot.dwp",
  "path":"/Users/Test/create",
  "loid": "9$2.0.820715403",
  "template": "/SysConfig/Globe/Web/DwpTemplates/public/central.dwp",
  "channel": "Globe-Web",
  "children": [
    {
      "containerType": "PARTPAGE",
      "error": false,
      "errorMessages": [],
      "partPageName": "main",
      "maxItems": 1,
      "items": [
        {
          "containerType": "DWP",
          "error": false,
          "errorMessages": [],
          "source": "loid:9$2.0.820715431",
          "name": "dwpDepth1.dwp",
          "path":"/Users/Test/create",
          "loid": "9$2.0.820715431",
          "template": "/SysConfig/Globe/Web/DwpTemplates/public/central.dwp",
          "channel": "Globe-Web",
          "position": 0,
          "children": [
            {
              "containerType": "PARTPAGE",
              "error": false,
              "errorMessages": [],
              "partPageName": "main",
              "maxItems": 1,
              "items": [
                {
                  "containerType": "DWP",
                  "error": false,
                  "errorMessages": [],
                  "source": "loid:9$2.0.820715459",
                  "name": "dwpDepth2.dwp",
                  "path":"/Users/Test/create",
                  "loid": "9$2.0.820715459",
                  "template": "/SysConfig/Globe/Web/DwpTemplates/public/central.dwp",
                  "channel": "Globe-Web",
                  "position": 0,
                  "children": [],
                  "pasteBoard": []
                }
              ]
            }
          ],
          "pasteBoard": []
        }
      ]
    }
  ],
  "pasteBoard": [
    {
      "containerType": "ASSET",
      "source": "loid:9$2.0.820657876",
      "loid": "2.0.820657876"
    }
  ]
}

/containers/webcontainer PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 80. Parameters:
Parameter Type Required Default Description

readAll

boolean

No

false

-

sessionId

String

No

-

showObjectInfo

boolean

No

false

-

Request

curl -X PUT -H "Content-Type: application/json" -d '{
  "containerType": "DWP",
  "source": "loid:9$2.0.821127757",
  "children": [
    {
      "containerType": "PARTPAGE",
      "partPageName": "main",
      "items": [
        {
          "containerType": "ASSET",
          "source": "loid:9$2.0.820657876",
          "children": [
          ]},
        {
          "containerType": "ASSET",
          "source": "loid:9$2.0.821004031",
          "children": [
          ]
        }
      ]
    }
  ]
}' "http://restserver:8080/restapi-core/rest/containers/webcontainer"

Response

Content type

application/json

The created WebContainer, with reference of objects.

{
  "containerType": "DWP",
  "error": false,
  "errorMessages": [],
  "source": "loid:9$2.0.821127757",
  "name": "dwpRoot.dwp",
  "path": "/Users/Test/dwpRoot.dwp",
  "loid": "2.0.821127757",
  "type": "EOM::WebPage",
  "template": "/SysConfig/Globe/Web/DwpTemplates/public/central.dwp",
  "channel": "Globe-Web",
  "webType": "dwp",
  "children": [
    {
      "containerType": "PARTPAGE",
      "error": false,
      "errorMessages": [],
      "partPageName": "main",
      "maxItems": 1,
      "items": [
        {
          "containerType": "ASSET",
          "source": "loid:2.0.820657876",
          "loid": "2.0.820657876",
          "partPage": "main",
          "position": 0,
          "name": "ex.xml"
        }
      ]
    }
  ],
  "pasteBoard": [
    {
      "containerType": "ASSET",
      "source": "loid:2.0.821004031",
      "loid": "2.0.821004031",
      "name": "ex2.xml"
    }
  ]
}

/containers/webcontainer/partpage GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 81. Parameters:
Parameter Type Required Default Description

partpage

String

Yes

-

source

String

Yes

-

depth

Integer

No

2

-

sequence

int

No

-

sessionId

String

No

-

showObjectInfo

boolean

No

false

-

Request

Response

Content type

application/json

/containers/webcontainer/partpage PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 82. Parameters:
Parameter Type Required Default Description

source

String

Yes

-

target

String

Yes

-

partpage

String

No

-

position

int

No

-

sessionId

String

No

-

showObjectInfo

boolean

No

false

-

type

String

No

-

Request

Response

Content type

application/json

/object/channelCopy DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 83. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Form parameters

EidosMedia Rest Application Server 84. Parameters:
Parameter Type Required Default Description

source

String

No

-

Request

Content type

application/json

Response

Content type

application/json

/object/channelCopy GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 85. Parameters:
Parameter Type Required Default Description

channel

String

Yes

-

sessionId

String

No

-

source

String

No

-

Request

Response

Content type

application/xml

/object/channelCopy POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 86. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Request

Content type

application/json

Response

Content type

application/json

/object/channelCopy PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 87. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Request

Response

Content type

application/json

/object/channelCopy/alternateContentItem PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 88. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Request

Content type

application/json

Response

Content type

application/json

/object/channelCopy/contentItems GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 89. Parameters:
Parameter Type Required Default Description

channel

String

No

-

sessionId

String

No

-

source

String

No

-

Request

Response

Content type

application/json

/object/channelCopy/externalContentItem DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 90. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Form parameters

EidosMedia Rest Application Server 91. Parameters:
Parameter Type Required Default Description

source

String

No

-

Request

Content type

application/json

Response

Content type

application/json

/object/channelCopy/externalContentItem GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 92. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

source

String

No

-

Request

Response

Content type

application/xml

/object/channelCopy/externalContentItem POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 93. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Request

Content type

application/json

Response

Content type

application/json

/object/channelCopy/externalContentItem PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 94. Parameters:
Parameter Type Required Default Description

Request

Response

Content type

application/json

/object/channelCopy/structure GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 95. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

source

String

No

-

Request

Response

Content type

application/json

Custom

EidosMedia Rest Application Server 96. Apis:

Path

Description

/custom/{action} GET

Resource information

Authentication Required

Yes

Path parameters

EidosMedia Rest Application Server 97. Parameters:
Parameter Type Required Default Description

action

String

No

-

Request

Response

Content type

application/json

/custom/{action} POST

Resource information

Authentication Required

Yes

Path parameters

EidosMedia Rest Application Server 98. Parameters:
Parameter Type Required Default Description

action

String

No

-

Request

Response

Content type

application/json

Datasource

EidosMedia Rest Application Server 99. Apis:

Path

Description

/datasource/fields GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 100. Parameters:
Parameter Type Required Default Description

cn

String

Yes

-

ds

String

Yes

-

dsurl

String

Yes

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/datasource/fields?ds=company"

Response

Return type

DatasourceFieldsBean

Content type

application/json

{
  "objectId": "-2fc7bc42:15383e999ad:-7fc5",
  "fields": [
    "IndexSchemeID",
    "Term",
    "Type",
    "ParentTerm",
    "AliasName",
    "FTEPCode",
    "ISIN",
    "Sedol",
    "Ticker",
    "Exchange",
    "FTCode",
    "IsLive",
    "Deleted",
    "IsOrganisation",
    "UseInManualIndexing",
    "FTSEAWI",
    "Country",
    "NumberOfTaxonomies"
  ],
  "queryFields": [
    {
      "name": "term",
      "displayName": "Company",
      "operator": "like"
    },
    {
      "name": "Country",
      "displayName": "Country",
      "operator": "like"
    }
  ]
}

TYPE DatasourceFieldsBean

{
  "fields" : { },
  "objectId" : "aValue",
  "queryFields" : { },
  "type" : "aValue"
}

/datasource/getSubResources GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 101. Parameters:
Parameter Type Required Default Description

dsurl

String

Yes

-

objid

String

Yes

-

resid

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/datasource/getSubResources?objid=-2fc7bc42:15383e999ad:-7fbb&resid=_s"

Response

Content type

application/json

{
  "ra": {
    "@xmlns:enc": "http://www.w3.org/2002/06/soap-encoding",
    "@enc:arraySize": 2,
    "Category": [
      {
        "@id": "_xv",
        "Id": {
          "@selectable": false,
          "content": "business"
        },
        "Pfad": "Business"
      },
      {
        "@id": "_nj",
        "Id": "news",
        "Pfad": "News"
      }
    ]
  }
}

/datasource/query POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 102. Parameters:
Parameter Type Required Default Description

dsurl

String

Yes

-

objid

String

Yes

-

n

String

No

100

-

Request

Content type

application/json

curl -H "Content-Type: application/json" -d " /
{ /
  "fields": [ /
    { /
      "name": "n1", /
      "value": "c1", /
      "operator": "o1" /
    }, /
    { /
      "name": "n1", /
      "value": "c1", /
      "operator": "o1" /
    } /
  ] /
} /
"   /
-X POST "http://eidos01host:9999/restapi-core/rest/datasource/query?objid=-2fc7bc42:15383e999ad:-7fbb"

TYPE DatasourceQueryBean

{
  "fields" : { }
}

Response

Return type

DatasourceQueryResultBean

Content type

application/json

{
  "objectId": "-605da81c:1547e1ab576:-7ff9",
  "size": "-1",
  "rows": [
    {
      "AliasName": "",
      "Country": "Italy",
      "Deleted": "N",
      "Exchange": "",
      "FTCode": "ACDFG00000",
      "FTEPCode": "",
      "FTSEAWI": "N",
      "ISIN": "",
      "IndexSchemeID": "2715",
      "IsLive": "Y",
      "IsOrganisation": "N",
      "NumberOfTaxonomies": "1",
      "ParentTerm": "0",
      "Sedol": "",
      "Term": "Acquedotto_de_Ferrari_Galliera_SpA",
      "Ticker": "",
      "Type": "1",
      "UseInManualIndexing": "Y"
    },
    {
      "AliasName": "",
      "Country": "Italy",
      "Deleted": "N",
      "Exchange": "",
      "FTCode": "ACQUN00000",
      "FTEPCode": "",
      "FTSEAWI": "N",
      "ISIN": "",
      "IndexSchemeID": "7207",
      "IsLive": "Y",
      "IsOrganisation": "N",
      "NumberOfTaxonomies": "1",
      "ParentTerm": "0",
      "Sedol": "",
      "Term": "Acquedotto_Nicolay_SpA",
      "Ticker": "",
      "Type": "1",
      "UseInManualIndexing": "Y"
    }
  ]
}

TYPE DatasourceQueryResultBean

{
  "objectId" : "aValue",
  "rows" : { },
  "size" : "aValue"
}

/datasource/queryGetAll GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 103. Parameters:
Parameter Type Required Default Description

dsurl

String

Yes

-

objid

String

Yes

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/datasource/queryGetAll?objid=-2fc7bc42:15383e999ad:-7fbb"

Response

Content type

application/json

{
  "ra": {
    "@xmlns:enc": "http://www.w3.org/2002/06/soap-encoding",
    "@enc:arraySize": 2,
    "Category": [
      {
        "@c": 2,
        "@id": "_s",
        "Id": "art",
        "Pfad": "Art"
      },
      {
        "@id": "_hp",
        "Id": "politics",
        "Pfad": "Politics"
      }
    ]
  }
}

/datasource/rquery POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 104. Parameters:
Parameter Type Required Default Description

ds

String

Yes

-

dsurl

String

Yes

-

Request

Content type

application/json

curl -H "Content-Type: application/json" -d " /
{ /
  "fields": [ /
    { /
      "name": "n1", /
      "value": "c1", /
      "operator": "o1" /
    }, /
    { /
      "name": "n1", /
      "value": "c1", /
      "operator": "o1" /
    } /
  ] /
} /
"   /
-X POST "http://eidos01host:9999/restapi-core/rest/datasource/query?ds=company"

TYPE DatasourceQueryBean

{
  "fields" : { }
}

Response

Return type

DatasourceQueryResultBean

Content type

application/json

{
  "rows": [
    {
      "AliasName": "",
      "Country": "Italy",
      "Deleted": "N",
      "Exchange": "",
      "FTCode": "ACDFG00000",
      "FTEPCode": "",
      "FTSEAWI": "N",
      "ISIN": "",
      "IndexSchemeID": "2715",
      "IsLive": "Y",
      "IsOrganisation": "N",
      "NumberOfTaxonomies": "1",
      "ParentTerm": "0",
      "Sedol": "",
      "Term": "Acquedotto_de_Ferrari_Galliera_SpA",
      "Ticker": "",
      "Type": "1",
      "UseInManualIndexing": "Y"
    },
    {
      "AliasName": "",
      "Country": "Italy",
      "Deleted": "N",
      "Exchange": "",
      "FTCode": "ACQUN00000",
      "FTEPCode": "",
      "FTSEAWI": "N",
      "ISIN": "",
      "IndexSchemeID": "7207",
      "IsLive": "Y",
      "IsOrganisation": "N",
      "NumberOfTaxonomies": "1",
      "ParentTerm": "0",
      "Sedol": "",
      "Term": "Acquedotto_Nicolay_SpA",
      "Ticker": "",
      "Type": "1",
      "UseInManualIndexing": "Y"
   }
  ]
}

TYPE DatasourceQueryResultBean

{
  "objectId" : "aValue",
  "rows" : { },
  "size" : "aValue"
}

Dwp

EidosMedia Rest Application Server 105. Apis:

Path

Description

/dwp GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 106. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

path

String

Yes

-

channel

String

No

-

showWebType

boolean

No

true

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/dwp?id=2.0.783014564"

Response

Content type

application/json

{
    "id": "1.0.323802235",
    "channel": "Globe-Web",
    "webType": "dwp",
    "type": "container",
    "path": "root",
    "depth": 0,
    "slots": 12,
    "dimension": 4,
    "rowspan": 1,
    "rows": [
        {
            "dimension": 1,
            "#boxes": 8,
            "boxes": [
                {
                    "type": "item",
                    "path": "root[r0]-item0",
                    "depth": 1,
                    "slots": 3,
                    "rowspan": 1
                },
                {
                    "type": "item",
                    "path": "root[r0]-item1",
                    "depth": 1,
                    "slots": 1,
                    "rowspan": 1
                },
                {
                    "type": "item",
                    "path": "root[r0]-item2",
                    "depth": 1,
                    "slots": 1,
                    "rowspan": 1
                },
                {
                    "type": "item",
                    "path": "root[r0]-item3",
                    "depth": 1,
                    "slots": 1,
                    "rowspan": 1
                },
                {
                    "type": "item",
                    "path": "root[r0]-item4",
                    "depth": 1,
                    "slots": 1,
                    "rowspan": 1
                },
                {
                    "type": "item",
                    "path": "root[r0]-item5",
                    "depth": 1,
                    "slots": 1,
                    "rowspan": 1
                },
                {
                    "type": "item",
                    "path": "root[r0]-item6",
                    "depth": 1,
                    "slots": 1,
                    "rowspan": 1
                },
                {
                    "type": "item",
                    "path": "root[r0]-item7",
                    "depth": 1,
                    "slots": 3,
                    "rowspan": 1
                }
            ]
        },
        {
            "dimension": 2,
            "#boxes": 4,
            "boxes": [
                {
                    "type": "item",
                    "path": "root[r1]-item0",
                    "depth": 1,
                    "slots": 1,
                    "rowspan": 1
                },
                {
                    "type": "container",
                    "path": "root[r1]-container1",
                    "depth": 1,
                    "slots": 7,
                    "dimension": 2,
                    "rowspan": 1,
                    "rows": [
                        {
                            "dimension": 1,
                            "#boxes": 1,
                            "boxes": [
                                {
                                    "type": "zone",
                                    "path": "root[r1]-container1[r0]-zone0",
                                    "depth": 2,
                                    "slots": 12,
                                    "rowspan": 1,
                                    "sequence": "001",
                                    "name": "main",
                                    "styleSheet": "main-photo-summary-m",
                                    "zoneIndex": "001",
                                    "maxItems": 12
                                }
                            ]
                        },
                        {
                            "dimension": 1,
                            "#boxes": 2,
                            "boxes": [
                                {
                                    "type": "container",
                                    "path": "root[r1]-container1[r1]-container0",
                                    "depth": 2,
                                    "slots": 8,
                                    "dimension": 6,
                                    "rowspan": 1,
                                    "rows": [
                                        {
                                            "dimension": 1,
                                            "#boxes": 1,
                                            "boxes": [
                                                {
                                                    "type": "item",
                                                    "path": "root[r1]-container1[r1]-container0[r0]-item0",
                                                    "depth": 3,
                                                    "slots": 12,
                                                    "rowspan": 1
                                                }
                                            ]
                                        },
                                        {
                                            "dimension": 1,
                                            "#boxes": 1,
                                            "boxes": [
                                                {
                                                    "type": "zone",
                                                    "path": "root[r1]-container1[r1]-container0[r1]-zone0",
                                                    "depth": 3,
                                                    "slots": 12,
                                                    "rowspan": 1,
                                                    "sequence": "001",
                                                    "name": "first",
                                                    "styleSheet": "box-4col-photo-summary",
                                                    "zoneIndex": "003",
                                                    "maxItems": 12
                                                }
                                            ]
                                        },
                                        {
                                            "dimension": 1,
                                            "#boxes": 1,
                                            "boxes": [
                                                {
                                                    "type": "zone",
                                                    "path": "root[r1]-container1[r1]-container0[r2]-zone0",
                                                    "depth": 3,
                                                    "slots": 12,
                                                    "rowspan": 1,
                                                    "sequence": "001",
                                                    "name": "mediabox",
                                                    "styleSheet": "none",
                                                    "zoneIndex": "004",
                                                    "maxItems": 10
                                                }
                                            ]
                                        },
                                        {
                                            "dimension": 1,
                                            "#boxes": 1,
                                            "boxes": [
                                                {
                                                    "type": "item",
                                                    "path": "root[r1]-container1[r1]-container0[r3]-item0",
                                                    "depth": 3,
                                                    "slots": 12,
                                                    "rowspan": 1
                                                }
                                            ]
                                        },
                                        {
                                            "dimension": 1,
                                            "#boxes": 1,
                                            "boxes": [
                                                {
                                                    "type": "zone",
                                                    "path": "root[r1]-container1[r1]-container0[r4]-zone0",
                                                    "depth": 3,
                                                    "slots": 12,
                                                    "rowspan": 1,
                                                    "sequence": "001",
                                                    "name": "second",
                                                    "styleSheet": "box-4col-photo-summary-alt",
                                                    "zoneIndex": "005",
                                                    "maxItems": 5
                                                }
                                            ]
                                        },
                                        {
                                            "dimension": 1,
                                            "#boxes": 1,
                                            "boxes": [
                                                {
                                                    "type": "zone",
                                                    "path": "root[r1]-container1[r1]-container0[r5]-zone0",
                                                    "depth": 3,
                                                    "slots": 12,
                                                    "rowspan": 1,
                                                    "sequence": "001",
                                                    "name": "third",
                                                    "styleSheet": "box-4col-summary",
                                                    "zoneIndex": "006",
                                                    "maxItems": 4
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "type": "container",
                                    "path": "root[r1]-container1[r1]-container1",
                                    "depth": 2,
                                    "slots": 4,
                                    "dimension": 2,
                                    "rowspan": 1,
                                    "rows": [
                                        {
                                            "dimension": 1,
                                            "#boxes": 1,
                                            "boxes": [
                                                {
                                                    "type": "item",
                                                    "path": "root[r1]-container1[r1]-container1[r0]-item0",
                                                    "depth": 3,
                                                    "slots": 12,
                                                    "rowspan": 1
                                                }
                                            ]
                                        },
                                        {
                                            "dimension": 1,
                                            "#boxes": 1,
                                            "boxes": [
                                                {
                                                    "type": "zone",
                                                    "path": "root[r1]-container1[r1]-container1[r1]-zone0",
                                                    "depth": 3,
                                                    "slots": 12,
                                                    "rowspan": 1,
                                                    "sequence": "001",
                                                    "name": "col2",
                                                    "styleSheet": "box-2col-photo-summary",
                                                    "zoneIndex": "007",
                                                    "maxItems": 4
                                                }
                                            ]
                                        }
                                    ]
                                }
                            ]
                        }
                    ]
                },
                {
                    "type": "container",
                    "path": "root[r1]-container2",
                    "depth": 1,
                    "slots": 3,
                    "dimension": 2,
                    "rowspan": 2,
                    "rows": [
                        {
                            "dimension": 1,
                            "#boxes": 1,
                            "boxes": [
                                {
                                    "type": "item",
                                    "path": "root[r1]-container2[r0]-item0",
                                    "depth": 2,
                                    "slots": 12,
                                    "rowspan": 1
                                }
                            ]
                        },
                        {
                            "dimension": 1,
                            "#boxes": 1,
                            "boxes": [
                                {
                                    "type": "zone",
                                    "path": "root[r1]-container2[r1]-zone0",
                                    "depth": 2,
                                    "slots": 12,
                                    "rowspan": 1,
                                    "sequence": "001",
                                    "name": "col3",
                                    "styleSheet": "box-1col-summary-300",
                                    "zoneIndex": "002",
                                    "maxItems": 4
                                }
                            ]
                        }
                    ]
                },
                {
                    "type": "item",
                    "path": "root[r1]-item3",
                    "depth": 1,
                    "slots": 1,
                    "rowspan": 1
                }
            ]
        },
        {
            "dimension": 1,
            "#boxes": 1,
            "boxes": [
                {
                    "type": "item",
                    "path": "root[r2]-item0",
                    "depth": 1,
                    "slots": 12,
                    "rowspan": 1
                }
            ]
        }
    ]
}

/dwp POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 107. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

Request

Content type

application/json

curl -H "Content-Type: application/json" \
-d " \
{ \
  "Test_Zone": [ \
    { \
      "sequence": 1, \
      "links": [ \
        { \
          "id": "2.0.783014564" \
        } \
      ] \
    } \
  ] \
} \
" \
-X POST "http://eidos01host:9999/restapi-core/rest/dwp?id=2.0.783014564"

Response

Content type

application/json

{"result":"ok"}

/dwp/{dwp}/properties/{item} PUT

Resource information

Authentication Required

Yes

Path parameters

EidosMedia Rest Application Server 108. Parameters:
Parameter Type Required Default Description

dwp

Source

Yes

-

item

Source

Yes

-

Request

Content type

application/json

Response

Content type

application/json

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 109. Parameters:
Parameter Type Required Default Description

dwpId

String

Yes

-

objId

String

Yes

-

zoneName

String

Yes

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/dwp/link/append?dwpId=2.0.783014564&objId=2.0.783014564&zoneName=Test_Zone"

Response

Content type

application/json

{"result":true}

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 110. Parameters:
Parameter Type Required Default Description

dwpId

String

Yes

-

objId

String

Yes

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/dwp/link/remove?dwpId=2.0.783014564&objId=2.0.783014564&zoneName=Test_Zone"

Response

Content type

application/json

{"result":true}

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 111. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/dwp/links?id=2.0.783014564"

Response

Content type

application/json

{
    "col2": [
        {
            "sequence": 1,
            "styleSheet": "box-2col-photo-summary",
            "maxItems": 4,
            "links": []
        }
    ],
    "col3": [
        {
            "sequence": 1,
            "styleSheet": "box-1col-summary-300",
            "maxItems": 4,
            "links": []
        }
    ],
    "first": [
        {
            "sequence": 1,
            "styleSheet": "box-4col-photo-summary",
            "maxItems": 12,
            "links": []
        }
    ],
    "main": [
        {
            "sequence": 1,
            "styleSheet": "main-photo-summary-m",
            "maxItems": 12,
            "links": [
                {
                    "id": "1.0.326269686",
                    "name": "SportOffline-002.xml",
                    "pstate": {
                        "loid": "1.0.326269686",
                        "suid": "",
                        "uuid": "c0bc845a-4027-11e5-8497-6c1a72f47b39",
                        "retention_time": 3218,
                        "ucount": 16
                    },
                    "databaseId": "99",
                    "channel": "Globe-Web",
                    "webType": "story",
                    "position": 1,
                    "type": "EOM::CompoundStory",
                    "modified": {
                        "type": "DATE",
                        "value": "20150813132606",
                        "format": "YYYYMMDDHHmmss"
                    },
                    "last_modifier": "Ismail",
                    "locked": {
                        "type": "DATE",
                        "value": "20150811125210",
                        "format": "YYYYMMDDHHmmss"
                    },
                    "locker": "",
                    "system_attributes": {
                        "workfolder": "/Globe/Sport",
                        "templateName": "/SysConfig/Globe/Templates/story.xml",
                        "summary": "",
                        "wordCount": "19",
                        "channel": "Globe-Web",
                        "productInfo": {
                            "name": "Globe-Web",
                            "issueDate": "20150729"
                        }
                    },
                    "status_info": {
                        "name": "",
                        "identifier": ""
                    }
                },
                {
                    "id": "1.0.323991939",
                    "name": "SportOffline.xml",
                    "pstate": {
                        "loid": "1.0.323991939",
                        "suid": "",
                        "uuid": "9e695676-369f-11e5-a95e-259041d00ad0",
                        "retention_time": 3253,
                        "ucount": 195
                    },
                    "databaseId": "99",
                    "channel": "Globe-Web",
                    "webType": "story",
                    "position": 2,
                    "type": "EOM::CompoundStory",
                    "modified": {
                        "type": "DATE",
                        "value": "20150811125557",
                        "format": "YYYYMMDDHHmmss"
                    },
                    "last_modifier": "Ismail",
                    "locked": {
                        "type": "DATE",
                        "value": "20150811125557",
                        "format": "YYYYMMDDHHmmss"
                    },
                    "locker": "",
                    "system_attributes": {
                        "workfolder": "/Globe/Sport",
                        "templateName": "/SysConfig/Globe/Templates/story.xml",
                        "summary": "The First Story",
                        "wordCount": "66",
                        "channel": "Globe-Web",
                        "productInfo": {
                            "name": "Globe-Web",
                            "issueDate": "20150729"
                        }
                    },
                    "status_info": {
                        "name": "",
                        "identifier": ""
                    }
                }
            ]
        }
    ],
    "mediabox": [
        {
            "sequence": 1,
            "maxItems": 10,
            "links": []
        }
    ],
    "second": [
        {
            "sequence": 1,
            "styleSheet": "box-4col-photo-summary-alt",
            "maxItems": 5,
            "links": []
        }
    ],
    "third": [
        {
            "sequence": 1,
            "styleSheet": "box-4col-summary",
            "maxItems": 4,
            "links": []
        }
    ]
}

/dwp/template PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 112. Parameters:
Parameter Type Required Default Description

dwpId

String

Yes

-

objectId

String

Yes

-

template

String

Yes

-

Request

Response

Content type

application/json

Events

EidosMedia Rest Application Server 113. Apis:

Path

Description

/fireevents POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 114. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Form parameters

EidosMedia Rest Application Server 115. Parameters:
Parameter Type Required Default Description

eventName

String

No

-

source

String

No

-

Request

curl -X POST -H "Content-Type: application/x-www-form-urlencoded" \
  -d 'eventName=Prova&source=loid:199$1.0.749772641'

Response

200

Manage

EidosMedia Rest Application Server 116. Apis:

Path

Description

/manage/command DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 117. Parameters:
Parameter Type Required Default Description

name

String

No

-

Request

Response

Content type

application/json

/manage/command GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 118. Parameters:
Parameter Type Required Default Description

name

String

No

-

Request

Response

Content type

application/json

 {
  "info": {
    "pstate": {
      "uuid": "gNO9bi9zEeCWeD4wpvatBA==",
      "suid": "",
      "loid": "AAEAAAAAMLk=",
      "ucount": 3,
      "retention_time": 1765542413
    },
    "name": "create_formats",
    "description": "Creates lowres and thumbnail formats",
    "type": "EOM::Command",
    "owner": "Administrator",
    "creator": "Administrator",
    "created": 1296723395,
    "last_modifier": "Administrator",
    "modified": 1296723395,
    "locker": "",
    "locked": 1296723395,
    "status_info": {
      "name": "",
      "identifier": ""
    },
    "attributes": "",
    "system_attributes": "",
    "virtual_attributes": "",
    "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
    "size": 0
  },
  "command_info": {
    "end_point": "/methode/meth01/scripts/create_formats.bash",
    "arguments": "",
    "working_directory": "",
    "timeout": 0
  }
}

/manage/command PUT

Resource information

Authentication Required

Yes

Request

curl -X PUT "http://eidos01host:9999/restapi-core/rest/manage/command?name=testCommandREST"

Response

Content type

application/json

/manage/command/list GET

Resource information

Authentication Required

Yes

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/manage/command/list"

Response

Content type

application/json

 {
  "commands": [
    {
      "info": {
        "pstate": {
          "uuid": "gNO9bi9zEeCWeD4wpvatBA==",
          "suid": "",
          "loid": "AAEAAAAAMLk=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "create_formats",
        "description": "Creates lowres and thumbnail formats",
        "type": "EOM::Command",
        "owner": "Administrator",
        "creator": "Administrator",
        "created": 1296723395,
        "last_modifier": "Administrator",
        "modified": 1296723395,
        "locker": "",
        "locked": 1296723395,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/create_formats.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "gNTWwi9zEeCWeD4wpvatBA==",
          "suid": "",
          "loid": "AAEAAAAAMME=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "checkin",
        "description": "Generates objects classification",
        "type": "EOM::Command",
        "owner": "Administrator",
        "creator": "Administrator",
        "created": 1296723395,
        "last_modifier": "Administrator",
        "modified": 1296723395,
        "locker": "",
        "locked": 1296723395,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/checkin.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "gNYBUC9zEeCWeD4wpvatBA==",
          "suid": "",
          "loid": "AAEAAAAAMMk=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "checkin_formats",
        "description": "Generates classification and creates formats",
        "type": "EOM::Command",
        "owner": "Administrator",
        "creator": "Administrator",
        "created": 1296723395,
        "last_modifier": "Administrator",
        "modified": 1296723395,
        "locker": "",
        "locked": 1296723395,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/checkin_formats.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "gNfgTC9zEeCWeD4wpvatBA==",
          "suid": "",
          "loid": "AAEAAAAAMNE=",
          "ucount": 4,
          "retention_time": 0
        },
        "name": "formats_checkin",
        "description": "Creates formats and generates classification",
        "type": "EOM::Command",
        "owner": "Administrator",
        "creator": "Administrator",
        "created": 1296723395,
        "last_modifier": "system",
        "modified": 1380120707,
        "locker": "",
        "locked": 1296723395,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/formats_checkin.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 600
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "gNjtUi9zEeCWeD4wpvatBA==",
          "suid": "",
          "loid": "AAEAAAAAMNk=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "xmlcheck",
        "description": "Syntax check on xml files",
        "type": "EOM::Command",
        "owner": "Administrator",
        "creator": "Administrator",
        "created": 1296723395,
        "last_modifier": "Administrator",
        "modified": 1296723395,
        "locker": "",
        "locked": 1296723395,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/xmlcheck.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "LfVlTH+6EeCAp8/uf/qsqA==",
          "suid": "",
          "loid": "AAEAAACw97E=",
          "ucount": 4,
          "retention_time": 0
        },
        "name": "check_followup",
        "description": "Methode Import Server CheckFolloup",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1305549843,
        "last_modifier": "system",
        "modified": 1305557351,
        "locker": "",
        "locked": 1305549843,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/import/check_followup.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "g3fpyH/SEeCAp8/uf/qsqA==",
          "suid": "",
          "loid": "AAEAAACxW0Q=",
          "ucount": 5,
          "retention_time": 0
        },
        "name": "twitter",
        "description": "Twitter Publish",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1305560294,
        "last_modifier": "system",
        "modified": 1305618006,
        "locker": "",
        "locked": 1305560294,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/twitter/twitter.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "d63ZhH/UEeCAp8/uf/qsqA==",
          "suid": "",
          "loid": "AAEAAACxXmI=",
          "ucount": 4,
          "retention_time": 0
        },
        "name": "globe_htmlpub_sms",
        "description": "Globe - HTMLPub - SMS",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1305561133,
        "last_modifier": "Andrea",
        "modified": 1320832628,
        "locker": "",
        "locked": 1305561133,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/globe/publish_sms.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "mrMd6n/UEeCAp8/uf/qsqA==",
          "suid": "",
          "loid": "AAEAAACxY8w=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "globe_myuploads_approved",
        "description": "Globe - MyUploads - Approved",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1305561192,
        "last_modifier": "system",
        "modified": 1305561226,
        "locker": "",
        "locked": 1305561192,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/globe/portal/myuploads_approved.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "ocHoWn/UEeCAp8/uf/qsqA==",
          "suid": "",
          "loid": "AAEAAACxZAw=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "globe_myuploads_refused",
        "description": "Globe - MyUploads - Refused",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1305561204,
        "last_modifier": "system",
        "modified": 1305561248,
        "locker": "",
        "locked": 1305561204,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/globe/portal/myuploads_refused.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "mYE7Nn/VEeCAp8/uf/qsqA==",
          "suid": "",
          "loid": "AAEAAACxaAo=",
          "ucount": 4,
          "retention_time": 0
        },
        "name": "categorize_subjects",
        "description": "Categorize on Subjects taxonomy",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1305561620,
        "last_modifier": "system",
        "modified": 1305561993,
        "locker": "",
        "locked": 1305561620,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/category/category_subjects.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "s4Fvan/VEeCAp8/uf/qsqA==",
          "suid": "",
          "loid": "AAEAAACxaD4=",
          "ucount": 4,
          "retention_time": 0
        },
        "name": "categorize_people",
        "description": "Categorize on People taxonomy",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1305561663,
        "last_modifier": "system",
        "modified": 1305561986,
        "locker": "",
        "locked": 1305561663,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/category/category_people.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "3aMvSn/VEeCAp8/uf/qsqA==",
          "suid": "",
          "loid": "AAEAAACxaHg=",
          "ucount": 4,
          "retention_time": 0
        },
        "name": "categorize",
        "description": "Categorize on Subjects and People taxonomy",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1305561734,
        "last_modifier": "system",
        "modified": 1305561973,
        "locker": "",
        "locked": 1305561734,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/category/category_all.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "GH9VeoBZEeCdhz71SsafLQ==",
          "suid": "",
          "loid": "AAEAAACy7AA=",
          "ucount": 4,
          "retention_time": 0
        },
        "name": "globe_publish_sms",
        "description": "Globe - Publish SMS - HTMLPub",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1305618097,
        "last_modifier": "system",
        "modified": 1305618375,
        "locker": "",
        "locked": 1305618097,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/globe/publish_sms.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "m1gEaoBZEeCdhz71SsafLQ==",
          "suid": "",
          "loid": "AAEAAACy7H0=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "globe_publish_web",
        "description": "Globe - Publish Web - PortalPub",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1305618316,
        "last_modifier": "system",
        "modified": 1305618364,
        "locker": "",
        "locked": 1305618316,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/globe/publish_web.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "3MxCnILlEeCbjJhR/Pg1Bg==",
          "suid": "",
          "loid": "AAEAAAC7O1I=",
          "ucount": 5,
          "retention_time": 0
        },
        "name": "publish_ipad_authored",
        "description": "Publish to iPad - Authored",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1305898458,
        "last_modifier": "Barsotti",
        "modified": 1328878244,
        "locker": "",
        "locked": 1305898458,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/ipad/publish_ipad_authored.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 300
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "A37eDoLmEeCbjJhR/Pg1Bg==",
          "suid": "",
          "loid": "AAEAAAC7O4w=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "publish_ipad_print",
        "description": "Publish to iPad - Print",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1305898523,
        "last_modifier": "system",
        "modified": 1305898565,
        "locker": "",
        "locked": 1305898523,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/ipad/publish_ipad_print.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "AVcBJottEeCgez4KB2RBjQ==",
          "suid": "",
          "loid": "AAEAAADUIrs=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "globe_publish_web_dwp",
        "description": "Globe - Publish Web - DWP - PortalPub",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1306836111,
        "last_modifier": "system",
        "modified": 1306836155,
        "locker": "",
        "locked": 1306836111,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/globe/publish_web_dwp.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "fm2i6JBSEeCA7p5G1wINng==",
          "suid": "",
          "loid": "AAEAAADh8Yg=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "archive",
        "description": "Archives The Selected Object",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1307374480,
        "last_modifier": "system",
        "modified": 1307374551,
        "locker": "",
        "locked": 1307374480,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/prodarch/prodarch_manual.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "U17kdNR/EeC8qOtckuV2NQ==",
          "suid": "",
          "loid": "AAEAAAGvuI8=",
          "ucount": 4,
          "retention_time": 0
        },
        "name": "mms_test",
        "description": "MMS TEST",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1314870414,
        "last_modifier": "system",
        "modified": 1314870449,
        "locker": "",
        "locked": 1314870415,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/mms_test.bash",
        "arguments": "-id=POST_DEMO_TEST",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "ii5HOlJyEeGmqTKbbbYkJQ==",
          "suid": "",
          "loid": "AAEAAAOLVyU=",
          "ucount": 7,
          "retention_time": 0
        },
        "name": "publish_ipad_authored_new",
        "description": "Publish to iPad - Authored",
        "type": "EOM::Command",
        "owner": "Massimo",
        "creator": "Massimo",
        "created": 1328718769,
        "last_modifier": "Olga",
        "modified": 1341572687,
        "locker": "",
        "locked": 1328718769,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/ipad/publish_ipad_authored_2.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 320
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "p9Y5blJyEeGmqTKbbbYkJQ==",
          "suid": "",
          "loid": "AAEAAAOLV/4=",
          "ucount": 4,
          "retention_time": 0
        },
        "name": "publish_ipad_print_new",
        "description": "Publish to iPad - Print",
        "type": "EOM::Command",
        "owner": "Massimo",
        "creator": "Massimo",
        "created": 1328718819,
        "last_modifier": "Massimo",
        "modified": 1329213216,
        "locker": "",
        "locked": 1328718819,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/ipad/publish_ipad_print_2.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "a6E9snQ9EeGjRe1EIZIT8Q==",
          "suid": "",
          "loid": "AAEAAAXCs9Q=",
          "ucount": 4,
          "retention_time": 0
        },
        "name": "checkin_story",
        "description": "Update EOM::Story format with indesing_story format",
        "type": "EOM::Command",
        "owner": "",
        "creator": "",
        "created": 1332434294,
        "last_modifier": "",
        "modified": 1332435507,
        "locker": "",
        "locked": 1332434294,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/checkin_story.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "0Jll3j7oEeKu/Ol4Zva2Zg==",
          "suid": "",
          "loid": "AAEAAA2NShQ=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "publish_preview_ipad_authored",
        "description": "Publish Contents for iPad Preview",
        "type": "EOM::Command",
        "owner": "MaurizioG",
        "creator": "MaurizioG",
        "created": 1354718042,
        "last_modifier": "MaurizioG",
        "modified": 1354718093,
        "locker": "",
        "locked": 1354718042,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/ipad/publish_preview_ipad_authored.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "yRlColwREeKi2mS7rXcIbQ==",
          "suid": "",
          "loid": "AAEAAA7H7kI=",
          "ucount": 2,
          "retention_time": 0
        },
        "name": "globeFR_htmlpub_PRP",
        "description": "Globe - Publish PRP to Web using HtmlPub",
        "type": "EOM::Command",
        "owner": "Jason",
        "creator": "Jason",
        "created": 1357924223,
        "last_modifier": "Jason",
        "modified": 1357924978,
        "locker": "Jason",
        "locked": 1357924223,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/globeFR_publish_html.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "qPqDftHWEeKIR4UUdb6DAQ==",
          "suid": "",
          "loid": "AAEAABLx/qE=",
          "ucount": 4,
          "retention_time": 0
        },
        "name": "publish_ipad_print3",
        "description": "Publish to iPad - Print",
        "type": "EOM::Command",
        "owner": "MaurizioG",
        "creator": "MaurizioG",
        "created": 1370873066,
        "last_modifier": "LucaP",
        "modified": 1377254035,
        "locker": "",
        "locked": 1370873066,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/ipad/publish_ipad_print_3.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "1H5oMNHWEeKIR4UUdb6DAQ==",
          "suid": "",
          "loid": "AAEAABLx/+U=",
          "ucount": 4,
          "retention_time": 0
        },
        "name": "publish_ipad_authored3",
        "description": "Publish to iPad - Authored",
        "type": "EOM::Command",
        "owner": "MaurizioG",
        "creator": "MaurizioG",
        "created": 1370873139,
        "last_modifier": "MaurizioG",
        "modified": 1370873177,
        "locker": "",
        "locked": 1370873139,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/ipad/publish_ipad_authored_3.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "/7VblNHWEeKIR4UUdb6DAQ==",
          "suid": "",
          "loid": "AAEAABLyCSo=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "publish_epaper3",
        "description": "Publish to epaper",
        "type": "EOM::Command",
        "owner": "MaurizioG",
        "creator": "MaurizioG",
        "created": 1370873211,
        "last_modifier": "MaurizioG",
        "modified": 1370873288,
        "locker": "",
        "locked": 1370873211,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/ipad/publish_epaper_print.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "FQ7L5gvfEeOTp590Pyda+w==",
          "suid": "",
          "loid": "AAEAABTSYmY=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "publish_ipad_authored_3_coreApp3",
        "description": "Publish to iPad - Authored - coreApp3",
        "type": "EOM::Command",
        "owner": "LucaP",
        "creator": "LucaP",
        "created": 1377253851,
        "last_modifier": "LucaP",
        "modified": 1377253915,
        "locker": "",
        "locked": 1377253851,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/ipad/publish_ipad_authored_3_coreApp3.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "luofJgvfEeOTp590Pyda+w==",
          "suid": "",
          "loid": "AAEAABTSaM4=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "publish_ipad_print_3_coreApp3",
        "description": "Publish to iPad - Print",
        "type": "EOM::Command",
        "owner": "LucaP",
        "creator": "LucaP",
        "created": 1377254068,
        "last_modifier": "LucaP",
        "modified": 1377254117,
        "locker": "",
        "locked": 1377254068,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/ipad/publish_ipad_print_3_coreApp3.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "2k90uBn1EeOrmnLC8EnZWA==",
          "suid": "",
          "loid": "AAEAABVTN0E=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "publish_ipad_dwp_3_coreapp3",
        "description": "Publish to iPad Dwp",
        "type": "EOM::Command",
        "owner": "LucaP",
        "creator": "LucaP",
        "created": 1378802947,
        "last_modifier": "LucaP",
        "modified": 1378803008,
        "locker": "",
        "locked": 1378802947,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/ipad/publish_dwp.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "x+UlVB68EeOYKoFZzm2r4w==",
          "suid": "",
          "loid": "AAEAABWFLpc=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "globexl_publish_web",
        "description": "GlobeXL - Publish Web - PortalPub",
        "type": "EOM::Command",
        "owner": "EOMPortal",
        "creator": "EOMPortal",
        "created": 1379328190,
        "last_modifier": "EOMPortal",
        "modified": 1379328293,
        "locker": "",
        "locked": 1379328190,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/globe/publish_globexl.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "SvN1OCdJEeOJiQBKbVWRLg==",
          "suid": "",
          "loid": "AAEAABX3FSY=",
          "ucount": 2,
          "retention_time": 0
        },
        "name": "mss_smart_export",
        "description": "",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1380268149,
        "last_modifier": "system",
        "modified": 1380268182,
        "locker": "",
        "locked": 1380268149,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "http://${SERVER_TC}:${TOMCAT_INOUT_PORT}/mss/servlet/mss?X-params=target=smart_reports",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "MS1QHKOiEeOBDvdOCoTgCA==",
          "suid": "",
          "loid": "AAEAABjSjNU=",
          "ucount": 3,
          "retention_time": 16
        },
        "name": "publish_ipad_authored_globeplus",
        "description": "Publish to iPad - Globe+",
        "type": "EOM::Command",
        "owner": "Michael Lockyer",
        "creator": "Michael Lockyer",
        "created": 1393940275,
        "last_modifier": "Michael Lockyer",
        "modified": 1393940363,
        "locker": "",
        "locked": 1393940275,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/ipad/publish_ipad_authored_globeplus.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "daqDAq6PEeO9eGoQCW9x3Q==",
          "suid": "",
          "loid": "AAEAABlJcSA=",
          "ucount": 4,
          "retention_time": 0
        },
        "name": "create_from_existing",
        "description": "Create content from existing",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1395141692,
        "last_modifier": "system",
        "modified": 1395141741,
        "locker": "",
        "locked": 1395141692,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/cfe.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 120
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "eZC10rQ9EeOHlXaNfI2/Zg==",
          "suid": "",
          "loid": "AAEAABl+5aw=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "social",
        "description": "Publish on Social Networks",
        "type": "EOM::Command",
        "owner": "giorgio.micotti",
        "creator": "giorgio.micotti",
        "created": 1395766187,
        "last_modifier": "giorgio.micotti",
        "modified": 1395766243,
        "locker": "",
        "locked": 1395766187,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/social.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "oXRpYrnFEeOLH7CRdohj6g==",
          "suid": "",
          "loid": "AAEAABnApi4=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "publish_ipad_print_globeExtra",
        "description": "Publisg print to GlobeExtra",
        "type": "EOM::Command",
        "owner": "LucaP",
        "creator": "LucaP",
        "created": 1396374421,
        "last_modifier": "LucaP",
        "modified": 1396374492,
        "locker": "",
        "locked": 1396374421,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/ipad/publish_ipad_print_globeextra.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "ILgGMrsXEeOcXA9sXFz+Fg==",
          "suid": "",
          "loid": "AAEAABnT4RA=",
          "ucount": 8,
          "retention_time": 0
        },
        "name": "social-schedule",
        "description": "Delayed publish on social networks",
        "type": "EOM::Command",
        "owner": "giorgio.micotti",
        "creator": "giorgio.micotti",
        "created": 1396519375,
        "last_modifier": "giorgio.micotti",
        "modified": 1403098068,
        "locker": "",
        "locked": 1396519375,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/social.bash",
        "arguments": "schedule true",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "aAIkJrnFEeOLH7CRdohj6g==",
          "suid": "",
          "loid": "AAEAABnApVs=",
          "ucount": 6,
          "retention_time": 10935
        },
        "name": "publish_ipad_dwp_globeExtra",
        "description": "Publish Dwp to GlobeExtra",
        "type": "EOM::Command",
        "owner": "LucaP",
        "creator": "LucaP",
        "created": 1396374325,
        "last_modifier": "Olga",
        "modified": 1396519895,
        "locker": "",
        "locked": 1396374328,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/common/ipad/publish_ipad_dwp_globeextra.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "M4Jw6MrSEeOIMjMNhL/DYQ==",
          "suid": "",
          "loid": "AAEAABqbH6k=",
          "ucount": 4,
          "retention_time": 0
        },
        "name": "change_workflow_status",
        "description": "Change workflow status",
        "type": "EOM::Command",
        "owner": "daniele.scap",
        "creator": "daniele.scap",
        "created": 1398248990,
        "last_modifier": "daniele.scap",
        "modified": 1398249121,
        "locker": "",
        "locked": 1398248990,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/cws.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 120
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "eVcw3s96EeOwLIhz+H6GqQ==",
          "suid": "",
          "loid": "AAEAABrcqoo=",
          "ucount": 3,
          "retention_time": 10935
        },
        "name": "link_story_report",
        "description": "Link a story on WebPage for GlobeReports",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1398761067,
        "last_modifier": "system",
        "modified": 1398761169,
        "locker": "",
        "locked": 1398761068,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/objwork_link.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "SGDVqgNcEeSFALR5ELQ8qw==",
          "suid": "",
          "loid": "AAEAAB2VY5E=",
          "ucount": 3,
          "retention_time": 0
        },
        "name": "publish_pdfReport",
        "description": "Publish pdf when status change to publishing",
        "type": "EOM::Command",
        "owner": "GlobeReports",
        "creator": "GlobeReports",
        "created": 1404465561,
        "last_modifier": "GlobeReports",
        "modified": 1404465686,
        "locker": "",
        "locked": 1404465561,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/GlobeReports/htmlpub-fop/publish_pdf.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "CfvQwB/0EeWy78xb+aYT/Q==",
          "suid": "",
          "loid": "AAEAACRcd38=",
          "ucount": 4,
          "retention_time": 0
        },
        "name": "checkin_formats_refresh",
        "description": "Generates classification and creates formats forcinge refresh",
        "type": "EOM::Command",
        "owner": "alessandro.ricci",
        "creator": "alessandro.ricci",
        "created": 1435756870,
        "last_modifier": "alessandro.ricci",
        "modified": 1435757590,
        "locker": "",
        "locked": 1435756870,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "/methode/meth01/scripts/checkin_formats_refresh.bash",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "metA0rn4EeWumH/Eo/amSg==",
          "suid": "",
          "loid": "AAEAACgDXa0=",
          "ucount": 1,
          "retention_time": 0
        },
        "name": "ng_trigger_htmlpub",
        "description": "",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1452691309,
        "last_modifier": "system",
        "modified": 1452691309,
        "locker": "",
        "locked": 1452691309,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "5uwaQpU0EeakKXpb/BqidA==",
          "suid": "",
          "loid": "AAEAACt8lmg=",
          "ucount": 0,
          "retention_time": 0
        },
        "name": "testCommandREST",
        "description": "",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1476796512,
        "last_modifier": "system",
        "modified": 1476796512,
        "locker": "system",
        "locked": 1476796512,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    },
    {
      "info": {
        "pstate": {
          "uuid": "NSSyNpXWEeakKXpb/BqidA==",
          "suid": "",
          "loid": "AAEAACt8x80=",
          "ucount": 0,
          "retention_time": 0
        },
        "name": "testCommandREST1",
        "description": "",
        "type": "EOM::Command",
        "owner": "system",
        "creator": "system",
        "created": 1476865792,
        "last_modifier": "system",
        "modified": 1476865792,
        "locker": "system",
        "locked": 1476865792,
        "status_info": {
          "name": "",
          "identifier": ""
        },
        "attributes": "",
        "system_attributes": "",
        "virtual_attributes": "",
        "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "size": 0
      },
      "command_info": {
        "end_point": "",
        "arguments": "",
        "working_directory": "",
        "timeout": 0
      }
    }
  ]
}

/manage/command/listRunning GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 119. Parameters:
Parameter Type Required Default Description

user

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/manage/command/listRunning?user=system"

Response

Content type

application/json

 {
  "commands": []
}

/manage/formatType DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 120. Parameters:
Parameter Type Required Default Description

name

String

Yes

-

Request

Response

Content type

application/json

/manage/formatType GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 121. Parameters:
Parameter Type Required Default Description

name

String

Yes

-

Request

Response

Content type

application/json

/manage/formatType PUT

Resource information

Authentication Required

Yes

Request

curl -X PUT "http://eidos01host:9999/restapi-core/rest/drawer/activate?id=2.0.800084510"

Response

Content type

application/json

/manage/formatType/list GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 122. Parameters:
Parameter Type Required Default Description

category

String

Yes

-

Request

Response

Content type

application/json

/manage/job DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 123. Parameters:
Parameter Type Required Default Description

name

String

No

-

Request

Response

Content type

application/json

/manage/job GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 124. Parameters:
Parameter Type Required Default Description

name

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/manage/job?name=prince"

Response

Content type

application/json

/manage/job PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 125. Parameters:
Parameter Type Required Default Description

name

String

Yes

-

Request

Content type

application/json

curl -X PUT "http://eidos01host:9999/restapi-core/rest/manage/job?name=testCommandREST"

Response

Content type

application/json

/manage/job/list GET

Resource information

Authentication Required

Yes

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/manage/job/list?type="

Response

Content type

application/json

{
}

/manage/objectType DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 126. Parameters:
Parameter Type Required Default Description

name

String

No

-

Request

Response

Content type

application/json

/manage/objectType GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 127. Parameters:
Parameter Type Required Default Description

name

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/manage/objectType?name=create_formats"

Response

Content type

application/json

/manage/objectType PUT

Resource information

Authentication Required

Yes

Request

curl -X PUT "http://eidos01host:9999/restapi-core/rest/manage/objectType?name=testCommandREST"

Response

Content type

application/json

/manage/objectType/action DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 128. Parameters:
Parameter Type Required Default Description

action_name

String

Yes

-

name

String

No

-

Request

Response

Content type

application/json

/manage/objectType/action GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 129. Parameters:
Parameter Type Required Default Description

action_name

String

Yes

-

up_search

boolean

Yes

-

name

String

No

-

Request

Response

Content type

application/json

/manage/objectType/action PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 130. Parameters:
Parameter Type Required Default Description

action_name

String

Yes

-

command_name

String

Yes

-

abort_on_failure

boolean

No

true

-

arguments

String

No

-

category

String

No

-

description

String

No

-

name

String

No

-

Request

Response

Content type

application/json

/manage/objectType/action/list GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 131. Parameters:
Parameter Type Required Default Description

category

String

No

-

name

String

No

-

up_search

boolean

No

true

-

Request

Response

Content type

application/json

/manage/objectType/list GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 132. Parameters:
Parameter Type Required Default Description

category

String

No

-

Request

Response

Content type

application/json

/manage/principal DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 133. Parameters:
Parameter Type Required Default Description

name

String

No

-

Request

Response

Content type

application/json

/manage/principal GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 134. Parameters:
Parameter Type Required Default Description

name

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/manage/principal?name=prince"

Response

Content type

application/json

/manage/principal PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 135. Parameters:
Parameter Type Required Default Description

name

String

Yes

-

type

String

Yes

-

Request

curl -X PUT "http://eidos01host:9999/restapi-core/rest/manage/principal?name=testCommandREST"

Response

Content type

application/json

/manage/principal/group DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 136. Parameters:
Parameter Type Required Default Description

name

String

No

-

Request

Response

Content type

application/json

/manage/principal/group GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 137. Parameters:
Parameter Type Required Default Description

name

String

No

-

Request

Response

Content type

application/json

/manage/principal/group PUT

Resource information

Authentication Required

Yes

Request

Response

Content type

application/json

/manage/principal/group/list GET

Resource information

Authentication Required

Yes

Request

Response

Content type

application/json

/manage/principal/group/users DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 138. Parameters:
Parameter Type Required Default Description

name

String

No

-

userName

List

No

-

Request

Response

Content type

application/json

/manage/principal/group/users GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 139. Parameters:
Parameter Type Required Default Description

name

String

No

-

Request

Response

Content type

application/json

/manage/principal/group/users POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 140. Parameters:
Parameter Type Required Default Description

name

String

No

-

userName

List

No

-

Request

Response

Content type

application/json

/manage/principal/group/users PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 141. Parameters:
Parameter Type Required Default Description

name

String

No

-

userName

List

No

-

Request

Response

Content type

application/json

/manage/principal/list GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 142. Parameters:
Parameter Type Required Default Description

type

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/manage/principal/list?type="

Response

Content type

application/json

{
}

/manage/principal/user DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 143. Parameters:
Parameter Type Required Default Description

name

String

No

-

Request

Response

Content type

application/json

/manage/principal/user GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 144. Parameters:
Parameter Type Required Default Description

name

String

No

-

Request

Response

Content type

application/json

/manage/principal/user PUT

Resource information

Authentication Required

Yes

Request

Response

Content type

application/json

/manage/principal/user/list GET

Resource information

Authentication Required

Yes

Request

Response

Content type

application/json

/manage/workflow DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 145. Parameters:
Parameter Type Required Default Description

name

String

No

-

Request

Response

Content type

application/json

/manage/workflow GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 146. Parameters:
Parameter Type Required Default Description

name

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/manage/workflow?name=prince"

Response

Content type

application/json

/manage/workflow PUT

Resource information

Authentication Required

Yes

Request

curl -H " /
	{ /
      "name": "ForumWorkflow", /
      "steps": [ /
        { /
          "name": "Partenza", /
          "transitions": [ /
            "Draft", /
            "Proposed", /
            "Approved" /
          ] /
        }, /
        { /
          "name": "Draft", /
          "transitions": [ /
            "Proposed" /
          ] /
        }, /
        { /
          "name": "Proposed", /
          "transitions": [ /
            "Approved", /
            "Refused" /
          ] /
        }, /
        { /
          "name": "Refused", /
          "transitions": [ /
            "Proposed" /
          ] /
        }, /
        { /
          "name": "Approved", /
          "transitions": [ /
            "Blocked", /
            "Reported" /
          ] /
        }, /
        { /
          "name": "Blocked", /
          "transitions": [ /
            "Approved" /
          ] /
        }, /
        { /
          "name": "Reported", /
          "transitions": [ /
            "Approved", /
            "Refused" /
          ] /
        } /
      ], /
      "initialStep": "Partenza" /
    } /
" /
-X PUT "http://eidos01host:9999/restapi-core/rest/manage/workflow?name=testCommandREST"

Response

Content type

application/json

 {
  "pstate": {
    "uuid": "kwMNhJqvEeakKXpb/BqidA==",
    "suid": "",
    "loid": "AAEAACuLv3c=",
    "ucount": 3,
    "retention_time": 1768843580
  },
  "name": "TestWorkflow",
  "description": "",
  "type": "EOM::Workflow",
  "owner": "system",
  "creator": "system",
  "created": 1477398955,
  "last_modifier": "system",
  "modified": 1477398955,
  "locker": "system",
  "locked": 1477398955,
  "status_info": {
    "name": "",
    "identifier": ""
  },
  "attributes": "",
  "system_attributes": "",
  "virtual_attributes": "",
  "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
  "size": 0
}

/manage/workflow/list GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 147. Parameters:
Parameter Type Required Default Description

allowed_only

boolean

No

false

-

type

String

No

-

Request

Response

Content type

application/json

Object

EidosMedia Rest Application Server 148. Apis:

Path

Description

/object DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 149. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

recycleBin

boolean

No

false

-

Request

curl -X DELETE "http://eidos01host:9999/restapi-core/rest/object?token=84363f31-1337-4e96-850c-a8fa66ad9c8a&id=1.0.328369393"

Response

Content type

application/json

{"result":"ok"}

/object GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 150. Parameters:
Parameter Type Required Default Description

id

List

Yes

-

path

List

Yes

-

uniqueId

List

Yes

-

checkout

boolean

No

false

-

evaluateDefaultMetadata

boolean

No

false

-

lock

boolean

No

false

-

parentChannel

String

No

-

sessionId

String

No

-

showMetadata

boolean

No

false

-

showPath

boolean

No

false

-

showSysAttr

boolean

No

false

-

showUniqueId

boolean

No

false

-

showUsageTicket

boolean

No

false

-

showVirtualAttributes

boolean

No

false

-

showWebType

boolean

No

false

-

timestamp

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object?id=1.0.150654445&token=84363f31-1337-4e96-850c-a8fa66ad9c8a"

Response

Content type

application/json

{
    "count": 1,
    "items": [
        {
            "@type": "objectItemInfoBean",
            "id": "99$1.0.150654445",
            "type": "EOM::Story",
            "userId": "99$1.0.150654445",
            "pstate": {
                "uuid": "79cfa29c-a38f-11e3-beff-e7467a4dd7a4",
                "suid": "783b23da-1aa1-11e1-bf10-043b68dfe567",
                "loid": "1.0.150654445",
                "retention_time": 0,
                "ucount": 24
            },
            "name": "Europe talks, consumer confidence send stocks up.xml",
            "description": "",
            "owner": "system",
            "creator": "system",
            "created": 1393932237,
            "last_modifier": "Cetola",
            "modified": 1394012957,
            "locker": "",
            "locked": 1393932240,
            "status_info": {
                "name": "NewsFlow/Editing",
                "identifier": "RGB(255,0,0)",
                "comment": ""
            },
            "size": 3851,
            "system_attributes_xml": "<props><productInfo><issueDate>20140305</issueDate>\n<name>Globe-Web</name>\n</productInfo>\n<workFolder>/Globe/Foreign</workFolder>\n<templateName>/SysConfig/Globe/Templates/story.xml</templateName>\n\n\n\n<summary>Stocks are rising in early trading Tuesday, a day after a huge rally, as European leaders struggle to craft new cures for the region’s debt crisis. The market also got a lift from a jump in U.S. consumer confidence.</summary><wordCount>502</wordCount><sug_category/></props>",
            "createdStr": "20140304112357",
            "modifiedStr": "20140305094917",
            "channel": "Globe-Web",
            "issueDate": "20140305",
            "interfaceId": 16,
            "databaseId": 99,
            "bundle": false,
            "folder": false,
            "bundlechild": false,
            "bundlesize": 0
        }
    ]
}

/object/actions/{actionId} GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 151. Parameters:
Parameter Type Required Default Description

args

String

No

-

getInfo

boolean

No

false

-

id

String

No

-

path

String

No

-

Path parameters

EidosMedia Rest Application Server 152. Parameters:
Parameter Type Required Default Description

actionId

String

No

-

Request

curl -X GET "http://localhost:8080/restapi-core/rest/object/actions/SUTest_action_DO_NOT_TOUCH?id=2.0.791748784"

Response

Return type

ActionResponseBean

Content type

application/json

{
         "id": "2.0.791748784", (1)
    "action": "SUTest_action_DO_NOT_TOUCH", (2)
    "message": "", (3)
    "result": "ok", (4)
    "redirect": false (5)

}
1 The ID of the object on which the action was called
2 The name of the called action
3 The output of the action
4 The result of the action
5 The redirect boolean flag

TYPE ActionResponseBean

{
  "action" : "aValue",
  "id" : "aValue",
  "info" : { },
  "message" : "aValue",
  "result" : "aValue"
}

/object/changeType POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 153. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Request

The input of request is a JSON. Each request can have different objects that you want to change object type (items). The parameter of each item are source and objectType.

curl -X POST -H "Content-Type: application/json" -H "Accept: application/json" -H "Cache-Control: no-cache" -d '{
    "items":[
        {
            "source":"loid:199$1.0.678603144",
            "objectType" : "EOM::Story"
        },
        {
            "source":"loid:199$1.0.648834546",
            "objectType" : "EOM::CompoundStory"
        }
    ]
}' "http://restserver/restapi-core/rest/object/changeType"

Response

Return type

BulkResponse

Content type

application/json

Below, and example of request with two inputs. The first has executed correctly, the second reported an error.

{
  "mixed": true,
  "size": 2,
  "items": [
    {
      "_type": "ObjectType",
      "source": "loid:199$1.0.678603144",
      "objectType": "EOM::Story"
    },
    {
      "_type": "Error",
      "error": "ERROR",
      "code": 3,
      "message": "getObjectItemByLoid: loid=1.0.648834546 EOM.RepositoryError: RepositoryError message: <8001> CXX_CANT_CAST: Can not cast object of type ? to type ?  err_code: 8001",
      "exception": "java.lang.Exception",
      "requestBean": {
        "_type": "ObjectType",
        "source": "loid:199$1.0.648834546",
        "objectType": "EOM::CompoundStory"
      }
    }
  ]
}

TYPE BulkResponse

{
  "items" : [ {
    "_type" : "aValue"
  } ],
  "size" : 1
}

/object/checkin GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 154. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

comment

String

No

-

getInfo

boolean

No

false

-

keepCheckedOut

boolean

No

false

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/checkin?id=2.0.791749280&getInfo=true"

Response

Return type

ResultOkBean

Content type

application/json

{
  "result": "ok",
  "info": {
    "pstate": {
      "uuid": "w9vo+jUuEeW/N8M8GhAepw==",
      "suid": "",
      "loid": "AAEAACwkO7Y=",
      "ucount": 172,
      "retention_time": 0
    },
    "name": "Always on my Mind composer Wayne Carson dies.xml",
    "description": "",
    "type": "EOM::CompoundStory",
    "owner": "Francesca",
    "creator": "Francesca",
    "created": 1438091067,
    "last_modifier": "system",
    "modified": 1460639604,
    "locker": "system",
    "locked": 1460639604,
    "status_info": {
      "name": "NewsFlow/For Approval",
      "identifier": "RGB(255,192,0)"
    },
    "attributes": "<!DOCTYPE ObjectMetadata SYSTEM \"/SysConfig/Common/Classify/story.dtd\">\n<ObjectMetadata><AutoPublish><GlobeWeb>NO</GlobeWeb>\n<GlobeMobile>NO</GlobeMobile>\n<GlobeTablet>NO</GlobeTablet>\n</AutoPublish>\n\n\n\n\n\n\n<General><MainCategory>Art<SuggestedSubjects><group/>\n<SuggestedSubject/>\n</SuggestedSubjects>\n<SuggestedPeoples><group/>\n<SuggestedPeople/>\n</SuggestedPeoples>\n</MainCategory><NewsCode/><IndustrySegment/><GeographicalPlaces><Address/><City>Milan</City><State/><Zip/><Country/><Latitude/><Longitude/></GeographicalPlaces><ContentType/><Language/><Author>By FM</Author><Fee>No</Fee><People/><Companies/><Keywords/><Comment/><Headline>Always on my Mind composer Wayne Carson dies\n</Headline><WordCount>685</WordCount></General><DistributionChannels><OnLine><WebPage/>\n<WebType/>\n<WebPortalPath/>\n<WebPortalCategory/>\n<WebSections/>\n<WebPriority/>\n<WebObjectType/>\n<WebDateTimePubStart/>\n<WebDateTimePubEnd/>\n<AllowUserComments/>\n<InlineCorrelatedPhoto/>\n<LinkToSection/>\n<SpecialType>N</SpecialType>\n<StartDate/>\n<EndDate/>\n<Parental/>\n<Advertising/>\n<WebRating/>\n</OnLine>\n<Radio><RadioBroadcastDateTime/>\n<RadioProgram/>\n<RadioObjectType>RadioNews</RadioObjectType>\n</Radio>\n<TV><TVBroadcastDateTime/>\n<TVProgram/>\n<TVObjectType>TVNews</TVObjectType>\n</TV>\n<Syndication>N</Syndication>\n<Gallery>N</Gallery>\n<Blog>N<BlogSection/>\n<BlogDate/>\n</Blog>\n<Output><Queue/>\n<PriorityQueue/>\n<Embargo/>\n</Output>\n</DistributionChannels><Diffusion><Diff_Print>YES</Diff_Print><Diff_Web>YES</Diff_Web><Diff_Syndication>YES</Diff_Syndication></Diffusion><ApprovalChecks><check1>NO</check1><check2>NO</check2><check3>NO</check3></ApprovalChecks><Social><publicationDate/></Social><url/></ObjectMetadata>",
    "system_attributes": "<props><productInfo><name>Globe-Web</name>\n<issueDate>20150729</issueDate>\n</productInfo>\n<workFolder>/Globe/Art</workFolder>\n<templateName>/SysConfig/Globe/Templates/story.xml</templateName>\n<summary>Wayne Carson, who wrote Elvis Presley’s Always on my Mind and Joe Cocker’s The Letter, has died aged 72.</summary><wordCount>685</wordCount><sug_category/></props>",
    "virtual_attributes": "<va xmlns:eom='http://www.eidosmedia.com/eom'><folder_size>0</folder_size><parent_uuid>3f4e1574-dfa4-11e0-ad0b-05616cf686aa</parent_uuid><oteam>Globe_Team</oteam><cteam>Globe_Team</cteam><corrs/><vid>2</vid><vt>1460639604</vt></va>",
    "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl><t>\n<id>2</id>\n<tp>WebLink</tp>\n<c>system</c>\n<cd>20150728152200</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"HP-1060-1row2cols.dwc\">41ca017c-353c-11e5-bf37-c33c1a101ea7</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150729</issueDate>\n</dt>\n</t>\n<t>\n<id>3</id>\n<tp>wpcnt</tp>\n<c>system</c>\n<cd>20150907153200</cd>\n<dt>\n<mpc_visits tp=\"complex\">\n<p_tot>\n<n>6</n>\n<d>20150907</d>\n</p_tot>\n<p_day>\n<n>1</n>\n<d>20150907</d>\n</p_day>\n<p_week>\n<n>1</n>\n<d>20150906</d>\n</p_week>\n<p_month>\n<n>2</n>\n<d>20150901</d>\n</p_month>\n</mpc_visits>\n</dt>\n</t>\n<t>\n<id>4</id>\n<tp>WebLink</tp>\n<c>system</c>\n<cd>20150729083500</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"HP-1060-3row3cols.dwc\">6c66ab98-35cc-11e5-b1a8-cbf7a73469d3</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150730</issueDate>\n</dt>\n</t>\n<t>\n<id>5</id>\n<tp>WebLink</tp>\n<c>Francesca</c>\n<cd>20150729142900</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"Page 4 stories Art.dwp\">b93f4d7c-3fe5-11e4-91a9-cd05e4b6e8e9</uid>\n<channel>Globe-Tablet</channel>\n<issueDate>20140920</issueDate>\n</dt>\n</t>\n<t>\n<id>6</id>\n<tp>WebLink</tp>\n<c>LucaP</c>\n<cd>20150804124900</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"/Globe/WebV2/Web Components/Sport/HP-4row3cols.dwc\">512cff24-3aa6-11e5-8d10-d2b2d8eeb346</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150805</issueDate>\n</dt>\n</t>\n<t>\n<id>7</id>\n<tp>WebLink</tp>\n<c>davide.carrettin</c>\n<cd>20150804134800</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"ART-1060-1row2cols.dwc\">6ddf14a0-3aaf-11e5-8d10-d2b2d8eeb346</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150805</issueDate>\n</dt>\n</t>\n<t>\n<id>8</id>\n<tp>WebLink</tp>\n<c>system</c>\n<cd>20150805144300</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"DAVIDEprova2.dwc\">5373c152-3b80-11e5-afbe-3cd24e87701c</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150806</issueDate>\n</dt>\n</t>\n<t>\n<id>10</id>\n<tp>WebLink</tp>\n<c>Francesca</c>\n<cd>20150902093700</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"stories_block.dwc\">1f2bfe64-5156-11e5-b20a-fa26abfb1eb1</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150903</issueDate>\n</dt>\n</t>\n<t>\n<id>11</id>\n<tp>WebLink</tp>\n<c>Francesca</c>\n<cd>20150904105100</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"three_stories.dwc\">eedcb280-5155-11e5-b20a-fa26abfb1eb1</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150903</issueDate>\n</dt>\n</t>\n<t>\n<id>12</id>\n<tp>PortalPub</tp>\n<c>jacopo.baldi</c>\n<cd>20150914100200</cd>\n<dt>\n<rep>Demo/GlobeCMS</rep>\n<uuid>KeeKxFrHEeWxD5S9wUNDcw</uuid>\n<first>20150914095835</first>\n<last>20150914095835</last>\n<count>1</count>\n<channel>Globe-Web,Globe-Ipad,Globe-Mobile,GlobeFR-Web,GlobeReports-Web</channel>\n</dt>\n</t>\n<t>\n<id>14</id>\n<tp>PrintLink</tp>\n<c>system</c>\n<cd>20160309143200</cd>\n<dt>\n<uid lid=\"U10776806681hJD\" path=\"PaginaTest.pgl\">89f55c6e-dada-11e5-9b61-b091edb61adc</uid>\n<channel>Globe-Print</channel>\n<issueDate>20160225</issueDate>\n<size>1316c/29L</size>\n<story>\n<name>Always on my Mind composer Wayne Carson dies</name>\n</story>\n</dt>\n</t>\n<t>\n<id>36</id>\n<tp>EOM::Status</tp>\n<c>system</c>\n<cd>20160322123000</cd>\n<dt>\n<status comment=\"\" />\n</dt>\n</t>\n</tl>",
    "size": 5204
  }
}

TYPE ResultOkBean

{
  "info" : { },
  "result" : "aValue"
}

/object/checkout GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 155. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

getInfo

boolean

No

false

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/checkout?id=2.0.791749280&getInfo=true"

Response

Return type

ResultOkBean

Content type

application/json

{
  "result": "ok",
  "info": {
    "pstate": {
      "uuid": "w9vo+jUuEeW/N8M8GhAepw==",
      "suid": "",
      "loid": "AAEAACwkO7Y=",
      "ucount": 170,
      "retention_time": 0
    },
    "name": "Always on my Mind composer Wayne Carson dies.xml",
    "description": "",
    "type": "EOM::CompoundStory",
    "owner": "Francesca",
    "creator": "Francesca",
    "created": 1438091067,
    "last_modifier": "system",
    "modified": 1458649852,
    "locker": "",
    "locked": 1458649852,
    "status_info": {
      "name": "NewsFlow/For Approval",
      "identifier": "RGB(255,192,0)"
    },
    "attributes": "<!DOCTYPE ObjectMetadata SYSTEM \"/SysConfig/Common/Classify/story.dtd\">\n<ObjectMetadata><AutoPublish><GlobeWeb>NO</GlobeWeb>\n<GlobeMobile>NO</GlobeMobile>\n<GlobeTablet>NO</GlobeTablet>\n</AutoPublish>\n\n\n\n\n\n\n<General><MainCategory>Art<SuggestedSubjects><group/>\n<SuggestedSubject/>\n</SuggestedSubjects>\n<SuggestedPeoples><group/>\n<SuggestedPeople/>\n</SuggestedPeoples>\n</MainCategory><NewsCode/><IndustrySegment/><GeographicalPlaces><Address/><City>Milan</City><State/><Zip/><Country/><Latitude/><Longitude/></GeographicalPlaces><ContentType/><Language/><Author>By FM</Author><Fee>No</Fee><People/><Companies/><Keywords/><Comment/><Headline>Always on my Mind composer Wayne Carson dies\n</Headline><WordCount>685</WordCount></General><DistributionChannels><OnLine><WebPage/>\n<WebType/>\n<WebPortalPath/>\n<WebPortalCategory/>\n<WebSections/>\n<WebPriority/>\n<WebObjectType/>\n<WebDateTimePubStart/>\n<WebDateTimePubEnd/>\n<AllowUserComments/>\n<InlineCorrelatedPhoto/>\n<LinkToSection/>\n<SpecialType>N</SpecialType>\n<StartDate/>\n<EndDate/>\n<Parental/>\n<Advertising/>\n<WebRating/>\n</OnLine>\n<Radio><RadioBroadcastDateTime/>\n<RadioProgram/>\n<RadioObjectType>RadioNews</RadioObjectType>\n</Radio>\n<TV><TVBroadcastDateTime/>\n<TVProgram/>\n<TVObjectType>TVNews</TVObjectType>\n</TV>\n<Syndication>N</Syndication>\n<Gallery>N</Gallery>\n<Blog>N<BlogSection/>\n<BlogDate/>\n</Blog>\n<Output><Queue/>\n<PriorityQueue/>\n<Embargo/>\n</Output>\n</DistributionChannels><Diffusion><Diff_Print>YES</Diff_Print><Diff_Web>YES</Diff_Web><Diff_Syndication>YES</Diff_Syndication></Diffusion><ApprovalChecks><check1>NO</check1><check2>NO</check2><check3>NO</check3></ApprovalChecks><Social><publicationDate/></Social><url/></ObjectMetadata>",
    "system_attributes": "<props><productInfo><name>Globe-Web</name>\n<issueDate>20150729</issueDate>\n</productInfo>\n<workFolder>/Globe/Art</workFolder>\n<templateName>/SysConfig/Globe/Templates/story.xml</templateName>\n<summary>Wayne Carson, who wrote Elvis Presley’s Always on my Mind and Joe Cocker’s The Letter, has died aged 72.</summary><wordCount>685</wordCount><sug_category/></props>",
    "virtual_attributes": "<va xmlns:eom='http://www.eidosmedia.com/eom'><folder_size>0</folder_size><parent_uuid>3f4e1574-dfa4-11e0-ad0b-05616cf686aa</parent_uuid><oteam>Globe_Team</oteam><cteam>Globe_Team</cteam><corrs/><vid>2</vid><vt>1440690441</vt></va>",
    "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl><t>\n<id>2</id>\n<tp>WebLink</tp>\n<c>system</c>\n<cd>20150728152200</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"HP-1060-1row2cols.dwc\">41ca017c-353c-11e5-bf37-c33c1a101ea7</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150729</issueDate>\n</dt>\n</t>\n<t>\n<id>3</id>\n<tp>wpcnt</tp>\n<c>system</c>\n<cd>20150907153200</cd>\n<dt>\n<mpc_visits tp=\"complex\">\n<p_tot>\n<n>6</n>\n<d>20150907</d>\n</p_tot>\n<p_day>\n<n>1</n>\n<d>20150907</d>\n</p_day>\n<p_week>\n<n>1</n>\n<d>20150906</d>\n</p_week>\n<p_month>\n<n>2</n>\n<d>20150901</d>\n</p_month>\n</mpc_visits>\n</dt>\n</t>\n<t>\n<id>4</id>\n<tp>WebLink</tp>\n<c>system</c>\n<cd>20150729083500</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"HP-1060-3row3cols.dwc\">6c66ab98-35cc-11e5-b1a8-cbf7a73469d3</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150730</issueDate>\n</dt>\n</t>\n<t>\n<id>5</id>\n<tp>WebLink</tp>\n<c>Francesca</c>\n<cd>20150729142900</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"Page 4 stories Art.dwp\">b93f4d7c-3fe5-11e4-91a9-cd05e4b6e8e9</uid>\n<channel>Globe-Tablet</channel>\n<issueDate>20140920</issueDate>\n</dt>\n</t>\n<t>\n<id>6</id>\n<tp>WebLink</tp>\n<c>LucaP</c>\n<cd>20150804124900</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"/Globe/WebV2/Web Components/Sport/HP-4row3cols.dwc\">512cff24-3aa6-11e5-8d10-d2b2d8eeb346</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150805</issueDate>\n</dt>\n</t>\n<t>\n<id>7</id>\n<tp>WebLink</tp>\n<c>davide.carrettin</c>\n<cd>20150804134800</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"ART-1060-1row2cols.dwc\">6ddf14a0-3aaf-11e5-8d10-d2b2d8eeb346</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150805</issueDate>\n</dt>\n</t>\n<t>\n<id>8</id>\n<tp>WebLink</tp>\n<c>system</c>\n<cd>20150805144300</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"DAVIDEprova2.dwc\">5373c152-3b80-11e5-afbe-3cd24e87701c</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150806</issueDate>\n</dt>\n</t>\n<t>\n<id>10</id>\n<tp>WebLink</tp>\n<c>Francesca</c>\n<cd>20150902093700</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"stories_block.dwc\">1f2bfe64-5156-11e5-b20a-fa26abfb1eb1</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150903</issueDate>\n</dt>\n</t>\n<t>\n<id>11</id>\n<tp>WebLink</tp>\n<c>Francesca</c>\n<cd>20150904105100</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"three_stories.dwc\">eedcb280-5155-11e5-b20a-fa26abfb1eb1</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150903</issueDate>\n</dt>\n</t>\n<t>\n<id>12</id>\n<tp>PortalPub</tp>\n<c>jacopo.baldi</c>\n<cd>20150914100200</cd>\n<dt>\n<rep>Demo/GlobeCMS</rep>\n<uuid>KeeKxFrHEeWxD5S9wUNDcw</uuid>\n<first>20150914095835</first>\n<last>20150914095835</last>\n<count>1</count>\n<channel>Globe-Web,Globe-Ipad,Globe-Mobile,GlobeFR-Web,GlobeReports-Web</channel>\n</dt>\n</t>\n<t>\n<id>14</id>\n<tp>PrintLink</tp>\n<c>system</c>\n<cd>20160309143200</cd>\n<dt>\n<uid lid=\"U10776806681hJD\" path=\"PaginaTest.pgl\">89f55c6e-dada-11e5-9b61-b091edb61adc</uid>\n<channel>Globe-Print</channel>\n<issueDate>20160225</issueDate>\n<size>1316c/29L</size>\n<story>\n<name>Always on my Mind composer Wayne Carson dies</name>\n</story>\n</dt>\n</t>\n<t>\n<id>36</id>\n<tp>EOM::Status</tp>\n<c>system</c>\n<cd>20160322123000</cd>\n<dt>\n<status comment=\"\" />\n</dt>\n</t>\n</tl>",
    "size": 5204
  }
}

TYPE ResultOkBean

{
  "info" : { },
  "result" : "aValue"
}

/object/content GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 156. Parameters:
Parameter Type Required Default Description

id

Source

No

-

path

String

No

-

resolveEntities

boolean

No

false

-

sessionId

String

No

-

showDtd

boolean

No

false

-

throwException

boolean

No

false

-

version

int

No

-1

-

Request

GET /rest/object/content?id=2.0.792192426 HTTP/1.1

Response

Content type

application/octet-stream

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE doc SYSTEM "/SysConfig/Globe/Rules/eidosint.dtd">
<?EM-dtdExt /SysConfig/Globe/Rules/eidosint.dtx?>
<?EM-templateName /SysConfig/Globe/Templates/story.xml?>
<?xml-stylesheet type="text/css" href="/SysConfig/Globe/Rules/eidosint/main.css"?>
<doc xml:lang="en-uk">
    <story>
        <grouphead id="U20108088785pKC">
            <headline>
                <p>Headline</p>

            </headline>

        </grouphead>
        <summary>
            <p>Summary</p>

        </summary>
        <text>
            <byline>
                <author>
                    <name>Nicola Giacchetta</name>

                </author>

            </byline>
            <p>Ceci n'est pas un texte.</p>

        </text>

    </story>

</doc>

/object/content POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 157. Parameters:
Parameter Type Required Default Description

id

String

No

-

newVersion

boolean

No

true

-

unlock

boolean

No

false

-

Request

Content type

application/octet-stream, text/xml

curl -H "Content-Type: application/octet-stream" \
--data "<root>test</root>" \
-X POST "http://eidos01host:9999/restapi-core/rest/object/content?id=1.0.328676294&token=8e478345-7f1c-494e-8598-2e99045014eb"

Response

Content type

application/json

Success response:

{"result":"ok"}

Response in case of object not locked exception:

{"error":"OBJECT_NOT_LOCKED","message":"Object is not locked by you"}

/object/convert GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 158. Parameters:
Parameter Type Required Default Description

id

String

No

-

sessionId

int

No

-1

-

targetFolderId

String

No

-

targetFolderPath

String

No

-

targetName

String

No

-

targetType

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/convert?id=2.0.791749333&targetType=EOM::Story"

Response

Content type

application/json

{
    "id": "61$1.0.129003342",
    "type": "EOM::Bundle",
    "userId": "61$1.0.129003342",
    "pstate": {
        "uuid": "b96e0d16-4687-11e5-9d13-28cf5a8911c3",
        "suid": "",
        "loid": "1.0.129003342",
        "retention_time": 0,
        "ucount": 0
    },
    "name": "testConvert.xml",
    "description": "",
    "owner": "8\u0016d\u001c¿*",
    "creator": "ˆ'b\u001c¿*",
    "created": 1439998445,
    "last_modifier": "ˆ'b\u001c¿*",
    "modified": 1439998731,
    "locker": "",
    "locked": 1439998445,
    "status_info": {
        "name": "",
        "identifier": "",
        "comment": ""
    },
    "size": 0,
    "system_attributes_xml": "",
    "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
    "interfaceId": 144,
    "databaseId": 61,
    "bundle": false,
    "folder": false,
    "bundlechild": false,
    "bundlesize": 0
}

/object/copy POST

Resource information

Authentication Required

Yes

Request

Content type

application/json

curl -H "Content-Type: application/json" -d "{ \
        "folderPath" : "/donottouch_RestTestResources/object/copy/target",  \
        "items" : [                   \
                "2.0.794303123"                  \
        ]}" \
-X POST "http://eidos01host:9999/restapi-core/rest/object/copy"

Response

Content type

application/json

[
    {
        "id": "61$1.0.107294360",
        "targetId": "61$1.0.129028844",
        "targetName": "test1.xml",
        "result": "ok"
    },
    {
        "id": "61$1.0.129034728",
        "targetId": "61$1.0.129022370",
        "targetName": "test2.xml",
        "result": "ok"
    },
    {
        "id": "61$1.0.129022360",
        "targetId": "61$1.0.129024494",
        "targetName": "test3.xml",
        "result": "ok"
    }
]

/object/correlate POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 159. Parameters:
Parameter Type Required Default Description

Request

Content type

application/json

curl -H "Content-Type: application/json" --data "[  \
    {                                          \
        "targetId": "2.0.794303123",       \
        "sourceLinkName": "correlation_test", \
        "targetLinkName": "correlation_test"  \
    }                                          \
]"                                             \
-X POST "http://eidos01host:9999/restapi-core/rest/object/correlate?id=2.0.794303123"

Response

Content type

application/json

[
    {
        "id": "61$1.0.107294360",
        "clientId": "61$1.0.107294360",
        "result": "ok"
    },
    {
        "id": "61$1.0.129034728",
        "clientId": "61$1.0.129034728",
        "result": "ok"
    },
    {
        "id": "61$1.0.129022360",
        "clientId": "61$1.0.129022360",
        "result": "ok"
    }
]

The body of the response contains a JSON array with an entry for every object specified on the request

/object/correlate/update POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 160. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

Request

Content type

application/json

curl -H "Content-Type: application/json" --data "[  \
    {                                          \
        "targetId": "2.0.794303123",       \
        "sourceLinkName": "correlation_test", \
        "targetLinkName": "correlation_test"  \
    }                                          \
]"                                             \
-X POST "http://eidos01host:9999/restapi-core/rest/object/correlate/update?id=2.0.794303123"

Response

Content type

application/json

[
    {
        "id": "61$1.0.107294360",
        "clientId": "61$1.0.107294360",
        "result": "ok"
    },
    {
        "id": "61$1.0.129034728",
        "clientId": "61$1.0.129034728",
        "result": "ok"
    },
    {
        "id": "61$1.0.129022360",
        "clientId": "61$1.0.129022360",
        "result": "ok"
    }
]

The body of the response contains a JSON array with an entry for every object specified on the request

/object/correlated GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 161. Parameters:
Parameter Type Required Default Description

catalogsCfg

boolean

No

-

correlated

boolean

No

true

-

correlating

boolean

No

true

-

header

boolean

No

-

id

String

No

-

info

boolean

No

-

linkName

String

No

*

-

path

String

No

-

showSysAttr

boolean

No

false

-

view

String

No

methodeCorrelationList

-

widthUnit

UnitType

No

PIXEL

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/correlated?id=2.0.794303123"

Response

Content type

application/json

{
    "correlations": [
        {
            "linkName": "correlation_test1",
            "reverseLinkName": "correlation_test1",
            "type": "Correlated"
        },
        {
            "linkName": "correlation_test2",
            "reverseLinkName": "correlation_test2",
            "type": "Correlated"
        },
        {
            "linkName": "correlation_test3",
            "reverseLinkName": "correlation_test3",
            "type": "Correlated"
        }
    ],
    "data": {
        "count": 3,
        "items": [
            {
                "id": "61$1.0.107294360",
                "type": "EOM::File",
                "userId": "61$1.0.107294360",
                "pstate": {
                    "uuid": "370714bc-adee-11e4-bae0-0e43d15702d6",
                    "suid": "",
                    "loid": "1.0.107294360",
                    "retention_time": 0,
                    "ucount": 5
                },
                "name": "test1.xml",
                "description": "",
                "owner": "cB\u0017¿*",
                "creator": "pšD\u0017¿*",
                "created": 1423219936,
                "last_modifier": "cB\u0017¿*",
                "modified": 1440054629,
                "locker": "",
                "locked": 1423219941,
                "status_info": {
                    "name": "",
                    "identifier": "",
                    "comment": ""
                },
                "size": 0,
                "path": "/test/test1.xml",
                "system_attributes_xml": "",
                "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
                "interfaceId": 16,
                "databaseId": 61,
                "bundle": false,
                "folder": false,
                "bundlechild": false,
                "bundlesize": 0,
                "userName": "test1.xml",
                "userType": "EOM::File",
                "icon": "file",
                "flags": 0
            },
            {
                "id": "61$1.0.129034728",
                "type": "EOM::File",
                "userId": "61$1.0.129034728",
                "pstate": {
                    "uuid": "85113740-470a-11e5-9d13-28cf5a8911c3",
                    "suid": "",
                    "loid": "1.0.129034728",
                    "retention_time": 0,
                    "ucount": 9
                },
                "name": "test2.xml",
                "description": "",
                "owner": "ˆ38\u0017¿*",
                "creator": "H\"\u0001\u0018¿*",
                "created": 1440054621,
                "last_modifier": "ˆ38\u0017¿*",
                "modified": 1440054636,
                "locker": "",
                "locked": 1440054621,
                "status_info": {
                    "name": "",
                    "identifier": "",
                    "comment": ""
                },
                "size": 0,
                "path": "/test/test2.xml",
                "system_attributes_xml": "",
                "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
                "interfaceId": 16,
                "databaseId": 61,
                "bundle": false,
                "folder": false,
                "bundlechild": false,
                "bundlesize": 0,
                "userName": "test2.xml",
                "userType": "EOM::File",
                "icon": "file",
                "flags": 0
            },
            {
                "id": "61$1.0.129022360",
                "type": "EOM::File",
                "userId": "61$1.0.129022360",
                "pstate": {
                    "uuid": "93cad5de-470a-11e5-9d13-28cf5a8911c3",
                    "suid": "",
                    "loid": "1.0.129022360",
                    "retention_time": 53,
                    "ucount": 10
                },
                "name": "test3.xml",
                "description": "",
                "owner": " ):\u0017¿*",
                "creator": " ):\u0017¿*",
                "created": 1440054645,
                "last_modifier": " ):\u0017¿*",
                "modified": 1440054708,
                "locker": "",
                "locked": 1440054645,
                "status_info": {
                    "name": "",
                    "identifier": "",
                    "comment": ""
                },
                "size": 0,
                "path": "/test/test3.xml",
                "system_attributes_xml": "",
                "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
                "interfaceId": 16,
                "databaseId": 61,
                "bundle": false,
                "folder": false,
                "bundlechild": false,
                "bundlesize": 0,
                "userName": "test3.xml",
                "userType": "EOM::File",
                "icon": "file",
                "flags": 0
            }
        ]
    }
}

/object/create GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 162. Parameters:
Parameter Type Required Default Description

attributes

String

No

-

copyParentAttributes

boolean

No

false

-

defaultWorkfolder

String

No

-

external

boolean

No

false

-

failIfNotValid

boolean

No

false

-

folderId

String

No

-

folderPath

String

No

-

issueDateDefault

String

No

-

name

String

No

-

newObjOption

int

No

0

-

role

String

No

-

setId

boolean

No

false

-

showPath

boolean

No

false

-

showSysAttr

boolean

No

false

-

statusComment

String

No

-

statusName

String

No

-

systemAttributes

String

No

-

taskId

String

No

-

template

String

No

-

timestamp

String

No

-

type

String

No

-

useDefaultChannel

boolean

No

true

-

useSuffix

boolean

No

false

-

Request

curl -X GET "http://eidos01host:9999//restapi-core/rest/object/create?folderPath=/Globe/&name=createdByRest.xml&type=EOM::Story&token=6fc2a890-fa00-4702-a3be-8ac1fc502702"

Response

Content type

application/json

{
    "id": "99$1.0.328562493",
    "type": "EOM::Story",
    "userId": "99$1.0.328562493",
    "pstate": {
        "uuid": "fc6c17e6-471f-11e5-82f0-2d95ef152d8a",
        "suid": "",
        "loid": "1.0.328562493",
        "retention_time": 0,
        "ucount": 8
    },
    "name": "createdByRest.xml",
    "description": "",
    "owner": "system",
    "creator": "system",
    "created": 1440063840,
    "last_modifier": "system",
    "modified": 1440063841,
    "locker": "",
    "locked": 1440063841,
    "status_info": {
        "name": "",
        "identifier": "",
        "comment": ""
    },
    "size": 1757,
    "system_attributes_xml": "<props><workFolder>/Globe</workFolder><productInfo><name>Globe-Print</name><issueDate>20150821</issueDate></productInfo><summary/><wordCount>34</wordCount><sug_category/></props>",
    "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
    "channel": "Globe-Print",
    "issueDate": "20150821",
    "interfaceId": 16,
    "databaseId": 99,
    "bundle": false,
    "folder": false,
    "bundlechild": false,
    "bundlesize": 0
}

/object/create POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 163. Parameters:
Parameter Type Required Default Description

attributes

String

No

-

channel

String

No

-

checkinAction

boolean

No

false

-

external

boolean

No

false

-

folderId

String

No

-

folderPath

String

No

-

name

String

No

-

newObjOption

int

No

0

-

role

String

No

-

setId

boolean

No

false

-

shape

String

No

-

showPath

boolean

No

false

-

showSysAttr

boolean

No

false

-

statusComment

String

No

-

statusName

String

No

-

systemAttributes

String

No

-

taskId

String

No

-

timestamp

String

No

-

type

String

No

-

useSuffix

boolean

No

false

-

workFolder

String

No

-

Request

Content type

application/octet-stream

curl -H "Content-Type:application/octet-stream" --data \
"<?xml version="1.0" encoding="iso-8859-1"?>      \
<root>                                           \
    TestRest                                     \
</root>"                                          \
-X POST "http://eidos01host:9999//restapi-core/rest/object/create?folderPath=/Globe/&name=createdByRestPost.xml&type=EOM::Story&token=6fc2a890-fa00-4702-a3be-8ac1fc502702"

Response

Content type

application/json

{
    "id": "99$1.0.328562510",
    "type": "EOM::Story",
    "userId": "99$1.0.328562510",
    "pstate": {
        "uuid": "09e44428-4722-11e5-82f0-2d95ef152d8a",
        "suid": "",
        "loid": "1.0.328562510",
        "retention_time": 1413629005,
        "ucount": 6
    },
    "name": "createdByRestPost.xml",
    "description": "",
    "owner": "system",
    "creator": "system",
    "created": 1440064722,
    "last_modifier": "system",
    "modified": 1440064722,
    "locker": "",
    "locked": 1440064722,
    "status_info": {
        "name": "",
        "identifier": "",
        "comment": ""
    },
    "size": 150,
    "system_attributes_xml": "<props><workFolder>/Globe</workFolder><productInfo><issueDate>20150821</issueDate></productInfo></props>",
    "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
    "issueDate": "20150821",
    "interfaceId": 16,
    "databaseId": 99,
    "bundle": false,
    "folder": false,
    "bundlechild": false,
    "bundlesize": 0
}

/object/create POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 164. Parameters:
Parameter Type Required Default Description

channel

String

No

-

useSuffix

boolean

No

false

-

MULTIPART FORM DATA PARAMETERS

EidosMedia Rest Application Server 165. Parameters:
Parameter Type Required Default Description

file

FormDataContentDisposition

Yes

-

system_attributes

String

Yes

-

attributes

String

No

-

contextId

String

No

-

external

boolean

No

false

-

folderId

String

No

-

folderPath

String

No

-

name

String

No

-

newObjOption

int

No

0

-

ownerTeam

String

No

-

role

String

No

-

setId

boolean

No

false

-

shape

String

No

-

showPath

boolean

No

false

-

showSysAttr

boolean

No

false

-

statusComment

String

No

-

statusName

String

No

-

taskId

String

No

-

timestamp

String

No

-

type

String

No

-

uniqueId

String

No

-

workFolder

String

No

-

workfolderPath

String

No

-

Request

Content type

multipart/form-data

curl -F "folderId=1.0.138289562" \
-F "file=@testRest.xml" \
-X POST "http://eidos01host:9999/restapi-core/rest/object/create?token=7a4d6808-672e-4fec-b7c5-6a1a2c7b8356"

where testRest.xml is the name of the local file to upload

Response

Content type

application/json

{
    "id": "99$1.0.329231527",
    "type": "EOM::Story",
    "userId": "99$1.0.329231527",
    "pstate": {
        "uuid": "e7bafd10-4c03-11e5-9394-d9d4b3216e68",
        "suid": "",
        "loid": "1.0.329231527",
        "retention_time": 1014592111,
        "ucount": 6
    },
    "name": "testRest.xml",
    "description": "",
    "owner": "system",
    "creator": "system",
    "created": 1440601536,
    "last_modifier": "system",
    "modified": 1440601536,
    "locker": "",
    "locked": 1440601536,
    "status_info": {
        "name": "",
        "identifier": "",
        "comment": ""
    },
    "size": 3407,
    "system_attributes_xml": "<props><workFolder>/Globe</workFolder><productInfo><issueDate>20150827</issueDate></productInfo></props>",
    "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
    "issueDate": "20150827",
    "interfaceId": 16,
    "databaseId": 99,
    "bundle": false,
    "folder": false,
    "bundlechild": false,
    "bundlesize": 0
}

/object/create/content POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 166. Parameters:
Parameter Type Required Default Description

channel

String

No

-

external

boolean

No

false

-

newObjOption

int

No

0

-

setId

boolean

No

false

-

shape

String

No

-

showPath

boolean

No

false

-

showSysAttr

boolean

No

false

-

useSuffix

boolean

No

false

-

Request

Content type

application/json

curl -H "Content-Type: application/json" -d " /
{ /
    "folderPath": "/Globe/", /
    "name": "createdWithRestByJson.xml", /
    "type": "EOM::Story", /
    "template": "/SysConfig/Globe/Templates/story.xml" /
} /
" /
-X POST "http://eidos01host:9999/restapi-core/rest/object/create/content"

Response

Content type

application/json

{
    "id": "99$1.0.328574240",
    "type": "EOM::Story",
    "userId": "99$1.0.328574240",
    "pstate": {
        "uuid": "3fe24fa4-4743-11e5-82f0-2d95ef152d8a",
        "suid": "",
        "loid": "1.0.328574240",
        "retention_time": 1,
        "ucount": 8
    },
    "name": "createdWithRestByJson.xml",
    "description": "",
    "owner": "system",
    "creator": "system",
    "created": 1440078986,
    "last_modifier": "system",
    "modified": 1440078986,
    "locker": "",
    "locked": 1440078986,
    "status_info": {
        "name": "",
        "identifier": "",
        "comment": ""
    },
    "size": 1757,
    "system_attributes_xml": "<props><templateName>SysConfig/Globe/Templates/story.xml</templateName><productInfo/><summary/><wordCount>34</wordCount><sug_category/></props>",
    "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
    "interfaceId": 16,
    "databaseId": 99,
    "bundle": false,
    "folder": false,
    "bundlechild": false,
    "bundlesize": 0
}

/object/create/from POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 167. Parameters:
Parameter Type Required Default Description

addInnerElementsNotInTemplate

boolean

No

true

-

external

boolean

No

false

-

newObjOption

int

No

0

-

sessionId

String

No

-

setId

boolean

No

false

-

showPath

boolean

No

false

-

showSysAttr

boolean

No

false

-

skipMapping

boolean

No

false

-

sourceId

String

No

-

startSubstitutionFrom

String

No

-

useSuffix

boolean

No

false

-

Request

Content type

application/json

Response

Content type

application/json

/object/create/template POST

Resource information

Authentication Required

Yes

Request

Content type

application/json

TYPE ObjectCreateByTemplateRequest

{
  "attributes" : "aValue",
  "defaultWorkfolder" : "aValue",
  "folderId" : "aValue",
  "folderPath" : "aValue",
  "issueDateDefault" : "aValue",
  "name" : "aValue",
  "newObjOption" : 1,
  "role" : "aValue",
  "statusComment" : "aValue",
  "statusName" : "aValue",
  "systemAttributes" : "aValue",
  "taskId" : "aValue",
  "template" : "aValue",
  "timestamp" : "aValue",
  "type" : "aValue"
}

Response

Content type

application/json

/object/create/url GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 168. Parameters:
Parameter Type Required Default Description

team

String

Yes

-

attributes

String

No

-

contextId

String

No

-

external

boolean

No

false

-

filename

String

No

-

folderId

String

No

-

folderPath

String

No

-

newObjOption

int

No

0

-

role

String

No

-

setId

boolean

No

false

-

showPath

boolean

No

false

-

showSysAttr

boolean

No

false

-

statusComment

String

No

-

statusName

String

No

-

systemAttributes

String

No

-

taskId

String

No

-

timestamp

String

No

-

type

String

No

-

uniqueId

String

No

-

url

String

No

-

workFolder

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/create/url?token=7151fd83-2c73-46e7-a245-b0cf0a0f7de2&folderPath=/Globe/Images&typeimage=&url=http://www.pangeaonlus.org/rw/SysConfig/Pangea/MPS/img/logo.png"

Response

Content type

application/json

{
    "id": "99$1.0.328577765",
    "type": "Image",
    "userId": "99$1.0.328577765",
    "pstate": {
        "uuid": "4e04af98-474b-11e5-82f0-2d95ef152d8a",
        "suid": "",
        "loid": "1.0.328577765",
        "retention_time": 0,
        "ucount": 13
    },
    "name": "logo.png",
    "description": "",
    "owner": "system",
    "creator": "system",
    "created": 1440082446,
    "last_modifier": "system",
    "modified": 1440082449,
    "locker": "",
    "locked": 1440082449,
    "status_info": {
        "name": "",
        "identifier": "",
        "comment": ""
    },
    "size": 12214,
    "system_attributes_xml": "<props><workFolder>/Globe</workFolder><productInfo><issueDate>20150821</issueDate></productInfo><title>...</title><summary/><imageInfo>\n<width>262</width>\n<height>135</height>\n<ptWidth>262.0</ptWidth>\n<ptHeight>135.0</ptHeight>\n<xDim>92.43</xDim>\n<yDim>47.63</yDim>\n<dim>9.243cm x 4.763cm</dim>\n<xres>72.0</xres>\n<yres>72.0</yres>\n<colorType>RGB</colorType>\n<fileType>PNG</fileType>\n</imageInfo></props>",
    "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
    "issueDate": "20150821",
    "interfaceId": 16,
    "databaseId": 99,
    "bundle": false,
    "folder": false,
    "bundlechild": false,
    "bundlesize": 0
}

/object/create/url POST

Resource information

Authentication Required

Yes

Request

Content type

application/json

TYPE ObjectCreateByUrlRequest

{
  "attributes" : "aValue",
  "contextId" : "aValue",
  "filename" : "aValue",
  "folderId" : "aValue",
  "folderPath" : "aValue",
  "newObjOption" : 1,
  "role" : "aValue",
  "statusComment" : "aValue",
  "statusName" : "aValue",
  "systemAttributes" : "aValue",
  "taskId" : "aValue",
  "team" : "aValue",
  "timestamp" : "aValue",
  "type" : "aValue",
  "uniqueId" : "aValue",
  "url" : "aValue",
  "workFolder" : "aValue"
}

Response

Content type

application/json

/object/destroy GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 169. Parameters:
Parameter Type Required Default Description

id

List

Yes

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/destroy?token=e76aac6d-4974-4503-a469-be3ef7550005&id=1.0.129028844"

Response

Content type

application/json

[
    {
        "id": "61$1.0.129028844",
        "clientId": "61$1.0.129028844",
        "result": "ok"
    }
]

/object/discard GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 170. Parameters:
Parameter Type Required Default Description

id

List

Yes

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/discard?token=e76aac6d-4974-4503-a469-be3ef7550005&id=1.0.129022370"

Response

Content type

application/json

[
    {
        "id": "61$1.0.129022370",
        "clientId": "61$1.0.129022370",
        "result": "ok"
    }
]

/object/infoByLoids GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 171. Parameters:
Parameter Type Required Default Description

id

List

Yes

-

checkout

boolean

No

false

-

evaluateDefaultMetadata

boolean

No

false

-

lock

boolean

No

false

-

parentChannel

String

No

-

sessionId

String

No

-

showMetadata

boolean

No

false

-

showPath

boolean

No

false

-

showSysAttr

boolean

No

false

-

showUniqueId

boolean

No

false

-

showUsageTicket

boolean

No

false

-

showVirtualAttributes

boolean

No

false

-

showWebType

boolean

No

false

-

timestamp

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object?id=1.0.150654445&token=84363f31-1337-4e96-850c-a8fa66ad9c8a"

Response

Content type

application/json

{
    "count": 1,
    "items": [
        {
            "@type": "objectItemInfoBean",
            "id": "99$1.0.150654445",
            "type": "EOM::Story",
            "userId": "99$1.0.150654445",
            "pstate": {
                "uuid": "79cfa29c-a38f-11e3-beff-e7467a4dd7a4",
                "suid": "783b23da-1aa1-11e1-bf10-043b68dfe567",
                "loid": "1.0.150654445",
                "retention_time": 0,
                "ucount": 24
            },
            "name": "Europe talks, consumer confidence send stocks up.xml",
            "description": "",
            "owner": "system",
            "creator": "system",
            "created": 1393932237,
            "last_modifier": "Cetola",
            "modified": 1394012957,
            "locker": "",
            "locked": 1393932240,
            "status_info": {
                "name": "NewsFlow/Editing",
                "identifier": "RGB(255,0,0)",
                "comment": ""
            },
            "size": 3851,
            "system_attributes_xml": "<props><productInfo><issueDate>20140305</issueDate>\n<name>Globe-Web</name>\n</productInfo>\n<workFolder>/Globe/Foreign</workFolder>\n<templateName>/SysConfig/Globe/Templates/story.xml</templateName>\n\n\n\n<summary>Stocks are rising in early trading Tuesday, a day after a huge rally, as European leaders struggle to craft new cures for the region’s debt crisis. The market also got a lift from a jump in U.S. consumer confidence.</summary><wordCount>502</wordCount><sug_category/></props>",
            "createdStr": "20140304112357",
            "modifiedStr": "20140305094917",
            "channel": "Globe-Web",
            "issueDate": "20140305",
            "interfaceId": 16,
            "databaseId": 99,
            "bundle": false,
            "folder": false,
            "bundlechild": false,
            "bundlesize": 0
        }
    ]
}

/object/linked GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 172. Parameters:
Parameter Type Required Default Description

id

String

No

-

limit

int

No

-

path

String

No

-

roleName

String

No

-

roleType

String

No

-

sessionId

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/linked?id=2.0.794303123"

Response

Return type

ObjectListLinked

Content type

application/json

{
    "count": 2,
    "roleType": "*",
    "roles": [
        {
            "type": "EOM::PrintPageLinks",
            "name": "Xsmile::Link",
            "targetType": "EOM::PrintPageLinked",
            "targetName": "U10287817405KkD",
            "content": "",
            "object": {
                "id": "99$1.0.324360773",
                "type": "EOM::CompoundStory",
                "userId": "99$1.0.324360773",
                "pstate": {
                    "uuid": "5932941a-381f-11e5-af58-9aadc5f99867",
                    "suid": "",
                    "loid": "1.0.324360773",
                    "retention_time": 108,
                    "ucount": 19
                },
                "name": "Pop-StoryA.xml",
                "description": "",
                "owner": "Bob",
                "creator": "Bob",
                "created": 1438414299,
                "last_modifier": "Bob",
                "modified": 1438414339,
                "locker": "",
                "locked": 1438414429,
                "status_info": {
                    "name": "NewsFlow/Editing",
                    "identifier": "RGB(255,0,0)",
                    "comment": ""
                },
                "size": 1300,
                "path": "/Globe/Stories/Sport/Pop-StoryA.xml",
                "system_attributes_xml": "<props><productInfo><name>Globe-Print</name>\n<issueDate>20150122</issueDate>\n</productInfo>\n<workFolder>/Globe/Sport</workFolder>\n<templateName>/SysConfig/Globe/Templates/story.xml</templateName>\n<summary>text</summary><wordCount>208</wordCount><sug_category/></props>",
                "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl><t>\n<id>1</id>\n<tp>EOM::Status</tp>\n<c>Bob</c>\n<cd>20150801073100</cd>\n<dt>\n<status comment=\"\" />\n</dt>\n</t>\n<t>\n<id>2</id>\n<tp>PrintLink</tp>\n<c>Bob</c>\n<cd>20150801073100</cd>\n<dt>\n<uid lid=\"U10287817405KkD\" path=\"Pop.pgl\">d16f9742-a167-11e4-a5f0-b7057c5a4c6f</uid>\n<channel>Globe-Print</channel>\n<issueDate>20150122</issueDate>\n<size>822c/18L</size>\n<story>\n<name>StoryA</name>\n</story>\n</dt>\n</t>\n</tl>",
                "channel": "Globe-Print",
                "issueDate": "20150122",
                "interfaceId": 144,
                "databaseId": 99,
                "bundle": false,
                "folder": false,
                "bundlechild": false,
                "bundlesize": 0
            }
        },
        {
            "type": "EOM::PrintPageLinks",
            "name": "Xsmile::Link",
            "targetType": "EOM::PrintPageLinked",
            "targetName": "U10287817405CLD",
            "content": "",
            "object": {
                "id": "99$1.0.324104890",
                "type": "Image",
                "userId": "99$1.0.324104890",
                "pstate": {
                    "uuid": "e2806dd2-3757-11e5-9d12-5812fd43ad76",
                    "suid": "e2806dd2-3757-11e5-9d12-5812fd43ad76",
                    "loid": "1.0.324104890",
                    "retention_time": 348,
                    "ucount": 42
                },
                "name": "MODA56 alpha channel.tif",
                "description": "",
                "owner": "Bob",
                "creator": "Bob",
                "created": 1438328630,
                "last_modifier": "Bob",
                "modified": 1438328636,
                "locker": "",
                "locked": 1439462668,
                "status_info": {
                    "name": "",
                    "identifier": "",
                    "comment": ""
                },
                "size": 5043532,
                "path": "/Globe/Images/Sport/MODA56 alpha channel.tif",
                "system_attributes_xml": "<props><productInfo><name>Globe-Print</name>\n<issueDate>20150801</issueDate>\n</productInfo>\n<workFolder>/Globe/Art</workFolder>\n<title>TEXT</title><summary>text text</summary><imageInfo>\n<width>787</width>\n<height>1278</height>\n<ptWidth>283.32</ptWidth>\n<ptHeight>460.08</ptHeight>\n<xDim>99.95</xDim>\n<yDim>162.31</yDim>\n<dim>9.995cm x 16.231cm</dim>\n<xres>200.0</xres>\n<yres>200.0</yres>\n<colorType>CMYK</colorType>\n<fileType>TIFF</fileType>\n<alphaChannels>\n<name>alpha channel 01</name>\n</alphaChannels>\n<copyrightFlag>0</copyrightFlag>\n</imageInfo></props>",
                "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl><t>\n<id>3</id>\n<tp>PrintLink</tp>\n<c>Bob</c>\n<cd>20150801073200</cd>\n<dt>\n<uid lid=\"U10287817405ZXG\" path=\"Pop.pgl\">d16f9742-a167-11e4-a5f0-b7057c5a4c6f</uid>\n<channel>Globe-Print</channel>\n<issueDate>20150122</issueDate>\n</dt>\n</t>\n<t>\n<id>4</id>\n<tp>PrintLink</tp>\n<c>Bob</c>\n<cd>20150801073300</cd>\n<dt>\n<uid lid=\"U10287817405CLD\" path=\"Pop.pgl\">d16f9742-a167-11e4-a5f0-b7057c5a4c6f</uid>\n<channel>Globe-Print</channel>\n<issueDate>20150122</issueDate>\n<story>\n<name>StoryB</name>\n</story>\n<crop wShape=\"144\" hShape=\"190\" transform=\" scale(0.5063604 0.5063603)\" ptUnit=\"pica\" x=\"0%\" y=\"0%\" width=\"100%\" height=\"81.25%\" />\n</dt>\n</t>\n<t>\n<id>6</id>\n<tp>PrintLink</tp>\n<c>Bob</c>\n<cd>20150813104500</cd>\n<dt>\n<uid path=\"DummyPage.pgl\" lid=\"U103239022818kD\">dad9b29c-35ee-11e5-9758-d88b494c39ab</uid>\n<channel>Globe-Print</channel>\n<issueDate>20150730</issueDate>\n<story>\n<name>MODA56 alpha channel</name>\n</story>\n<crop wShape=\"284.38\" hShape=\"461.81\" transform=\" scale(1.00001 1.00001)\" ptUnit=\"pica\" x=\"0%\" y=\"0%\" width=\"100%\" height=\"100%\" />\n</dt>\n</t>\n</tl>",
                "channel": "Globe-Print",
                "issueDate": "20150801",
                "interfaceId": 16,
                "databaseId": 99,
                "bundle": false,
                "folder": false,
                "bundlechild": false,
                "bundlesize": 0
            }
        }
    ]
}

TYPE ObjectListLinked

{
  "count" : 1,
  "roleType" : "aValue",
  "roles" : [ { } ]
}

/object/linked/bundle GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 173. Parameters:
Parameter Type Required Default Description

id

String

No

-

limit

int

No

-

path

String

No

-

roleName

String

No

-

roleType

String

No

-

sessionId

String

No

-

showAll

boolean

No

false

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/linked/bundle?id=1.0.728656319"

Response

Content type

application/json

{
  "loid": "199$1.0.728656319",
  "stories": [
    {
      "id": "199$1.0.728656216",
      "name": "testCC.xml",
      "path": "/Globe/Stories/Art/testCC.xml",
      "baseName": "testCC",
      "links": {
        "count": 1,
        "roleType": "*",
        "roles": [
          {
            "type": "EOM::Linked",
            "name": "EOM::ObjTskRel",
            "targetType": "EOM::Links",
            "targetName": "EOM::ObjTskRel",
            "content": "",
            "object": {
              "id": "199$1.0.728656226",
              "type": "EOM::WorkflowTask",
              "userId": "199$1.0.728656226",
              "pstate": {
                "uuid": "dd0841c4-8a1a-11e6-acb9-f09b4b1656dd",
                "suid": "",
                "loid": "1.0.728656226",
                "retention_time": 1,
                "ucount": 1
              },
              "name": "testCC.xml",
              "description": "",
              "owner": "system",
              "creator": "system",
              "created": 1475575866,
              "last_modifier": "system",
              "modified": 1475575866,
              "locker": "",
              "locked": 1475575866,
              "status_info": {
                "name": "",
                "identifier": "",
                "comment": ""
              },
              "size": 0,
              "path": "",
              "system_attributes_xml": "",
              "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
              "virtual_attributes": "<va xmlns:eom='http://www.eidosmedia.com/eom'><start_date>1475575866</start_date><end_date>1475575866</end_date><planned_effort>1475575866</planned_effort><actual_effort>1475575866</actual_effort><completion_percentage>0</completion_percentage><attached_objects><attached_object><ref>IOR:010000002200000049444c3a6569646f736d656469612e636f6d2f454f4d2f42756e646c653a312e300000000100000000000000900000000101024708000000676c6f6265766d00197900004200000014010f004e55500000001b0300000001000000526f6f74504f410050657273697374656e74004d544800011000c718af4bab000000900008000100002b6e6958001c4d5402000000000000000800000001796520004f41540100000018000000012ad52e0100010001000000010001050901010000000000</ref><Bundle><FileSystemObject><Object><Entity><uuid>dcf38356-8a1a-11e6-acb9-f09b4b1656dd</uuid><suid>00000000-0000-0000-0000-000000000000</suid><loid>1.0.728656216</loid><ustring/><name>testCC.xml</name></Entity><ucount>13</ucount><description/><type>EOM::CompoundStory</type><owner>system</owner><creator>system</creator><created>1475575866</created><last_modifier>system</last_modifier><modified>1475575898</modified><locker/><locked>1475575898</locked><roles><RelationshipRole><Role><Entity><uuid/><suid/><loid>1.0.728656225</loid><ustring/><name>EOM::ObjTskRel</name></Entity><type>EOM::Linked</type><owner><Entity><uuid>dcf38356-8a1a-11e6-acb9-f09b4b1656dd</uuid><loid>1.0.728656216</loid></Entity></owner></Role></RelationshipRole></roles><permissions/><eom:attributes dtd=\"/SysConfig/Common/Classify/story.dtd\" xmlns=\"\"><ObjectMetadata><AutoPublish><GlobeWeb>NO</GlobeWeb><GlobeMobile>NO</GlobeMobile><GlobeTablet>NO</GlobeTablet></AutoPublish><General><MainCategory>Art<SuggestedSubjects><group></group><SuggestedSubject></SuggestedSubject></SuggestedSubjects><SuggestedPeoples><group></group><SuggestedPeople></SuggestedPeople></SuggestedPeoples></MainCategory><NewsCode></NewsCode><IndustrySegment></IndustrySegment><GeographicalPlaces><Address></Address><City></City><State></State><Zip></Zip><Country></Country><Latitude></Latitude><Longitude></Longitude></GeographicalPlaces><ContentType></ContentType><Language></Language><Author>By \n\n</Author><Fee>No</Fee><People></People><Companies></Companies><Keywords></Keywords><Comment></Comment><Headline></Headline><WordCount>24</WordCount></General><DistributionChannels><OnLine><WebPage></WebPage><WebType></WebType><WebPortalPath></WebPortalPath><WebPortalCategory></WebPortalCategory><WebSections></WebSections><WebPriority></WebPriority><WebObjectType></WebObjectType><WebDateTimePubStart></WebDateTimePubStart><WebDateTimePubEnd></WebDateTimePubEnd><AllowUserComments></AllowUserComments><InlineCorrelatedPhoto></InlineCorrelatedPhoto><LinkToSection></LinkToSection><SpecialType>N</SpecialType><StartDate></StartDate><EndDate></EndDate><Parental></Parental><Advertising></Advertising><WebRating></WebRating></OnLine><Radio><RadioBroadcastDateTime></RadioBroadcastDateTime><RadioProgram></RadioProgram><RadioObjectType>RadioNews</RadioObjectType></Radio><TV><TVBroadcastDateTime></TVBroadcastDateTime><TVProgram></TVProgram><TVObjectType>TVNews</TVObjectType></TV><Syndication>N</Syndication><Gallery>N</Gallery><Blog>N\n\t\t\t\t\t\t\t\t\t<BlogSection></BlogSection><BlogDate></BlogDate></Blog><Output><Queue></Queue><PriorityQueue></PriorityQueue><Embargo></Embargo></Output></DistributionChannels><Diffusion><Diff_Print>YES</Diff_Print><Diff_Web>YES</Diff_Web><Diff_Syndication>YES</Diff_Syndication></Diffusion><ApprovalChecks><check1>NO</check1><check2>NO</check2><check3>NO</check3></ApprovalChecks><Social><publicationDate></publicationDate></Social><url></url></ObjectMetadata></eom:attributes><eom:system_attributes dtd=\"\" xmlns=\"\"><props><productInfo><name>Globe-Print</name><issueDate>20161005</issueDate></productInfo><workFolder>/Globe/Art</workFolder><templateName>/SysConfig/Globe/Templates/story.xml</templateName><summary></summary><wordCount>24</wordCount><sug_category></sug_category></props></eom:system_attributes><virtual_attributes><folder_size>1</folder_size><parent_uuid>3f4e1574-dfa4-11e0-ad0b-05616cf686aa</parent_uuid><vid>1</vid><vt>1475575866</vt></virtual_attributes><usage_tickets><tl><t><id>1</id><tp>EOM::Status</tp><c>system</c><cd>20161004101100</cd><dt><status comment=\"\"></status></dt></t></tl></usage_tickets><status>NewsFlow/Editing</status><status_identifier>RGB(255,0,0)</status_identifier><size>1814</size></Object><parent><Entity><uuid>3f4e1574-dfa4-11e0-ad0b-05616cf686aa</uuid><loid>1.0.31082394</loid></Entity></parent><path>eomfs:/FileSystemRoot/Globe/Stories/Art/testCC.xml</path></FileSystemObject></Bundle></attached_object></attached_objects></va>",
              "interfaceId": 35,
              "databaseId": 199,
              "bundle": false,
              "folder": false,
              "bundlechild": false,
              "bundlesize": 1,
              "virtual_attributes_json": {
                "va": {
                  "xmlns:eom": "http://www.eidosmedia.com/eom",
                  "start_date": 1475575866,
                  "end_date": 1475575866,
                  "planned_effort": 1475575866,
                  "actual_effort": 1475575866,
                  "completion_percentage": 0,
                  "attached_objects": {
                    "attached_object": {
                      "ref": "IOR:010000002200000049444c3a6569646f736d656469612e636f6d2f454f4d2f42756e646c653a312e300000000100000000000000900000000101024708000000676c6f6265766d00197900004200000014010f004e55500000001b0300000001000000526f6f74504f410050657273697374656e74004d544800011000c718af4bab000000900008000100002b6e6958001c4d5402000000000000000800000001796520004f41540100000018000000012ad52e0100010001000000010001050901010000000000",
                      "Bundle": {
                        "FileSystemObject": {
                          "Object": {
                            "Entity": {
                              "uuid": "dcf38356-8a1a-11e6-acb9-f09b4b1656dd",
                              "suid": "00000000-0000-0000-0000-000000000000",
                              "loid": "1.0.728656216",
                              "ustring": "",
                              "name": "testCC.xml"
                            },
                            "ucount": 13,
                            "description": "",
                            "type": "EOM::CompoundStory",
                            "owner": "system",
                            "creator": "system",
                            "created": 1475575866,
                            "last_modifier": "system",
                            "modified": 1475575898,
                            "locker": "",
                            "locked": 1475575898,
                            "roles": {
                              "RelationshipRole": {
                                "Role": {
                                  "Entity": {
                                    "uuid": "",
                                    "suid": "",
                                    "loid": "1.0.728656225",
                                    "ustring": "",
                                    "name": "EOM::ObjTskRel"
                                  },
                                  "type": "EOM::Linked",
                                  "owner": {
                                    "Entity": {
                                      "uuid": "dcf38356-8a1a-11e6-acb9-f09b4b1656dd",
                                      "loid": "1.0.728656216"
                                    }
                                  }
                                }
                              }
                            },
                            "permissions": "",
                            "eom:attributes": {
                              "dtd": "/SysConfig/Common/Classify/story.dtd",
                              "xmlns": "",
                              "ObjectMetadata": {
                                "AutoPublish": {
                                  "GlobeWeb": "NO",
                                  "GlobeMobile": "NO",
                                  "GlobeTablet": "NO"
                                },
                                "General": {
                                  "MainCategory": {
                                    "content": "Art",
                                    "SuggestedSubjects": {
                                      "group": "",
                                      "SuggestedSubject": ""
                                    },
                                    "SuggestedPeoples": {
                                      "group": "",
                                      "SuggestedPeople": ""
                                    }
                                  },
                                  "NewsCode": "",
                                  "IndustrySegment": "",
                                  "GeographicalPlaces": {
                                    "Address": "",
                                    "City": "",
                                    "State": "",
                                    "Zip": "",
                                    "Country": "",
                                    "Latitude": "",
                                    "Longitude": ""
                                  },
                                  "ContentType": "",
                                  "Language": "",
                                  "Author": "By",
                                  "Fee": "No",
                                  "People": "",
                                  "Companies": "",
                                  "Keywords": "",
                                  "Comment": "",
                                  "Headline": "",
                                  "WordCount": 24
                                },
                                "DistributionChannels": {
                                  "OnLine": {
                                    "WebPage": "",
                                    "WebType": "",
                                    "WebPortalPath": "",
                                    "WebPortalCategory": "",
                                    "WebSections": "",
                                    "WebPriority": "",
                                    "WebObjectType": "",
                                    "WebDateTimePubStart": "",
                                    "WebDateTimePubEnd": "",
                                    "AllowUserComments": "",
                                    "InlineCorrelatedPhoto": "",
                                    "LinkToSection": "",
                                    "SpecialType": "N",
                                    "StartDate": "",
                                    "EndDate": "",
                                    "Parental": "",
                                    "Advertising": "",
                                    "WebRating": ""
                                  },
                                  "Radio": {
                                    "RadioBroadcastDateTime": "",
                                    "RadioProgram": "",
                                    "RadioObjectType": "RadioNews"
                                  },
                                  "TV": {
                                    "TVBroadcastDateTime": "",
                                    "TVProgram": "",
                                    "TVObjectType": "TVNews"
                                  },
                                  "Syndication": "N",
                                  "Gallery": "N",
                                  "Blog": {
                                    "content": "N",
                                    "BlogSection": "",
                                    "BlogDate": ""
                                  },
                                  "Output": {
                                    "Queue": "",
                                    "PriorityQueue": "",
                                    "Embargo": ""
                                  }
                                },
                                "Diffusion": {
                                  "Diff_Print": "YES",
                                  "Diff_Web": "YES",
                                  "Diff_Syndication": "YES"
                                },
                                "ApprovalChecks": {
                                  "check1": "NO",
                                  "check2": "NO",
                                  "check3": "NO"
                                },
                                "Social": {
                                  "publicationDate": ""
                                },
                                "url": ""
                              }
                            },
                            "eom:system_attributes": {
                              "dtd": "",
                              "xmlns": "",
                              "props": {
                                "productInfo": {
                                  "name": "Globe-Print",
                                  "issueDate": 20161005
                                },
                                "workFolder": "/Globe/Art",
                                "templateName": "/SysConfig/Globe/Templates/story.xml",
                                "summary": "",
                                "wordCount": 24,
                                "sug_category": ""
                              }
                            },
                            "virtual_attributes": {
                              "folder_size": 1,
                              "parent_uuid": "3f4e1574-dfa4-11e0-ad0b-05616cf686aa",
                              "vid": 1,
                              "vt": 1475575866
                            },
                            "usage_tickets": {
                              "tl": {
                                "t": {
                                  "id": 1,
                                  "tp": "EOM::Status",
                                  "c": "system",
                                  "cd": 20161004101100,
                                  "dt": {
                                    "status": {
                                      "comment": ""
                                    }
                                  }
                                }
                              }
                            },
                            "status": "NewsFlow/Editing",
                            "status_identifier": "RGB(255,0,0)",
                            "size": 1814
                          },
                          "parent": {
                            "Entity": {
                              "uuid": "3f4e1574-dfa4-11e0-ad0b-05616cf686aa",
                              "loid": "1.0.31082394"
                            }
                          },
                          "path": "eomfs:/FileSystemRoot/Globe/Stories/Art/testCC.xml"
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        ]
      }
    },
    {
      "id": "199$1.0.728656319",
      "name": "testCC@GlobeXL.xml",
      "path": "/Globe/Stories/Art/testCC.xml/testCC@GlobeXL.xml",
      "baseName": "testCC@GlobeXL",
      "links": {
        "count": 0,
        "roleType": "*",
        "roles": []
      }
    }
  ]
}

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 174. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Request

Content type

application/json

You can specify multiple item in the request, as in the example below:

curl -X DELETE -H "Content-Type: application/json" -H "Accept: application/json" -H "Cache-Control: no-cache" -d '{
    "items":[
        {
            "source":"loid:199$1.0.648834545",
            "target":"loid:199$1.0.649213705",
            "sourceRoleType" : "EOM::OrderedContains",
            "sourceRoleName":"EOM::PageOutputs",
            "targetRoleType" : "EOM::SharedContainedIn",
            "targetRoleName" : "123456789"
        },
        {
            "source":"loid:199$1.0.648836471",
            "target":"loid:199$1.0.649214172",
            "sourceRoleType" : "EOM::OrderedContains",
            "sourceRoleName":"EOM::PageOutputs",
            "targetRoleType" : "EOM::SharedContainedIn",
            "targetRoleName" : "123456789"
        }
    ]
}' "http://restserver:8080/restapi-core/rest/object/links"

TYPE MultipleRequest

{
  "items" : [ {
    "_type" : "aValue",
    "source" : "aValue",
    "sourceRoleName" : "aValue",
    "sourceRoleType" : "aValue",
    "target" : "aValue",
    "targetRoleName" : "aValue",
    "targetRoleType" : "aValue"
  } ]
}

Response

Return type

BulkResponse

Content type

application/json

In the example below, the first operation to delete link was fine, the second generate and error

{
  "mixed": true,
  "size": 2,
  "items": [
  	{
            "source":"loid:199$1.0.648834545",
            "target":"loid:199$1.0.649213705",
            "sourceRoleType" : "EOM::OrderedContains",
            "sourceRoleName":"EOM::PageOutputs",
            "targetRoleType" : "EOM::SharedContainedIn",
            "targetRoleName" : "123456789"
    },
    {
      "_type": "Error",
      "error": "ERROR",
      "code": 3,
      "message": "getObjectItemByLoid: loid=1.0.649213705 java.lang.Exception: loid does not exist",
      "exception": "java.lang.Exception"
    }
  ]
}

TYPE BulkResponse

{
  "items" : [ {
    "_type" : "aValue"
  } ],
  "size" : 1
}

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 175. Parameters:
Parameter Type Required Default Description

roleName

String

Yes

-

roleType

String

Yes

-

source

String

Yes

-

limit

int

No

-

sessionId

String

No

-

Request

curl -X GET -H "Content-Type: application/json" -H "Accept: application/json" -H "Cache-Control: no-cache" "http://restserver/restapi-core/rest/object/links?source=loid:199$1.0.712969397&limit=0"

Response

Return type

MultipleExtendedResponse

Content type

application/json

{
  "size": 1,
  "items": [
    {
      "type": "EOM::Linked",
      "name": "EOM::ObjTskRel",
      "targetType": "EOM::Links",
      "targetName": "EOM::ObjTskRel",
      "content": "",
      "object": {
        "id": "0$1.0.712969407",
        "type": "EOM::WorkflowTask",
        "userId": "0$1.0.712969407",
        "pstate": {
          "uuid": "7ddcda02-ef7e-11e5-aad6-1c81fafb4817",
          "suid": "",
          "loid": "1.0.712969407",
          "retention_time": 0,
          "ucount": 1
        },
        "name": "fc-20160321170330.xml",
        "description": "",
        "owner": "system",
        "creator": "system",
        "created": 1458576226,
        "last_modifier": "system",
        "modified": 1458576226,
        "locker": "",
        "locked": 1458576226,
        "status_info": {
          "name": "",
          "identifier": "",
          "comment": ""
        },
        "size": 0,
        "path": "",
        "system_attributes_xml": "",
        "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
        "interfaceId": 35,
        "databaseId": 199,
        "bundle": false,
        "folder": false,
        "bundlechild": false,
        "bundlesize": 0
      }
    }
  ],
  "data": {
    "source": "loid:199$1.0.712969397",
    "roleType": "*",
    "roleName": "*"
  }
}

TYPE MultipleExtendedResponse

{
  "data" : { },
  "items" : [ { } ],
  "size" : 1
}

/object/links POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 176. Parameters:
Parameter Type Required Default Description

sessionId

String

No

-

Request

Content type

application/json

You can specify multiple item in the request, as in the example below:

curl -X POST -H "Content-Type: application/json" -H "Accept: application/json" -H "Cache-Control: no-cache" -d '{
    "items":[
        {
            "source":"loid:199$1.0.678603144",
            "target":"loid:199$1.0.712969397",
            "sourceRoleType" : "EOM::OrderedContains",
            "sourceRoleName" : "EOM::PageOutputs",
            "targetRoleType" : "EOM::SharedContainedIn",
            "targetRoleName" : "123456789"
        },
        {
            "source":"loid:199$1.0.648865245",
            "target":"loid:199$1.0.649213471",
            "sourceRoleType" : "EOM::OrderedContains",
            "sourceRoleName" : "EOM::PageOutputs",
            "targetRoleType" : "EOM::SharedContainedIn",
            "targetRoleName" : "123456789"
        }
    ]
}' "http://restserver:8080/restapi-core/rest/object/links"

TYPE MultipleRequest

{
  "items" : [ {
    "_type" : "aValue",
    "source" : "aValue",
    "sourceRoleName" : "aValue",
    "sourceRoleType" : "aValue",
    "target" : "aValue",
    "targetRoleName" : "aValue",
    "targetRoleType" : "aValue"
  } ]
}

Response

Return type

BulkResponse

Content type

application/json

In the example below, the first link creation was fine, the second generate and error

{
  "mixed": true,
  "size": 2,
  "items": [
    {
      "_type": "LinkPair",
      "source": "loid:199$1.0.678603144",
      "target": "loid:199$1.0.712969397",
      "sourceRoleType": "EOM::OrderedContains",
      "targetRoleType": "EOM::SharedContainedIn",
      "sourceRoleName": "EOM::PageOutputs",
      "targetRoleName": "123456789"
    },
    {
      "_type": "Error",
      "error": "ERROR",
      "code": 3,
      "message": "getObjectItemByLoid: loid=1.0.648865245 java.lang.Exception: loid does not exist",
      "exception": "java.lang.Exception"
    }
  ]
}

TYPE BulkResponse

{
  "items" : [ {
    "_type" : "aValue"
  } ],
  "size" : 1
}

/object/list GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 177. Parameters:
Parameter Type Required Default Description

catalogsCfg

boolean

No

-

from

int

No

-

header

boolean

No

-

id

String

No

-

info

boolean

No

-

limit

int

No

-

namePatterns

String

No

-

parametric

boolean

No

false

-

path

String

No

-

sections

String

No

-

sessionId

String

No

-

showAll

boolean

No

false

-

showMetadata

boolean

No

false

-

showSysAttr

boolean

No

false

-

sortBy

String

No

-

view

String

No

-

widthUnit

UnitType

No

PIXEL

-

Request

  1. positive result call

 GET /restapi-core-2.0.1/rest/object/list?sortBy=created&id=2.0.794167973
  1. error call

GET /restapi-core-2.0.1/rest/object/list?sortBy=name&token=76d0fd7b-076c-4f82-94ae-4f94fea7f437&path=/unrealFolder

Response

Content type

application/json

Content-Type: application/json

{
    "data": {
        "from": 0,
                "limit": 100,
        "count": 2,
        "items": [
            {
                "id": "0$1.0.226004544",
                "userId": "0$1.0.226004544",
                "pstate": {
                    "uuid": "3be4b3e8-d46a-11e4-ab2f-554f3c65cf3d",
                    "suid": "",
                    "loid": "1.0.226004544",
                    "retention_time": 1,
                    "ucount": 0
                },
                "name": "subfolder00.0",
                "description": "",
                "type": "EOM::Folder",
                "owner": "system",
                "creator": "system",
                "created": 1427451346,
                "last_modifier": "system",
                "modified": 1427451346,
                "locker": "system",
                "locked": 1427451346,
                "status_info": {
                    "name": "",
                    "identifier": "",
                    "comment": ""
                },
                "size": 0,
                "path": "/restTest0/subfolder00.0",
                "system_attributes_xml": "",
                "bundle": false,
                "folder": true,
                "userName": "subfolder00.0",
                "userType": "EOM::Folder",
                "icon": "folder",
                "flags": 24117264
            },
            {
                "id": "0$1.0.226004547",
                "userId": "0$1.0.226004547",
                "pstate": {
                    "uuid": "3be65770-d46a-11e4-ab2f-554f3c65cf3d",
                    "suid": "",
                    "loid": "1.0.226004547",
                    "retention_time": 226004550,
                    "ucount": 0
                },
                "name": "subfolder01.0",
                "description": "",
                "type": "EOM::Folder",
                "owner": "system",
                "creator": "system",
                "created": 1427451346,
                "last_modifier": "system",
                "modified": 1427451346,
                "locker": "system",
                "locked": 1427451346,
                "status_info": {
                    "name": "",
                    "identifier": "",
                    "comment": ""
                },
                "size": 0,
                "path": "/restTest0/subfolder01.0",
                "system_attributes_xml": "",
                "bundle": false,
                "folder": true,
                "userName": "subfolder01.0",
                "userType": "EOM::Folder",
                "icon": "folder",
                "flags": 24117264
            }
        ]
    }
}

/object/list/subfolders GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 178. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/list/subfolders?id=1.0.8098178&token=7151fd83-2c73-46e7-a245-b0cf0a0f7de2"

Response

Content type

application/json

{
    "count": 8,
    "folders": [
        {
            "name": "Art",
            "id": "99$1.0.31082394"
        },
        {
            "name": "Business",
            "id": "99$1.0.8098191"
        },
        {
            "name": "Foreign",
            "id": "99$1.0.8098180"
        },
        {
            "name": "Front",
            "id": "99$1.0.8951607"
        },
        {
            "name": "Local",
            "id": "99$1.0.72596141"
        },
        {
            "name": "News",
            "id": "99$1.0.8184383"
        },
        {
            "name": "Politics",
            "id": "99$1.0.8322491"
        },
        {
            "name": "Sport",
            "id": "99$1.0.8194419"
        }
    ]
}

/object/lock GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 179. Parameters:
Parameter Type Required Default Description

id

List

Yes

-

lockFor

LockingType

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/lock?id=1.0.275362174"

Response

Content type

application/json

[
    {
        "id": "1.0.275362174",
        "clientId": "1.0.275362174",
        "result": "ok"
    }
]

/object/metadata GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 180. Parameters:
Parameter Type Required Default Description

defaultMetadata

boolean

No

-

id

String

No

-

path

String

No

-

sessionId

String

No

-

type

String

No

-

workFolder

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/metadata?id=1.0.38395280&token=7151fd83-2c73-46e7-a245-b0cf0a0f7de2"

Response

Content type

application/xml

<!DOCTYPE ObjectMetadata SYSTEM "/SysConfig/Common/Classify/story.dtd">
<ObjectMetadata>
   <General>
      <MainCategory>
         Business
         <SuggestedSubjects>
            <group/>
            <SuggestedSubject/>
         </SuggestedSubjects>
         <SuggestedPeoples>
            <group/>
            <SuggestedPeople/>
         </SuggestedPeoples>
      </MainCategory>
      <NewsCode/>
      <IndustrySegment/>
      <GeographicalPlaces>
         <Address/>
         <City/>
         <State/>
         <Zip/>
         <Country/>
         <Latitude/>
         <Longitude/>
      </GeographicalPlaces>
      <ContentType/>
      <Language/>
      <Author>By  JONATHAN FAHEY</Author>
      <Fee>No</Fee>
      <People/>
      <Companies/>
      <Comment/>
      <Headline>Google reveals energy use to show search is green</Headline>
      <WordCount>809</WordCount>
   </General>
   <DistributionChannels>
      <OnLine>
         <WebPage/>
         <WebType/>
         <WebPortalPath/>
         <WebPortalCategory/>
         <WebSections/>
         <WebPriority/>
         <WebObjectType/>
         <WebDateTimePubStart/>
         <WebDateTimePubEnd/>
         <AllowUserComments/>
         <SpecialType>N</SpecialType>
         <StartDate/>
         <EndDate/>
      </OnLine>
      <Radio>
         <RadioBroadcastDateTime/>
         <RadioProgram/>
         <RadioObjectType>RadioNews</RadioObjectType>
      </Radio>
      <TV>
         <TVBroadcastDateTime/>
         <TVProgram/>
         <TVObjectType>TVNews</TVObjectType>
      </TV>
      <Syndication>N</Syndication>
      <Gallery>N</Gallery>
      <Blog>
         N
         <BlogSection/>
         <BlogDate/>
      </Blog>
      <Output>
         <Queue/>
         <PriorityQueue/>
         <Embargo/>
      </Output>
   </DistributionChannels>
   <Diffusion>
      <Diff_Print>YES</Diff_Print>
      <Diff_Web>YES</Diff_Web>
      <Diff_Syndication>YES</Diff_Syndication>
   </Diffusion>
</ObjectMetadata>

/object/metadata POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 181. Parameters:
Parameter Type Required Default Description

id

String

No

-

path

String

No

-

sessionId

String

No

-

Request

curl -H "Content-Type: text/xml" --data \
"<meta> \
	<test>rest</test> \
</meta>"                                          \
-X POST "http://eidos01host:9999//restapi-core/rest/object/metadata?id=1.0.328558799$&token=39a82d4e-3230-4178-9abb-1cfebbc9d764"

Response

Content type

application/json

{"result":"ok"}

/object/move POST

Resource information

Authentication Required

Yes

Request

Content type

application/json

curl -H "Content-Type: application/json" --data \
"{                                               \
    "srcFolderId": "2.0.795033522",          \
    "type": "move",                             \
    "items": [                                  \
        "2.0.795033530"                                       \
    ],                                          \
    "folderId": "2.0.795033522"             \
}"                                               \
-X POST "http://eidos01host:9999/restapi-core/rest/object/move"

Response

Content type

application/json

[								(1)
    {
        "id": "1.0.105480656",
        "result": "ok"
    },
    {
        "id": "1.0.259343106",
        "result": "ok"
    }
]								(2)


{
    "exception": "java.lang.Exception: Cannot move object in the same folder."
}


[								(3)
    {
        "replace": true,
        "name": "test.txt",
        "type": "EOM::File",
        "originalId": "99$1.0.105480656",
        "originalDate": 1440146392,
        "originalSize": 20,
        "tempId": "99$1.0.105480656",
        "newDate": 1440146392,
        "newSize": 20
    }
]
1 response in case of success
2 response when trying to move file to the source folder
3 response in case of a duplicate file name

/object/permissions GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 182. Parameters:
Parameter Type Required Default Description

id

List

Yes

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/permissions?token=39a82d4e-3230-4178-9abb-1cfebbc9d764&id=1.0.328558799"

Response

Content type

application/json

{
    "data": [
        {
            "id": "99$1.0.328558799",
            "owner": "system",
            "permissions": [
                {
                    "name": "Globe_Tablet",
                    "group": true,
                    "type": "PERM_TYPE_OBJECT",
                    "allowMask": 287,
                    "allow": [
                        "PERM_MODIFY_CONTENT",
                        "PERM_MODIFY_ATTRIB_EX",
                        "PERM_MODIFY_ATTRIB",
                        "PERM_WRITE",
                        "PERM_MODIFY_ATTRIB_SYS",
                        "PERM_READ",
                        "PERM_MODIFY_STATUS"
                    ]
                }
            ]
        }
    ]
}

/object/permissions POST

Resource information

Authentication Required

Yes

Request

Content type

application/json

curl -H "Content-Type: application/json" \
--data " /
[ /
  { /
    "id": "1.0.237339361", /
    "owner": "Admin", /
    "permissions": [ /
      { /
        "name": "Globe_Team", /
        "group": true, /
        "remove": true, /
        "allow": [ /
          "PERM_LINK", /
          "PERM_VIEW", /
          "PERM_READ" /
        ] /
      }, /
      { /
        "name": "Dario", /
        "group": false, /
        "allow": [ /
          "PERM_MODIFY_ATTRIB_EX", /
          "PERM_MODIFY_ATTRIB_SYS", /
          "PERM_READ" /
        ] /
      } /
    ] /
  } /
] /
" /
-X POST "http://eidos01host:9999/restapi-core/rest/object/permissions?token=27658525-8b11-4cff-9314-835d7272e8ac"

Response

Content type

application/json

{
    "result": "ok"
}

/object/permissions/check GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 183. Parameters:
Parameter Type Required Default Description

permission

List

Yes

-

id

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/permissions/check?token=39a82d4e-3230-4178-9abb-1cfebbc9d764&id=1.0.139932406&permission=PERM_LINK"

Response

Content type

application/json

{
  "id": "1.0.139932406",
  "clientId": "1.0.139932406",
  "result": "ok"
}

/object/permissions/listPermissions GET

Resource information

Authentication Required

Yes

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/permissions/listPermissions?token=27658525-8b11-4cff-9314-835d7272e8ac"

Response

{
    "PERM_ADD": 65536,
    "PERM_ADD_CONTAINER": 131072,
    "PERM_CONFIDENTIAL": 1024,
    "PERM_CONTAINER": 4128768,
    "PERM_DELETE": 32,
    "PERM_FULL": 8191,
    "PERM_LINK": 128,
    "PERM_LIST": 1048576,
    "PERM_MODIFY_ATTRIB_EX": 4,
    "PERM_MODIFY_ATTRIB_SYS": 256,
    "PERM_MODIFY_ATTRIB": 2,
    "PERM_MODIFY_CONTENT": 16,
    "PERM_MODIFY_PERM": 64,
    "PERM_MODIFY_ROLES": 2048,
    "PERM_MODIFY_STATUS": 8,
    "PERM_MODIFY": 6591,
    "PERM_MOVE": 4096,
    "PERM_READ_THRU_ALIAS": 8192,
    "PERM_READ": 1,
    "PERM_REMOVE_CONTAINER": 524288,
    "PERM_REMOVE": 262144,
    "PERM_SEARCH": 512,
    "PERM_TRAVERSE": 2097152,
    "PERM_VIEW": 1024,
    "PERM_WRITE_THRU_ALIAS": 16384,
    "PERM_WRITE": 286
}

/object/permissions/listPrincipalPlaceholders GET

Resource information

Authentication Required

Yes

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/permissions/listPrincipalPlaceholders?token=27658525-8b11-4cff-9314-835d7272e8ac"

Response

[
    "EOM::Collaborators",
    "EOM::Creator",
    "EOM::CreatorTeam",
    "EOM::OwnerTeam",
    "EOM::Owner",
    "EOM::Team"
]

/object/permissions/replacePermissions POST

Resource information

Authentication Required

Yes

Request

Content type

application/json

Response

Content type

application/json

/object/preview GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 184. Parameters:
Parameter Type Required Default Description

id

Source

No

-

path

String

No

-

sessionId

String

No

-

Request

Response

/object/recyclebin GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 185. Parameters:
Parameter Type Required Default Description

catalogsCfg

boolean

No

false

-

from

int

No

0

-

header

boolean

No

false

-

info

boolean

No

false

-

limit

int

No

50

-

sessionId

int

No

-1

-

userId

String

No

-

username

String

No

myself

-

widthUnit

UnitType

No

PIXEL

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/recyclebin?from=0&limit=50&info=true&header=false&catalogsCfg=true&widthUnit=pixel&token=27658525-8b11-4cff-9314-835d7272e8ac"

Response

Content type

application/json

{
    "info": {
        "id": "RecycleBin",
        "userId": "RecycleBin",
        "connectionName": "meth01@eidos02host",
        "title": "Recycle Bin",
        "size": 3,
        "flags": 0,
        "total": 0
    },
    "data": {
        "from": 0,
        "columns": [
            {
                "id": "0",
                "name": " ",
                "priority": "5",
                "width": 20
            },
            {
                "id": "1",
                "name": "Name",
                "priority": "5",
                "width": 300
            },
            {
                "id": "2",
                "name": "Original Location",
                "priority": "4",
                "width": 400
            },
            {
                "id": "3",
                "name": "Size",
                "priority": "1",
                "width": 100
            },
            {
                "id": "4",
                "name": "Date Deleted",
                "width": 130
            },
            {
                "id": "5",
                "name": " ",
                "priority": "4",
                "width": 20
            }
        ],
        "count": 14,
        "items": [
            {
                "id": "99$1.0.304639332",
                "type": "Configuration",
                "userId": "99$1.0.304639332",
                "pstate": {
                    "uuid": "",
                    "suid": "",
                    "loid": "1.0.304639332",
                    "retention_time": 52664881,
                    "ucount": 162
                },
                "name": "MethodeWorkspace.cfg.old",
                "description": "",
                "owner": "xtrainer",
                "creator": "xtrainer",
                "created": 1428478682,
                "last_modifier": "system",
                "modified": 1438934830,
                "locker": "",
                "locked": 1436264223,
                "status_info": {
                    "name": "",
                    "identifier": "",
                    "comment": ""
                },
                "size": 5069,
                "system_attributes_xml": "",
                "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
                "interfaceId": 0,
                "databaseId": 0,
                "bundle": false,
                "folder": false,
                "bundlechild": false,
                "bundlesize": 0,
                "userType": "recycle",
                "flags": 0,
                "columns": [
                    {
                        "name": "0",
                        "value": "ico:icon_file",
                        "type": "3",
                        "id": "0"
                    },
                    {
                        "name": "Name",
                        "value": "MethodeWorkspace.cfg.old",
                        "id": "1",
                        "priority": "5"
                    },
                    {
                        "name": "Original Location",
                        "value": "/Profiles/xtrainer/Config/MethodeWorkspace.cfg.old",
                        "id": "2",
                        "priority": "4"
                    },
                    {
                        "name": "Size",
                        "value": "4 Kbyte(s)",
                        "id": "3"
                    },
                    {
                        "name": "Date Deleted",
                        "value": "07-Aug-15 10:07",
                        "id": "4"
                    },
                    {
                        "name": "5",
                        "value": "ico:icon_action_restore",
                        "type": "3",
                        "id": "5",
                        "priority": "4"
                    }
                ]
            },
            {
                "id": "99$1.0.316220693",
                "type": "EOM::File",
                "userId": "99$1.0.316220693",
                "pstate": {
                    "uuid": "",
                    "suid": "",
                    "loid": "1.0.316220693",
                    "retention_time": 52627453,
                    "ucount": 150
                },
                "name": "OneRowDetailsView.xaml",
                "description": "",
                "owner": "system",
                "creator": "system",
                "created": 1434010057,
                "last_modifier": "system",
                "modified": 1438932687,
                "locker": "",
                "locked": 1438932684,
                "status_info": {
                    "name": "",
                    "identifier": "",
                    "comment": ""
                },
                "size": 13064,
                "system_attributes_xml": "",
                "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
                "interfaceId": 0,
                "databaseId": 0,
                "bundle": false,
                "folder": false,
                "bundlechild": false,
                "bundlesize": 0,
                "userType": "recycle",
                "flags": 0,
                "columns": [
                    {
                        "name": "0",
                        "value": "ico:icon_file",
                        "type": "3",
                        "id": "0"
                    },
                    {
                        "name": "Name",
                        "value": "OneRowDetailsView.xaml",
                        "id": "1",
                        "priority": "5"
                    },
                    {
                        "name": "Original Location",
                        "value": "/Profiles/xtrainer/Config/OneRowDetailsView.xaml",
                        "id": "2",
                        "priority": "4"
                    },
                    {
                        "name": "Size",
                        "value": "12 Kbyte(s)",
                        "id": "3"
                    },
                    {
                        "name": "Date Deleted",
                        "value": "07-Aug-15 09:31",
                        "id": "4"
                    },
                    {
                        "name": "5",
                        "value": "ico:icon_action_restore",
                        "type": "3",
                        "id": "5",
                        "priority": "4"
                    }
                ]
            }
        ]
    }
}

/object/recyclebin/delete GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 186. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

sessionId

int

No

-1

-

userId

String

No

-

username

String

No

myself

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/recyclebin/delete?id=1.0.316220693&token=27658525-8b11-4cff-9314-835d7272e8ac"

Response

Content type

application/json

{
        "result": "ok"
}

/object/recyclebin/restore GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 187. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

sessionId

int

No

-1

-

userId

String

No

-

username

String

No

myself

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/recyclebin/restore?id=2.0.793453465"

Response

Content type

application/json

{
        "result": "ok"
}

/object/rename POST

Resource information

Authentication Required

Yes

Multipart form data parameters

EidosMedia Rest Application Server 188. Parameters:
Parameter Type Required Default Description

excludeBundle

boolean

No

false

-

id

String

No

-

name

String

No

-

Request

Content type

multipart/form-data

curl -F "id=1.0.329231527" \
-F "name=TestRest.xml"  \
-X POST "http://eidos01host:9999/restapi-core/rest/object/rename?token=198ce5a8-7ca3-4c93-91f8-11eba65eb6d9"

Response

Return type

ResponseBean

Content type

application/json

{
    "items": [
        {
            "@type": "resultBean",
            "result": "ok"
        }
    ]
}

TYPE ResponseBean

{
  "error" : [ {
    "_type" : "aValue",
    "code" : 1,
    "details" : {
      "aKey" : { }
    },
    "error" : { },
    "exception" : "aValue",
    "info" : {
      "aKey" : { }
    },
    "message" : "aValue",
    "params" : {
      "aKey" : "aValue"
    },
    "requestBean" : { }
  } ],
  "items" : [ { } ],
  "request" : { }
}

/object/rename POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 189. Parameters:
Parameter Type Required Default Description

id

String

No

-

name

String

No

-

Request

curl -X POST "http://eidos01host:9999/restapi-core/rest/object/rename?id=2.0.792192426&name=renamebyrest"

Response

Return type

ResponseBean

Content type

application/json

{
    "items": [
        {
            "@type": "resultBean",
            "result": "ok"
        }
    ]
}

TYPE ResponseBean

{
  "error" : [ {
    "_type" : "aValue",
    "code" : 1,
    "details" : {
      "aKey" : { }
    },
    "error" : { },
    "exception" : "aValue",
    "info" : {
      "aKey" : { }
    },
    "message" : "aValue",
    "params" : {
      "aKey" : "aValue"
    },
    "requestBean" : { }
  } ],
  "items" : [ { } ],
  "request" : { }
}

/object/replace POST

Resource information

Authentication Required

Yes

Request

Content type

application/json

You could need a confirm after a move. Eg:

curl -H "Content-Type: application/json" --data "{                                               \
    "srcFolderId": "1.0.117235346",          \
    "type": "move",                             \
    "items": [                                  \
        "1.0.329190956"                   \
    ],                                          \
    "folderId": "1.0.138289562"             \
}"  \
-X POST "http://eidos01host:9999/restapi-core/rest/object/move?token=4dab3a9d-8969-43cb-a6d9-1cc2e1dc9480"

[{"replace":true,"name":"text.txt","type":"EOM::File","originalId":"99$1.0.328676294","originalDate":1440508957,"originalSize":17,"tempId":"99$1.0.329190956","newDate":1440578191,"newSize":17}]

Replace example:

curl -H "Content-Type: application/json" --data "{                                              \
  "action" : "move",                        \
  "operation" : "replace",                    \
  "items" : [                                   \
{                                           \
  "originalId" : "1.0.328676294",        \
  "tempId" : "1.0.329190956"             \
}                                           \
  ]                                             \
}" \
-X POST "http://eidos01host:9999/restapi-core/rest/object/replace?token=4dab3a9d-8969-43cb-a6d9-1cc2e1dc9480"

Response

Content type

application/json

[
 {
        "result":"ok"
 }
]

/object/role DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 190. Parameters:
Parameter Type Required Default Description

id

String

No

-

roleId

List

No

-

roleName

String

No

-

roleTypeName

String

No

-

Request

curl -X DELETE "http://eidos01host:9999/restapi-core/rest/object/role?id=1.0.316265880&token=0b87fcc5-ac4a-4387-80bd-9cf66350dfca&roleId=99\$1.0.316265888&roleName=U10316265873FpF&roleTypeName=EOM::PrintPageLinked"

Response

Return type

ResponseBean

Content type

application/json

{
    "items": [
        {
            "@type": "objectResultBean",
            "result": "ok",
            "id": "99$1.0.316265880"
        }
    ]
}

TYPE ResponseBean

{
  "error" : [ {
    "_type" : "aValue",
    "code" : 1,
    "details" : {
      "aKey" : { }
    },
    "error" : { },
    "exception" : "aValue",
    "info" : {
      "aKey" : { }
    },
    "message" : "aValue",
    "params" : {
      "aKey" : "aValue"
    },
    "requestBean" : { }
  } ],
  "items" : [ { } ],
  "request" : { }
}

/object/role GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 191. Parameters:
Parameter Type Required Default Description

id

String

No

-

includeDerived

boolean

No

false

-

roleId

List

No

-

roleName

String

No

-

roleTypeName

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/role?id=1.0.316265880&token=0b87fcc5-ac4a-4387-80bd-9cf66350dfca"

Response

Return type

ResponseBean

Content type

application/json

{
    "items": [
        {
            "@type": "roleBean",
            "id": "99$1.0.316265888",
            "type": "EOM::PrintPageLinked",
            "name": "U10316265873FpF"
        },
        {
            "@type": "roleBean",
            "id": "99$1.0.316265995",
            "type": "EOM::PrintPageLinks",
            "name": "Xsmile::Link"
        }
    ]
}

TYPE ResponseBean

{
  "error" : [ {
    "_type" : "aValue",
    "code" : 1,
    "details" : {
      "aKey" : { }
    },
    "error" : { },
    "exception" : "aValue",
    "info" : {
      "aKey" : { }
    },
    "message" : "aValue",
    "params" : {
      "aKey" : "aValue"
    },
    "requestBean" : { }
  } ],
  "items" : [ { } ],
  "request" : { }
}

/object/role POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 192. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

roleName

String

Yes

-

roleTypeName

String

Yes

-

Request

Content type

application/octet-stream

curl -H "Content-Type: application/octet-stream" \
--data "<root>test</root>" \
-X POST "http://eidos01host:9999/restapi-core/rest/object/role?id=2.0.793453465&roleTypeName=EOM::Preview&roleName=TestRest"

Response

Content type

application/json

{
        "result": "ok"
}

/object/role PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 193. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

roleName

String

Yes

-

roleTypeName

String

Yes

-

Request

Content type

application/octet-stream

curl -H "Content-Type: application/octet-stream" \
--data "<root>rest</root>" \
-X PUT "http://eidos01host:9999/restapi-core/rest/object/role?id=2.0.793453465&roleTypeName=EOM::Preview&roleName=TestRest2&token=d37c76ce-2919-4de0-94ff-5d0152e339a7"

Response

Return type

ResponseBean

Content type

application/json

{
    "items": [
        {
            "@type": "resultBean",
            "result": "ok"
        }
    ]
}

TYPE ResponseBean

{
  "error" : [ {
    "_type" : "aValue",
    "code" : 1,
    "details" : {
      "aKey" : { }
    },
    "error" : { },
    "exception" : "aValue",
    "info" : {
      "aKey" : { }
    },
    "message" : "aValue",
    "params" : {
      "aKey" : "aValue"
    },
    "requestBean" : { }
  } ],
  "items" : [ { } ],
  "request" : { }
}

/object/role/2 POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 194. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

roleName

String

Yes

-

roleTypeName

String

Yes

-

Request

Content type

application/octet-stream

curl -H "Content-Type: application/octet-stream" \
--data "<root>rest</root>" \
-X POST "http://eidos01host:9999/restapi-core/rest/object/role/2?id=2.0.793453465&roleTypeName=EOM::Preview&roleName=TestRest2&token=d37c76ce-2919-4de0-94ff-5d0152e339a7"

Response

Return type

ResponseBean

Content type

application/json

{
    "items": [
        {
            "@type": "resultBean",
            "result": "ok"
        }
    ]
}

TYPE ResponseBean

{
  "error" : [ {
    "_type" : "aValue",
    "code" : 1,
    "details" : {
      "aKey" : { }
    },
    "error" : { },
    "exception" : "aValue",
    "info" : {
      "aKey" : { }
    },
    "message" : "aValue",
    "params" : {
      "aKey" : "aValue"
    },
    "requestBean" : { }
  } ],
  "items" : [ { } ],
  "request" : { }
}

/object/shape DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 195. Parameters:
Parameter Type Required Default Description

channel

String

No

-

id

String

No

-

Request

Response

Content type

application/json

/object/shape/apply POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 196. Parameters:
Parameter Type Required Default Description

channel

String

Yes

-

id

String

Yes

-

checkinAction

boolean

No

false

-

shape

String

No

-

Request

curl -H " \
{ \
  "pgx": { \
    "pgl": { \
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg", \
      "channel": "Globe-Print", \
      "stories": { \
        "story": { \
          "id": "kgBC", \
          "content": { \
            "id": "knBI", \
            "item": [ \
              { \
                "format": "Top head", \
                "type": "headline", \
                "id": "kDqE", \
                "sref": "kqzE", \
                "idx": "U10725324247kUE" \
              }, \
              { \
                "format": "Clean", \
                "type": "text", \
                "column-gap": "12", \
                "fstyle": "Justify", \
                "id": "kZyG", \
                "sref": "k9SC", \
                "idx": "U10725324247ZRG" \
              }, \
              { \
                "format": "Picture no margin", \
                "type": "picture", \
                "id": "k0sF", \
                "sref": "kTpE", \
                "idx": "U10725324247u5F" \
              } \
            ] \
          } \
        } \
      }, \
      "layers": {  \
        "layer": { \
          "id": "kWx", \
          "svg": { \
            "rect": [ \
              { \
                "width": "456", \
                "type": "Overhead", \
                "height": "10", \
                "fstyle": "HeadLeft", \
                "id": "kqzE", \
                "iref": "kDqE", \
                "sref": "kePC", \
                "x": "0", \
                "y": "43.73" \
              }, \
              { \
                "width": "456", \
                "type": "Headline", \
                "height": "60", \
                "fstyle": "HeadLeft", \
                "sstyle": "margin-bottom:8;", \
                "id": "kePC", \
                "iref": "kDqE", \
                "x": "0", \
                "y": "55.73" \
              }, \
              { \
                "width": "144", \
                "height": "230", \
                "id": "k9SC", \
                "iref": "kZyG", \
                "sref": "kOtB", \
                "x": "0", \
                "y": "133.73" \
              }, \
              { \
                "width": "144", \
                "height": "230", \
                "id": "kOtB", \
                "iref": "kZyG", \
                "sref": "klVB", \
                "x": "155", \
                "y": "133.73" \
              }, \
              { \
                "width": "144", \
                "height": "230", \
                "id": "klVB", \
                "iref": "kZyG", \
                "x": "312", \
                "y": "133.73" \
              }, \
              { \
                "width": "456", \
                "height": "260", \
                "id": "kTpE", \
                "iref": "k0sF", \
                "x": "0", \
                "y": "373.73" \
              } \
            ] \
          } \
        } \
      }, \
      "spreads": { \
        "spread": { \
          "page": { \
            "layer": { "lref": "kWx" } \
          } \
        } \
      } \
    } \
  } \
} \
" \
-X POST "http://eidos01host:9999/restapi-core/rest/object/shape/apply?id=1.0.725324247"

Response

Content type

application/json

{
  "pgx": {
    "pgl": {
      "hrefAux": "/SysConfig/Globe/Print/Page/pageAccessories.cfg",
      "channel": "Globe-Print",
      "stories": {
        "story": {
          "id": "kgBC",
          "content": {
            "id": "knBI",
            "item": [
              {
                "format": "Top head",
                "type": "headline",
                "id": "kDqE",
                "sref": "kqzE",
                "idx": "U10725324247kUE"
              },
              {
                "format": "Clean",
                "type": "text",
                "id": "kZyG",
                "sref": "k9SC",
                "idx": "U10725324247ZRG",
                "column-gap": "12",
                "fstyle": "Justify"
              },
              {
                "format": "Picture no margin",
                "type": "picture",
                "id": "k0sF",
                "sref": "kTpE",
                "idx": "U10725324247u5F"
              }
            ]
          }
        }
      },
      "layers": {
        "layer": {
          "id": "kWx",
          "svg": {
            "rect": [
              {
                "width": "456",
                "type": "Overhead",
                "height": "10",
                "fstyle": "HeadLeft",
                "id": "kqzE",
                "iref": "kDqE",
                "sref": "kePC",
                "x": "0",
                "y": "43.73"
              },
              {
                "width": "456",
                "type": "Headline",
                "height": "60",
                "fstyle": "HeadLeft",
                "id": "kePC",
                "iref": "kDqE",
                "x": "0",
                "y": "55.73",
                "sstyle": "margin-bottom:8;"
              },
              {
                "width": "144",
                "height": "230",
                "id": "k9SC",
                "iref": "kZyG",
                "sref": "kOtB",
                "x": "0",
                "y": "133.73"
              },
              {
                "width": "144",
                "height": "230",
                "id": "kOtB",
                "iref": "kZyG",
                "sref": "klVB",
                "x": "155",
                "y": "133.73"
              },
              {
                "width": "144",
                "height": "230",
                "id": "klVB",
                "iref": "kZyG",
                "x": "312",
                "y": "133.73"
              },
              {
                "width": "456",
                "height": "260",
                "id": "kTpE",
                "iref": "k0sF",
                "x": "0",
                "y": "373.73"
              }
            ]
          }
        }
      },
      "spreads": {
        "spread": {
          "page": {
            "layer": {
              "lref": "kWx"
            }
          }
        }
      }
    }
  }
}

/object/shape/topicItem DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 197. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

Request

curl -X DELETE "http://eidos01host:9999/restapi-core/rest/object/shape/topicItem?id=1.0.725324247"

Response

Content type

application/json

{
  "result": "OK"
}

/object/shape/topicItem POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 198. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

checkinAction

boolean

No

false

-

contentId

String

No

-

page

String

No

-

shape

String

No

-

Request

curl -X POST "http://eidos01host:9999/restapi-core/rest/object/shape/topicItem?id=1.0.733812145&shape=1.0.32917154"

Response

Content type

application/json

{
  "result": "OK"
}

Unresolved directive in object/object.adoc - include::get-object-story-{source}-info.adoc[leveloffset=+1] :leveloffset: +1

/object/story/bundle/infoByLoids GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 199. Parameters:
Parameter Type Required Default Description

id

List

Yes

-

showAll

boolean

No

false

-

Request

Response

Content type

application/json

/object/story/full GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 200. Parameters:
Parameter Type Required Default Description

pageid

String

Yes

-

channel

String

No

-

id

String

No

-

limit

int

No

-

linkName

String

No

-

path

String

No

-

roleName

String

No

-

roleType

String

No

-

showAll

boolean

No

false

-

Request

Response

Return type

StoryBean

Content type

application/json

TYPE StoryBean

{
  "bundleInfo" : { },
  "content" : "aValue",
  "listLinked" : {
    "count" : 1,
    "roleType" : "aValue",
    "roles" : [ { } ]
  },
  "shape" : {
    "contentItems" : [ { } ],
    "contentItemsError" : "aValue",
    "formats" : [ { } ],
    "formatsError" : "aValue",
    "info" : { },
    "pageLinked" : { },
    "pgx" : { },
    "pgxShapeItems" : [ { } ]
  }
}

/object/story/hasChannelCopy GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 201. Parameters:
Parameter Type Required Default Description

channel

String

No

-

edition

String

No

-

id

String

No

-

path

String

No

-

sessionId

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/story/hasChannelCopy?id=1.0.722672049&edition=News&channel=Globe-Web"

Response

Content type

application/json

{
  "exists": true,
  "loid": "1.0.722672129"
}

/object/systemattributes GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 202. Parameters:
Parameter Type Required Default Description

id

String

No

-

path

String

No

-

sessionId

int

No

0

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/systemattributes?id=2.0.793453465"

Response

Content type

application/json

{
    "props": {
        "productInfo": {
            "name": "Globe-Print",
            "issueDate": 20150612,
            "edition": "EUROPE"
        }
    }
}

/object/ticket DELETE

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 203. Parameters:
Parameter Type Required Default Description

id

String

No

-

ticketId

int

No

0

-

ticketType

String

No

-

Request

Response

Content type

application/json

{
        "result": "ok"
}

/object/ticket GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 204. Parameters:
Parameter Type Required Default Description

format

String

No

xml

-

id

String

No

-

ticketId

List

No

-

ticketType

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/ticket?id=2.0.793453465&ticketType=PrintLink&token=bf3319f5-2418-4b80-9558-02e696b165cc"

Response

Content type

application/xml, application/json

<?xml version="1.0" encoding="UTF-8"?>
<tl>
   <t>
      <id>4</id>
      <tp>PrintLink</tp>
      <c>Bob</c>
      <cd>20130527144000</cd>
      <dt>
         <uid path="/Globe/Print/Pages/Sport/2013-05-22/Mpx.pgl" lid="U10104755949ZUG">0335602c-c6db-11e2-8659-6308efb54199</uid>
         <channel>Globe-Print</channel>
         <issueDate>20130522</issueDate>
      </dt>
   </t>
   <t>
      <id>9</id>
      <tp>PrintLink</tp>
      <c>system</c>
      <cd>20130723154100</cd>
      <dt>
         <uid path="Untitled" lid="kMjG" />
         <channel>Globe-Web</channel>
         <issueDate>20130711</issueDate>
      </dt>
   </t>
   <t>
      <id>24</id>
      <tp>PrintLink</tp>
      <c>system</c>
      <cd>20131121141100</cd>
      <dt>
         <uid lid="U10126927216gWF" path="/Globe/Print/Pages/Sport/2013-10-10/Sport-002-1.pgl/Sport-002-1.pgl">81916dae-3296-11e3-a975-d76e70a890f7</uid>
         <channel>Globe-Print</channel>
         <issueDate>20131011</issueDate>
         <story>
            <name>Shakira</name>
         </story>
         <crop wShape="348.3" hShape="466.74" transform=" scale(0.9999964 0.9999964)" ptUnit="pica" x="0%" y="0%" width="100%" height="100%" />
      </dt>
   </t>
</tl>

/object/ticket POST

Resource information

Authentication Required

Yes

Form parameters

EidosMedia Rest Application Server 205. Parameters:
Parameter Type Required Default Description

id

String

No

-

ticket

String

No

-

ticketType

String

No

-

Request

Content type

application/x-www-form-urlencoded

curl -H "application/x-www-form-urlencoded" \
--data "id=2.0.793453465&ticketType=PrintLink&ticket=%3Cdt%3E%3Cuid%20path%3D%22Untitled%22%20lid%3D%22kMjG%22%20%2F%3E%3Cchannel%3EGlobe-Web%3C%2Fchannel%3E%3CissueDate%3E20150525%3C%2FissueDate%3E%3C%2Fdt%3E" \
-X POST "http://eidos01host:9999/restapi-core/rest/object/ticket?token=bf3319f5-2418-4b80-9558-02e696b165cc"

where the ticket param url decoded is:

<dt>
   <uid path="Untitled" lid="kMjG" />
   <channel>Globe-Web</channel>
   <issueDate>20150525</issueDate>
</dt>

Response

Content type

application/json

{
    "ticketId": 1
}

/object/ticket POST

Resource information

Authentication Required

Yes

Multipart form data parameters

EidosMedia Rest Application Server 206. Parameters:
Parameter Type Required Default Description

id

String

No

-

ticket

String

No

-

ticketType

String

No

-

Request

Content type

multipart/form-data

curl -H "application/x-www-form-urlencoded" \
--data "id=2.0.793453465&ticketType=PrintLink&ticket=%3Cdt%3E%3Cuid%20path%3D%22Untitled%22%20lid%3D%22kMjG%22%20%2F%3E%3Cchannel%3EGlobe-Web%3C%2Fchannel%3E%3CissueDate%3E20150525%3C%2FissueDate%3E%3C%2Fdt%3E" \
-X POST "http://eidos01host:9999/restapi-core/rest/object/ticket?token=bf3319f5-2418-4b80-9558-02e696b165cc"

where the ticket param url decoded is:

<dt>
   <uid path="Untitled" lid="kMjG" />
   <channel>Globe-Web</channel>
   <issueDate>20150525</issueDate>
</dt>

Response

Content type

application/json

{
    "ticketId": 1
}

/object/ticket PUT

Resource information

Authentication Required

Yes

Form parameters

EidosMedia Rest Application Server 207. Parameters:
Parameter Type Required Default Description

id

String

No

-

ticket

String

No

-

ticketId

int

No

-

ticketType

String

No

-

Request

Content type

application/x-www-form-urlencoded

curl -H "application/x-www-form-urlencoded" \
--data "id=2.0.793453465&ticketType=PrintLink&ticketId=1&ticket=%3Cdt%3E%3Cuid%20path%3D%22Untitled%22%20lid%3D%22kMjG%22%20%2F%3E%3Cchannel%3EGlobe-Web%3C%2Fchannel%3E%3CissueDate%3E20050525%3C%2FissueDate%3E%3C%2Fdt%3E" \
-X PUT "http://eidos01host:9999/restapi-core/rest/object/ticket?token=bf3319f5-2418-4b80-9558-02e696b165cc"

where the ticket param url decoded is:

<dt>
   <uid path="Untitled" lid="kMjG" />
   <channel>Globe-Web</channel>
   <issueDate>20050525</issueDate>
</dt>

Response

Content type

application/json

{
    "ticketId": 1
}

/object/transitions GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 208. Parameters:
Parameter Type Required Default Description

id

String

No

-

path

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/transitions?id=2.0.793453465"

Response

Content type

application/json

[
  {
    "creator": "s",
    "timestamp": 1467794918,
    "statusName": "NewsFlow/Editing",
    "color": "RGB(255,0,0)"
  },
  {
    "creator": "system",
    "timestamp": 1467973106,
    "statusName": "NewsFlow/For Approval",
    "color": "RGB(255,192,0)"
  },
  {
    "creator": "system",
    "timestamp": 1467973110,
    "statusName": "NewsFlow/Approved",
    "color": "RGB(0,255,0)"
  },
  {
    "creator": "system",
    "timestamp": 1467973115,
    "statusName": "NewsFlow/For Approval",
    "color": "RGB(255,192,0)"
  },
  {
    "creator": "system",
    "timestamp": 1467973118,
    "statusName": "NewsFlow/Editing",
    "color": "RGB(255,0,0)"
  }
]

/object/uncorrelate POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 209. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

Request

Content type

application/json

curl -H "Content-Type: application/json" --data  \
"[                                               \
    {                                            \
        "targetId": "2.0.793453465",         \
        "sourceLinkName": "correlation_test2",   \
        "targetLinkName": "correlation_test2"    \
    }                                            \
]"                                               \
-X POST "http://eidos01host:9999/restapi-core/rest/object/uncorrelate?id=2.0.793453465"

Response

Content type

application/json

[
    {
        "id": "61$1.0.129034728",
        "clientId": "61$1.0.129034728",
        "result": "ok"
    }
]

/object/undocheckout GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 210. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/undocheckout?id=2.0.793453465&getInfo=true"

Response

Return type

ResultOkBean

Content type

application/json

{
  "result": "ok",
  "info": {
    "pstate": {
      "uuid": "w9vo+jUuEeW/N8M8GhAepw==",
      "suid": "",
      "loid": "AAEAACwkO7Y=",
      "ucount": 178,
      "retention_time": 0
    },
    "name": "Always on my Mind composer Wayne Carson dies.xml",
    "description": "",
    "type": "EOM::CompoundStory",
    "owner": "Francesca",
    "creator": "Francesca",
    "created": 1438091067,
    "last_modifier": "system",
    "modified": 1460644958,
    "locker": "system",
    "locked": 1460644958,
    "status_info": {
      "name": "NewsFlow/For Approval",
      "identifier": "RGB(255,192,0)"
    },
    "attributes": "<!DOCTYPE ObjectMetadata SYSTEM \"/SysConfig/Common/Classify/story.dtd\">\n<ObjectMetadata><AutoPublish><GlobeWeb>NO</GlobeWeb>\n<GlobeMobile>NO</GlobeMobile>\n<GlobeTablet>NO</GlobeTablet>\n</AutoPublish>\n\n\n\n\n\n\n<General><MainCategory>Art<SuggestedSubjects><group/>\n<SuggestedSubject/>\n</SuggestedSubjects>\n<SuggestedPeoples><group/>\n<SuggestedPeople/>\n</SuggestedPeoples>\n</MainCategory><NewsCode/><IndustrySegment/><GeographicalPlaces><Address/><City>Milan</City><State/><Zip/><Country/><Latitude/><Longitude/></GeographicalPlaces><ContentType/><Language/><Author>By FM</Author><Fee>No</Fee><People/><Companies/><Keywords/><Comment/><Headline>Always on my Mind composer Wayne Carson dies\n</Headline><WordCount>733</WordCount></General><DistributionChannels><OnLine><WebPage/>\n<WebType/>\n<WebPortalPath/>\n<WebPortalCategory/>\n<WebSections/>\n<WebPriority/>\n<WebObjectType/>\n<WebDateTimePubStart/>\n<WebDateTimePubEnd/>\n<AllowUserComments/>\n<InlineCorrelatedPhoto/>\n<LinkToSection/>\n<SpecialType>N</SpecialType>\n<StartDate/>\n<EndDate/>\n<Parental/>\n<Advertising/>\n<WebRating/>\n</OnLine>\n<Radio><RadioBroadcastDateTime/>\n<RadioProgram/>\n<RadioObjectType>RadioNews</RadioObjectType>\n</Radio>\n<TV><TVBroadcastDateTime/>\n<TVProgram/>\n<TVObjectType>TVNews</TVObjectType>\n</TV>\n<Syndication>N</Syndication>\n<Gallery>N</Gallery>\n<Blog>N<BlogSection/>\n<BlogDate/>\n</Blog>\n<Output><Queue/>\n<PriorityQueue/>\n<Embargo/>\n</Output>\n</DistributionChannels><Diffusion><Diff_Print>YES</Diff_Print><Diff_Web>YES</Diff_Web><Diff_Syndication>YES</Diff_Syndication></Diffusion><ApprovalChecks><check1>NO</check1><check2>NO</check2><check3>NO</check3></ApprovalChecks><Social><publicationDate/></Social><url/></ObjectMetadata>",
    "system_attributes": "<props><productInfo><name>Globe-Web</name>\n<issueDate>20150729</issueDate>\n</productInfo>\n<workFolder>/Globe/Art</workFolder>\n<templateName>/SysConfig/Globe/Templates/story.xml</templateName>\n<title>Always on my Mind composer Wayne Carson dies</title><summary>Wayne Carson, who wrote Elvis Presley’s Always on my Mind and Joe Cocker’s The Letter, has died aged 72.</summary><wordCount>733</wordCount><sug_category/></props>",
    "virtual_attributes": "<va xmlns:eom='http://www.eidosmedia.com/eom'><folder_size>0</folder_size><parent_uuid>3f4e1574-dfa4-11e0-ad0b-05616cf686aa</parent_uuid><oteam>Globe_Team</oteam><cteam>Globe_Team</cteam><corrs/><vid>3</vid><vt>1460644958</vt></va>",
    "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl><t>\n<id>2</id>\n<tp>WebLink</tp>\n<c>system</c>\n<cd>20150728152200</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"HP-1060-1row2cols.dwc\">41ca017c-353c-11e5-bf37-c33c1a101ea7</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150729</issueDate>\n</dt>\n</t>\n<t>\n<id>3</id>\n<tp>wpcnt</tp>\n<c>system</c>\n<cd>20150907153200</cd>\n<dt>\n<mpc_visits tp=\"complex\">\n<p_tot>\n<n>6</n>\n<d>20150907</d>\n</p_tot>\n<p_day>\n<n>1</n>\n<d>20150907</d>\n</p_day>\n<p_week>\n<n>1</n>\n<d>20150906</d>\n</p_week>\n<p_month>\n<n>2</n>\n<d>20150901</d>\n</p_month>\n</mpc_visits>\n</dt>\n</t>\n<t>\n<id>4</id>\n<tp>WebLink</tp>\n<c>system</c>\n<cd>20150729083500</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"HP-1060-3row3cols.dwc\">6c66ab98-35cc-11e5-b1a8-cbf7a73469d3</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150730</issueDate>\n</dt>\n</t>\n<t>\n<id>5</id>\n<tp>WebLink</tp>\n<c>Francesca</c>\n<cd>20150729142900</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"Page 4 stories Art.dwp\">b93f4d7c-3fe5-11e4-91a9-cd05e4b6e8e9</uid>\n<channel>Globe-Tablet</channel>\n<issueDate>20140920</issueDate>\n</dt>\n</t>\n<t>\n<id>6</id>\n<tp>WebLink</tp>\n<c>LucaP</c>\n<cd>20150804124900</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"/Globe/WebV2/Web Components/Sport/HP-4row3cols.dwc\">512cff24-3aa6-11e5-8d10-d2b2d8eeb346</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150805</issueDate>\n</dt>\n</t>\n<t>\n<id>7</id>\n<tp>WebLink</tp>\n<c>davide.carrettin</c>\n<cd>20150804134800</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"ART-1060-1row2cols.dwc\">6ddf14a0-3aaf-11e5-8d10-d2b2d8eeb346</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150805</issueDate>\n</dt>\n</t>\n<t>\n<id>8</id>\n<tp>WebLink</tp>\n<c>system</c>\n<cd>20150805144300</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"DAVIDEprova2.dwc\">5373c152-3b80-11e5-afbe-3cd24e87701c</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150806</issueDate>\n</dt>\n</t>\n<t>\n<id>10</id>\n<tp>WebLink</tp>\n<c>Francesca</c>\n<cd>20150902093700</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"stories_block.dwc\">1f2bfe64-5156-11e5-b20a-fa26abfb1eb1</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150903</issueDate>\n</dt>\n</t>\n<t>\n<id>11</id>\n<tp>WebLink</tp>\n<c>Francesca</c>\n<cd>20150904105100</cd>\n<dt>\n<uid lid=\"1.0.740572086\" path=\"three_stories.dwc\">eedcb280-5155-11e5-b20a-fa26abfb1eb1</uid>\n<channel>Globe-Web</channel>\n<issueDate>20150903</issueDate>\n</dt>\n</t>\n<t>\n<id>12</id>\n<tp>PortalPub</tp>\n<c>jacopo.baldi</c>\n<cd>20150914100200</cd>\n<dt>\n<rep>Demo/GlobeCMS</rep>\n<uuid>KeeKxFrHEeWxD5S9wUNDcw</uuid>\n<first>20150914095835</first>\n<last>20150914095835</last>\n<count>1</count>\n<channel>Globe-Web,Globe-Ipad,Globe-Mobile,GlobeFR-Web,GlobeReports-Web</channel>\n</dt>\n</t>\n<t>\n<id>14</id>\n<tp>PrintLink</tp>\n<c>system</c>\n<cd>20160309143200</cd>\n<dt>\n<uid lid=\"U10776806681hJD\" path=\"PaginaTest.pgl\">89f55c6e-dada-11e5-9b61-b091edb61adc</uid>\n<channel>Globe-Print</channel>\n<issueDate>20160225</issueDate>\n<size>1316c/29L</size>\n<story>\n<name>Always on my Mind composer Wayne Carson dies</name>\n</story>\n</dt>\n</t>\n<t>\n<id>36</id>\n<tp>EOM::Status</tp>\n<c>system</c>\n<cd>20160322123000</cd>\n<dt>\n<status comment=\"\" />\n</dt>\n</t>\n</tl>",
    "size": 5204
  }
}

TYPE ResultOkBean

{
  "info" : { },
  "result" : "aValue"
}

/object/unlock GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 211. Parameters:
Parameter Type Required Default Description

id

List

Yes

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/unlock?id=1.0.328676294"

Response

Content type

application/json

[
    {
        "id": "99$1.0.328676294",
        "clientId": "99$1.0.328676294",
        "result": "ok"
    }
]

/object/update POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 212. Parameters:
Parameter Type Required Default Description

attributes

String

No

-

id

String

No

-

keepCheckedOut

boolean

No

false

-

newVersion

boolean

No

false

-

path

String

No

-

role

String

No

-

sessionId

String

No

-

setId

boolean

No

false

-

showPath

boolean

No

false

-

showSysAttr

boolean

No

false

-

statusComment

String

No

-

statusName

String

No

-

systemAttributes

String

No

-

timestamp

String

No

-

workFolder

String

No

-

Request

Content type

application/octet-stream

curl -X POST "http://eidos01host:9999/restapi-core/rest/object/update?id=2.0.793453465&systemAttributes=%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%3Cprops%3E%3CproductInfo%3E%3Cname%3EGlobe-Print%3C%2Fname%3E%3CissueDate%3E19780830%3C%2FissueDate%3E%3C%2FproductInfo%3E%3CworkFolder%3E%2FGlobe%2FBusiness%3C%2FworkFolder%3E%3CtemplateName%3E%2FSysConfig%2FGlobe%2FTemplates%2Fstory.xml%3C%2FtemplateName%3E%3Csummary%2F%3E%3CwordCount%3E23%3C%2FwordCount%3E%3Csug_category%20%2F%3E%3C%2Fprops%3E"

where the systemAttributes url decoded is:

<?xml version="1.0" encoding="UTF-8"?>
<props>
   <productInfo>
      <name>Globe-Print</name>
      <issueDate>19780830</issueDate>
   </productInfo>
   <workFolder>/Globe/Business</workFolder>
   <templateName>/SysConfig/Globe/Templates/story.xml</templateName>
   <summary />
   <wordCount>23</wordCount>
   <sug_category />
</props>

Response

Content type

application/json

{
    "id": "99$1.0.259343106",
    "type": "EOM::Story",
    "userId": "99$1.0.259343106",
    "pstate": {
        "uuid": "ce7def12-3cc1-11e4-b328-913c0f7e8377",
        "suid": "",
        "loid": "1.0.259343106",
        "retention_time": 49,
        "ucount": 13
    },
    "name": "test.xml",
    "description": "",
    "owner": "system",
    "creator": "system",
    "created": 1410776381,
    "last_modifier": "system",
    "modified": 1440410674,
    "locker": "",
    "locked": 1440410674,
    "status_info": {
        "name": "",
        "identifier": "",
        "comment": ""
    },
    "size": 0,
    "system_attributes_xml": "<?xml version=\"1.0\" encoding=\"UTF-8\"?><props><productInfo><name>Globe-Print</name><issueDate>19780830</issueDate></productInfo><workFolder>/Globe/Business</workFolder><templateName>/SysConfig/Globe/Templates/story.xml</templateName><summary/><wordCount>23</wordCount><sug_category /></props>",
    "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl><t>\n<id>1</id>\n<tp>PrintOutput</tp>\n<c>system</c>\n<cd>20140915102400</cd>\n<dt>\n<book>Test1</book>\n</dt>\n</t>\n<t>\n<id>2</id>\n<tp>PrintOutput</tp>\n<c>system</c>\n<cd>20140915102400</cd>\n<dt>\n<book>\n<name>Test2</name>\n</book>\n</dt>\n</t>\n<t>\n<id>3</id>\n<tp>PrintOutput</tp>\n<c>system</c>\n<cd>20140915102400</cd>\n<dt><book>Test3.1\n<name>Test3.2</name></book></dt>\n</t>\n</tl>",
    "channel": "Globe-Print",
    "issueDate": "19780830",
    "interfaceId": 16,
    "databaseId": 99,
    "bundle": false,
    "folder": false,
    "bundlechild": false,
    "bundlesize": 0
}

/object/update POST

Resource information

Authentication Required

Yes

MULTIPART FORM DATA PARAMETERS

EidosMedia Rest Application Server 213. Parameters:
Parameter Type Required Default Description

attributes

String

No

-

file

InputStream

No

-

id

String

No

-

keepCheckedOut

boolean

No

false

-

newVersion

boolean

No

false

-

path

String

No

-

role

String

No

-

sessionId

String

No

-

setId

boolean

No

false

-

showPath

boolean

No

false

-

showSysAttr

boolean

No

false

-

statusComment

String

No

-

statusName

String

No

-

systemAttributes

String

No

-

timestamp

String

No

-

workFolder

String

No

-

Request

Content type

multipart/form-data

curl -F "id=1.0.329190956" \
-F "systemAttributes=<props>testRest</props>" \
-F "file=testrest.txt" \
-X POST "http://eidos01host:9999/restapi-core/rest/object/update?token=6f483783-c5c5-46db-a685-b8cc3fde242d"

Response

Content type

application/json

{
    "id": "99$1.0.329190956",
    "type": "EOM::File",
    "userId": "99$1.0.329190956",
    "pstate": {
        "uuid": "8d127680-4bcd-11e5-9394-d9d4b3216e68",
        "suid": "",
        "loid": "1.0.329190956",
        "retention_time": 0,
        "ucount": 14
    },
    "name": "text.txt",
    "description": "",
    "owner": "system",
    "creator": "system",
    "created": 1440578191,
    "last_modifier": "system",
    "modified": 1440665126,
    "locker": "",
    "locked": 1440665126,
    "status_info": {
        "name": "",
        "identifier": "",
        "comment": ""
    },
    "size": 12,
    "system_attributes_xml": "<props>testRest</props>",
    "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
    "interfaceId": 16,
    "databaseId": 99,
    "bundle": false,
    "folder": false,
    "bundlechild": false,
    "bundlesize": 0
}

/object/updateFormat POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 214. Parameters:
Parameter Type Required Default Description

formatAlias

String

No

-

formatMimeType

String

No

-

formatName

String

No

-

id

String

No

-

path

String

No

-

sessionId

String

No

-

showPath

boolean

No

false

-

Request

Content type

application/octet-stream

curl -X POST "http://eidos01host:9999/restapi-core/rest/object/updateFormat?id=2.0.794303123&showPath=true"

Response

Content type

application/json

{
    "id": "99$1.0.328918954",
    "type": "Image",
    "userId": "99$1.0.328918954",
    "pstate": {
        "uuid": "da2a1c60-4a48-11e5-9f67-379631219eb4",
        "suid": "",
        "loid": "1.0.328918954",
        "retention_time": 0,
        "ucount": 13
    },
    "name": "logo.png",
    "description": "",
    "owner": "system",
    "creator": "system",
    "created": 1440411246,
    "last_modifier": "system",
    "modified": 1440411246,
    "locker": "",
    "locked": 1440411246,
    "status_info": {
        "name": "",
        "identifier": "",
        "comment": ""
    },
    "size": 12214,
    "path": "/Test/logo.png",
    "system_attributes_xml": "<props><workFolder>/Globe</workFolder><productInfo><issueDate>20150821</issueDate></productInfo><title>...</title><summary/><imageInfo>\n<width>262</width>\n<height>135</height>\n<ptWidth>262.0</ptWidth>\n<ptHeight>135.0</ptHeight>\n<xDim>92.43</xDim>\n<yDim>47.63</yDim>\n<dim>9.243cm x 4.763cm</dim>\n<xres>72.0</xres>\n<yres>72.0</yres>\n<colorType>RGB</colorType>\n<fileType>PNG</fileType>\n</imageInfo></props>",
    "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
    "issueDate": "20150821",
    "interfaceId": 16,
    "databaseId": 99,
    "bundle": false,
    "folder": false,
    "bundlechild": false,
    "bundlesize": 0
}

/object/updateFormat POST

Resource information

Authentication Required

Yes

Multipart form data parameters

EidosMedia Rest Application Server 215. Parameters:
Parameter Type Required Default Description

file

InputStream

No

-

formatAlias

String

No

-

formatMimeType

String

No

-

formatName

String

No

-

id

String

No

-

path

String

No

-

sessionId

String

No

-

showPath

boolean

No

false

-

Request

Content type

multipart/form-data

Response

Content type

application/json

/object/upload POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 216. Parameters:
Parameter Type Required Default Description

attributes

String

No

-

folderId

String

No

-

folderPath

String

No

-

name

String

No

-

newObjOption

int

No

0

-

taskId

String

No

-

type

String

No

-

Request

Content type

application/octet-stream

curl -H "Content-Type:application/octet-stream" --data \
"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" \
-X POST "http://eidos01host:9999//restapi-core/rest/object/upload?folderPath=/donottouch_RestTestResources/object/upload&name=image.png&type=Image"

Response

Content type

application/json

{
  "id": "9$2.0.831866657",
  "type": "Image",
  "userId": "9$2.0.831866657",
  "pstate": {
    "uuid": "c63d8ad0-660c-11e6-a8cf-627dec1bac8b",
    "suid": "",
    "loid": "2.0.831866657",
    "retention_time": 1007304308,
    "ucount": 13
  },
  "name": "image.png",
  "description": "",
  "owner": "system",
  "creator": "system",
  "created": 1471611573,
  "last_modifier": "system",
  "modified": 1471611573,
  "locker": "",
  "locked": 1471611573,
  "status_info": {
    "name": "",
    "identifier": "",
    "comment": ""
  },
  "size": 629181,
  "path": "/donottouch_RestTestResources/object/upload/image.png",
  "system_attributes_xml": "<props><workFolder>/Globe</workFolder><productInfo><name>Globe-Web</name><issueDate>20160820</issueDate></productInfo></props>",
  "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl><t>\n<id>1</id>\n<tp>ExternalFileProxy</tp>\n<c>system</c>\n<cd>20160819125900</cd>\n<dt>\n<ts>1471611557813</ts>\n<applicationId>Test Unit MRAS</applicationId>\n<deviceId>Test Unit MRAS</deviceId>\n</dt>\n</t>\n</tl>",
  "virtual_attributes": "<va xmlns:eom='http://www.eidosmedia.com/eom'><oteam>Globe_Team</oteam><cteam>Globe_Team</cteam><vid>1</vid><vt>1471611573</vt></va>",
  "channel": "Globe-Web",
  "issueDate": "20160820",
  "interfaceId": 16,
  "databaseId": 9,
  "bundle": false,
  "folder": false,
  "bundlechild": false,
  "bundlesize": 0,
  "virtual_attributes_json": {
    "va": {
      "xmlns:eom": "http://www.eidosmedia.com/eom",
      "oteam": "Globe_Team",
      "cteam": "Globe_Team",
      "vid": 1,
      "vt": 1471611573
    }
  }
}

/object/upload POST

Resource information

Authentication Required

Yes

Multipart form data parameters

EidosMedia Rest Application Server 217. Parameters:
Parameter Type Required Default Description

file

FormDataContentDisposition

Yes

-

attributes

String

No

-

folderId

String

No

-

folderPath

String

No

-

name

String

No

-

newObjOption

int

No

0

-

taskId

String

No

-

type

String

No

-

Request

Content type

multipart/form-data

curl -H "Content-Type:application/octet-stream" --data \
"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" \
-X POST "http://eidos01host:9999//restapi-core/rest/object/upload?folderPath=/donottouch_RestTestResources/object/upload&name=image.png&type=Image"

Response

Content type

application/json

{
  "id": "9$2.0.831866657",
  "type": "Image",
  "userId": "9$2.0.831866657",
  "pstate": {
    "uuid": "c63d8ad0-660c-11e6-a8cf-627dec1bac8b",
    "suid": "",
    "loid": "2.0.831866657",
    "retention_time": 1007304308,
    "ucount": 13
  },
  "name": "image.png",
  "description": "",
  "owner": "system",
  "creator": "system",
  "created": 1471611573,
  "last_modifier": "system",
  "modified": 1471611573,
  "locker": "",
  "locked": 1471611573,
  "status_info": {
    "name": "",
    "identifier": "",
    "comment": ""
  },
  "size": 629181,
  "path": "/donottouch_RestTestResources/object/upload/image.png",
  "system_attributes_xml": "<props><workFolder>/Globe</workFolder><productInfo><name>Globe-Web</name><issueDate>20160820</issueDate></productInfo></props>",
  "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl><t>\n<id>1</id>\n<tp>ExternalFileProxy</tp>\n<c>system</c>\n<cd>20160819125900</cd>\n<dt>\n<ts>1471611557813</ts>\n<applicationId>Test Unit MRAS</applicationId>\n<deviceId>Test Unit MRAS</deviceId>\n</dt>\n</t>\n</tl>",
  "virtual_attributes": "<va xmlns:eom='http://www.eidosmedia.com/eom'><oteam>Globe_Team</oteam><cteam>Globe_Team</cteam><vid>1</vid><vt>1471611573</vt></va>",
  "channel": "Globe-Web",
  "issueDate": "20160820",
  "interfaceId": 16,
  "databaseId": 9,
  "bundle": false,
  "folder": false,
  "bundlechild": false,
  "bundlesize": 0,
  "virtual_attributes_json": {
    "va": {
      "xmlns:eom": "http://www.eidosmedia.com/eom",
      "oteam": "Globe_Team",
      "cteam": "Globe_Team",
      "vid": 1,
      "vt": 1471611573
    }
  }
}

/object/versions GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 218. Parameters:
Parameter Type Required Default Description

id

String

No

-

path

String

No

-

showObjectInfo

boolean

No

false

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/versions?id=2.0.793453465&showObjectInfo=true"

Response

Content type

application/json

[
  {
    "version": 0,
    "versionInfo": {
      "action": "check_in",
      "comment": "",
      "default_format": "",
      "version_number": 1,
      "released_version_number": 5
    },
    "objectInfo": {
      "pstate": {
        "uuid": "",
        "suid": "",
        "loid": "AAEAACcGyQE=",
        "ucount": 17,
        "retention_time": 10922
      },
      "name": "AstonMartin.jpg",
      "description": "",
      "type": "EOM::FileVersion",
      "owner": "Mathias",
      "creator": "Mathias",
      "created": 1448893197,
      "last_modifier": "Mathias",
      "modified": 1448893198,
      "locker": "",
      "locked": 1448893197,
      "status_info": {
        "name": "PictureFlow/Picture Desk",
        "identifier": "RGB(255,0,255)"
      },
      "attributes": "<!DOCTYPE ObjectMetadata SYSTEM \"/SysConfig/Common/Classify/image.dtd\">\n<ObjectMetadata>\n\t\n\t\n\t\n<iptc>\n</iptc><xmpMeta>\n\n<tiff>\n<ImageWidth>1600</ImageWidth>\n<ImageLength>998</ImageLength>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<PhotometricInterpretation>2</PhotometricInterpretation>\n<Orientation>1</Orientation>\n<SamplesPerPixel>3</SamplesPerPixel>\n<XResolution>720000/10000</XResolution>\n<YResolution>720000/10000</YResolution>\n<ResolutionUnit>2</ResolutionUnit>\n<Software>Adobe Photoshop CC 2015 (Macintosh)</Software>\n<DateTime>20151130141956</DateTime>\n</tiff>\n\n<exif>\n<ExifVersion>0220</ExifVersion>\n<ColorSpace>65535</ColorSpace>\n<PixelXDimension>1185</PixelXDimension>\n<PixelYDimension>965</PixelYDimension>\n</exif>\n\n<photoshop>\n<LegacyIPTCDigest>3BD3A482EDABE0E15AB062990321C2AE</LegacyIPTCDigest>\n<ColorMode>3</ColorMode>\n</photoshop>\n\n<dc>\n<format>image/jpeg</format>\n</dc>\n\n<xmp>\n<CreatorTool>Adobe Photoshop CC 2014 (Windows)</CreatorTool>\n<CreateDate>20150424144005</CreateDate>\n<ModifyDate>20151130141956</ModifyDate>\n<MetadataDate>20151130141956</MetadataDate>\n</xmp>\n\n<xmpMM>\n<DocumentID>adobe:docid:photoshop:c96062b0-d7fb-1178-8580-926db4ab14d7</DocumentID>\n<InstanceID>xmp.iid:f6a439f7-b585-4382-ae7f-d06c88af3551</InstanceID>\n<OriginalDocumentID>71B67F2B6DF06F20C104EB69C1C05721</OriginalDocumentID>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:fbd6c20d-2907-264e-99c8-b9f17a41a31f</instanceID>\n<when>2015-04-24T16:40:15+02:00</when>\n<softwareAgent>Adobe Photoshop CC 2014 (Windows)</softwareAgent>\n<changed>/</changed>\n</History>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:f6a439f7-b585-4382-ae7f-d06c88af3551</instanceID>\n<when>2015-11-30T15:19:56+01:00</when>\n<softwareAgent>Adobe Photoshop CC 2015 (Macintosh)</softwareAgent>\n<changed>/</changed>\n</History>\n</xmpMM>\n\n</xmpMeta><additional_info><timeline_date/><comment/></additional_info></ObjectMetadata>",
      "system_attributes": "<?xml version=\"1.0\" encoding=\"UTF-8\"?><props>\n  <productInfo>\n    <name>Globe-Print</name>\n    <edition>EUROPE</edition>\n    <section/>\n    <issueDate>20131025</issueDate>\n  </productInfo>\n  <workFolder>/Globe/Art</workFolder>\n  <title>...</title>\n  <summary/>\n  <imageInfo>\n<width>1185</width>\n<height>965</height>\n<ptWidth>1185.0</ptWidth>\n<ptHeight>965.0</ptHeight>\n<xDim>418.04</xDim>\n<yDim>340.43</yDim>\n<dim>41.804cm x 34.043cm</dim>\n<xres>72.0</xres>\n<yres>72.0</yres>\n<colorType>RGB</colorType>\n<fileType>JPEG</fileType>\n</imageInfo>\n</props>\n",
      "virtual_attributes": "<va xmlns:eom='http://www.eidosmedia.com/eom'><vid>1</vid></va>",
      "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
      "size": 161935
    }
  },
  {
    "version": 1,
    "versionInfo": {
      "action": "check_in",
      "comment": "",
      "default_format": "",
      "version_number": 2,
      "released_version_number": 5
    },
    "objectInfo": {
      "pstate": {
        "uuid": "",
        "suid": "",
        "loid": "AAEAAClMexE=",
        "ucount": 17,
        "retention_time": 1007304308
      },
      "name": "AstonMartin.jpg",
      "description": "",
      "type": "EOM::FileVersion",
      "owner": "Mathias",
      "creator": "Mathias",
      "created": 1455268486,
      "last_modifier": "Mathias",
      "modified": 1455268487,
      "locker": "",
      "locked": 1455268486,
      "status_info": {
        "name": "",
        "identifier": ""
      },
      "attributes": "<!DOCTYPE ObjectMetadata SYSTEM \"/SysConfig/Common/Classify/image.dtd\">\n<ObjectMetadata>\n\t\n\t\n\t\n<iptc>\n</iptc><xmpMeta>\n\n<tiff>\n<ImageWidth>1600</ImageWidth>\n<ImageLength>998</ImageLength>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<PhotometricInterpretation>2</PhotometricInterpretation>\n<Orientation>1</Orientation>\n<SamplesPerPixel>3</SamplesPerPixel>\n<XResolution>720000/10000</XResolution>\n<YResolution>720000/10000</YResolution>\n<ResolutionUnit>2</ResolutionUnit>\n<Software>Adobe Photoshop CC 2015 (Macintosh)</Software>\n<DateTime>20160212091445</DateTime>\n</tiff>\n\n<exif>\n<ExifVersion>0220</ExifVersion>\n<ColorSpace>65535</ColorSpace>\n<PixelXDimension>1185</PixelXDimension>\n<PixelYDimension>965</PixelYDimension>\n</exif>\n\n<photoshop>\n<LegacyIPTCDigest>589BC7C216FCB41E4729DA8AEDF894CD</LegacyIPTCDigest>\n<ColorMode>3</ColorMode>\n</photoshop>\n\n<dc>\n<format>image/jpeg</format>\n</dc>\n\n<xmp>\n<CreatorTool>Adobe Photoshop CC 2015 (Macintosh)</CreatorTool>\n<CreateDate>20150424144005</CreateDate>\n<ModifyDate>20160212091445</ModifyDate>\n<MetadataDate>20160212091445</MetadataDate>\n</xmp>\n\n<xmpMM>\n<DocumentID>adobe:docid:photoshop:c96062b0-d7fb-1178-8580-926db4ab14d7</DocumentID>\n<InstanceID>xmp.iid:3779d538-c6ec-49c2-b41f-3c007e6d355e</InstanceID>\n<OriginalDocumentID>71B67F2B6DF06F20C104EB69C1C05721</OriginalDocumentID>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:fbd6c20d-2907-264e-99c8-b9f17a41a31f</instanceID>\n<when>2015-04-24T16:40:15+02:00</when>\n<softwareAgent>Adobe Photoshop CC 2014 (Windows)</softwareAgent>\n<changed>/</changed>\n</History>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:3779d538-c6ec-49c2-b41f-3c007e6d355e</instanceID>\n<when>2016-02-12T10:14:45+01:00</when>\n<softwareAgent>Adobe Photoshop CC 2015 (Macintosh)</softwareAgent>\n<changed>/</changed>\n</History>\n</xmpMM>\n\n</xmpMeta><additional_info><timeline_date/><comment/></additional_info></ObjectMetadata>",
      "system_attributes": "<props>\n  <productInfo>\n    <name>Globe-Print</name>\n    <edition>EUROPE</edition>\n    <section/>\n    <issueDate>20131025</issueDate>\n  </productInfo>\n  <workFolder>/Globe/Art</workFolder>\n  \n  \n  \n<title>...</title><summary/><imageInfo>\n<width>1185</width>\n<height>965</height>\n<ptWidth>1185.0</ptWidth>\n<ptHeight>965.0</ptHeight>\n<xDim>418.04</xDim>\n<yDim>340.43</yDim>\n<dim>41.804cm x 34.043cm</dim>\n<xres>72.0</xres>\n<yres>72.0</yres>\n<colorType>RGB</colorType>\n<fileType>JPEG</fileType>\n</imageInfo></props>",
      "virtual_attributes": "<va xmlns:eom='http://www.eidosmedia.com/eom'><vid>2</vid></va>",
      "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
      "size": 164794
    }
  },
  {
    "version": 2,
    "versionInfo": {
      "action": "check_in",
      "comment": "",
      "default_format": "",
      "version_number": 3,
      "released_version_number": 5
    },
    "objectInfo": {
      "pstate": {
        "uuid": "",
        "suid": "",
        "loid": "AAEAAClMlC0=",
        "ucount": 28,
        "retention_time": 24
      },
      "name": "AstonMartin.jpg",
      "description": "",
      "type": "EOM::FileVersion",
      "owner": "Mathias",
      "creator": "Mathias",
      "created": 1455268746,
      "last_modifier": "Mathias",
      "modified": 1455268878,
      "locker": "",
      "locked": 1455268746,
      "status_info": {
        "name": "",
        "identifier": ""
      },
      "attributes": "<!DOCTYPE ObjectMetadata SYSTEM \"/SysConfig/Common/Classify/image.dtd\">\n<ObjectMetadata>\n\t\n\t\n\t\n<iptc>\n</iptc><xmpMeta>\n\n<tiff>\n<ImageWidth>1600</ImageWidth>\n<ImageLength>998</ImageLength>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<PhotometricInterpretation>2</PhotometricInterpretation>\n<Orientation>1</Orientation>\n<SamplesPerPixel>3</SamplesPerPixel>\n<XResolution>720000/10000</XResolution>\n<YResolution>720000/10000</YResolution>\n<ResolutionUnit>2</ResolutionUnit>\n<Software>Adobe Photoshop CC 2015 (Macintosh)</Software>\n<DateTime>20160212092117</DateTime>\n</tiff>\n\n<exif>\n<ExifVersion>0220</ExifVersion>\n<ColorSpace>65535</ColorSpace>\n<PixelXDimension>1185</PixelXDimension>\n<PixelYDimension>965</PixelYDimension>\n</exif>\n\n<photoshop>\n<LegacyIPTCDigest>4182E8922DBB28A6A4EE926CDF0CDE7A</LegacyIPTCDigest>\n<ColorMode>3</ColorMode>\n</photoshop>\n\n<dc>\n<format>image/jpeg</format>\n</dc>\n\n<xmp>\n<CreatorTool>Adobe Photoshop CC 2015 (Macintosh)</CreatorTool>\n<CreateDate>20150424144005</CreateDate>\n<ModifyDate>20160212092117</ModifyDate>\n<MetadataDate>20160212092117</MetadataDate>\n</xmp>\n\n<xmpMM>\n<DocumentID>adobe:docid:photoshop:c96062b0-d7fb-1178-8580-926db4ab14d7</DocumentID>\n<InstanceID>xmp.iid:8c88cfdf-5785-4f13-924a-1fd82bf636aa</InstanceID>\n<OriginalDocumentID>71B67F2B6DF06F20C104EB69C1C05721</OriginalDocumentID>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:fbd6c20d-2907-264e-99c8-b9f17a41a31f</instanceID>\n<when>2015-04-24T16:40:15+02:00</when>\n<softwareAgent>Adobe Photoshop CC 2014 (Windows)</softwareAgent>\n<changed>/</changed>\n</History>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:8c88cfdf-5785-4f13-924a-1fd82bf636aa</instanceID>\n<when>2016-02-12T10:21:17+01:00</when>\n<softwareAgent>Adobe Photoshop CC 2015 (Macintosh)</softwareAgent>\n<changed>/</changed>\n</History>\n</xmpMM>\n\n</xmpMeta><additional_info><timeline_date/><comment/></additional_info></ObjectMetadata>",
      "system_attributes": "<props>\n  <productInfo>\n    <name>Globe-Print</name>\n    <edition>EUROPE</edition>\n    <section/>\n    <issueDate>20131025</issueDate>\n  </productInfo>\n  <workFolder>/Globe/Art</workFolder>\n  \n  \n  \n<title>...</title><summary/><imageInfo>\n<width>1185</width>\n<height>965</height>\n<ptWidth>1185.0</ptWidth>\n<ptHeight>965.0</ptHeight>\n<xDim>418.04</xDim>\n<yDim>340.43</yDim>\n<dim>41.804cm x 34.043cm</dim>\n<xres>72.0</xres>\n<yres>72.0</yres>\n<colorType>RGB</colorType>\n<fileType>JPEG</fileType>\n</imageInfo></props>",
      "virtual_attributes": "<va xmlns:eom='http://www.eidosmedia.com/eom'><vid>3</vid></va>",
      "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
      "size": 166818
    }
  },
  {
    "version": 3,
    "versionInfo": {
      "action": "check_in",
      "comment": "",
      "default_format": "",
      "version_number": 4,
      "released_version_number": 5
    },
    "objectInfo": {
      "pstate": {
        "uuid": "",
        "suid": "",
        "loid": "AAEAAClMlF4=",
        "ucount": 17,
        "retention_time": 264
      },
      "name": "AstonMartin.jpg",
      "description": "",
      "type": "EOM::FileVersion",
      "owner": "Mathias",
      "creator": "Mathias",
      "created": 1455269284,
      "last_modifier": "Mathias",
      "modified": 1455269284,
      "locker": "",
      "locked": 1455269284,
      "status_info": {
        "name": "",
        "identifier": ""
      },
      "attributes": "<!DOCTYPE ObjectMetadata SYSTEM \"/SysConfig/Common/Classify/image.dtd\">\n<ObjectMetadata>\n\t\n\t\n\t\n<iptc>\n</iptc><xmpMeta>\n\n<tiff>\n<ImageWidth>1600</ImageWidth>\n<ImageLength>998</ImageLength>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<PhotometricInterpretation>2</PhotometricInterpretation>\n<Orientation>1</Orientation>\n<SamplesPerPixel>3</SamplesPerPixel>\n<XResolution>720000/10000</XResolution>\n<YResolution>720000/10000</YResolution>\n<ResolutionUnit>2</ResolutionUnit>\n<Software>Adobe Photoshop CC 2015 (Macintosh)</Software>\n<DateTime>20160212092803</DateTime>\n</tiff>\n\n<exif>\n<ExifVersion>0220</ExifVersion>\n<ColorSpace>65535</ColorSpace>\n<PixelXDimension>1185</PixelXDimension>\n<PixelYDimension>965</PixelYDimension>\n</exif>\n\n<photoshop>\n<LegacyIPTCDigest>5223440558DE1E5C9F5CD9C7738C80CA</LegacyIPTCDigest>\n<ColorMode>3</ColorMode>\n</photoshop>\n\n<dc>\n<format>image/jpeg</format>\n</dc>\n\n<xmp>\n<CreatorTool>Adobe Photoshop CC 2015 (Macintosh)</CreatorTool>\n<CreateDate>20150424144005</CreateDate>\n<ModifyDate>20160212092803</ModifyDate>\n<MetadataDate>20160212092803</MetadataDate>\n</xmp>\n\n<xmpMM>\n<DocumentID>adobe:docid:photoshop:c96062b0-d7fb-1178-8580-926db4ab14d7</DocumentID>\n<InstanceID>xmp.iid:c3a1589d-94a1-40ad-9036-4795db8f9533</InstanceID>\n<OriginalDocumentID>71B67F2B6DF06F20C104EB69C1C05721</OriginalDocumentID>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:fbd6c20d-2907-264e-99c8-b9f17a41a31f</instanceID>\n<when>2015-04-24T16:40:15+02:00</when>\n<softwareAgent>Adobe Photoshop CC 2014 (Windows)</softwareAgent>\n<changed>/</changed>\n</History>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:c3a1589d-94a1-40ad-9036-4795db8f9533</instanceID>\n<when>2016-02-12T10:28:03+01:00</when>\n<softwareAgent>Adobe Photoshop CC 2015 (Macintosh)</softwareAgent>\n<changed>/</changed>\n</History>\n</xmpMM>\n\n</xmpMeta><additional_info><timeline_date/><comment/></additional_info></ObjectMetadata>",
      "system_attributes": "<props>\n  <productInfo>\n    <name>Globe-Print</name>\n    <edition>EUROPE</edition>\n    <section/>\n    <issueDate>20131025</issueDate>\n  </productInfo>\n  <workFolder>/Globe/Art</workFolder>\n  \n  \n  \n<title>...</title><summary/><imageInfo>\n<width>1185</width>\n<height>965</height>\n<ptWidth>1185.0</ptWidth>\n<ptHeight>965.0</ptHeight>\n<xDim>418.04</xDim>\n<yDim>340.43</yDim>\n<dim>41.804cm x 34.043cm</dim>\n<xres>72.0</xres>\n<yres>72.0</yres>\n<colorType>RGB</colorType>\n<fileType>JPEG</fileType>\n</imageInfo></props>",
      "virtual_attributes": "<va xmlns:eom='http://www.eidosmedia.com/eom'><vid>4</vid></va>",
      "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
      "size": 167324
    }
  },
  {
    "version": 4,
    "versionInfo": {
      "action": "check_in",
      "comment": "",
      "default_format": "",
      "version_number": 5,
      "released_version_number": 5
    },
    "objectInfo": {
      "pstate": {
        "uuid": "",
        "suid": "",
        "loid": "AAEAAClMpbA=",
        "ucount": 28,
        "retention_time": 10935
      },
      "name": "AstonMartin.jpg",
      "description": "",
      "type": "EOM::FileVersion",
      "owner": "Mathias",
      "creator": "Mathias",
      "created": 1455269571,
      "last_modifier": "Mathias",
      "modified": 1455269582,
      "locker": "",
      "locked": 1455269571,
      "status_info": {
        "name": "",
        "identifier": ""
      },
      "attributes": "<!DOCTYPE ObjectMetadata SYSTEM \"/SysConfig/Common/Classify/image.dtd\">\n<ObjectMetadata>\n\t\n\t\n\t\n<iptc>\n</iptc><xmpMeta>\n\n<tiff>\n<ImageWidth>1600</ImageWidth>\n<ImageLength>998</ImageLength>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<PhotometricInterpretation>2</PhotometricInterpretation>\n<Orientation>1</Orientation>\n<SamplesPerPixel>3</SamplesPerPixel>\n<XResolution>720000/10000</XResolution>\n<YResolution>720000/10000</YResolution>\n<ResolutionUnit>2</ResolutionUnit>\n<Software>Adobe Photoshop CC 2015 (Macintosh)</Software>\n<DateTime>20160212093301</DateTime>\n</tiff>\n\n<exif>\n<ExifVersion>0220</ExifVersion>\n<ColorSpace>65535</ColorSpace>\n<PixelXDimension>1185</PixelXDimension>\n<PixelYDimension>965</PixelYDimension>\n</exif>\n\n<photoshop>\n<LegacyIPTCDigest>B31FAE70BCED3CAF2A12EA86C9350E2E</LegacyIPTCDigest>\n<ColorMode>3</ColorMode>\n</photoshop>\n\n<dc>\n<format>image/jpeg</format>\n</dc>\n\n<xmp>\n<CreatorTool>Adobe Photoshop CC 2015 (Macintosh)</CreatorTool>\n<CreateDate>20150424144005</CreateDate>\n<ModifyDate>20160212093301</ModifyDate>\n<MetadataDate>20160212093301</MetadataDate>\n</xmp>\n\n<xmpMM>\n<DocumentID>adobe:docid:photoshop:c96062b0-d7fb-1178-8580-926db4ab14d7</DocumentID>\n<InstanceID>xmp.iid:5bd5a912-598d-4157-8732-d94e1cc1ce61</InstanceID>\n<OriginalDocumentID>71B67F2B6DF06F20C104EB69C1C05721</OriginalDocumentID>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:fbd6c20d-2907-264e-99c8-b9f17a41a31f</instanceID>\n<when>2015-04-24T16:40:15+02:00</when>\n<softwareAgent>Adobe Photoshop CC 2014 (Windows)</softwareAgent>\n<changed>/</changed>\n</History>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:5bd5a912-598d-4157-8732-d94e1cc1ce61</instanceID>\n<when>2016-02-12T10:33:01+01:00</when>\n<softwareAgent>Adobe Photoshop CC 2015 (Macintosh)</softwareAgent>\n<changed>/</changed>\n</History>\n</xmpMM>\n\n</xmpMeta><additional_info><timeline_date/><comment/></additional_info></ObjectMetadata>",
      "system_attributes": "<props>\n  <productInfo>\n    <name>Globe-Print</name>\n    <edition>EUROPE</edition>\n    <section/>\n    <issueDate>20131025</issueDate>\n  </productInfo>\n  <workFolder>/Globe/Art</workFolder>\n  \n  \n  \n<title>...</title><summary/><imageInfo>\n<width>1185</width>\n<height>965</height>\n<ptWidth>1185.0</ptWidth>\n<ptHeight>965.0</ptHeight>\n<xDim>418.04</xDim>\n<yDim>340.43</yDim>\n<dim>41.804cm x 34.043cm</dim>\n<xres>72.0</xres>\n<yres>72.0</yres>\n<colorType>RGB</colorType>\n<fileType>JPEG</fileType>\n</imageInfo></props>",
      "virtual_attributes": "<va xmlns:eom='http://www.eidosmedia.com/eom'><vid>5</vid></va>",
      "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
      "size": 168486
    }
  }
]

/object/versions/6.2022.05.p1 GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 219. Parameters:
Parameter Type Required Default Description

id

String

No

-

isIndex

boolean

No

false

-

path

String

No

-

showObjectInfo

boolean

No

false

-

Path parameters

EidosMedia Rest Application Server 220. Parameters:
Parameter Type Required Default Description

version

int

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/versions/-1?id=2.0.793453465&showObjectInfo=true"

Response

Content type

application/json

{
  "versionInfo": {
    "action": "check_in",
    "comment": "",
    "default_format": "",
    "version_number": 5,
    "released_version_number": 5
  },
  "objectInfo": {
    "pstate": {
      "uuid": "",
      "suid": "",
      "loid": "AAEAAClMpbA=",
      "ucount": 28,
      "retention_time": 62
    },
    "name": "AstonMartin.jpg",
    "description": "",
    "type": "EOM::FileVersion",
    "owner": "Mathias",
    "creator": "Mathias",
    "created": 1455269571,
    "last_modifier": "Mathias",
    "modified": 1455269582,
    "locker": "",
    "locked": 1455269571,
    "status_info": {
      "name": "",
      "identifier": ""
    },
    "attributes": "<!DOCTYPE ObjectMetadata SYSTEM \"/SysConfig/Common/Classify/image.dtd\">\n<ObjectMetadata>\n\t\n\t\n\t\n<iptc>\n</iptc><xmpMeta>\n\n<tiff>\n<ImageWidth>1600</ImageWidth>\n<ImageLength>998</ImageLength>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<PhotometricInterpretation>2</PhotometricInterpretation>\n<Orientation>1</Orientation>\n<SamplesPerPixel>3</SamplesPerPixel>\n<XResolution>720000/10000</XResolution>\n<YResolution>720000/10000</YResolution>\n<ResolutionUnit>2</ResolutionUnit>\n<Software>Adobe Photoshop CC 2015 (Macintosh)</Software>\n<DateTime>20160212093301</DateTime>\n</tiff>\n\n<exif>\n<ExifVersion>0220</ExifVersion>\n<ColorSpace>65535</ColorSpace>\n<PixelXDimension>1185</PixelXDimension>\n<PixelYDimension>965</PixelYDimension>\n</exif>\n\n<photoshop>\n<LegacyIPTCDigest>B31FAE70BCED3CAF2A12EA86C9350E2E</LegacyIPTCDigest>\n<ColorMode>3</ColorMode>\n</photoshop>\n\n<dc>\n<format>image/jpeg</format>\n</dc>\n\n<xmp>\n<CreatorTool>Adobe Photoshop CC 2015 (Macintosh)</CreatorTool>\n<CreateDate>20150424144005</CreateDate>\n<ModifyDate>20160212093301</ModifyDate>\n<MetadataDate>20160212093301</MetadataDate>\n</xmp>\n\n<xmpMM>\n<DocumentID>adobe:docid:photoshop:c96062b0-d7fb-1178-8580-926db4ab14d7</DocumentID>\n<InstanceID>xmp.iid:5bd5a912-598d-4157-8732-d94e1cc1ce61</InstanceID>\n<OriginalDocumentID>71B67F2B6DF06F20C104EB69C1C05721</OriginalDocumentID>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:fbd6c20d-2907-264e-99c8-b9f17a41a31f</instanceID>\n<when>2015-04-24T16:40:15+02:00</when>\n<softwareAgent>Adobe Photoshop CC 2014 (Windows)</softwareAgent>\n<changed>/</changed>\n</History>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:5bd5a912-598d-4157-8732-d94e1cc1ce61</instanceID>\n<when>2016-02-12T10:33:01+01:00</when>\n<softwareAgent>Adobe Photoshop CC 2015 (Macintosh)</softwareAgent>\n<changed>/</changed>\n</History>\n</xmpMM>\n\n</xmpMeta><additional_info><timeline_date/><comment/></additional_info></ObjectMetadata>",
    "system_attributes": "<props>\n  <productInfo>\n    <name>Globe-Print</name>\n    <edition>EUROPE</edition>\n    <section/>\n    <issueDate>20131025</issueDate>\n  </productInfo>\n  <workFolder>/Globe/Art</workFolder>\n  \n  \n  \n<title>...</title><summary/><imageInfo>\n<width>1185</width>\n<height>965</height>\n<ptWidth>1185.0</ptWidth>\n<ptHeight>965.0</ptHeight>\n<xDim>418.04</xDim>\n<yDim>340.43</yDim>\n<dim>41.804cm x 34.043cm</dim>\n<xres>72.0</xres>\n<yres>72.0</yres>\n<colorType>RGB</colorType>\n<fileType>JPEG</fileType>\n</imageInfo></props>",
    "virtual_attributes": "<va xmlns:eom='http://www.eidosmedia.com/eom'><vid>5</vid></va>",
    "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
    "size": 168486
  }
}

/object/versions/6.2022.05.p1/restore PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 221. Parameters:
Parameter Type Required Default Description

id

String

No

-

isIndex

boolean

No

false

-

path

String

No

-

showObjectInfo

boolean

No

false

-

Path parameters

EidosMedia Rest Application Server 222. Parameters:
Parameter Type Required Default Description

version

int

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/versions/1/restore?id=2.0.793453465&showObjectInfo=true"

Response

Content type

application/json

{
  "versionInfo": {
    "action": "restore",
    "comment": "Restored from version 5",
    "default_format": "",
    "version_number": 11,
    "released_version_number": 11
  },
  "objectInfo": {
    "pstate": {
      "uuid": "",
      "suid": "",
      "loid": "AAEAACqdE3s=",
      "ucount": 11,
      "retention_time": 0
    },
    "name": "AstonMartin.jpg",
    "description": "",
    "type": "EOM::FileVersion",
    "owner": "system",
    "creator": "system",
    "created": 1463132367,
    "last_modifier": "system",
    "modified": 1463132367,
    "locker": "",
    "locked": 1463132367,
    "status_info": {
      "name": "",
      "identifier": ""
    },
    "attributes": "<!DOCTYPE ObjectMetadata SYSTEM \"/SysConfig/Common/Classify/image.dtd\">\n<ObjectMetadata>\n\t\n\t\n\t\n<iptc>\n</iptc><xmpMeta>\n\n<tiff>\n<ImageWidth>1600</ImageWidth>\n<ImageLength>998</ImageLength>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<PhotometricInterpretation>2</PhotometricInterpretation>\n<Orientation>1</Orientation>\n<SamplesPerPixel>3</SamplesPerPixel>\n<XResolution>720000/10000</XResolution>\n<YResolution>720000/10000</YResolution>\n<ResolutionUnit>2</ResolutionUnit>\n<Software>Adobe Photoshop CC 2015 (Macintosh)</Software>\n<DateTime>20160212093301</DateTime>\n</tiff>\n\n<exif>\n<ExifVersion>0220</ExifVersion>\n<ColorSpace>65535</ColorSpace>\n<PixelXDimension>1185</PixelXDimension>\n<PixelYDimension>965</PixelYDimension>\n</exif>\n\n<photoshop>\n<LegacyIPTCDigest>B31FAE70BCED3CAF2A12EA86C9350E2E</LegacyIPTCDigest>\n<ColorMode>3</ColorMode>\n</photoshop>\n\n<dc>\n<format>image/jpeg</format>\n</dc>\n\n<xmp>\n<CreatorTool>Adobe Photoshop CC 2015 (Macintosh)</CreatorTool>\n<CreateDate>20150424144005</CreateDate>\n<ModifyDate>20160212093301</ModifyDate>\n<MetadataDate>20160212093301</MetadataDate>\n</xmp>\n\n<xmpMM>\n<DocumentID>adobe:docid:photoshop:c96062b0-d7fb-1178-8580-926db4ab14d7</DocumentID>\n<InstanceID>xmp.iid:5bd5a912-598d-4157-8732-d94e1cc1ce61</InstanceID>\n<OriginalDocumentID>71B67F2B6DF06F20C104EB69C1C05721</OriginalDocumentID>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:fbd6c20d-2907-264e-99c8-b9f17a41a31f</instanceID>\n<when>2015-04-24T16:40:15+02:00</when>\n<softwareAgent>Adobe Photoshop CC 2014 (Windows)</softwareAgent>\n<changed>/</changed>\n</History>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:5bd5a912-598d-4157-8732-d94e1cc1ce61</instanceID>\n<when>2016-02-12T10:33:01+01:00</when>\n<softwareAgent>Adobe Photoshop CC 2015 (Macintosh)</softwareAgent>\n<changed>/</changed>\n</History>\n</xmpMM>\n\n</xmpMeta><additional_info><timeline_date/><comment/></additional_info></ObjectMetadata>",
    "system_attributes": "<props>\n  <productInfo>\n    <name>Globe-Print</name>\n    <edition>EUROPE</edition>\n    <section/>\n    <issueDate>20131025</issueDate>\n  </productInfo>\n  <workFolder>/Globe/Art</workFolder>\n  \n  \n  \n<title>...</title><summary/><imageInfo>\n<width>1185</width>\n<height>965</height>\n<ptWidth>1185.0</ptWidth>\n<ptHeight>965.0</ptHeight>\n<xDim>418.04</xDim>\n<yDim>340.43</yDim>\n<dim>41.804cm x 34.043cm</dim>\n<xres>72.0</xres>\n<yres>72.0</yres>\n<colorType>RGB</colorType>\n<fileType>JPEG</fileType>\n</imageInfo></props>",
    "virtual_attributes": "<va xmlns:eom='http://www.eidosmedia.com/eom'><vid>11</vid></va>",
    "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
    "size": 168486
  }
}

/object/versions/version GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 223. Parameters:
Parameter Type Required Default Description

id

String

No

-

isIndex

boolean

No

false

-

path

String

No

-

showObjectInfo

boolean

No

false

-

version

int

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/versions/version?id=2.0.793453465&version=-1&showObjectInfo=true"

Response

Content type

application/json

{
  "versionInfo": {
    "action": "check_in",
    "comment": "",
    "default_format": "",
    "version_number": 5,
    "released_version_number": 5
  },
  "objectInfo": {
    "pstate": {
      "uuid": "",
      "suid": "",
      "loid": "AAEAAClMpbA=",
      "ucount": 28,
      "retention_time": 62
    },
    "name": "AstonMartin.jpg",
    "description": "",
    "type": "EOM::FileVersion",
    "owner": "Mathias",
    "creator": "Mathias",
    "created": 1455269571,
    "last_modifier": "Mathias",
    "modified": 1455269582,
    "locker": "",
    "locked": 1455269571,
    "status_info": {
      "name": "",
      "identifier": ""
    },
    "attributes": "<!DOCTYPE ObjectMetadata SYSTEM \"/SysConfig/Common/Classify/image.dtd\">\n<ObjectMetadata>\n\t\n\t\n\t\n<iptc>\n</iptc><xmpMeta>\n\n<tiff>\n<ImageWidth>1600</ImageWidth>\n<ImageLength>998</ImageLength>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<PhotometricInterpretation>2</PhotometricInterpretation>\n<Orientation>1</Orientation>\n<SamplesPerPixel>3</SamplesPerPixel>\n<XResolution>720000/10000</XResolution>\n<YResolution>720000/10000</YResolution>\n<ResolutionUnit>2</ResolutionUnit>\n<Software>Adobe Photoshop CC 2015 (Macintosh)</Software>\n<DateTime>20160212093301</DateTime>\n</tiff>\n\n<exif>\n<ExifVersion>0220</ExifVersion>\n<ColorSpace>65535</ColorSpace>\n<PixelXDimension>1185</PixelXDimension>\n<PixelYDimension>965</PixelYDimension>\n</exif>\n\n<photoshop>\n<LegacyIPTCDigest>B31FAE70BCED3CAF2A12EA86C9350E2E</LegacyIPTCDigest>\n<ColorMode>3</ColorMode>\n</photoshop>\n\n<dc>\n<format>image/jpeg</format>\n</dc>\n\n<xmp>\n<CreatorTool>Adobe Photoshop CC 2015 (Macintosh)</CreatorTool>\n<CreateDate>20150424144005</CreateDate>\n<ModifyDate>20160212093301</ModifyDate>\n<MetadataDate>20160212093301</MetadataDate>\n</xmp>\n\n<xmpMM>\n<DocumentID>adobe:docid:photoshop:c96062b0-d7fb-1178-8580-926db4ab14d7</DocumentID>\n<InstanceID>xmp.iid:5bd5a912-598d-4157-8732-d94e1cc1ce61</InstanceID>\n<OriginalDocumentID>71B67F2B6DF06F20C104EB69C1C05721</OriginalDocumentID>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:fbd6c20d-2907-264e-99c8-b9f17a41a31f</instanceID>\n<when>2015-04-24T16:40:15+02:00</when>\n<softwareAgent>Adobe Photoshop CC 2014 (Windows)</softwareAgent>\n<changed>/</changed>\n</History>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:5bd5a912-598d-4157-8732-d94e1cc1ce61</instanceID>\n<when>2016-02-12T10:33:01+01:00</when>\n<softwareAgent>Adobe Photoshop CC 2015 (Macintosh)</softwareAgent>\n<changed>/</changed>\n</History>\n</xmpMM>\n\n</xmpMeta><additional_info><timeline_date/><comment/></additional_info></ObjectMetadata>",
    "system_attributes": "<props>\n  <productInfo>\n    <name>Globe-Print</name>\n    <edition>EUROPE</edition>\n    <section/>\n    <issueDate>20131025</issueDate>\n  </productInfo>\n  <workFolder>/Globe/Art</workFolder>\n  \n  \n  \n<title>...</title><summary/><imageInfo>\n<width>1185</width>\n<height>965</height>\n<ptWidth>1185.0</ptWidth>\n<ptHeight>965.0</ptHeight>\n<xDim>418.04</xDim>\n<yDim>340.43</yDim>\n<dim>41.804cm x 34.043cm</dim>\n<xres>72.0</xres>\n<yres>72.0</yres>\n<colorType>RGB</colorType>\n<fileType>JPEG</fileType>\n</imageInfo></props>",
    "virtual_attributes": "<va xmlns:eom='http://www.eidosmedia.com/eom'><vid>5</vid></va>",
    "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
    "size": 168486
  }
}

/object/versions/version/restore PUT

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 224. Parameters:
Parameter Type Required Default Description

id

String

No

-

isIndex

boolean

No

false

-

path

String

No

-

showObjectInfo

boolean

No

false

-

version

int

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/versions/version/restore?id=2.0.793453465&version=1&showObjectInfo=true"

Response

Content type

application/json

{
  "versionInfo": {
    "action": "restore",
    "comment": "Restored from version 5",
    "default_format": "",
    "version_number": 11,
    "released_version_number": 11
  },
  "objectInfo": {
    "pstate": {
      "uuid": "",
      "suid": "",
      "loid": "AAEAACqdE3s=",
      "ucount": 11,
      "retention_time": 0
    },
    "name": "AstonMartin.jpg",
    "description": "",
    "type": "EOM::FileVersion",
    "owner": "system",
    "creator": "system",
    "created": 1463132367,
    "last_modifier": "system",
    "modified": 1463132367,
    "locker": "",
    "locked": 1463132367,
    "status_info": {
      "name": "",
      "identifier": ""
    },
    "attributes": "<!DOCTYPE ObjectMetadata SYSTEM \"/SysConfig/Common/Classify/image.dtd\">\n<ObjectMetadata>\n\t\n\t\n\t\n<iptc>\n</iptc><xmpMeta>\n\n<tiff>\n<ImageWidth>1600</ImageWidth>\n<ImageLength>998</ImageLength>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<BitsPerSample>8</BitsPerSample>\n<PhotometricInterpretation>2</PhotometricInterpretation>\n<Orientation>1</Orientation>\n<SamplesPerPixel>3</SamplesPerPixel>\n<XResolution>720000/10000</XResolution>\n<YResolution>720000/10000</YResolution>\n<ResolutionUnit>2</ResolutionUnit>\n<Software>Adobe Photoshop CC 2015 (Macintosh)</Software>\n<DateTime>20160212093301</DateTime>\n</tiff>\n\n<exif>\n<ExifVersion>0220</ExifVersion>\n<ColorSpace>65535</ColorSpace>\n<PixelXDimension>1185</PixelXDimension>\n<PixelYDimension>965</PixelYDimension>\n</exif>\n\n<photoshop>\n<LegacyIPTCDigest>B31FAE70BCED3CAF2A12EA86C9350E2E</LegacyIPTCDigest>\n<ColorMode>3</ColorMode>\n</photoshop>\n\n<dc>\n<format>image/jpeg</format>\n</dc>\n\n<xmp>\n<CreatorTool>Adobe Photoshop CC 2015 (Macintosh)</CreatorTool>\n<CreateDate>20150424144005</CreateDate>\n<ModifyDate>20160212093301</ModifyDate>\n<MetadataDate>20160212093301</MetadataDate>\n</xmp>\n\n<xmpMM>\n<DocumentID>adobe:docid:photoshop:c96062b0-d7fb-1178-8580-926db4ab14d7</DocumentID>\n<InstanceID>xmp.iid:5bd5a912-598d-4157-8732-d94e1cc1ce61</InstanceID>\n<OriginalDocumentID>71B67F2B6DF06F20C104EB69C1C05721</OriginalDocumentID>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:fbd6c20d-2907-264e-99c8-b9f17a41a31f</instanceID>\n<when>2015-04-24T16:40:15+02:00</when>\n<softwareAgent>Adobe Photoshop CC 2014 (Windows)</softwareAgent>\n<changed>/</changed>\n</History>\n<History>\n<action>saved</action>\n<instanceID>xmp.iid:5bd5a912-598d-4157-8732-d94e1cc1ce61</instanceID>\n<when>2016-02-12T10:33:01+01:00</when>\n<softwareAgent>Adobe Photoshop CC 2015 (Macintosh)</softwareAgent>\n<changed>/</changed>\n</History>\n</xmpMM>\n\n</xmpMeta><additional_info><timeline_date/><comment/></additional_info></ObjectMetadata>",
    "system_attributes": "<props>\n  <productInfo>\n    <name>Globe-Print</name>\n    <edition>EUROPE</edition>\n    <section/>\n    <issueDate>20131025</issueDate>\n  </productInfo>\n  <workFolder>/Globe/Art</workFolder>\n  \n  \n  \n<title>...</title><summary/><imageInfo>\n<width>1185</width>\n<height>965</height>\n<ptWidth>1185.0</ptWidth>\n<ptHeight>965.0</ptHeight>\n<xDim>418.04</xDim>\n<yDim>340.43</yDim>\n<dim>41.804cm x 34.043cm</dim>\n<xres>72.0</xres>\n<yres>72.0</yres>\n<colorType>RGB</colorType>\n<fileType>JPEG</fileType>\n</imageInfo></props>",
    "virtual_attributes": "<va xmlns:eom='http://www.eidosmedia.com/eom'><vid>11</vid></va>",
    "usage_tickets": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
    "size": 168486
  }
}

Query

EidosMedia Rest Application Server 225. Apis:

Path

Description

/query/activate GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 226. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/query/activate?id=1.0.328968058&token=6a797d1a-f1f1-4cea-ab68-f349b1453bc9"

Response

Return type

ResponseBean

Content type

application/json

{
    "items": [
        {
            "@type": "resultBean",
            "result": "ok"
        }
    ]
}

TYPE ResponseBean

{
  "error" : [ {
    "_type" : "aValue",
    "code" : 1,
    "details" : {
      "aKey" : { }
    },
    "error" : { },
    "exception" : "aValue",
    "info" : {
      "aKey" : { }
    },
    "message" : "aValue",
    "params" : {
      "aKey" : "aValue"
    },
    "requestBean" : { }
  } ],
  "items" : [ { } ],
  "request" : { }
}

/query/deactivate GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 227. Parameters:
Parameter Type Required Default Description

id

String

Yes

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/query/deactivate?id=1.0.328968058&token=6a797d1a-f1f1-4cea-ab68-f349b1453bc9"

Response

Return type

ResponseBean

Content type

application/json

{
    "items": [
        {
            "@type": "resultBean",
            "result": "ok"
        }
    ]
}

TYPE ResponseBean

{
  "error" : [ {
    "_type" : "aValue",
    "code" : 1,
    "details" : {
      "aKey" : { }
    },
    "error" : { },
    "exception" : "aValue",
    "info" : {
      "aKey" : { }
    },
    "message" : "aValue",
    "params" : {
      "aKey" : "aValue"
    },
    "requestBean" : { }
  } ],
  "items" : [ { } ],
  "request" : { }
}

/query/deactivate POST

Resource information

Authentication Required

Yes

Request

Content type

application/json

Response

Return type

ResponseBean

Content type

application/json

TYPE ResponseBean

{
  "error" : [ {
    "_type" : "aValue",
    "code" : 1,
    "details" : {
      "aKey" : { }
    },
    "error" : { },
    "exception" : "aValue",
    "info" : {
      "aKey" : { }
    },
    "message" : "aValue",
    "params" : {
      "aKey" : "aValue"
    },
    "requestBean" : { }
  } ],
  "items" : [ { } ],
  "request" : { }
}

/query/list GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 228. Parameters:
Parameter Type Required Default Description

query

String

Yes

-

activate

boolean

No

false

-

catalogsCfg

boolean

No

false

-

evaluatePrefill

boolean

No

false

-

from

int

No

0

-

header

boolean

No

false

-

id

String

No

-

info

boolean

No

false

-

limit

int

No

100

-

parametric

boolean

No

false

-

showMetadata

boolean

No

false

-

view

String

No

-

widthUnit

UnitType

No

PIXEL

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/query/list?id=1.0.328967940&from=0&limit=2&info=true&header=true&token=6a797d1a-f1f1-4cea-ab68-f349b1453bc9"

Response

Content type

application/json

{
    "info": {
        "id": "99$1.0.328967940",
        "userId": "99$1.0.328967940",
        "userType": "EOM::Query",
        "connectionName": "meth01@eidos02host",
        "title": "rest1",
        "size": 200,
        "flags": 0,
        "parentId": "99$1.0.4289661",
        "type": "EOM::Query",
        "total": 0
    },
    "data": {
        "main": {
            "from": 0,
            "count": 3,
            "items": [
                {
                    "id": "99$1.0.324517403",
                    "type": "EOM::Story",
                    "userId": "99$1.0.324517403",
                    "pstate": {
                        "uuid": "3056cbbe-39b5-11e5-b97d-5cbf9ac9cf44",
                        "suid": "",
                        "loid": "1.0.324517403",
                        "retention_time": 10922,
                        "ucount": 13
                    },
                    "name": "test_1.xml",
                    "description": "",
                    "owner": "Alice",
                    "creator": "Alice",
                    "created": 1438588606,
                    "last_modifier": "Alice",
                    "modified": 1438588606,
                    "locker": "",
                    "locked": 1438588606,
                    "status_info": {
                        "name": "",
                        "identifier": "",
                        "comment": ""
                    },
                    "size": 23634,
                    "path": "/Globe/Various/etc/500/test_1.xml",
                    "system_attributes_xml": "<props><productInfo><name>Globe-Print</name>\n<issueDate>20150319</issueDate>\n</productInfo>\n<workFolder>/Globe/Art</workFolder>\n<summary>By Unknown</summary><wordCount>3617</wordCount><sug_category/></props>",
                    "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
                    "channel": "Globe-Print",
                    "issueDate": "20150319",
                    "interfaceId": 16,
                    "databaseId": 99,
                    "bundle": false,
                    "folder": false,
                    "bundlechild": false,
                    "bundlesize": 0,
                    "userName": "test_1.xml",
                    "userType": "EOM::Story",
                    "icon": "file.xml",
                    "flags": 7340032
                },
                {
                    "id": "99$1.0.324517307",
                    "type": "EOM::Story",
                    "userId": "99$1.0.324517307",
                    "pstate": {
                        "uuid": "2f5eecf0-39b5-11e5-b97d-5cbf9ac9cf44",
                        "suid": "",
                        "loid": "1.0.324517307",
                        "retention_time": 10922,
                        "ucount": 13
                    },
                    "name": "test.xml",
                    "description": "",
                    "owner": "Alice",
                    "creator": "Alice",
                    "created": 1438588605,
                    "last_modifier": "Alice",
                    "modified": 1438588605,
                    "locker": "",
                    "locked": 1438588605,
                    "status_info": {
                        "name": "",
                        "identifier": "",
                        "comment": ""
                    },
                    "size": 21813,
                    "path": "/Globe/Various/etc/500/test.xml",
                    "system_attributes_xml": "<props><productInfo><name>Globe-Print</name>\n<issueDate>20150319</issueDate>\n</productInfo>\n<workFolder>/Globe/Art</workFolder>\n<summary>By Unknown</summary><wordCount>3540</wordCount><sug_category/></props>",
                    "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
                    "channel": "Globe-Print",
                    "issueDate": "20150319",
                    "interfaceId": 16,
                    "databaseId": 99,
                    "bundle": false,
                    "folder": false,
                    "bundlechild": false,
                    "bundlesize": 0,
                    "userName": "test.xml",
                    "userType": "EOM::Story",
                    "icon": "file.xml",
                    "flags": 7340032
                },
                {
                    "id": "99$1.0.324517371",
                    "type": "EOM::Story",
                    "userId": "99$1.0.324517371",
                    "pstate": {
                        "uuid": "3012b3e8-39b5-11e5-b97d-5cbf9ac9cf44",
                        "suid": "",
                        "loid": "1.0.324517371",
                        "retention_time": 10922,
                        "ucount": 13
                    },
                    "name": "test_2.xml",
                    "description": "",
                    "owner": "Alice",
                    "creator": "Alice",
                    "created": 1438588606,
                    "last_modifier": "Alice",
                    "modified": 1438588606,
                    "locker": "",
                    "locked": 1438588606,
                    "status_info": {
                        "name": "",
                        "identifier": "",
                        "comment": ""
                    },
                    "size": 25369,
                    "path": "/Globe/Various/etc/500/test_2.xml",
                    "system_attributes_xml": "<props><productInfo><name>Globe-Print</name>\n<issueDate>20150319</issueDate>\n</productInfo>\n<workFolder>/Globe/Art</workFolder>\n<summary>By Unknown</summary><wordCount>4085</wordCount><sug_category/></props>",
                    "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
                    "channel": "Globe-Print",
                    "issueDate": "20150319",
                    "interfaceId": 16,
                    "databaseId": 99,
                    "bundle": false,
                    "folder": false,
                    "bundlechild": false,
                    "bundlesize": 0,
                    "userName": "test_2.xml",
                    "userType": "EOM::Story",
                    "icon": "file.xml",
                    "flags": 7340032
                }
            ]
        }
    }
}

/query/list POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 229. Parameters:
Parameter Type Required Default Description

activate

boolean

No

false

-

catalogsCfg

boolean

No

false

-

evaluatePrefill

boolean

No

false

-

from

int

No

0

-

header

boolean

No

false

-

id

String

No

-

info

boolean

No

false

-

limit

int

No

100

-

parametric

boolean

No

false

-

view

String

No

-

widthUnit

UnitType

No

PIXEL

-

Form parameters

Parameter Type Required Default Description

query

String

Yes

-

Request

curl -X POST "http://eidos01host:9999/restapi-core/rest/query/list?from=0&limit=2&info=true&header=true&token=6a797d1a-f1f1-4cea-ab68-f349b1453bc9" \
--data "query=%3CEOMSearch%20xmlns%3D%22http%3A%2F%2FEidosMedia.com%2FEOM%2FSearchEngine%22%20xmlns%3Ase%3D%22http%3A%2F%2FEidosMedia.com%2FEOM%2FSearchEngine%22%20xmlns%3Aq%3D%22http%3A%2F%2FEidosMedia.com%2FEOM%2FSearchEngine%2Fquery%22%20xmlns%3Aqm%3D%22http%3A%2F%2FEidosMedia.com%2FEOM%2FSearchEngine%2Fquery%2Fmacro%22%20xmlns%3Aqa%3D%22http%3A%2F%2FEidosMedia.com%2FEOM%2FSearchEngine%2Fquery%2Falias%22%20xmlns%3Aqui%3D%22http%3A%2F%2FEidosMedia.com%2FEOM%2FSearchEngine%2Fquery%2FUI%22%3E%3Cq%3AQuery%20type%3D%22INDEX%22%3E%3Cq%3AProperties%3E%3Cq%3AIndex%20name%3D%22%40meth01_eomse1%22%2F%3E%3Cq%3AMaxResultItems%20value%3D%22200%22%2F%3E%3C%2Fq%3AProperties%3E%3Cq%3ABoolean%3E%3CObjectInfo%3E%3Cname%3E*%3C%2Fname%3E%3C%2FObjectInfo%3E%3Cse%3AContent%20q%3Aop%3D%22INC%22%20xmlns%3D%22%22%3Etest%3C%2Fse%3AContent%3E%3C%2Fq%3ABoolean%3E%3Cqui%3AQuery_UI%20domain%3D%22methode%22%20xmlns%3D%22http%3A%2F%2FEidosMedia.com%2FEOM%2FSearchEngine%2Fquery%2FUI%22%20version%3D%221.1%22%3E%3CselItem%20tab%3D%22general%22%20edit%3D%22content%22%20searchIn%3D%22content%22%3Etest%3C%2FselItem%3E%3C%2Fqui%3AQuery_UI%3E%3C%2Fq%3AQuery%3E%3C%2FEOMSearch%3E"

where the query param url decoded is:

<EOMSearch xmlns="http://EidosMedia.com/EOM/SearchEngine" xmlns:q="http://EidosMedia.com/EOM/SearchEngine/query" xmlns:qa="http://EidosMedia.com/EOM/SearchEngine/query/alias" xmlns:qm="http://EidosMedia.com/EOM/SearchEngine/query/macro" xmlns:qui="http://EidosMedia.com/EOM/SearchEngine/query/UI" xmlns:se="http://EidosMedia.com/EOM/SearchEngine">
   <q:Query type="INDEX">
      <q:Properties>
         <q:Index name="@meth01_eomse1" />
         <q:MaxResultItems value="200" />
      </q:Properties>
      <q:Boolean>
         <ObjectInfo>
            <name>*</name>
         </ObjectInfo>
         <se:Content xmlns="" q:op="INC">test</se:Content>
      </q:Boolean>
      <qui:Query_UI xmlns="http://EidosMedia.com/EOM/SearchEngine/query/UI" domain="methode" version="1.1">
         <selItem tab="general" edit="content" searchIn="content">test</selItem>
      </qui:Query_UI>
   </q:Query>
</EOMSearch>

Response

Content type

application/json

{
    "info": {
        "id": "99$1.0.328968833",
        "userId": "99$1.0.328968833",
        "userType": "EOM::Query",
        "connectionName": "meth01@eidos02host",
        "title": "<Temporary query>",
        "size": 200,
        "flags": 0,
        "type": "EOM::Query",
        "total": 0
    },
    "data": {
        "main": {
            "from": 0,
            "count": 3,
            "items": [
                {
                    "id": "99$1.0.324517403",
                    "type": "EOM::Story",
                    "userId": "99$1.0.324517403",
                    "pstate": {
                        "uuid": "3056cbbe-39b5-11e5-b97d-5cbf9ac9cf44",
                        "suid": "",
                        "loid": "1.0.324517403",
                        "retention_time": 10922,
                        "ucount": 13
                    },
                    "name": "test_1.xml",
                    "description": "",
                    "owner": "Alice",
                    "creator": "Alice",
                    "created": 1438588606,
                    "last_modifier": "Alice",
                    "modified": 1438588606,
                    "locker": "",
                    "locked": 1438588606,
                    "status_info": {
                        "name": "",
                        "identifier": "",
                        "comment": ""
                    },
                    "size": 23634,
                    "path": "/Globe/Various/etc/500/test_1.xml",
                    "system_attributes_xml": "<props><productInfo><name>Globe-Print</name>\n<issueDate>20150319</issueDate>\n</productInfo>\n<workFolder>/Globe/Art</workFolder>\n<summary>By Unknown</summary><wordCount>3617</wordCount><sug_category/></props>",
                    "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
                    "channel": "Globe-Print",
                    "issueDate": "20150319",
                    "interfaceId": 16,
                    "databaseId": 99,
                    "bundle": false,
                    "folder": false,
                    "bundlechild": false,
                    "bundlesize": 0,
                    "userName": "test_1.xml",
                    "userType": "EOM::Story",
                    "icon": "file.xml",
                    "flags": 7340032
                },
                {
                    "id": "99$1.0.324517307",
                    "type": "EOM::Story",
                    "userId": "99$1.0.324517307",
                    "pstate": {
                        "uuid": "2f5eecf0-39b5-11e5-b97d-5cbf9ac9cf44",
                        "suid": "",
                        "loid": "1.0.324517307",
                        "retention_time": 10922,
                        "ucount": 13
                    },
                    "name": "test.xml",
                    "description": "",
                    "owner": "Alice",
                    "creator": "Alice",
                    "created": 1438588605,
                    "last_modifier": "Alice",
                    "modified": 1438588605,
                    "locker": "",
                    "locked": 1438588605,
                    "status_info": {
                        "name": "",
                        "identifier": "",
                        "comment": ""
                    },
                    "size": 21813,
                    "path": "/Globe/Various/etc/500/test.xml",
                    "system_attributes_xml": "<props><productInfo><name>Globe-Print</name>\n<issueDate>20150319</issueDate>\n</productInfo>\n<workFolder>/Globe/Art</workFolder>\n<summary>By Unknown</summary><wordCount>3540</wordCount><sug_category/></props>",
                    "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
                    "channel": "Globe-Print",
                    "issueDate": "20150319",
                    "interfaceId": 16,
                    "databaseId": 99,
                    "bundle": false,
                    "folder": false,
                    "bundlechild": false,
                    "bundlesize": 0,
                    "userName": "test.xml",
                    "userType": "EOM::Story",
                    "icon": "file.xml",
                    "flags": 7340032
                },
                {
                    "id": "99$1.0.324517371",
                    "type": "EOM::Story",
                    "userId": "99$1.0.324517371",
                    "pstate": {
                        "uuid": "3012b3e8-39b5-11e5-b97d-5cbf9ac9cf44",
                        "suid": "",
                        "loid": "1.0.324517371",
                        "retention_time": 10922,
                        "ucount": 13
                    },
                    "name": "test_2.xml",
                    "description": "",
                    "owner": "Alice",
                    "creator": "Alice",
                    "created": 1438588606,
                    "last_modifier": "Alice",
                    "modified": 1438588606,
                    "locker": "",
                    "locked": 1438588606,
                    "status_info": {
                        "name": "",
                        "identifier": "",
                        "comment": ""
                    },
                    "size": 25369,
                    "path": "/Globe/Various/etc/500/test_2.xml",
                    "system_attributes_xml": "<props><productInfo><name>Globe-Print</name>\n<issueDate>20150319</issueDate>\n</productInfo>\n<workFolder>/Globe/Art</workFolder>\n<summary>By Unknown</summary><wordCount>4085</wordCount><sug_category/></props>",
                    "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
                    "channel": "Globe-Print",
                    "issueDate": "20150319",
                    "interfaceId": 16,
                    "databaseId": 99,
                    "bundle": false,
                    "folder": false,
                    "bundlechild": false,
                    "bundlesize": 0,
                    "userName": "test_2.xml",
                    "userType": "EOM::Story",
                    "icon": "file.xml",
                    "flags": 7340032
                }
            ]
        }
    }
}

/query/list/2 GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 230. Parameters:
Parameter Type Required Default Description

query

String

Yes

-

activate

boolean

No

false

-

catalogsCfg

boolean

No

false

-

evaluatePrefill

boolean

No

false

-

from

int

No

0

-

header

boolean

No

false

-

id

String

No

-

info

boolean

No

false

-

limit

int

No

100

-

parametric

boolean

No

false

-

view

String

No

-

widthUnit

UnitType

No

PIXEL

-

Request

Response

Content type

application/json

/query/search POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 231. Parameters:
Parameter Type Required Default Description

activate

boolean

No

false

-

alert

boolean

No

false

-

catalogsCfg

boolean

No

false

-

evaluatePrefill

boolean

No

false

-

from

int

No

0

-

header

boolean

No

false

-

id

String

No

-

info

boolean

No

false

-

limit

int

No

100

-

onlyId

boolean

No

true

-

parametric

boolean

No

false

-

prefill

boolean

No

false

-

sessionId int

No

-1

-

showMetadata

boolean

No

false

-

showSysAttr

boolean

No

false

-

view

String

No

-

widthUnit

Request

curl -H "Content-Type: application/octet-stream" \
--data @query.xml \
-X POST "http://eidos02fusion:9999/restapi-core/rest/query/search?token=7a4d6808-672e-4fec-b7c5-6a1a2c7b8356"

where query.xml is:

<?xml version="1.0" encoding="UTF-8"?>
<EOMSearch xmlns="http://EidosMedia.com/EOM/SearchEngine" xmlns:q="http://EidosMedia.com/EOM/SearchEngine/query" xmlns:qa="http://EidosMedia.com/EOM/SearchEngine/query/alias" xmlns:qm="http://EidosMedia.com/EOM/SearchEngine/query/macro" xmlns:qui="http://EidosMedia.com/EOM/SearchEngine/query/UI" xmlns:se="http://EidosMedia.com/EOM/SearchEngine" version="1.0">
   <q:Query type="INDEX">
      <q:Properties>
         <q:Index name="@meth01_eomse1" />
      </q:Properties>
      <q:Boolean>
         <se:Content xmlns="" q:op="INC">test</se:Content>
      </q:Boolean>
      <qui:Query_UI xmlns="http://EidosMedia.com/EOM/SearchEngine/query/UI" domain="methode" version="1.1">
         <selItem tab="general" edit="content" searchIn="content">test</selItem>
      </qui:Query_UI>
   </q:Query>
</EOMSearch>

Response

Content type

application/json

{
        "id":"99$1.0.329231546"
}

/query/try POST

Resource information

Authentication Required

Yes

Request

curl -H "Content-Type: application/octet-stream" --data \
"<EOMSearch version=\"1.0\" xmlns=\"http://EidosMedia.com/EOM/SearchEngine\" xmlns:se=\"http://EidosMedia.com/EOM/SearchEngine\" xmlns:q=\"http://EidosMedia.com/EOM/SearchEngine/query\" xmlns:qm=\"http://EidosMedia.com/EOM/SearchEngine/query/macro\" xmlns:qa=\"http://EidosMedia.com/EOM/SearchEngine/query/alias\" xmlns:qui=\"http://EidosMedia.com/EOM/SearchEngine/query/UI\"><q:Query type=\"INDEX\"><q:Properties><q:Index name=\"@meth01_eomse1\"/> \
</q:Properties> \
<q:Boolean><se:Content q:op=\"INC\" xmlns=\"\">test</se:Content> \
</q:Boolean> \
<qui:Query_UI domain=\"methode\" xmlns=\"http://EidosMedia.com/EOM/SearchEngine/query/UI\" version=\"1.1\"><selItem tab=\"general\" edit=\"content\" searchIn=\"content\">test</selItem> \
</qui:Query_UI> \
</q:Query> \
</EOMSearch>" \
-X POST "http://eidos01host:9999/restapi-core/rest/query/try?from=0&limit=2&info=true&header=true&token=d37c76ce-2919-4de0-94ff-5d0152e339a7"

Response

Content type

application/json

{
    "id": "1.0.329219117",
    "size": 947
}

Thesaurus

EidosMedia Rest Application Server 232. Apis:

Path

Description

/thesaurus GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 233. Parameters:
Parameter Type Required Default Description

lang

String

No

-

word

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/thesaurus?word=word"

Response

Content type

application/json

{
  "noun": {
    "syn": [
      "passion",
      "beloved",
      "dear",
      "dearest",
      "honey",
      "sexual love",
      "erotic love",
      "lovemaking",
      "making love",
      "love life",
      "concupiscence",
      "emotion",
      "eros",
      "loved one",
      "lover",
      "object",
      "physical attraction",
      "score",
      "sex",
      "sex activity",
      "sexual activity",
      "sexual desire",
      "sexual practice"
    ],
    "ant": [
      "hate"
    ],
    "usr": [
      "amour"
    ]
  },
  "verb": {
    "syn": [
      "love",
      "enjoy",
      "roll in the hay",
      "make out",
      "make love",
      "sleep with",
      "get laid",
      "have sex",
      "know",
      "do it",
      "be intimate",
      "have intercourse",
      "have it away",
      "have it off",
      "screw",
      "jazz",
      "eff",
      "hump",
      "lie with",
      "bed",
      "have a go at it",
      "bang",
      "get it on",
      "bonk",
      "copulate",
      "couple",
      "like",
      "mate",
      "pair"
    ],
    "ant": [
      "hate"
    ]
  }
}

/thesaurus POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 234. Parameters:
Parameter Type Required Default Description

lang

String

No

-

word

String

No

-

Request

curl -X POST "http://eidos01host:9999/restapi-core/rest/thesaurus?word=word"

Response

Content type

application/json

{
  "noun": {
    "syn": [
      "passion",
      "beloved",
      "dear",
      "dearest",
      "honey",
      "sexual love",
      "erotic love",
      "lovemaking",
      "making love",
      "love life",
      "concupiscence",
      "emotion",
      "eros",
      "loved one",
      "lover",
      "object",
      "physical attraction",
      "score",
      "sex",
      "sex activity",
      "sexual activity",
      "sexual desire",
      "sexual practice"
    ],
    "ant": [
      "hate"
    ],
    "usr": [
      "amour"
    ]
  },
  "verb": {
    "syn": [
      "love",
      "enjoy",
      "roll in the hay",
      "make out",
      "make love",
      "sleep with",
      "get laid",
      "have sex",
      "know",
      "do it",
      "be intimate",
      "have intercourse",
      "have it away",
      "have it off",
      "screw",
      "jazz",
      "eff",
      "hump",
      "lie with",
      "bed",
      "have a go at it",
      "bang",
      "get it on",
      "bonk",
      "copulate",
      "couple",
      "like",
      "mate",
      "pair"
    ],
    "ant": [
      "hate"
    ]
  }
}

/thesaurus/{action} GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 235. Parameters:
Parameter Type Required Default Description

lang

String

No

-

word

String

No

-

Path parameters

EidosMedia Rest Application Server 236. Parameters:
Parameter Type Required Default Description

action

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/thesaurus/synonyms?word=word"

Response

Content type

application/json

{
  "noun": {
    "syn": [
      "passion",
      "beloved",
      "dear",
      "dearest",
      "honey",
      "sexual love",
      "erotic love",
      "lovemaking",
      "making love",
      "love life",
      "concupiscence",
      "emotion",
      "eros",
      "loved one",
      "lover",
      "object",
      "physical attraction",
      "score",
      "sex",
      "sex activity",
      "sexual activity",
      "sexual desire",
      "sexual practice"
    ],
    "ant": [
      "hate"
    ],
    "usr": [
      "amour"
    ]
  },
  "verb": {
    "syn": [
      "love",
      "enjoy",
      "roll in the hay",
      "make out",
      "make love",
      "sleep with",
      "get laid",
      "have sex",
      "know",
      "do it",
      "be intimate",
      "have intercourse",
      "have it away",
      "have it off",
      "screw",
      "jazz",
      "eff",
      "hump",
      "lie with",
      "bed",
      "have a go at it",
      "bang",
      "get it on",
      "bonk",
      "copulate",
      "couple",
      "like",
      "mate",
      "pair"
    ],
    "ant": [
      "hate"
    ]
  }
}

/thesaurus/{action} POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 237. Parameters:
Parameter Type Required Default Description

lang

String

No

-

word

String

No

-

Path parameters

EidosMedia Rest Application Server 238. Parameters:
Parameter Type Required Default Description

action

String

No

-

Request

curl -X POST "http://eidos01host:9999/restapi-core/rest/thesaurus/synonyms?word=word"

Response

Content type

application/json

{
  "noun": {
    "syn": [
      "passion",
      "beloved",
      "dear",
      "dearest",
      "honey",
      "sexual love",
      "erotic love",
      "lovemaking",
      "making love",
      "love life",
      "concupiscence",
      "emotion",
      "eros",
      "loved one",
      "lover",
      "object",
      "physical attraction",
      "score",
      "sex",
      "sex activity",
      "sexual activity",
      "sexual desire",
      "sexual practice"
    ],
    "ant": [
      "hate"
    ],
    "usr": [
      "amour"
    ]
  },
  "verb": {
    "syn": [
      "love",
      "enjoy",
      "roll in the hay",
      "make out",
      "make love",
      "sleep with",
      "get laid",
      "have sex",
      "know",
      "do it",
      "be intimate",
      "have intercourse",
      "have it away",
      "have it off",
      "screw",
      "jazz",
      "eff",
      "hump",
      "lie with",
      "bed",
      "have a go at it",
      "bang",
      "get it on",
      "bonk",
      "copulate",
      "couple",
      "like",
      "mate",
      "pair"
    ],
    "ant": [
      "hate"
    ]
  }
}

User

EidosMedia Rest Application Server 239. Apis:

Path

Description

/user GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 240. Parameters:
Parameter Type Required Default Description

name

String

No

myself

-

showAdditionalInfo

boolean

No

true

-

showDefaultChannel

boolean

No

false

-

showRawInfo

boolean

No

false

-

showSysAttr

boolean

No

false

-

showWorkPath

boolean

No

false

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/user?name=myself&showSysAttr=true&showRawInfo=true&showWorkPath=true&showDefaultChannel=true&token=6a797d1a-f1f1-4cea-ab68-f349b1453bc9"

Response

Content type

application/json

{
    "name": "system",
    "description": "",
    "config_folder": "eomfs:/Configurations/Profiles/system/Config",
    "databaseId": 99,
    "id": "1.0.12525",
    "fullName": "",
    "team": "",
    "profileDir": "eomfs:/Configurations/Profiles/system",
    "lastLoggedOn": 1440425966,
    "system_attributes": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<props><alertSettings><type>task</type>\r\n<type>query</type>\r\n<type>message</type>\r\n<popup><closeDelay>5</closeDelay>\r\n<count>5</count>\r\n<pos x=\"1488\" y=\"1065\" width=\"386\" height=\"126\"/>\r\n</popup>\r\n</alertSettings>\r\n</props>\r\n",
    "metadata": "",
    "homePath": "/Users/system",
    "workPath": "/Globe",
    "admin": true,
    "groups": [
        {
            "name": "Administrators",
            "description": "",
            "config_folder": "eomfs:/Configurations/Profiles/Administrators/Config",
            "profile_folder": "eomfs:/Configurations/Profiles/Administrators",
            "id": "1.0.7398",
            "categories": [
                "EOM::Group",
                "EOM::Configuration",
                "EOM::Privileges",
                "EOM::Team"
            ],
            "isConfiguration": true
        },
        {
            "name": "SMART_Administrators",
            "description": "",
            "config_folder": "eomfs:/Configurations/Profiles/SMART_Administrators/Config",
            "profile_folder": "eomfs:/Configurations/Profiles/SMART_Administrators",
            "id": "1.0.121726496",
            "categories": [
                "EOM::Group"
            ],
            "isConfiguration": false
        }
    ],
    "teams": [
        "Administrators"
    ]
}

/user POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 241. Parameters:
Parameter Type Required Default Description

name

String

No

myself

-

Request

Content type

application/json

curl -H "Content-Type: application/json" \
--data {"description":"system admin"} \
-X POST "http://eidos01host:9999/restapi-core/rest/user?name=myself&token=d37c76ce-2919-4de0-94ff-5d0152e339a7"

Response

Content type

application/json

{"result":"ok"}

Workflow

EidosMedia Rest Application Server 242. Apis:

Path

Description

/object/workflow GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 243. Parameters:
Parameter Type Required Default Description

id

List

Yes

-

allowedOnly

boolean

No

false

-

common

boolean

No

true

-

compliantOnly

boolean

No

false

-

info

boolean

No

true

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/object/workflow?id=2.0.784924815&token=6a797d1a-f1f1-4cea-ab68-f349b1453bc9"

Response

Content type

application/json

{
    "items": [
        {
            "info": {
                "id": "99$1.0.328967940",
                "type": "EOM::Query",
                "userId": "99$1.0.328967940",
                "pstate": {
                    "uuid": "3ad93488-4a62-11e5-9f67-379631219eb4",
                    "suid": "",
                    "loid": "1.0.328967940",
                    "retention_time": 0,
                    "ucount": 4
                },
                "name": "rest1",
                "description": "",
                "owner": "system",
                "creator": "system",
                "created": 1440422145,
                "last_modifier": "system",
                "modified": 1440422146,
                "locker": "",
                "locked": 1440422146,
                "status_info": {
                    "name": "",
                    "identifier": "",
                    "comment": ""
                },
                "size": 0,
                "system_attributes": {
                    "workfolder": "",
                    "templateName": "",
                    "summary": "",
                    "wordCount": "",
                    "sugCategory": "",
                    "channel": "",
                    "storyType": "",
                    "productInfo": {
                        "name": "",
                        "issueDate": ""
                    }
                },
                "system_attributes_xml": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<props><queryInfo version=\"2.4.5\"><domain id=\"0\" key=\"methode\"/>\r\n<resultSetLayout URI=\"\" type=\"methodeResultSetList\" name=\"ResultSet Ryan\"/>\r\n</queryInfo>\r\n</props>\r\n",
                "usage_ticket": "<?xml version='1.0' encoding='UTF-8'?><tl></tl>",
                "interfaceId": 65,
                "databaseId": 99,
                "bundle": false,
                "folder": false,
                "bundlechild": false,
                "bundlesize": 0
            },
            "workflows": [
                {
                    "name": "TopicFlow",
                    "default": false,
                    "steps": [
                        {
                            "color": "RGB(255,0,0)",
                            "workflowName": "TopicFlow",
                            "name": "Sumitted",
                            "description": "",
                            "disable": false,
                            "disableReason": ""
                        }
                    ]
                },
                {
                    "name": "GraphicsFlow",
                    "default": false,
                    "steps": [
                        {
                            "color": "RGB(192,75,0)",
                            "workflowName": "GraphicsFlow",
                            "name": "Editing",
                            "description": "",
                            "disable": false,
                            "disableReason": ""
                        }
                    ]
                },
                {
                    "name": "PageFlow",
                    "default": false,
                    "steps": [
                        {
                            "color": "RGB(255,0,0)",
                            "workflowName": "PageFlow",
                            "name": "Layout",
                            "description": "",
                            "disable": false,
                            "disableReason": ""
                        },
                        {
                            "color": "RGB(0,0,255)",
                            "workflowName": "PageFlow",
                            "name": "pdfGenerator",
                            "description": "",
                            "disable": false,
                            "disableReason": ""
                        }
                    ]
                },
                {
                    "name": "TaskFlow",
                    "default": false,
                    "steps": [
                        {
                            "color": "RGB(255,255,0)",
                            "workflowName": "TaskFlow",
                            "name": "Assigned",
                            "description": "",
                            "disable": false,
                            "disableReason": ""
                        }
                    ]
                },
                {
                    "name": "NewsFlow",
                    "default": false,
                    "steps": [
                        {
                            "color": "RGB(255,0,0)",
                            "workflowName": "NewsFlow",
                            "name": "Editing",
                            "description": "",
                            "disable": false,
                            "disableReason": ""
                        }
                    ]
                },
                {
                    "name": "TopicPlanFlow",
                    "default": false,
                    "steps": [
                        {
                            "color": "RGB(255,0,0)",
                            "workflowName": "TopicPlanFlow",
                            "name": "In Progress",
                            "description": "",
                            "disable": false,
                            "disableReason": ""
                        }
                    ]
                },
                {
                    "name": "PictureFlow",
                    "default": false,
                    "steps": [
                        {
                            "color": "RGB(166,202,240)",
                            "workflowName": "PictureFlow",
                            "name": "Raw",
                            "description": "",
                            "disable": false,
                            "disableReason": ""
                        }
                    ]
                },
                {
                    "name": "xsmile",
                    "default": false,
                    "steps": [
                        {
                            "color": "",
                            "workflowName": "xsmile",
                            "name": "xsmileStep_0",
                            "description": "",
                            "disable": false,
                            "disableReason": ""
                        }
                    ]
                },
                {
                    "name": "AdsFlow",
                    "default": false,
                    "steps": [
                        {
                            "color": "RGB(255,192,87)",
                            "workflowName": "AdsFlow",
                            "name": "Reservation",
                            "description": "desc1",
                            "disable": false,
                            "disableReason": ""
                        }
                    ]
                },
                {
                    "name": "ForumWorkflow",
                    "default": false,
                    "steps": [
                        {
                            "color": "RGB(168,179,238)",
                            "workflowName": "ForumWorkflow",
                            "name": "Draft",
                            "description": "",
                            "disable": false,
                            "disableReason": ""
                        },
                        {
                            "color": "RGB(255,255,0)",
                            "workflowName": "ForumWorkflow",
                            "name": "Proposed",
                            "description": "",
                            "disable": false,
                            "disableReason": ""
                        },
                        {
                            "color": "RGB(0,255,0)",
                            "workflowName": "ForumWorkflow",
                            "name": "Approved",
                            "description": "",
                            "disable": false,
                            "disableReason": ""
                        }
                    ]
                },
                {
                    "name": "DisplayFlow",
                    "default": false,
                    "steps": [
                        {
                            "color": "RGB(255,0,0)",
                            "workflowName": "DisplayFlow",
                            "name": "Writers",
                            "description": "",
                            "disable": false,
                            "disableReason": ""
                        },
                        {
                            "color": "RGB(255,255,0)",
                            "workflowName": "DisplayFlow",
                            "name": "DTP",
                            "description": "",
                            "disable": false,
                            "disableReason": ""
                        }
                    ]
                }
            ]
        }
    ]
}

/object/workflow POST

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 244. Parameters:
Parameter Type Required Default Description

getInfo

boolean

No

false

-

Request

Content type

application/json

curl -H "Content-Type: application/json" \
--data @workflow.json \
-X POST "http://eidos01host:9999/restapi-core/rest/object/workflow?id=1.0.328967940&token=d37c76ce-2919-4de0-94ff-5d0152e339a7"

where is workflow.json:

[
 {
  "id":"99$1.0.328967940",
  "status":{
   "remove":false,
   "name":"TopicFlow/Sumitted",
   "comment":"TestRest"
  },
   "name":"restTask",
   "priority":0,
   "dueDate":"20150525"
  }
]

Response

Return type

ResultOkBean

Content type

application/json

{"result":"ok"}

TYPE ResultOkBean

{
  "info" : { },
  "result" : "aValue"
}

/object/workflow/assign POST

Resource information

Authentication Required

Yes

Request

Content type

application/json

curl -H "Content-Type: application/json" \
--data @workflow.json \
-X POST "http://eidos01host:9999/restapi-core/rest/object/workflow?id=1.0.328967940&token=d37c76ce-2919-4de0-94ff-5d0152e339a7"

where is workflow.json:

[
 {
  "id":"99$1.0.328967940",
  "status":{
   "remove":false,
   "name":"TopicFlow/Sumitted",
   "comment":"TestRest"
  },
   "name":"restTask",
   "priority":0,
   "dueDate":"20150525"
  }
]

Response

Content type

application/json

{"result":"ok"}

/workflow/list GET

Resource information

Authentication Required

Yes

Query parameters

EidosMedia Rest Application Server 245. Parameters:
Parameter Type Required Default Description

typeName

String

No

-

Request

curl -X GET "http://eidos01host:9999/restapi-core/rest/workflow/list?typeName=image&token=6a797d1a-f1f1-4cea-ab68-f349b1453bc9"

Response

Content type

application/json

[
    {
        "id": "99$1.0.8190535",
        "name": "NewsFlow",
        "description": "",
        "initialStep": {
            "color": "RGB(128,128,128)",
            "workflowName": "",
            "name": "Start",
            "description": "",
            "disable": false
        }
    },
    {
        "id": "99$1.0.8202113",
        "name": "PictureFlow",
        "description": "",
        "initialStep": {
            "color": "RGB(128,128,128)",
            "workflowName": "",
            "name": "Start",
            "description": "",
            "disable": false
        }
    },
    {
        "id": "99$1.0.8200444",
        "name": "AdsFlow",
        "description": "",
        "initialStep": {
            "color": "RGB(128,128,128)",
            "workflowName": "",
            "name": "Start",
            "description": "",
            "disable": false
        }
    },
    {
        "id": "99$1.0.4285065",
        "name": "ForumWorkflow",
        "description": "",
        "initialStep": {
            "color": "RGB(128,128,128)",
            "workflowName": "",
            "name": "Partenza",
            "description": "",
            "disable": false
        }
    },
    {
        "id": "99$1.0.8188651",
        "name": "PageFlow",
        "description": "",
        "initialStep": {
            "color": "RGB(128,128,128)",
            "workflowName": "",
            "name": "Start",
            "description": "",
            "disable": false
        }
    },
    {
        "id": "99$1.0.8199637",
        "name": "TopicFlow",
        "description": "",
        "initialStep": {
            "color": "RGB(128,128,128)",
            "workflowName": "",
            "name": "Start",
            "description": "",
            "disable": false
        }
    },
    {
        "id": "99$1.0.8201594",
        "name": "GraphicsFlow",
        "description": "",
        "initialStep": {
            "color": "RGB(128,128,128)",
            "workflowName": "",
            "name": "Start",
            "description": "",
            "disable": false
        }
    },
    {
        "id": "99$1.0.8205049",
        "name": "DisplayFlow",
        "description": "",
        "initialStep": {
            "color": "RGB(128,128,128)",
            "workflowName": "",
            "name": "Start",
            "description": "",
            "disable": false
        }
    },
    {
        "id": "99$1.0.16445864",
        "name": "TaskFlow",
        "description": "",
        "initialStep": {
            "color": "RGB(128,128,128)",
            "workflowName": "",
            "name": "Start",
            "description": "",
            "disable": false
        }
    },
    {
        "id": "99$1.0.52527225",
        "name": "xsmile",
        "description": "",
        "initialStep": {
            "color": "",
            "workflowName": "",
            "name": "xsmileStep",
            "description": "",
            "disable": false
        }
    }
]