Custom Fields
Create Custom Field POST /custom-fields
Get Custom Field GET /custom-fields/{customFieldId}
Update Custom Field PATCH /custom-fields/{customFieldId}
Delete Custom Field DELETE /custom-fields/{customFieldId}
List Custom Fields GET /custom-fields
Bulk Create Custom Fields POST /custom-fields/bulk-create
Success
BadRequestError
UnauthorizedError
ForbiddenError
InternalServerError
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": null,
"hidden": true,
"options": [
"text"
],
"format": null,
"created": "2025-10-13T15:43:03.594Z"
}
}
Success
BadRequestError
UnauthorizedError
ForbiddenError
InternalServerError
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": null,
"hidden": true,
"options": [
"text"
],
"format": null,
"created": "2025-10-13T15:43:03.594Z"
}
}
Success
BadRequestError
UnauthorizedError
ForbiddenError
InternalServerError
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: 73
{
"name": "text",
"type": "string",
"options": [
"text"
],
"format": "MMM D, YYYY"
}
{
"success": true,
"error": "text",
"message": "text",
"data": {
"id": 1,
"name": "text",
"type": null,
"hidden": true,
"options": [
"text"
],
"format": null,
"created": "2025-10-13T15:43:03.594Z"
}
}
Success
BadRequestError
UnauthorizedError
ForbiddenError
InternalServerError
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
}
Success
BadRequestError
UnauthorizedError
ForbiddenError
RateLimitError
InternalServerError
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": null,
"hidden": true,
"options": [
"text"
],
"format": null,
"created": "2025-10-13T15:43:03.594Z"
}
],
"page": 1,
"pageSize": 1,
"total": 1
}
}
Success
BadRequestError
UnauthorizedError
ForbiddenError
InternalServerError
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?