V
Size: a a a
V
OS
ДЗ
V
Б
AY

Б
XL

ДЗ
OS
XL
V
Б
const res = await fetch('http://x.../hs/api/tgbot/disable-ban-delivery?app=tgbot', {
method: 'POST', body: JSON.stringify({ "ref": "226f3f4f-ca10-4be1-aa3a-c2ab481b13f6"})
})const url = `http://.../postavka/hs/api/tgbot/disable-ban-delivery?app=tgbot`;
const body = {
"ref": "226f3f4f-ca10-4be1-aa3a-c2ab481b13f6"
};
this.http.post(url, body)
.pipe(
catchError(this.handleHttpError)
)
.subscribe(data => console.log(data));
XL


V

V
const res = await fetch('http://x.../hs/api/tgbot/disable-ban-delivery?app=tgbot', {
method: 'POST', body: JSON.stringify({ "ref": "226f3f4f-ca10-4be1-aa3a-c2ab481b13f6"})
})const url = `http://.../postavka/hs/api/tgbot/disable-ban-delivery?app=tgbot`;
const body = {
"ref": "226f3f4f-ca10-4be1-aa3a-c2ab481b13f6"
};
this.http.post(url, body)
.pipe(
catchError(this.handleHttpError)
)
.subscribe(data => console.log(data));
V
Б

V
V