nn
Size: a a a
nn
N
nn
nn
N
N
N
DE
N
DE
nn
N
DE
nn
DE
DE
N
DE
N
К
export const getCallLogRecord = ({page = 1, perPage = 25}) => {
const URL = `http://ilg-new-test.w1w.info/api/v1/call-log-record?page=${page}&perPage=${perPage}`
const token = sessionStorage.getItem('access_token')
return fetch(URL, {
method: 'POST',
headers: {
'Authorization': `Bearer ${token}`,
'Content-Type': 'application/json'
}
}).then(res => res.json()).catch(error => {
console.log(error)
})
}