Last updated 2 months ago
Success
const response = await fetch('https://api.younium.com/UnitOfMeasurements', { method: 'GET', headers: {}, }); const data = await response.json();
{ "pageNumber": 0, "pageSize": 0, "totalPages": 0, "totalCount": 0, "nextPage": "https://example.com", "previousPage": "https://example.com", "firstPage": "https://example.com", "lastPage": "https://example.com", "data": [ { "id": "123e4567-e89b-12d3-a456-426614174000", "unitCode": "text", "name": "text", "displayName": "text" } ] }
const response = await fetch('https://api.younium.com/UnitOfMeasurements/{id}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "id": "123e4567-e89b-12d3-a456-426614174000", "unitCode": "text", "name": "text", "displayName": "text" }