Loading...
GET https://api.3seventy.com/api/v2.1/account/{accountId}/channel/{channel}/keyword/{keyword}/campaign
Description
Gets the campaign details of the specified keyword.Path Parameters
accountId | integer | The account that owns the keyword. | required |
channel | integer | The channel the keyword is attached to. | required |
keyword | integer | The ID of the keyword to examine. | required |
Response Properties application/json
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Linq;
using ThreeSeventy.Vector.Client;
using ThreeSeventy.Vector.Client.Enums;
using ThreeSeventy.Vector.Client.Models;
public class Program
{
private static void Main(string[] args)
{
const int accountId = XXXX;
const string channel = "XXX";
const string keyword = "XXXX";
var context = new T70Context();
var list = context.GetKeywordCampaign(accountId, channel, keyword);
}
}