Skip to main content
POST
/
v2.0
/
sales-agent
/
notification
/
app-push
/
send-task-reminder
Send Task Reminder Push
curl --request POST \
  --url https://api.lofty.com/v2.0/sales-agent/notification/app-push/send-task-reminder \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: <content-type>' \
  --data '
{
  "taskId": 123456,
  "type": "TASK"
}
'
{
  "message": "Operation successful"
}

Documentation Index

Fetch the complete documentation index at: https://developer.lofty.com/llms.txt

Use this file to discover all available pages before exploring further.

Headers

Authorization
string
required

Bearer [access_token]

Content-Type
string
required

application/json

Body

application/json

Send task reminder app push notification request

taskId
integer<int64>
required

Task ID or Appointment ID

Example:

123456

type
enum<string>
required

Task type. APPOINTMENT or TASK.

Available options:
TASK,
APPOINTMENT
Example:

"TASK"

Response

Push sent successfully

Generic message response

message
string

Result message

Example:

"Operation successful"