Response containing localization info
| name | data type | constraints | description |
|---|---|---|---|
| masterId | number | required int | The ID of the master object. |
| masterNodeId | number | required int | The ID of the node the master object resides in. |
| nodeIds | map of number | A map from object IDs to the respective channels of the objects. | |
| total | number | required int | Total number of localizations (including localizations in channels without permission and for folders localizations of subitems) |
| number | required int | Number of localizations the user has no permission to see | |
| online | array of number | IDs of pages, that are online | |
| offline | array of number | IDs of pages, that are offline | |
Properties inherited from GenericResponse |
|||
| messages | array of Message | Messages contained in the response (which should be shown to the user) | |
| responseInfo | ResponseInfo | ||
Example
{
"masterId" : 12345,
"masterNodeId" : 12345,
"nodeIds" : {
"property1" : 12345,
"property2" : 12345
},
"total" : 12345,
"hidden" : 12345,
"online" : [ 12345, 12345 ],
"offline" : [ 12345, 12345 ],
"messages" : [ { }, { } ],
"responseInfo" : {
"responseCode" : "OK",
"responseMessage" : "...",
"property" : "..."
}
}