Favorit SMS

Favorit SMS

Get favorite SMS messages

get
Authorizations
Query parameters
allbooleanOptional

Get all items without pagination

searchstringOptional

Search term for filtering items

per_pageintegerOptional

Number of items per page (default: 15)

pageintegerOptional

Page number

Responses
200

Successful operation

application/json
get
/api/workspaces/{workspaceId}/sms/messages/favorites
200

Successful operation

Create a new favorite SMS

post

Store a new favorite SMS for the authenticated user

Authorizations
Body
textstring · max: 1024RequiredExample: This is a favorite SMS message
Responses
200

Successful operation

application/json
post
/api/workspaces/{workspaceId}/sms/messages/favorites

Get a specific favorite SMS

get

Retrieve details of a specific favorite SMS message

Authorizations
Path parameters
idinteger · int64Required

ID of the favorite SMS to retrieve

Responses
200

Successful operation

application/json
get
/api/workspaces/{workspaceId}/sms/messages/favorites/{id}

Update a favorite SMS

put
Authorizations
Path parameters
idintegerRequired

ID of the favorite SMS to update

Body
textstring · max: 1024Optional
Responses
200

Successful operation

application/json
put
/api/workspaces/{workspaceId}/sms/messages/favorites/{id}

Delete a favorite SMS

delete

Deletes a specific favorite SMS by ID

Authorizations
Path parameters
idintegerRequired

ID of the favorite SMS to delete

Responses
200

Successful operation

application/json
delete
/api/workspaces/{workspaceId}/sms/messages/favorites/{id}

Delete multiple favorite SMS messages

delete

Deletes multiple favorite SMS messages by their IDs

Authorizations
Body
idsinteger[]Required

Array of favorite SMS IDs to delete

Responses
200

Successful operation

application/json
delete
/api/workspaces/{workspaceId}/sms/messages/favorites/bulk-delete

Last updated