Role
status
System metadata
Deletes this object on the server.
const contentful = require('contentful-management')
const client = contentful.createClient({ accessToken: '' })
client.getOrganization('organization_id') .then(org => org.getOrganizationMembership('organizationMembership_id')) .then((organizationMembership) => { organizationMembership.delete(); }) .catch(console.error)
Sends an update to the server with any changes made to the object's properties
const contentful = require('contentful-management') const client = contentful.createClient({ accessToken: '<content_management_api_key>' }) client.getOrganization('organization_id') .then(org => org.getOrganizationMembership('organizationMembership_id')) .then((organizationMembership) => { organizationMembership.role = 'member'; organizationMembership.update(); }) .catch(console.error)
Object returned from the server with updated changes.
Role