BadgeTypeEventType

NOTE HERE ABOUT WHAT THIS IS FOR. You must have the registration ConventionPrivilege to access this. BadgeTypeEventTypes are accessed via /api/badgetypeeventtype.

Properties

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

Complete details in BadgeTypeEventTypeProperties. It also has these extra read-only properties:

Related Objects

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

convention

The Convention this BadgeTypeEventType belongs to.

Relationships

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

Queryable
Qualifiers

Includes

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

Services

The services used to fetch and manipulate BadgeTypeEventTypes.

Search BadgeTypeEventTypes

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

 GET /api/badgetypeeventtype
Optional Params
query

Searches a partial name.

Returns:

 {
    "paging" : {...},
    "items" : [
        {
          "id" : "xxx",
          "name" : "The Captain is Dead",
          ...
        },
        ...
    ]
 }

Create BadgeTypeEventType

 POST /api/badgetypeeventtype
Required Params
convention_id
name

Returns the same as a normal read.

Read BadgeTypeEventType

 GET /api/badgetypeeventtype/xxx

Returns:

 {
   "id" : "xxx",
   "name" : "The Captain is Dead",
   ...
 }

Update BadgeTypeEventType

 PUT /api/badgetypeeventtype/xxx

Returns the same as a normal read.

Delete BadgeTypeEventType

 DELETE /api/badgetypeeventtype/xxx

Returns:

 {
   "success" : 1
 }