Last updated 1 month ago
Success
const response = await fetch('https://api.younium.com/DocumentTemplate', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "id": "123e4567-e89b-12d3-a456-426614174000", "description": "text", "documentType": {} } ]
const response = await fetch('https://api.younium.com/DocumentTemplate/{id}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "id": "123e4567-e89b-12d3-a456-426614174000", "description": "text", "documentType": {} }