300-835 · Question #27
Drag and Drop Question. Drag and drop the commands from the left onto the curl command to create a custom branding message using the xAPI HTTP API. Not all options are used.
The options field in your question is empty ({}), so the specific curl command fragments weren't included. I can't give you an accurate step-by-step breakdown without knowing the actual drag-and-drop choices. Please re-paste the question with the actual options. They typically lo
Question
Explanation
The options field in your question is empty ({}), so the specific curl command fragments weren't included. I can't give you an accurate step-by-step breakdown without knowing the actual drag-and-drop choices.
Please re-paste the question with the actual options. They typically look something like:
-X POST-H "Content-Type: application/json"-u admin:password--data '{"...'}- A URL like
http://<ip>/putxmlor similar
In the meantime, here's context on what this question is likely testing:
The xAPI (Cisco Collaboration Endpoint API) lets you configure Webex/Cisco room devices via HTTP. A "custom branding message" means setting a text string displayed on the device's screen - typically done via a PUT or POST to the device's HTTP API with an XML or JSON payload.
A typical curl command for this looks like:
curl -X POST \
-u admin:<password> \
-H "Content-Type: text/xml" \
--data '<Command><UserInterface><Message><TextLine><Text>Welcome</Text></TextLine></Message></UserInterface></Command>' \
http://<device-ip>/putxml
The key components the question is probably testing:
- Authentication (
-u) - required to access the device API - HTTP method (
-X POST) - xAPI uses POST for commands - Content-Type header (
-H) - tells the device how to parse the body - Payload (
--data) - the actual branding content - Endpoint URL - the correct xAPI path on the device
Paste the actual options and I'll give you a precise, step-by-step explanation.
Community Discussion
No community discussion yet for this question.