Account Variables
Create Account Variable POST /account-variables
Get Account Variable GET /account-variables/{idOrTitle}
Update Account Variable PATCH /account-variables/{idOrTitle}
Delete Account Variable DELETE /account-variables/{idOrTitle}
List Account Variables GET /account-variables
Body
titlestringRequired
valuestringRequired
Responses
200
Success
application/json
Responseall of
400
BadRequestError
application/json
429
RateLimitError
application/json
500
InternalServerError
application/json
post
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": "2025-10-14T16:19:45.866Z",
"updatedAt": "2025-10-14T16:19:45.866Z"
}
}
Path parameters
idOrTitlestringRequired
Responses
200
Success
application/json
Responseall of
400
BadRequestError
application/json
429
RateLimitError
application/json
500
InternalServerError
application/json
get
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": "2025-10-14T16:19:45.866Z",
"updatedAt": "2025-10-14T16:19:45.866Z"
}
}
Path parameters
idOrTitlestringRequired
Body
titlestringOptional
valuestringOptional
Responses
200
Success
application/json
Responseall of
400
BadRequestError
application/json
429
RateLimitError
application/json
500
InternalServerError
application/json
patch
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": "2025-10-14T16:19:45.866Z",
"updatedAt": "2025-10-14T16:19:45.866Z"
}
}
Path parameters
idOrTitlestringRequired
Responses
200
Success
application/json
400
BadRequestError
application/json
429
RateLimitError
application/json
500
InternalServerError
application/json
delete
DELETE /v3/account-variables/{idOrTitle} HTTP/1.1
Host: api.mobile-text-alerts.com
Accept: */*
{
"success": true,
"error": "text",
"message": "text",
"data": null
}
Responses
200
Success
application/json
Responseall of
400
BadRequestError
application/json
429
RateLimitError
application/json
500
InternalServerError
application/json
get
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": "2025-10-14T16:19:45.866Z",
"updatedAt": "2025-10-14T16:19:45.866Z"
}
],
"page": 1,
"pageSize": 1,
"total": 1
}
}
Last updated
Was this helpful?