Update Sender ID

To update a single Sender ID

Update a Sender ID

post

Update an existing sender id

Authorizations
Path parameters
idstringRequired
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
200
Sender updated
application/json
post
POST /api/v1/senders/{id} 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": 200,
  "message": "Sender successfully updated",
  "data": []
}

Last updated