The category object

Categories are applied to sound effects to label them. They're useful for filtering sound effect list requests.

❗️

Limited Access

Access to this resource is limited. Contact our sales team for more information.

Attributes

Attribute

Type

Description

name

string

Category name

parent_id

number or null

ID of the parent category it belongs to if present. If null then it is the parent category and may or may not have subcategories.

Example

Primary category

{
  "id": "1",
  "type": "categories",
  "attributes": {
    "name": "Animals",
    "parent_id": null
  }
}

Subcategory

{
  "id": "2",
  "type": "categories",
  "attributes": {
    "name": "Farm Animals",
    "parent_id": 1
  }
}