Skip to main content
POST
/
api
/
citations
/
campaigns
Create campaign
curl --request POST \
  --url http://localhost:8000/api/citations/campaigns \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "brandId": "<string>",
  "type": "REVIEW_GENERATION",
  "name": "<string>",
  "targetCount": 123
}
'

Authorizations

Authorization
string
header
required

JWT token from login. Use: Authorization: Bearer <token>

Body

application/json
brandId
string
required
type
enum<string>
required
Available options:
REVIEW_GENERATION,
REDDIT_ENGAGEMENT,
MEDIA_OUTREACH
name
string
required
targetCount
integer

Response

201

Created