API Response Formatting
When to use this skill
- Writing any function that fetches or mutates data and is called by the frontend.
- Ensuring the UI knows exactly how to read a "Success" or "Failure".
Standard Structure
{
success: boolean;
data?: T;
error?: string;
code?: number;
}
Example Usage
export async function deleteBooking(id: string) {
try {
await BookingService.delete(id);
return { success: true };
} catch (e) {
return { success: false, error: "Could not delete booking. Please try again." };
}
}
Instructions
- Consistency: Never return raw error objects to the component; always parse them into a
success: false structure.