Create Sender ID

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
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
  }
}

Last updated