get_pod_by_number
Retrieve detailed pod information by specifying its number within a collection, including login credentials, phone numbers, and current operational status.
Instructions
Get a specific pod by its number from a collection. Returns pod details including login credentials, phone numbers, and status.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Collection name (e.g., ciscolivepods) | |
number | Yes | Pod number (e.g., 1, 2, 3) |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "Collection name (e.g., ciscolivepods)",
"type": "string"
},
"number": {
"description": "Pod number (e.g., 1, 2, 3)",
"type": "number"
}
},
"required": [
"collection",
"number"
],
"type": "object"
}