Skip to content

204 No Content

Success, but there is absolutely nothing to send back in the response body. Common for successful DELETE operations.

Use this when a request succeeded, but there is literally no data to send back. The most common use case is a successful DELETE request. ‘I deleted it, mission accomplished, nothing else to say.‘

import { HttpCode, get } from 'shokupan';
export const getResource = get('/resource', () => {
return { message: 'No Content' };
}).pipe(HttpCode(204));