QuQi API Konsole öffnen
ESC
Konsole öffnen QuQi nutzen
API
Getting started
The QuQi API Authentication
Your account
GET List your websites POST Issue a narrowed key
Channels
GET List channels GET One channel
Posts
POST Plan a post GET List posts GET One post POST Publish a post
Articles
POST Plan an article GET List written articles GET One written article
The calendar
GET The calendar
Pictures
POST Make a picture GET The picture library GET Check a task
Webhooks
POST Add a webhook GET List webhooks DELETE Remove a webhook
Reading finished work
GET Status GET Keywords GET List articles GET One article POST Connect a site POST Disconnect a site
Getting started
Errors
Docs / API / One channel

One channel

The same detail for a single channel, including the Page or board it posts to.

1 Min. Lesezeit All plans
GET /api/v1/channels/{channel}

Everything List channels returns, for one of them — plus target, which is the Facebook Page, LinkedIn page or Pinterest board this channel posts to, and whether one still has to be chosen.

A name that is not one of the nine answers 404 and lists the ones that exist, rather than leaving you to guess the spelling.

CURL
curl "https://console.quqi.io/api/v1/channels/facebook?website_id=019feda8-0ca6-70d1-b927-697fa6650cda" \
  -H "Authorization: Bearer quqi_YOUR_KEY"
RESPONSE
{
  "success": true,
  "data": {
    "channel": {
      "channel": "facebook",
      "connected": true,
      "ready": false,
      "accepts": ["video", "image", "text"],
      "target": {
        "label": "Page",
        "required": true,
        "id": null,
        "available": [{ "id": "123", "name": "Corner Bakery" }]
      }
    }
  }
}
Hat diese Seite Ihre Frage beantwortet? Ja Nicht ganz