Skip to content

226 IM Used

The server fulfilled a GET request and applied requested modifications (‘Instance Manipulations’) to the resource.

Extremely rare. Used when the server returns a ‘delta’ or diff representing changes to a resource, instead of the whole resource.

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