SMS-Vorlage erstellen

Mit dieser Methode können Sie eine SMS-Vorlage erstellen.

POST

/sms-templates

Body-Parameter

model
notwendig
Der Inhalt der Nachricht in Ihrer Vorlage.
name Der Name der Vorlage.
unicode Activate the unicode mode, allowing special chars and reducing the length of one SMS to 70 characters. Standard false
links links ist ein Array, das die den Tags entsprechenden Links enthält. links kann enthalten customLinks für das <-short->-Tag und fileLinks für das <-file->-Tag.

Beispiele


POST /sms-template HTTP/1.1
Host: 
Authorization: Bearer your.token
Content-type: application/json

{
    "sms": {
        "template": {
            "name": "My template",
            "model": "Hello, I'm a model with a link <-short->",
            "links":{
                "customLinks": [
                    "https://www.smsfactor.com/"
                ]
            },
            "unicode": false
        }
    }
}
          
        

Ergebnisformat



{
    "status": 1,
    "message": "OK",
    "template_id": "123"
}