Content Category Ownership

A record that maps content categories to owners. This allows categories to be linked to one or more teams.

createdAt
string or null <date-time>

The date and time the content category ownership was created.

updatedAt
string or null <date-time>

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

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

Content Category Ownership Relationships

object

The content category the owner is linked to. You can use only the attribute id to filter contentCategoryOwnerships by contentCategory (e.g. filter[contentCategory][id]=X).

object

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

object

The record the content category is tied to. Must a team for now. Relationship owner cannot be used as a filter.

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

Content Category Ownership 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 Ownership Actions

Get a Collection of Content Category Ownerships

SecuritybearerAuth
Responses
200

OK

422

JSON error message

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

Create a New Content Category Ownership

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

Created

422

JSON error message

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

Delete an Existing Content Category Ownership by ID

SecuritybearerAuth
Request
path Parameters
id
required
integer
Responses
204

Deleted

422

JSON error message

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