Last updated 1 month ago
Success
Created
const response = await fetch('https://api.sandbox.younium.com/Currency', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "id": "123e4567-e89b-12d3-a456-426614174000", "code": "text", "description": "text" } ]
const response = await fetch('https://api.sandbox.younium.com/Currency/{id}', { method: 'DELETE', headers: {}, }); const data = await response.json();
{ "type": "text", "title": "text", "status": 0, "detail": "text", "instance": "text" }
const response = await fetch('https://api.sandbox.younium.com/Currency', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "code": "text" }), }); const data = await response.json();
{ "id": "123e4567-e89b-12d3-a456-426614174000", "code": "text", "description": "text" }
const response = await fetch('https://api.sandbox.younium.com/Currency/{id}', { method: 'GET', headers: {}, }); const data = await response.json();