Definition
The getCampaignInfo API Command Command displays data within a campaign.
Cost
Using this command consumes 1 credit.
Module
The command is included in the Campaign API Module and will only consume credits assigned for Campaign API Operations.
Parameters
campaignId | The ID number (*all to select all campaigns) of the campaign you wish to add competitors to. |
Input URL Example
http://api.cognitiveseo.com/command.php?apiKey=your_api_key&command=getCampaignInfo&campaignId=8
Output Example
Running this command will result in the following JSON output:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
{ "api": "cognitiveSEO API", "data": { "status": "success", "data": { "337": { "campaignId": "337", "campaignName": "gsp", "status": "active", "started": "2015-01-27 15:31:32", "campaignType": "recurring", "siteWide": "1", "exSubdom": "no", "nextRecrawlDate": "2015-02-03 15:31:32", "lastUpdateDate": null, "sites": { "site1": { "siteId": "448", "url": "http:\/\/gsp.ro", "isCompetitor": "no", "siteType": "domain", "importStatus": "finished", "lastImportDateStarted": "2015-01-30 09:15:32", "lastImportDateFinished": "2015-01-30 09:19:19" } } } }, "credits": 1 }, "time": 0.102 } |
Output Details
status | The status of the command (success or error). |
campaignId | The ID number of the selected Campaign. |
campaignName | The name of the selected Campaign. |
status | Displays the current status of the campaign: active = The campaign is up and running; inProgress = The links are being crawled; locked = it’s being updated at this time. |
started | Displays the date when the campaign was created. |
campaignType | Shows the type of the campaign (recurring or onetime) |
siteWide | The number of links crawled sitewide |
exSubdom | Displays if the internal links were ignored (yes or no) |
nextRecrawlDate | The next recrawl date. |
lastUpdateDate | The date when the campaign was updated. |
sites | The sites in the campaign |
site(*) | The number of the site. |
url | The website’s URL |
isCompetitor | no= site is not a competitor yes = site is a competitor |
siteType | The analysis type (url / prefix / domain / subdomain) |
importStatus | null – no import started; inProgress – import is currently in progress; finished – import is finished. |
lastImportDateStarted | Start date of the last import. |
lastImportDateFinished | End date of the last import. |
credits | The credit cost of the command. |
time | The time it took for the command to take place. |