Create ad campaign group
documentedCreate a new campaign group.
POST /v2/adCampaignGroupsV2Adsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.linkedin.com/v2/adCampaignGroupsV2" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-RestLi-Protocol-Version: 2.0.0" \
-H "LinkedIn-Version: {{$linkedin_version}}" \
-d '{"account": "{{$account}}", "name": "{{$name}}", "runSchedule": {"start": {{$start}}, "end": {{$end}}}, "status": "{{$status}}", "totalBudget": {"amount": "{{$amount}}", "currencyCode": "{{$currencyCode}}"}}'