Text messages
Use this endpoint to obtain details on Adaptix's Text Messages (SMSes).
Get Text message
HTTP Request
GET /smses/ID
Response
Expected Response Code: 200
See JSON code example.
Text message Properties
Name | Type | Description |
---|---|---|
id | int | ID of the sms |
name | string | Title of the sms |
message | string | Message of the sms |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the sms should be published |
publishDown | datetime/null | Date/time the sms should be un published |
dateAdded | datetime | Date/time sms was created |
createdBy | int | ID of the user that created the sms |
createdByUser | string | Name of the user that created the sms |
dateModified | datetime/null | Date/time sms was last modified |
modifiedBy | int | ID of the user that last modified the sms |
modifiedByUser | string | Name of the user that last modified the sms |
language | string | Language locale of the sms |
sentCount | int | How many times the SMS was sent |
List Text messages
HTTP Request
GET /smses
Query Parameters
Name | Description |
---|---|
search | String or search command to filter entities by. |
start | Starting row for the entities returned. Defaults to 0. |
limit | Limit number of entities to return. Defaults to the system configuration for pagination (30). |
orderBy | Column to sort by. Can use any column listed in the response. |
orderByDir | Sort direction: asc or desc. |
publishedOnly | Only return currently published entities. |
minimal | Return only array of entities without additional lists in it. |
Response
Expected Response Code: 200
See JSON code example.
Properties
Same as Get Text message.
Create Text message
HTTP Request
POST /smses/new
Post Parameters
Name | Type | Description |
---|---|---|
id | int | ID of the sms |
name | string | Title of the sms |
message | string | Message of the sms |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the sms should be published |
publishDown | datetime/null | Date/time the sms should be un published |
dateAdded | datetime | Date/time sms was created |
createdBy | int | ID of the user that created the sms |
createdByUser | string | Name of the user that created the sms |
dateModified | datetime/null | Date/time sms was last modified |
modifiedBy | int | ID of the user that last modified the sms |
modifiedByUser | string | Name of the user that last modified the sms |
language | string | Language locale of the sms |
sentCount | int | How many times the SMS was sent |
Response
Expected Response Code: 201
Properties
Same as Get Text message.
Edit Text message
PUT creates a sms if the given ID does not exist and clears all the sms information, adds the information from the request. PATCH fails if the sms with the given ID does not exist and updates the sms field values with the values form the request.
HTTP Request
To edit a sms and return a 404 if the sms is not found:
PATCH /smses/ID/edit
To edit a sms and create a new one if the sms is not found:
PUT /smses/ID/edit
Post Parameters
Name | Type | Description |
---|---|---|
id | int | ID of the sms |
name | string | Title of the sms |
message | string | Message of the sms |
isPublished | bool | Published state |
publishUp | datetime/null | Date/time when the sms should be published |
publishDown | datetime/null | Date/time the sms should be un published |
language | string | Language locale of the sms |
Response
If PUT
, the expected response code is 200
if the sms was edited or 201
if created.
If PATCH
, the expected response code is 200
.
Properties
Same as Get Text message.
Delete Text message
Delete a sms.HTTP Request
DELETE /smses/ID/delete
Response
Expected Response Code: 200
Properties
Same as Get Text message.
Send SMS to Contact
Send a predefined sms to existing contact.HTTP Request
GET /smses/ID/contact/CONTACT_ID/send
Response
Expected Response Code: 200
Properties