Endpoints for user login and token management to securely access the API.
ContextSMS Webex Bot API (1.0.0)
- Enterprise Authentication - Secure Bearer token authentication
- Enterprise Management - Create and manage customer organizations
- Phone Number Mapping - Link phone numbers to Webex identities
- Real-time Webhooks - Instant message event notifications
- Multi-environment - Separate development and production environments
- Authenticate → Get your Bearer token via login
- Create Enterprise → Set up customer organization with CSP ID
- Add Mapping → Link phone number to Webex identity
- Handle Events → Process incoming webhook notifications
Download OpenAPI description
Overview
URL
Sabrhub API Support Team
License
Languages
Servers
Mock server
https://context-docs.sabrhub.com/_mock/specs/contextsms-webex.external
Production Environment (live)
https://context-webex.sabrhub.com/api/v1
Authentication Server (production)
https://usermanagement.sabrhub.com/v1
- Mock serverhttps://context-docs.sabrhub.com/_mock/specs/contextsms-webex.external/users/create
- Production Environment (live)https://context-webex.sabrhub.com/api/v1/users/create
- Authentication Server (production)https://usermanagement.sabrhub.com/v1/users/create
- cURL
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -X POST "https://usermanagement.sabrhub.com/v1/users/create" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"email": "newuser@email.com",
"password": "StrongP@ssw0rd"
}'Response
application/json
{ "id": "user123", "email": "newuser@email.com" }