Webex · Schema
MetaDataPagedInfo
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| orgid | string | ID of the contact center organization. This field is required for all bulk save operations. |
| page | integer | Current page number. |
| pageSize | integer | Page size for current data set. |
| totalPages | integer | Number of pages. |
| totalRecords | integer | Total number of items. |
| links | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MetaDataPagedInfo",
"title": "MetaDataPagedInfo",
"type": "object",
"properties": {
"orgid": {
"type": "string",
"description": "ID of the contact center organization. This field is required for all bulk save operations.",
"example": "af9eecc5-0472-4549-9a83-2afdae0d4ba0"
},
"page": {
"type": "integer",
"format": "int32",
"description": "Current page number.",
"example": 1
},
"pageSize": {
"type": "integer",
"format": "int32",
"description": "Page size for current data set.",
"example": 20
},
"totalPages": {
"type": "integer",
"format": "int32",
"description": "Number of pages.",
"example": 5
},
"totalRecords": {
"type": "integer",
"format": "int64",
"description": "Total number of items.",
"example": 100
},
"links": {
"type": "object",
"$ref": "#/components/schemas/PaginationLinks",
"additionalProperties": {
"type": "string"
}
}
}
}