Custom Fields
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
namestringRequired
typestring · enumOptionalPossible values:
hiddenbooleanOptional
optionsstring[]Optional
formatstring · enumOptionalPossible values:
Responses
200
Success
application/json
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
post/custom-fields
POST /v3/custom-fields HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 87
{
"name": "text",
"type": "string",
"hidden": true,
"options": [
"text"
],
"format": "MMM D, YYYY"
}{
"success": true,
"error": "text",
"message": "text",
"data": {
"id": 1,
"name": "text",
"type": "string",
"hidden": true,
"options": [
"text"
],
"format": "MMM D, YYYY",
"created": "2026-01-01T00:00:00.000Z"
}
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
customFieldIdstringRequired
Responses
200
Success
application/json
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
get/custom-fields/{customFieldId}
GET /v3/custom-fields/{customFieldId} HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"error": "text",
"message": "text",
"data": {
"id": 1,
"name": "text",
"type": "string",
"hidden": true,
"options": [
"text"
],
"format": "MMM D, YYYY",
"created": "2026-01-01T00:00:00.000Z"
}
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
customFieldIdstringRequired
Body
namestringOptional
typestring · enumOptionalPossible values:
optionsstring[]Optional
Responses
200
Success
application/json
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
patch/custom-fields/{customFieldId}
PATCH /v3/custom-fields/{customFieldId} HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 50
{
"name": "text",
"type": "string",
"options": [
"text"
]
}{
"success": true,
"error": "text",
"message": "text",
"data": {
"id": 1,
"name": "text",
"type": "string",
"hidden": true,
"options": [
"text"
],
"format": "MMM D, YYYY",
"created": "2026-01-01T00:00:00.000Z"
}
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
customFieldIdstringRequired
Responses
200
Success
application/json
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
delete/custom-fields/{customFieldId}
DELETE /v3/custom-fields/{customFieldId} HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"error": "text",
"message": "text",
"data": null
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
pagenumberOptional
pageSizenumberOptional
sortDirectionstring · enumOptionalPossible values:
querystringOptional
sortBystringOptional
Responses
200
Success
application/json
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
429
RateLimitError
application/json
500
InternalServerError
application/json
get/custom-fields
GET /v3/custom-fields HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"error": "text",
"message": "text",
"data": {
"rows": [
{
"id": 1,
"name": "text",
"type": "string",
"hidden": true,
"options": [
"text"
],
"format": "MMM D, YYYY",
"created": "2026-01-01T00:00:00.000Z"
}
],
"page": 1,
"pageSize": 1,
"total": 1
}
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
Responses
200
Success
application/json
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
post/custom-fields/bulk-create
POST /v3/custom-fields/bulk-create HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 106
{
"customFields": [
{
"name": "text",
"type": "string",
"hidden": true,
"options": [
"text"
],
"format": "MMM D, YYYY"
}
]
}{
"success": true,
"error": "text",
"message": "text",
"data": null
}Last updated
Was this helpful?