Account Variables
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
POST /v3/account-variables HTTP/1.1
Host: api.mobile-text-alerts.com
Content-Type: application/json
Accept: */*
Content-Length: 31
{
"title": "text",
"value": "text"
}{
"success": true,
"error": "text",
"message": "text",
"data": {
"id": 1,
"title": "text",
"value": "text",
"createdAt": "2026-02-26T20:42:59.408Z",
"updatedAt": "2026-02-26T20:42:59.408Z"
}
}GET /v3/account-variables/{idOrTitle} HTTP/1.1
Host: api.mobile-text-alerts.com
Accept: */*
{
"success": true,
"error": "text",
"message": "text",
"data": {
"id": 1,
"title": "text",
"value": "text",
"createdAt": "2026-02-26T20:42:59.408Z",
"updatedAt": "2026-02-26T20:42:59.408Z"
}
}PATCH /v3/account-variables/{idOrTitle} HTTP/1.1
Host: api.mobile-text-alerts.com
Content-Type: application/json
Accept: */*
Content-Length: 31
{
"title": "text",
"value": "text"
}{
"success": true,
"error": "text",
"message": "text",
"data": {
"id": 1,
"title": "text",
"value": "text",
"createdAt": "2026-02-26T20:42:59.408Z",
"updatedAt": "2026-02-26T20:42:59.408Z"
}
}DELETE /v3/account-variables/{idOrTitle} HTTP/1.1
Host: api.mobile-text-alerts.com
Accept: */*
{
"success": true,
"error": "text",
"message": "text",
"data": null
}GET /v3/account-variables HTTP/1.1
Host: api.mobile-text-alerts.com
Accept: */*
{
"success": true,
"error": "text",
"message": "text",
"data": {
"rows": [
{
"id": 1,
"title": "text",
"value": "text",
"createdAt": "2026-02-26T20:42:59.408Z",
"updatedAt": "2026-02-26T20:42:59.408Z"
}
],
"page": 1,
"pageSize": 1,
"total": 1
}
}