Skip to main content
GET
/
projects
/
{project_id}
/
integrations
/
ghost
Get Ghost integration
curl --request GET \
  --url https://api.beyondwords.io/v1/projects/{project_id}/integrations/ghost \
  --header 'X-Api-Key: <api-key>'
{
  "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"
}
Returns the Ghost integration settings for a project, including whether the integration is enabled and the configured API URL. See the Ghost integration guide for dashboard setup.

Authorizations

X-Api-Key
string
header
required

Path Parameters

project_id
string
required

The numeric ID of your project

Query Parameters

pagination[limit]
integer

'limit' sets the number of results to return in each page.

pagination[offset]
integer

'offset' sets the first position to return from the results of the query. The default is 0, which starts the page at the first result.

Response

OK

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)