get_integration_guide
Fetch platform-specific integration guides for SMS/MMS messaging via BaaS API, tailored to DevOps setups and deployment scenarios like production, staging, or development.
Instructions
Get detailed integration guide by fetching from CDN for specific platforms and deployment scenarios
Perfect for: DevOps setup, deployment planning, team onboarding
Token-optimized: Fetches comprehensive guides from CDN instead of hardcoded responses
Args:
platform: Target platform (vercel, netlify, heroku, aws, gcp, azure, docker, etc.)
deployment_type: Deployment type (development, staging, production)
Returns:
Step-by-step integration guide with platform-specific instructions fetched from CDN
Updated for new /api/message/ endpoints and X-API-KEY authentication
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deployment_type | No | production | |
platform | Yes |
Input Schema (JSON Schema)
{
"properties": {
"deployment_type": {
"default": "production",
"title": "Deployment Type",
"type": "string"
},
"platform": {
"title": "Platform",
"type": "string"
}
},
"required": [
"platform"
],
"title": "get_integration_guideArguments",
"type": "object"
}