Retrieve An Sms Notifier
Retrieve a specific sms notifier details
HTTP Request
GET/api/notifications/notifiers/sms notifiers/:id
Authorization
Authorization
- Required: Yes
- Permission: Staff with SMSNotifierPermission or Admin
- Permission Code: 2812
- Authentication: Token-based (Authorization: Token <your_api_key>)
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | Integer | Yes | Unique ID of the sms notifier |
Example Requests
- 🐍 Python
- 🌐 Curl
1import requests
2response = requests.get('http://www.example.com/api/notifications/notifiers/sms/1', headers={
3 'Authorization': 'Token <your_api_key>'
4})
5
6print(response.json())1curl
2curl -X GET "http://www.example.com/api/notifications/notifiers/sms/1" -H "Authorization: Token <your_api_key>"Response Fields
| Field | Type | Description |
|---|---|---|
| id | Integer | Unique ID of the sms notifier. |
| name | String | Name of the sms notifier |
| backend | String | Name of the sms notifier backend |
| settings | JsonField | Json key-value settings required for each notifier |
| created_at | String (ISO 8601) | Timestamp when the sms notifier was created. |
| updated_at | String (ISO 8601) | Timestamp when the sms notifier was last updated. |
Response Example
{
"id": 6,
"name": "ippanel",
"backend": "ippanel",
"settings": {
"token": "value1",
"from_number": "+98915"
},
"created_at": "2025-12-28T15:56:29.610626Z",
"updated_at": "2025-12-28T15:56:29.610634Z"
}