返回当前认证账户的资料、权限、额度和费率规则。
GET
https://api.payzu.processamento.com/v1/userResponses
curl -X GET "https://api.payzu.processamento.com/v1/user" \ -H "Authorization: Bearer {{token}}"fetch("https://api.payzu.processamento.com/v1/user", { method: "GET", headers: { "Authorization": "Bearer {{token}}" }})import requestsurl = "https://api.payzu.processamento.com/v1/user"response = requests.request("GET", url, headers = { "Authorization": "Bearer {{token}}"})print(response.text)