Last updated 1 year ago
The model ID
const response = await fetch('https://cm.test/api/categories', { method: 'GET', headers: {}, }); const data = await response.json();
const response = await fetch('https://cm.test/api/types', { method: 'GET', headers: {}, }); const data = await response.json();
const response = await fetch('https://cm.test/api/categories/{model}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "message": "text" }
const response = await fetch('https://cm.test/api/types/{model}', { method: 'GET', headers: {}, }); const data = await response.json();