Documentation API SMS v2

This API allows you to send bulk SMS securely and quickly.
AppKey authentication required.
Base URL : https://unikron.website/api/v2/sms/send

Authentication

Add your AppKey in the Authorization header of the request.
Example : Authorization: Bearer VOTRE_APP_KEY

Send an SMS

Method : POST ou GET
URL : https://unikron.website/api/v2/sms/send

Required parameters

Example (POST JSON)

POST https://unikron.website/api/v2/sms/send
Content-Type: application/json
Authorization: Bearer VOTRE_APP_KEY

{
    "number": "+2250700000001,+2250700000002",
    "text": "Votre code est 1234",
    "sender": "UNIKRON"
}
        

Response

{
    "status": "processed",
    "message": "Request processed",
    "results": [
        {
            "number": "+2250700000001",
            "status": "SUBMITTED",
            "error": null,
            "sms_id": "abc123"
        },
        {
            "number": "+2250700000002",
            "status": "SUBMITTED",
            "error": null,
            "sms_id": "abc124"
        }
    ]
}
        

Possible error codes