Dernière mise à jour il y a 2 ans
ID du compte
"Argentina Bank"
"ARS"
"Updated Bank"
const response = await fetch('https://echo.paw.cloud//{host}/rest/bank-accounts/', { method: 'GET', headers: { "Content-Type": "text/plain" }, }); const data = await response.json();
const response = await fetch('https://echo.paw.cloud//{host}/rest/bank-accounts/{id}/', { method: 'GET', headers: { "Content-Type": "text/plain" }, }); const data = await response.json();
const response = await fetch('https://echo.paw.cloud//{host}/rest/bank-accounts/{id}/', { method: 'DELETE', headers: { "Content-Type": "text/plain" }, }); const data = await response.json();
const response = await fetch('https://echo.paw.cloud//{host}/rest/bank-accounts/', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
const response = await fetch('https://echo.paw.cloud//{host}/rest/bank-accounts/{id}/', { method: 'PUT', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();