Files
2025-03-24 15:15:31 +01:00

28 lines
709 B
JSON

{
"type": "object",
"properties": {
"text": {
"type": "string",
"description": "Message to send to customer",
"example": "This is a test message for SMS request method."
},
"dest": {
"type": "string",
"description": "Phone Number in international format",
"example": "+2348039409144"
},
"unicode": {
"type": "boolean",
"description": "Character encoding standard (set as False for single SMS)",
"example": false
}
},
"required": [
"text",
"dest",
"unicode"
],
"xml": {
"name": "SMSRequest"
}
}