Skip to main content
POST
/
sender
/
edit
Control mass messaging campaign
curl --request POST \
  --url https://api.wppfy.com/sender/edit \
  --header 'Content-Type: application/json' \
  --header 'token: <api-key>' \
  --data '
{
  "folder_id": "folder_123",
  "action": "stop"
}
'
{
  "status": "paused"
}

Authorizations

token
string
header
required

Body

application/json
folder_id
string
required

Unique identifier of the sending campaign

Example:

"folder_123"

action
enum<string>
required

Action to be executed on the campaign:

  • stop: Pauses the campaign (changes to status "paused")
  • continue: Resumes paused campaign (changes to status "scheduled")
  • delete: Removes campaign and unsent messages (asynchronous)
Available options:
stop,
continue,
delete
Example:

"stop"

Response

Action performed successfully

  • Response for action 'stop'
  • Response for action 'continue'
  • Response for action 'delete'
status
enum<string>

Campaign status after pausing

Available options:
paused
Example:

"paused"