Questions tagged [contentful-management]

contentful-management is the SDK for the Contentful CMS SAAS

79 questions
4
votes
2 answers

update an entry in contentful with an reference field

I am working on a project with Contentful, using the contentful-management node module, with Javascript. I am trying to create an reference in an entry containing a new entry. I get the following message in the browser console: Uncaught (in…
Sara
  • 41
  • 1
  • 4
3
votes
1 answer

Update a Contentful post using PUT request via Postman

I'm trying to update a Contentful entry using Postman. What I did: In Contentful space, I created a test post to play with. Went to Settings - API Keys - Content management tokens and generated a Personal access token Created a GET request in…
user3297120
  • 61
  • 1
  • 3
3
votes
1 answer

Export selected content models and their content to another space in Contentful

I have two content space QATesting and Development. I've created 3 new content models and contents in Development. The names of new models and their content type ids are User Care Tips (userCareTips), User FAQ (userFAQ) and User Demo (userDemo). I…
3
votes
1 answer

Contentful: Configure Webhook Payload to Include Reference Field Properties

Say I have a Content Type Book with a text field Title and a reference field Author, which in turn has it's own fields Name (text) and Headshot (media - image). I want to set up a webhook that fires whenever a Book is created or updated, and I want…
dougmacklin
  • 2,560
  • 10
  • 42
  • 69
3
votes
1 answer

Has any one used Contentful with Unity3D as the front end?

For one of our HoloLens projects, we need to connect and get layout information from Contentful. Has anyone used the Contentful .NET SDK with Unity3D so far?
3
votes
1 answer

How monitor Contentful API usage?

Is it possible to monitor how many Contentful API calls are being made, and ideally receive a notification when a quota is about to be exceeded? Thanks
tarling
  • 1,887
  • 2
  • 19
  • 27
3
votes
1 answer

Automatically fetch assets from external source

I have a very basic question to Contentful CMS: Is it possible to configure a job in Contentful that automatically fetches images from external source? My first guess was webhooks, but I think they are just suitable to notify extern systems of a…
Blackvenom
  • 667
  • 6
  • 13
2
votes
0 answers

Nextjs and Image component getting Contentful CMS image.. larger kb in production than development

React/Next app on Vercel: Images are from Contentful CMS - all from master branch. In local development: (npm run dev) image sizes are less than 3x the size as when in production. In production Images in production are much much bigger, over 3x the…
james emanon
  • 11,185
  • 11
  • 56
  • 97
2
votes
1 answer

How to update a single field in a Contentful entry?

Need help updating a field in a CF entry. It is a dropdown field without a default value. I tried to do that by getting the entry from the CF environment, setting the corresponding field and updating it like this: client.getSpace(spaceId) …
AMDN
  • 23
  • 5
2
votes
1 answer

How to place dynamic value in contentful?

I am using contentful. In one of the content model, I want to display dynamic value based on the option selected. e.g. In contentful, I am having message as: Congratulations, your account has created successfully. I have options as…
Trupti
  • 843
  • 2
  • 11
  • 28
2
votes
2 answers

Contentful Content Management API Error 422 When Creating Asset

I am trying to create and publish an image as an asset using the Contentful Content Management API and have been unsuccessful so far, I have been able to successfully create and publish an entry and I cannot figure out why asset is not working. Here…
2
votes
1 answer

Create a nested Entry in a Contentful Space using Content-Management-API

Im using the Content-Managemen-API provided by contentful. Im using this to create a single entry in a space and this works fine: const contentful = require('contentful-management') const client = contentful.createClient({ accessToken:…
Skywalker
  • 4,984
  • 16
  • 57
  • 122
2
votes
1 answer

TypeError: migrationCreator is not a function

I am trying to createAsset using the content-management-api. The JavaScript script that I am using is ./contentful/contentful-import.js const contentful = require('contentful-management'); const client = contentful.createClient({ …
Darren
  • 2,176
  • 9
  • 42
  • 98
2
votes
1 answer

migrate space in Contentful between organizations?

How to migrate space in Contentful between organizations? Is there any way to migrate project space with all contents, settings, and webhooks from on organization to another?
2
votes
1 answer

Contentful: Prevent webhook from triggering, when using Content Management API

So I've created a webhook within the Contentful dashboard, that triggers when an entry is either published or deleted, and it works as it should. However, I want to be able to publish entries via the Content Management JavaScript API, without…
thebfftim
  • 109
  • 1
  • 6
1
2 3 4 5 6