Files
digifi-swagger/schemas/BulkSMSRequest.json
T
2025-03-24 15:15:31 +01:00

32 lines
863 B
JSON

{
"type": "array",
"maxItems": 20,
"items": {
"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 True for bulk SMS)",
"example": true
}
},
"required": [
"text",
"dest",
"unicode"
]
},
"xml": {
"name": "BulkSMSRequest"
}
}