Content Category Membership

A record that maps content (e.g. a sequence) to a content category.

createdAt
string or null <date-time>

The date and time the content category membership was created.

updatedAt
string or null <date-time>

The date and time the content category membership was last updated.

{
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z"
}

Content Category Membership Relationships

object

The record in the content category. Must be a sequence, snippet, or template. Relationship content cannot be used as a filter.

object

The content category the record is part of. You can use only the attribute id to filter contentCategoryMemberships by contentCategory (e.g. filter[contentCategory][id]=X).

object

The creator of the content category membership. Relationship creator cannot be used as a filter.

{
  • "content": {},
  • "contentCategory": {},
  • "creator": {}
}

Content Category Membership Resource Metadata

METADATA NAME DESCRIPTION QUERY PARAM
canDelete A boolean value indicating whether the current API user has delete access to this resource. provideAuthorizationMeta

⌵ Content Category Membership Actions

Get a Collection of Content Category Memberships

SecuritybearerAuth
Responses
200

OK

422

JSON error message

get/contentCategoryMemberships
Request samples
Response samples
application/vnd.api+json
{
  • "data": [
    ]
}

Create a New Content Category Membership

SecuritybearerAuth
Request
Request Body schema: application/vnd.api+json
required
object
Responses
201

Created

422

JSON error message

post/contentCategoryMemberships
Request samples
application/vnd.api+json
{
  • "data": {
    }
}
Response samples
application/vnd.api+json
{
  • "data": {
    }
}

Delete an Existing Content Category Membership by ID

SecuritybearerAuth
Request
path Parameters
id
required
integer
Responses
204

Deleted

422

JSON error message

delete/contentCategoryMemberships/{id}
Request samples
Response samples
application/vnd.api+json
{
  • "errors": [
    ]
}

Get a Content Category Membership by ID

SecuritybearerAuth
Request
path Parameters
id
required
integer
Responses
200

OK

404

Not Found

get/contentCategoryMemberships/{id}
Request samples
Response samples
application/vnd.api+json
{
  • "data": {
    }
}