Create sender

This method allow you to send a new sender request.

POST

/sender

Paramètres du body

sender
requis
Your sender
country_code
requis
Country where you will use this sender
company_name
requis
Your company
client_country_code Your country code
vat Your VAT number
fiscal_code Your fiscal code
complete_address Your company address
escalation_contact Your PEC address
general_contact Your email contact
website Your website
type_of_service Your business activity
phone_number Your contact phone
type_of_sms alert or marketing

Exemples


        POST /sender HTTP/1.1
        Host: api.smsup.ch
        Authorization: Bearer your.token
        Accept: application/json

        { 
          "sender": {
            "sender": "EXAMPLE",
            "country_code": "FR",
            "company_name": "api.smsup.ch",
            "client_country_code": "FR",
            "vat": "FR123456789",
            "fiscal_code": "FR123456789",
            "complete_address": "1 rue de la paix",
            "escalation_contact": "email@domain.com",
            "general_contact": "email@domain.com",
            "website": "www.domain.com",
            "type_of_service": "services",
            "phone_number": "33612345678",
            "message_type": "alert"
          }
        }