Ducksms
BlogWhatsapp Support
  • Welcome
  • Web Console
    • Bahasa
      • Gambaran Keseluruhan
      • Pendaftaran
      • Log Masuk
        • Log masuk ke Web Console
        • Lupa kata laluan
      • Papan pemuka
      • Id pengirim
        • Gambaran keseluruhan
        • Mencipta ID penghantar
      • SMS
        • Penghantaran SMS
        • SMS berjadual
        • Laporan penghantaran
        • Insight
      • Templat
      • Kredit
        • Tambah nilai
        • Sejarah
        • Kaedah Pembayaran
      • Kumpulan
        • Pelanggan
      • Tools
        • Smart Link
        • Bulk Contact Import
      • Akaun
        • Profil
        • Tukar password
        • Log keluar
      • Tapisan
      • Token API
        • Gambaran
        • Batalkan Token API
    • English
  • Developer
    • API Documentation
      • Overview
      • Quick Start
      • Authentication
      • API Reference
        • SMS
          • Send SMS
          • Schedule
            • Schedule List
            • Cancel Schedule
        • Sender ID
          • List Sender ID
          • Create Sender ID
          • Update Sender ID
          • Delete Sender ID
        • Credit
          • Balance
          • Credit History
        • Delivery Report (Webhook)
    • SDK (Github)
Powered by GitBook
On this page
  1. Developer
  2. API Documentation
  3. API Reference
  4. Sender ID

Create Sender ID

PreviousList Sender IDNextUpdate Sender ID

Last updated 2 years ago

To create a new sender ID

Create a Sender ID

post

Create a new sender id

Authorizations
Body
namestringOptional

Sender name

Example: DUCKSMS
descriptionstringOptional

Sender description

Example: Ducksms sender id
defaultbooleanOptional

Default sender id

Example: false
statusstring · enumOptional

Sender id status

Example: activePossible values:
Responses
201
Sender ID created
application/json
400
Invalid request
application/json
401
Unauthenticated
application/json
422
Validation errors
application/json
500
Server error
application/json
post
POST /api/v1/senders HTTP/1.1
Host: ducksms.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 86

{
  "name": "DUCKSMS",
  "description": "Ducksms sender id",
  "default": false,
  "status": "active"
}
{
  "status": 201,
  "message": "Sender successfully created",
  "data": {
    "id": 1
  }
}