Update Sender ID
To update a single Sender ID
Update an existing sender id
Authorizations
Path parameters
idstringRequired
Body
namestringOptionalExample:
Sender name
DUCKSMS
descriptionstringOptionalExample:
Sender description
Ducksms sender id
defaultbooleanOptionalExample:
Default sender id
false
statusstring · enumOptionalExample:
Sender id status
active
Possible values: Responses
200
Sender updated
application/json
400
Invalid request
application/json
401
Unauthenticated
application/json
404
No data found
application/json
422
Validation errors
application/json
500
Server error
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