Skip to main content
POST
/
api
/
v1
/
campaigns
/
{id}
/
launch
Launch campaign
curl --request POST \
  --url https://nudgen.net/api/v1/campaigns/{id}/launch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "sendNow": false,
  "scheduledAt": "2026-05-21T06:46:52.128Z"
}
'
{
  "campaign": {
    "id": "<string>",
    "name": "<string>",
    "subject": "<string>",
    "scheduledAt": "2023-11-07T05:31:56Z",
    "sentAt": "2023-11-07T05:31:56Z",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  },
  "launched": true,
  "delayMs": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.nudgen.net/llms.txt

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

Authorizations

Authorization
string
header
required

Personal Access Token created from Settings -> API Keys.

Path Parameters

id
string
required

Body

application/json
sendNow
boolean
default:true
scheduledAt
string<date-time>

Response

Campaign scheduled

campaign
object
launched
boolean
delayMs
integer