Welcome to Unicorn Creator API
Types
export type UnicornColor = {pathId: string;color: string;};export type Unicorn = {_id?: ObjectId;nickname: string;createdAt?: string;phoneNo: string;colors: UnicornColor[];equipment: string;};
API
GET /api/unicorns
POST /api/unicorns
{"nickname": "unicorn","phoneNo": "123 123 38","colors": [{"pathId": "path-1","color": "#f0f"}],"equipment": "wand"}