Badge Type Con Day

Manages the relationship betweeen BadgeTypes and what ConventionDays they are able to access the Convention. Badge Type Con Days are accessed via /api/badgetypeconday.

Properties

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

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

Related Objects

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

badgetype

The BadgeType this badgetypeconday belongs to.

conventionday

The ConventionDay this badgetypeconday belongs to.

Services

The services used to fetch and manipulate badgetypecondays.

Create Badge Type Con Day

 POST /api/badgetypeconday
Required Params
session_id
badgetype_id
conventionday_id

Returns the same as a normal read.

Read Badge Type Con Day

 GET /api/badgetypeconday/xxx

Returns:

 {
   "id" : "xxx",
   "badgetype_id" : "xxx",
   ...
 }

Update Badge Type Con Day

 PUT /api/badgetypeconday/xxx

Returns the same as a normal read.

Delete Badge Type Con Day

 DELETE /api/badgetypeconday/xxx

Returns:

 {
   "success" : 1
 }