Skip to main content
PUT
/
projects
/
{project_id}
/
integrations
/
ghost
Update Ghost integration
curl --request PUT \
  --url https://api.beyondwords.io/v1/projects/{project_id}/integrations/ghost \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "enabled": true,
  "admin_api_key": "<string>",
  "api_url": "<string>"
}
'
{
  "enabled": false,
  "admin_api_key": "4a7ff4d73a1e36b9549449489c7cf85b",
  "api_url": "https://localhost.ghost.io",
  "created": "2019-12-09 22:18:26 UTC",
  "updated": "2020-01-23 08:55:38 UTC"
}
Enable or update the Ghost integration for a project. Set enabled, api_url, and admin_api_key to connect BeyondWords to your Ghost site. See the Ghost integration guide for setup instructions.

Authorizations

X-Api-Key
string
header
required

Path Parameters

project_id
string
required

The numeric ID of your project

Body

application/json
enabled
boolean
admin_api_key
string
api_url
string

Response

200 - application/json

successful

enabled
boolean

Whether or not ghost should be enabled. The default is disabled.

admin_api_key
string | null

Admin API key for Ghost integration

api_url
string | null

Ghost API url

created
string<date-time>

Time at which the object was created (ISO 8601)

updated
string<date-time>

Time at which the object was updated (ISO 8601)