发票抬头档案(user 一户一档;未登记为 null;仅登录态)
GET
/v1/invoice-profile
const url = 'https://api.tansr.com/v1/invoice-profile';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.tansr.com/v1/invoice-profile \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”档案
本文是否有帮助?
感谢反馈,我们会持续改进这篇文章。