PUT /api/v1/configuration/sms-provider — Update SMS Provider
Updates the SMS provider configuration for your Sadq account. This allows you to configure custom SMS settings for sending notifications to signers.
Authentication
SadqAuthorize
Request Headers
- Authorization (required)
- Bearer {token}
- Content-Type (required)
- application/json
Request Body
Content-Type: application/json
- smsUrl (string, required)
- The SMS provider API URL.
- smsSender (string, required)
- The sender name/number for SMS messages.
- smsUserame (string, required)
- Username for SMS provider authentication.
- smsPassword (string, required)
- Password for SMS provider authentication.
- smsProvider (string, required)
- SMS provider type identifier.
{
"smsUrl": "https://sms-api.example.com/send",
"smsSender": "Sadq",
"smsUserame": "api_user",
"smsPassword": "secure_password",
"smsProvider": 1
}Responses
HTTP 200 — SMS provider updated
{
"errorCode": 0,
"message": null,
"returnUrl": "/dashboard",
"stateValidationErrors": null,
"signature": ""
}