POST
/
publications
curl --request POST \
  --url https://app.qualitee.io/api/publications \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "site": "<string>",
  "analysis": "<string>",
  "planified_at": "<string>",
  "author": 123,
  "category": 123
}'
{
  "data": [
    {
      "uuid": "<string>",
      "site": {
        "uuid": "<string>",
        "name": "<string>",
        "url": "<string>",
        "cms": "none",
        "created_at": "<string>",
        "updated_at": "<string>",
        "wordpress": {
          "status": "<string>",
          "wordpress_version": "<string>",
          "plugin_version": "<string>",
          "authors": {
            "0": "<string>"
          },
          "categories": {
            "0": "<string>"
          }
        }
      },
      "analysis": {
        "uuid": "<string>",
        "type": "ai-detection",
        "details": {},
        "status": "pending",
        "price": 123,
        "created_at": "<string>",
        "updated_at": "<string>"
      },
      "author": 123,
      "category": 123,
      "url": "<string>",
      "planified_at": "<string>",
      "published_at": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>"
    }
  ],
  "meta": {
    "current_page": 123,
    "from": 123,
    "last_page": 123,
    "per_page": 123,
    "to": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

The body is of type object.

Response

200
application/json

Renvoie la publication avec les informations détaillées.

The response is of type object.