BadgeTypeCategory

This class allows you to group badge types together to make them easier to browse for your attendees. Badge Type Categories are accessed via /api/badgetypecategory.

Properties

See "Object Properties" in Introduction for basic shared properties.

Complete details in BadgeTypeCategoryProperties.

Related Objects

See "Related Objects" in Introduction for how to use them.

convention

The Convention this badge type category belongs to.

Relationships

See "Relationships" in Introduction for how to use them.

badgetypes

The list of BadgeTypes organized under this category.

Services

The services used to fetch and manipulate badge type categories.

Search Badge Type Categories

This will search across all conventions. To search on a single convention see "Relationships" in Convention.

 GET /api/badgetypecategory
Optional Params
query

Searches a partial name.

Create Badge Type Category

 POST /api/badgetypecategory
Required Params
session_id
name

Read Badge Type Category

 GET /api/badgetypecategory/xxx

Returns:

 {
   "id" : "xxx",
   "name" : "Attendee Badges",
   ...
 }

Update Badge Type Category

 PUT /api/badgetypecategory/xxx

Returns the same as a normal read.

Delete Badge Type Category

 DELETE /api/badgetypecategory/xxx

Returns:

 {
   "success" : 1
 }