Webex · Schema

BaseStationPostResult

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
status number HTTP status code indicating the creation of base station. 201 status code indicates the successful creation of base stations.
id string Unique identifier of the base station.
View JSON Schema on GitHub

JSON Schema

webex-basestationpostresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BaseStationPostResult",
  "title": "BaseStationPostResult",
  "type": "object",
  "required": [
    "status"
  ],
  "properties": {
    "status": {
      "type": "number",
      "example": 201,
      "description": "HTTP status code indicating the creation of base station. 201 status code indicates the successful creation of base stations."
    },
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0RFQ1RfREVWX1NUQVRJT04vYzRhMTQxN2ItZGNiYi00MGMzLWE3YWQtNTY1MGZkZGRkNTNj",
      "description": "Unique identifier of the base station."
    }
  }
}